diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
index b92308622ee..c20d540a25a 100644
--- a/CONTRIBUTING.md
+++ b/CONTRIBUTING.md
@@ -1,5 +1,8 @@
# How to contribute
+Note: contributing implies licensing those contributions
+under the terms of [COPYING](./COPYING), which is an MIT-like license.
+
## Opening issues
* Make sure you have a [GitHub account](https://github.com/signup/free)
diff --git a/COPYING b/COPYING
index 919d1e25bbe..0d5734a591c 100644
--- a/COPYING
+++ b/COPYING
@@ -1,4 +1,4 @@
-Copyright (c) 2003-2006 Eelco Dolstra
+Copyright (c) 2003-2015 Eelco Dolstra and the Nixpkgs/NixOS contributors
Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
diff --git a/doc/default.nix b/doc/default.nix
index b8dac00eb65..7e41380d635 100644
--- a/doc/default.nix
+++ b/doc/default.nix
@@ -1,10 +1,12 @@
with import ./.. { };
with lib;
-
+let
+ sources = sourceFilesBySuffices ./. [".xml"];
+ sources-langs = ./languages-frameworks;
+in
stdenv.mkDerivation {
name = "nixpkgs-manual";
- sources = sourceFilesBySuffices ./. [".xml"];
buildInputs = [ pandoc libxml2 libxslt ];
@@ -18,25 +20,39 @@ stdenv.mkDerivation {
--param callout.graphics.extension '.gif'
'';
- buildCommand = ''
- {
- echo ""
- echo ""
- echo "User's Guide to the Haskell Infrastructure"
- echo ""
- pandoc ${./haskell-users-guide.md} -w docbook | \
- sed -e 's|||' \
- -e 's|||'
- echo ""
- echo ""
- } >haskell-users-guide.xml
- ln -s "$sources/"*.xml .
+ buildCommand = let toDocbook = { useChapters ? false, inputFile, outputFile }:
+ let
+ extraHeader = ''xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink" '';
+ in ''
+ {
+ pandoc '${inputFile}' -w docbook ${optionalString useChapters "--chapters"} \
+ | sed -e 's|||' \
+ -e 's|||' \
+ -e '1s| id=| xml:id=|' \
+ -e '1s|\(<[^ ]* \)|\1${extraHeader}|'
+ } > '${outputFile}'
+ '';
+ in
+ ''
+ ln -s '${sources}/'*.xml .
+ mkdir ./languages-frameworks
+ cp -s '${sources-langs}'/* ./languages-frameworks
+ ''
+ + toDocbook {
+ inputFile = ./haskell-users-guide.md;
+ outputFile = "haskell-users-guide.xml";
+ useChapters = true;
+ }
+ + toDocbook {
+ inputFile = ./../pkgs/development/idris-modules/README.md;
+ outputFile = "languages-frameworks/idris.xml";
+ }
+ + ''
+ cat languages-frameworks/idris.xml
echo ${nixpkgsVersion} > .version
xmllint --noout --nonet --xinclude --noxincludenode \
diff --git a/doc/functions.xml b/doc/functions.xml
index e2bc751e140..7f40ba33cd4 100644
--- a/doc/functions.xml
+++ b/doc/functions.xml
@@ -277,7 +277,7 @@ c = lib.makeOverridable f { a = 1; b = 2; }
multiPkgs = pkgs: (with pkgs;
[ udev
alsaLib
- ]) ++ (with [];
+ ]);
runScript = "bash";
}).env
]]>
diff --git a/doc/haskell-users-guide.md b/doc/haskell-users-guide.md
index 446f08eb697..b11e4cf09f8 100644
--- a/doc/haskell-users-guide.md
+++ b/doc/haskell-users-guide.md
@@ -3,8 +3,10 @@ title: User's Guide for Haskell in Nixpkgs
author: Peter Simons
date: 2015-06-01
---
+# User's Guide to the Haskell Infrastructure
-# How to install Haskell packages
+
+## How to install Haskell packages
Nixpkgs distributes build instructions for all Haskell packages registered on
[Hackage](http://hackage.haskell.org/), but strangely enough normal Nix package
@@ -111,9 +113,9 @@ version of GHC listed above, there exists a package set based on that compiler.
Also, the attributes `haskell.compiler.ghcXYC` and
`haskell.packages.ghcXYC.ghc` are synonymous for the sake of convenience.
-# How to create a development environment
+## How to create a development environment
-## How to install a compiler
+### How to install a compiler
A simple development environment consists of a Haskell compiler and the tool
`cabal-install`, and we saw in section [How to install Haskell packages] how
@@ -162,7 +164,7 @@ anymore once `nix-shell` has terminated. If you find that your Haskell builds
no longer work after garbage collection, then you'll have to re-run `cabal
configure` inside of a new `nix-shell` environment.
-## How to install a compiler with libraries
+### How to install a compiler with libraries
GHC expects to find all installed libraries inside of its own `lib` directory.
This approach works fine on traditional Unix systems, but it doesn't work for
@@ -257,7 +259,7 @@ environment in your profile:
export NIX_GHC_LIBDIR="$HOME/.nix-profile/lib/ghc-$($NIX_GHC --numeric-version)"
fi
-## How to install a compiler with libraries, hoogle and documentation indexes
+### How to install a compiler with libraries, hoogle and documentation indexes
If you plan to use your environment for interactive programming, not just
compiling random Haskell code, you might want to replace `ghcWithPackages` in
@@ -319,7 +321,7 @@ page](http://kb.mozillazine.org/Links_to_local_pages_do_not_work) for
workarounds.
-## How to create ad hoc environments for `nix-shell`
+### How to create ad hoc environments for `nix-shell`
The easiest way to create an ad hoc development environment is to run
`nix-shell` with the appropriate GHC environment given on the command-line:
@@ -369,14 +371,14 @@ development commands. Note that you need `cabal-install` installed in your
`$PATH` already to use it here --- the `nix-shell` environment does not provide
it.
-# How to create Nix builds for your own private Haskell packages
+## How to create Nix builds for your own private Haskell packages
If your own Haskell packages have build instructions for Cabal, then you can
convert those automatically into build instructions for Nix using the
`cabal2nix` utility, which you can install into your profile by running
`nix-env -i cabal2nix`.
-## How to build a stand-alone project
+### How to build a stand-alone project
For example, let's assume that you're working on a private project called
`foo`. To generate a Nix build expression for it, change into the project's
@@ -433,7 +435,7 @@ You can even use that generated file to run `nix-build`, too:
$ nix-build shell.nix
-## How to build projects that depend on each other
+### How to build projects that depend on each other
If you have multiple private Haskell packages that depend on each other, then
you'll have to register those packages in the Nixpkgs set to make them visible
@@ -468,9 +470,9 @@ or enter an interactive shell environment suitable for building them:
$ nix-shell "" -A haskellPackages.bar.env
-# Miscellaneous Topics
+## Miscellaneous Topics
-## How to build with profiling enabled
+### How to build with profiling enabled
Every Haskell package set takes a function called `overrides` that you can use
to manipulate the package as much as you please. One useful application of this
@@ -494,7 +496,7 @@ following snippet in your `~/.nixpkgs/config.nix` file:
Then, replace instances of `haskellPackages` in the `cabal2nix`-generated
`default.nix` or `shell.nix` files with `profiledHaskellPackages`.
-## How to override package versions in a compiler-specific package set
+### How to override package versions in a compiler-specific package set
Nixpkgs provides the latest version of
[`ghc-events`](http://hackage.haskell.org/package/ghc-events), which is 0.4.4.0
@@ -560,7 +562,7 @@ prefer one built with GHC 7.8.x in the first place. However, for users who
cannot use GHC 7.10.x at all for some reason, the approach of downgrading to an
older version might be useful.
-## How to recover from GHC's infamous non-deterministic library ID bug
+### How to recover from GHC's infamous non-deterministic library ID bug
GHC and distributed build farms don't get along well:
@@ -586,7 +588,7 @@ command, i.e. by running:
rm /nix/var/nix/manifests/*
rm /nix/var/nix/channel-cache/*
-## Builds on Darwin fail with `math.h` not found
+### Builds on Darwin fail with `math.h` not found
Users of GHC on Darwin have occasionally reported that builds fail, because the
compiler complains about a missing include file:
@@ -603,7 +605,7 @@ can configure the environment variables
in their `~/.bashrc` file to avoid the compiler error.
-## Using Stack together with Nix
+### Using Stack together with Nix
-- While building package zlib-0.5.4.2 using:
runhaskell -package=Cabal-1.22.4.0 -clear-package-db [... lots of flags ...]
@@ -666,7 +668,7 @@ to find out the store path of the system's zlib library. Now, you can
The same thing applies to `cabal configure`, of course, if you're
building with `cabal-install` instead of Stack.
-## Creating statically linked binaries
+### Creating statically linked binaries
There are two levels of static linking. The first option is to configure the
build with the Cabal flag `--disable-executable-dynamic`. In Nix expressions,
@@ -688,7 +690,7 @@ as shared libraries only, i.e. there is just no static library available that
Cabal could link!
-# Other resources
+## Other resources
- The Youtube video [Nix Loves Haskell](https://www.youtube.com/watch?v=BsBhi_r-OeE)
provides an introduction into Haskell NG aimed at beginners. The slides are
diff --git a/doc/language-support.xml b/doc/language-support.xml
deleted file mode 100644
index f0d5dbd3e64..00000000000
--- a/doc/language-support.xml
+++ /dev/null
@@ -1,1047 +0,0 @@
-
-
-Support for specific programming languages
-
-The standard build
-environment makes it easy to build typical Autotools-based
-packages with very little code. Any other kind of package can be
-accomodated by overriding the appropriate phases of
-stdenv. However, there are specialised functions
-in Nixpkgs to easily build packages for other programming languages,
-such as Perl or Haskell. These are described in this chapter.
-
-
-Perl
-
-Nixpkgs provides a function buildPerlPackage,
-a generic package builder function for any Perl package that has a
-standard Makefile.PL. It’s implemented in pkgs/development/perl-modules/generic.
-
-Perl packages from CPAN are defined in pkgs/top-level/perl-packages.nix,
-rather than pkgs/all-packages.nix. Most Perl
-packages are so straight-forward to build that they are defined here
-directly, rather than having a separate function for each package
-called from perl-packages.nix. However, more
-complicated packages should be put in a separate file, typically in
-pkgs/development/perl-modules. Here is an
-example of the former:
-
-
-ClassC3 = buildPerlPackage rec {
- name = "Class-C3-0.21";
- src = fetchurl {
- url = "mirror://cpan/authors/id/F/FL/FLORA/${name}.tar.gz";
- sha256 = "1bl8z095y4js66pwxnm7s853pi9czala4sqc743fdlnk27kq94gz";
- };
-};
-
-
-Note the use of mirror://cpan/, and the
-${name} in the URL definition to ensure that the
-name attribute is consistent with the source that we’re actually
-downloading. Perl packages are made available in
-all-packages.nix through the variable
-perlPackages. For instance, if you have a package
-that needs ClassC3, you would typically write
-
-
-foo = import ../path/to/foo.nix {
- inherit stdenv fetchurl ...;
- inherit (perlPackages) ClassC3;
-};
-
-
-in all-packages.nix. You can test building a
-Perl package as follows:
-
-
-$ nix-build -A perlPackages.ClassC3
-
-
-buildPerlPackage adds perl- to
-the start of the name attribute, so the package above is actually
-called perl-Class-C3-0.21. So to install it, you
-can say:
-
-
-$ nix-env -i perl-Class-C3
-
-
-(Of course you can also install using the attribute name:
-nix-env -i -A perlPackages.ClassC3.)
-
-So what does buildPerlPackage do? It does
-the following:
-
-
-
- In the configure phase, it calls perl
- Makefile.PL to generate a Makefile. You can set the
- variable makeMakerFlags to pass flags to
- Makefile.PL
-
- It adds the contents of the PERL5LIB
- environment variable to #! .../bin/perl line of
- Perl scripts as -Idir
- flags. This ensures that a script can find its
- dependencies.
-
- In the fixup phase, it writes the propagated build
- inputs (propagatedBuildInputs) to the file
- $out/nix-support/propagated-user-env-packages.
- nix-env recursively installs all packages listed
- in this file when you install a package that has it. This ensures
- that a Perl package can find its dependencies.
-
-
-
-
-
-buildPerlPackage is built on top of
-stdenv, so everything can be customised in the
-usual way. For instance, the BerkeleyDB module has
-a preConfigure hook to generate a configuration
-file used by Makefile.PL:
-
-
-{ buildPerlPackage, fetchurl, db }:
-
-buildPerlPackage rec {
- name = "BerkeleyDB-0.36";
-
- src = fetchurl {
- url = "mirror://cpan/authors/id/P/PM/PMQS/${name}.tar.gz";
- sha256 = "07xf50riarb60l1h6m2dqmql8q5dij619712fsgw7ach04d8g3z1";
- };
-
- preConfigure = ''
- echo "LIB = ${db}/lib" > config.in
- echo "INCLUDE = ${db}/include" >> config.in
- '';
-}
-
-
-
-
-Dependencies on other Perl packages can be specified in the
-buildInputs and
-propagatedBuildInputs attributes. If something is
-exclusively a build-time dependency, use
-buildInputs; if it’s (also) a runtime dependency,
-use propagatedBuildInputs. For instance, this
-builds a Perl module that has runtime dependencies on a bunch of other
-modules:
-
-
-ClassC3Componentised = buildPerlPackage rec {
- name = "Class-C3-Componentised-1.0004";
- src = fetchurl {
- url = "mirror://cpan/authors/id/A/AS/ASH/${name}.tar.gz";
- sha256 = "0xql73jkcdbq4q9m0b0rnca6nrlvf5hyzy8is0crdk65bynvs8q1";
- };
- propagatedBuildInputs = [
- ClassC3 ClassInspector TestException MROCompat
- ];
-};
-
-
-
-
-Generation from CPAN
-
-Nix expressions for Perl packages can be generated (almost)
-automatically from CPAN. This is done by the program
-nix-generate-from-cpan, which can be installed
-as follows:
-
-
-$ nix-env -i nix-generate-from-cpan
-
-
-This program takes a Perl module name, looks it up on CPAN,
-fetches and unpacks the corresponding package, and prints a Nix
-expression on standard output. For example:
-
-
-$ nix-generate-from-cpan XML::Simple
- XMLSimple = buildPerlPackage {
- name = "XML-Simple-2.20";
- src = fetchurl {
- url = mirror://cpan/authors/id/G/GR/GRANTM/XML-Simple-2.20.tar.gz;
- sha256 = "5cff13d0802792da1eb45895ce1be461903d98ec97c9c953bc8406af7294434a";
- };
- propagatedBuildInputs = [ XMLNamespaceSupport XMLSAX XMLSAXExpat ];
- meta = {
- description = "Easily read/write XML (esp config files)";
- license = "perl";
- };
- };
-
-
-The output can be pasted into
-pkgs/top-level/perl-packages.nix or wherever else
-you need it.
-
-
-
-
-
-
-Python
-
-
- Currently supported interpreters are python26, python27,
- python33, python34, python35
- and pypy.
-
-
-
- python is an alias to python27 and python3 is an alias to python34.
-
-
-
- python26 and python27 do not include modules that require
- external dependencies (to reduce dependency bloat). Following modules need to be added as
- buildInput explicitly:
-
-
-
- python.modules.bsddb
- python.modules.curses
- python.modules.curses_panel
- python.modules.crypt
- python.modules.gdbm
- python.modules.sqlite3
- python.modules.tkinter
- python.modules.readline
-
-
-For convenience python27Full and python26Full
-are provided with all modules included.
-
-
- Python packages that
- use setuptools or distutils,
- can be built using the buildPythonPackage function as documented below.
-
-
-
- All packages depending on any Python interpreter get appended $out/${python.sitePackages}
- to $PYTHONPATH if such directory exists.
-
-
-
-
- Useful attributes on interpreters packages:
-
-
-
- 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 for usage and documentation.
-
-
-
-
- sitePackages
-
- Alias for lib/${libPrefix}/site-packages.
-
-
-
-
- executable
-
- Name of the interpreter executable, ie python3.4.
-
-
-
-
-buildPythonPackage function
-
-
- The function is implemented in
- pkgs/development/python-modules/generic/default.nix.
- Example usage:
-
-
-twisted = buildPythonPackage {
- name = "twisted-8.1.0";
-
- src = pkgs.fetchurl {
- url = http://tmrc.mit.edu/mirror/twisted/Twisted/8.1/Twisted-8.1.0.tar.bz2;
- sha256 = "0q25zbr4xzknaghha72mq57kh53qw1bf8csgp63pm9sfi72qhirl";
- };
-
- propagatedBuildInputs = [ self.ZopeInterface ];
-
- meta = {
- homepage = http://twistedmatrix.com/;
- description = "Twisted, an event-driven networking engine written in Python";
- license = stdenv.lib.licenses.mit;
- };
-};
-
-
- Most of Python packages that use buildPythonPackage are defined
- in pkgs/top-level/python-packages.nix
- and generated for each python interpreter separately into attribute sets python26Packages,
- python27Packages, python35Packages, python33Packages,
- python34Packages and pypyPackages.
-
-
-
- buildPythonPackage mainly does four things:
-
-
-
- In the buildPhase, it calls
- ${python.interpreter} setup.py bdist_wheel to build a wheel binary zipfile.
-
-
-
- In the installPhase, it installs the wheel file using
- pip install *.whl.
-
-
-
- In the postFixup phase, wrapPythonPrograms
- bash function is called to wrap all programs in $out/bin/*
- directory to include $PYTHONPATH and $PATH
- environment variables.
-
-
-
- In the installCheck phase, ${python.interpreter} setup.py test
- is ran.
-
-
-
-
- By default doCheck = true is set
-
-
- As in Perl, dependencies on other Python packages can be specified in the
- buildInputs and
- propagatedBuildInputs attributes. If something is
- exclusively a build-time dependency, use
- buildInputs; if it’s (also) a runtime dependency,
- use propagatedBuildInputs.
-
-
-
- By default meta.platforms is set to the same value
- as the interpreter unless overriden otherwise.
-
-
-
-
- buildPythonPackage parameters
- (all parameters from mkDerivation function are still supported)
-
-
-
- namePrefix
-
- Prepended text to ${name} parameter.
- Defaults to "python3.3-" for Python 3.3, etc. Set it to
- ""
- if you're packaging an application or a command line tool.
-
-
-
-
- disabled
-
- If true, package is not build for
- particular python interpreter version. Grep around
- pkgs/top-level/python-packages.nix
- for examples.
-
-
-
-
- setupPyBuildFlags
-
- List of flags passed to setup.py build_ext command.
-
-
-
-
- pythonPath
-
- List of packages to be added into $PYTHONPATH.
- Packages in pythonPath are not propagated
- (contrary to propagatedBuildInputs).
-
-
-
-
- preShellHook
-
- Hook to execute commands before shellHook.
-
-
-
-
- postShellHook
-
- Hook to execute commands after shellHook.
-
-
-
-
- makeWrapperArgs
-
- A list of strings. Arguments to be passed to
- makeWrapper, which wraps generated binaries. By
- default, the arguments to makeWrapper set
- PATH and PYTHONPATH environment
- variables before calling the binary. Additional arguments here can
- allow a developer to set environment variables which will be
- available when the binary is run. For example,
- makeWrapperArgs = ["--set FOO BAR" "--set BAZ QUX"].
-
-
-
-
-
-
-
-python.buildEnv function
-
- Create Python environments using low-level pkgs.buildEnv function. Example default.nix:
-
-
- {};
-
-python.buildEnv.override {
- extraLibs = [ pkgs.pythonPackages.pyramid ];
- ignoreCollisions = true;
-}]]>
-
-
- Running nix-build will create
- /nix/store/cf1xhjwzmdki7fasgr4kz6di72ykicl5-python-2.7.8-env
- with wrapped binaries in bin/.
-
-
-
- You can also use env attribute to create local
- environments with needed packages installed (somewhat comparable to
- virtualenv). For example, with the following
- shell.nix:
-
-
- {};
-
-(python3.buildEnv.override {
- extraLibs = with python3Packages;
- [ numpy
- requests
- ];
-}).env]]>
-
-
- Running nix-shell will drop you into a shell where
- python will have specified packages in its path.
-
-
-
-
- python.buildEnv arguments
-
-
-
- extraLibs
-
- List of packages installed inside the environment.
-
-
-
-
- postBuild
-
- Shell command executed after the build of environment.
-
-
-
-
- ignoreCollisions
-
- Ignore file collisions inside the environment (default is false).
-
-
-
-
-
-Tools
-
-Packages inside nixpkgs are written by hand. However many tools
-exist in community to help save time. No tool is preferred at the moment.
-
-
-
-
-
- python2nix
- by Vladimir Kirillov
-
-
-
- pypi2nix
- by Rok Garbas
-
-
-
- pypi2nix
- by Jaka Hudoklin
-
-
-
-
-
-
-Development
-
-
- To develop Python packages buildPythonPackage has
- additional logic inside shellPhase to run
- pip install -e . --prefix $TMPDIR/ for the package.
-
-
- shellPhase is executed only if setup.py
- exists.
-
-
- Given a default.nix:
-
-
- {};
-
-buildPythonPackage {
- name = "myproject";
-
- buildInputs = with pkgs.pythonPackages; [ pyramid ];
-
- src = ./.;
-}]]>
-
-
- Running nix-shell with no arguments should give you
- the environment in which the package would be build with
- nix-build.
-
-
-
- Shortcut to setup environments with C headers/libraries and python packages:
-
- $ nix-shell -p pythonPackages.pyramid zlib libjpeg git
-
-
-
- There is a boolean value lib.inNixShell set to
- true if nix-shell is invoked.
-
-
-
-
-FAQ
-
-
-
-
- How to solve circular dependencies?
-
- If you have packages A and B that
- depend on each other, when packaging B override package
- A not to depend on B as input
- (and also the other way around).
-
-
-
-
- install_data / data_files problems resulting into error: could not create '/nix/store/6l1bvljpy8gazlsw2aw9skwwp4pmvyxw-python-2.7.8/etc': Permission denied
-
-
- Known bug in setuptools install_data does not respect --prefix. Example of
- such package using the feature is pkgs/tools/X11/xpra/default.nix. As workaround
- install it as an extra preInstall step:
-
- ${python.interpreter} setup.py install_data --install-dir=$out --root=$out
-sed -i '/ = data_files/d' setup.py
-
-
-
-
- Rationale of non-existent global site-packages
-
- There is no need to have global site-packages in Nix. Each package has isolated
- dependency tree and installing any python package will only populate $PATH
- inside user environment. See to create self-contained
- interpreter with a set of packages.
-
-
-
-
-
-
-
-
-Contributing guidelines
-
- Following rules are desired to be respected:
-
-
-
-
-
- Make sure package builds for all python interpreters. Use disabled argument to
- buildPythonPackage to set unsupported interpreters.
-
-
-
- If tests need to be disabled for a package, make sure you leave a comment about reasoning.
-
-
-
- Packages in pkgs/top-level/python-packages.nix
- are sorted quasi-alphabetically to avoid merge conflicts.
-
-
-
-
-
-
-
-
-
-Ruby
- There currently is support to bundle applications that are packaged as Ruby gems. The utility "bundix" allows you to write a Gemfile, let bundler create a Gemfile.lock, and then convert
- this into a nix expression that contains all Gem dependencies automatically.
-
- For example, to package sensu, we did:
-
-
- Gemfile
-source 'https://rubygems.org'
-gem 'sensu'
-$ bundler package --path /tmp/vendor/bundle
-$ $(nix-build '' -A bundix)/bin/bundix
-$ cat > default.nix
-{ lib, bundlerEnv, ruby }:
-
-bundlerEnv {
- name = "sensu-0.17.1";
-
- inherit ruby;
- gemfile = ./Gemfile;
- lockfile = ./Gemfile.lock;
- gemset = ./gemset.nix;
-
- meta = with lib; {
- description = "A monitoring framework that aims to be simple, malleable,
-and scalable.";
- homepage = http://sensuapp.org/;
- license = with licenses; mit;
- maintainers = with maintainers; [ theuni ];
- platforms = platforms.unix;
- };
-}]]>
-
-
-Please check in the Gemfile, Gemfile.lock and the gemset.nix so future updates can be run easily.
-
-
-
-
-Go
-
-The function buildGoPackage builds
-standard Go packages.
-
-
-buildGoPackage
-
-net = buildGoPackage rec {
- name = "go.net-${rev}";
- goPackagePath = "golang.org/x/net";
- subPackages = [ "ipv4" "ipv6" ];
- rev = "e0403b4e005";
- src = fetchFromGitHub {
- inherit rev;
- owner = "golang";
- repo = "net";
- sha256 = "1g7cjzw4g4301a3yqpbk8n1d4s97sfby2aysl275x04g0zh8jxqp";
- };
- goPackageAliases = [ "code.google.com/p/go.net" ];
- propagatedBuildInputs = [ goPackages.text ];
- buildFlags = "--tags release";
- disabled = isGo13;
-};
-
-
-
- is an example expression using buildGoPackage,
-the following arguments are of special significance to the function:
-
-
-
-
-
- goPackagePath specifies the package's canonical Go import path.
-
-
-
-
-
- subPackages limits the builder from building child packages that
- have not been listed. If subPackages is not specified, all child
- packages will be built.
-
-
- In this example only code.google.com/p/go.net/ipv4 and
- code.google.com/p/go.net/ipv6 will be built.
-
-
-
-
-
- goPackageAliases is a list of alternative import paths
- that are valid for this library.
- Packages that depend on this library will automatically rename
- import paths that match any of the aliases to goPackagePath.
-
-
- In this example imports will be renamed from
- code.google.com/p/go.net to
- golang.org/x/net in every package that depend on the
- go.net library.
-
-
-
-
-
- propagatedBuildInputs is where the dependencies of a Go library are
- listed. Only libraries should list propagatedBuildInputs. If a standalone
- program is being built instead, use buildInputs. If a library's tests require
- additional dependencies that are not propagated, they should be listed in buildInputs.
-
-
-
-
-
- buildFlags is a list of flags passed to the go build command.
-
-
-
-
-
- If disabled is true,
- nix will refuse to build this package.
-
-
- In this example the package will not be built for go 1.3. The isGo13
- is an utility function that returns true if go used to build the
- package has version 1.3.x.
-
-
-
-
-
-
-
-
-Reusable Go libraries may be found in the goPackages set. You can test
-build a Go package as follows:
-
-
-$ nix-build -A goPackages.net
-
-
-
-
-
-You may use Go packages installed into the active Nix profiles by adding
-the following to your ~/.bashrc:
-
-
-for p in $NIX_PROFILES; do
- GOPATH="$p/share/go:$GOPATH"
-done
-
-
-
- To extract dependency information from a Go package in automated way use go2nix.
-
-
-
-Java
-
-Ant-based Java packages are typically built from source as follows:
-
-
-stdenv.mkDerivation {
- name = "...";
- src = fetchurl { ... };
-
- buildInputs = [ jdk ant ];
-
- buildPhase = "ant";
-}
-
-
-Note that jdk is an alias for the OpenJDK.
-
-JAR files that are intended to be used by other packages should
-be installed in $out/share/java. The OpenJDK has
-a stdenv setup hook that adds any JARs in the
-share/java directories of the build inputs to the
-CLASSPATH environment variable. For instance, if the
-package libfoo installs a JAR named
-foo.jar in its share/java
-directory, and another package declares the attribute
-
-
-buildInputs = [ jdk libfoo ];
-
-
-then CLASSPATH will be set to
-/nix/store/...-libfoo/share/java/foo.jar.
-
-Private JARs
-should be installed in a location like
-$out/share/package-name.
-
-If your Java package provides a program, you need to generate a
-wrapper script to run it using the OpenJRE. You can use
-makeWrapper for this:
-
-
-buildInputs = [ makeWrapper ];
-
-installPhase =
- ''
- mkdir -p $out/bin
- makeWrapper ${jre}/bin/java $out/bin/foo \
- --add-flags "-cp $out/share/java/foo.jar org.foo.Main"
- '';
-
-
-Note the use of jre, which is the part of the
-OpenJDK package that contains the Java Runtime Environment. By using
-${jre}/bin/java instead of
-${jdk}/bin/java, you prevent your package from
-depending on the JDK at runtime.
-
-It is possible to use a different Java compiler than
-javac from the OpenJDK. For instance, to use the
-Eclipse Java Compiler:
-
-
-buildInputs = [ jre ant ecj ];
-
-
-(Note that here you don’t need the full JDK as an input, but just the
-JRE.) The ECJ has a stdenv setup hook that sets some environment
-variables to cause Ant to use ECJ, but this doesn’t work with all Ant
-files. Similarly, you can use the GNU Java Compiler:
-
-
-buildInputs = [ gcj ant ];
-
-
-Here, Ant will automatically use gij (the GNU Java
-Runtime) instead of the OpenJRE.
-
-
-
-
-Lua
-
-
- Lua packages are built by the buildLuaPackage function. This function is
- implemented
- in
- pkgs/development/lua-modules/generic/default.nix
- and works similarly to buildPerlPackage. (See
- for details.)
-
-
-
- Lua packages are defined
- in pkgs/top-level/lua-packages.nix.
- Most of them are simple. For example:
-
-
-fileSystem = buildLuaPackage {
- name = "filesystem-1.6.2";
- src = fetchurl {
- url = "https://github.com/keplerproject/luafilesystem/archive/v1_6_2.tar.gz";
- sha256 = "1n8qdwa20ypbrny99vhkmx8q04zd2jjycdb5196xdhgvqzk10abz";
- };
- meta = {
- homepage = "https://github.com/keplerproject/luafilesystem";
- hydraPlatforms = stdenv.lib.platforms.linux;
- maintainers = with maintainers; [ flosse ];
- };
-};
-
-
-
-
- Though, more complicated package should be placed in a seperate file in
- pkgs/development/lua-modules.
-
-
- Lua packages accept additional parameter disabled, which defines
- the condition of disabling package from luaPackages. For example, if package has
- disabled assigned to lua.luaversion != "5.1",
- it will not be included in any luaPackages except lua51Packages, making it
- only be built for lua 5.1.
-
-
-
-
-Coq
-
- Coq libraries should be installed in
- $(out)/lib/coq/${coq.coq-version}/user-contrib/.
- Such directories are automatically added to the
- $COQPATH environment variable by the hook defined
- in the Coq derivation.
-
-
- Some libraries require OCaml and sometimes also Camlp5. The exact
- versions that were used to build Coq are saved in the
- coq.ocaml and coq.camlp5
- attributes.
-
-
- Here is a simple package example. It is a pure Coq library, thus it
- only depends on Coq. Its makefile has been
- generated using coq_makefile so we only have to
- set the $COQLIB variable at install time.
-
-
-{stdenv, fetchurl, coq}:
-stdenv.mkDerivation {
- src = fetchurl {
- url = http://coq.inria.fr/pylons/contribs/files/Karatsuba/v8.4/Karatsuba.tar.gz;
- sha256 = "0ymfpv4v49k4fm63nq6gcl1hbnnxrvjjp7yzc4973n49b853c5b1";
- };
-
- name = "coq-karatsuba";
-
- buildInputs = [ coq ];
-
- installFlags = "COQLIB=$(out)/lib/coq/${coq.coq-version}/";
-}
-
-
-
-Qt
-
-The information in this section applies to Qt 5.5 and later.
-
-Qt is an application development toolkit for C++. Although it is
-not a distinct programming language, there are special considerations
-for packaging Qt-based programs and libraries. A small set of tools
-and conventions has grown out of these considerations.
-
-Libraries
-
-Packages that provide libraries should be listed in
-qt5LibsFun so that the library is built with each
-Qt version. A set of packages is provided for each version of Qt; for
-example, qt5Libs always provides libraries built
-with the latest version, qt55Libs provides
-libraries built with Qt 5.5, and so on. To avoid version conflicts, no
-top-level attributes are created for these packages.
-
-
-
-Programs
-
-Application packages do not need to be built with every Qt
-version. To ensure consistency between the package's dependencies,
-call the package with qt5Libs.callPackage instead
-of the usual callPackage. An older version may be
-selected in case of incompatibility. For example, to build with Qt
-5.5, call the package with
-qt55Libs.callPackage.
-
-Several environment variables must be set at runtime for Qt
-applications to function correctly, including:
-
-
- QT_PLUGIN_PATH
- QML_IMPORT_PATH
- QML2_IMPORT_PATH
- XDG_DATA_DIRS
-
-
-To ensure that these are set correctly, the program must be wrapped by
-invoking wrapQtProgram program
-during installation (for example, during
-fixupPhase). wrapQtProgram
-accepts the same options as makeWrapper.
-
-
-
-
-KDE
-
-Many of the considerations above also apply to KDE packages,
-especially the need to set the correct environment variables at
-runtime. To ensure that this is done, invoke wrapKDEProgram
-program during
-installation. wrapKDEProgram also generates a
-ksycoca database so that required data and services
-can be found. Like its Qt counterpart,
-wrapKDEProgram accepts the same options as
-makeWrapper.
-
-
-
-
-
-
-
-
-
diff --git a/doc/languages-frameworks/coq.xml b/doc/languages-frameworks/coq.xml
new file mode 100644
index 00000000000..d16c9f3dc87
--- /dev/null
+++ b/doc/languages-frameworks/coq.xml
@@ -0,0 +1,41 @@
+
+
+Coq
+
+ Coq libraries should be installed in
+ $(out)/lib/coq/${coq.coq-version}/user-contrib/.
+ Such directories are automatically added to the
+ $COQPATH environment variable by the hook defined
+ in the Coq derivation.
+
+
+ Some libraries require OCaml and sometimes also Camlp5. The exact
+ versions that were used to build Coq are saved in the
+ coq.ocaml and coq.camlp5
+ attributes.
+
+
+ Here is a simple package example. It is a pure Coq library, thus it
+ only depends on Coq. Its makefile has been
+ generated using coq_makefile so we only have to
+ set the $COQLIB variable at install time.
+
+
+{stdenv, fetchurl, coq}:
+stdenv.mkDerivation {
+ src = fetchurl {
+ url = http://coq.inria.fr/pylons/contribs/files/Karatsuba/v8.4/Karatsuba.tar.gz;
+ sha256 = "0ymfpv4v49k4fm63nq6gcl1hbnnxrvjjp7yzc4973n49b853c5b1";
+ };
+
+ name = "coq-karatsuba";
+
+ buildInputs = [ coq ];
+
+ installFlags = "COQLIB=$(out)/lib/coq/${coq.coq-version}/";
+}
+
+
+
diff --git a/doc/languages-frameworks/go.xml b/doc/languages-frameworks/go.xml
new file mode 100644
index 00000000000..89908b3b8ff
--- /dev/null
+++ b/doc/languages-frameworks/go.xml
@@ -0,0 +1,124 @@
+
+
+Go
+
+The function buildGoPackage builds
+standard Go packages.
+
+
+buildGoPackage
+
+net = buildGoPackage rec {
+ name = "go.net-${rev}";
+ goPackagePath = "golang.org/x/net";
+ subPackages = [ "ipv4" "ipv6" ];
+ rev = "e0403b4e005";
+ src = fetchFromGitHub {
+ inherit rev;
+ owner = "golang";
+ repo = "net";
+ sha256 = "1g7cjzw4g4301a3yqpbk8n1d4s97sfby2aysl275x04g0zh8jxqp";
+ };
+ goPackageAliases = [ "code.google.com/p/go.net" ];
+ propagatedBuildInputs = [ goPackages.text ];
+ buildFlags = "--tags release";
+ disabled = isGo13;
+};
+
+
+
+ is an example expression using buildGoPackage,
+the following arguments are of special significance to the function:
+
+
+
+
+
+ goPackagePath specifies the package's canonical Go import path.
+
+
+
+
+
+ subPackages limits the builder from building child packages that
+ have not been listed. If subPackages is not specified, all child
+ packages will be built.
+
+
+ In this example only code.google.com/p/go.net/ipv4 and
+ code.google.com/p/go.net/ipv6 will be built.
+
+
+
+
+
+ goPackageAliases is a list of alternative import paths
+ that are valid for this library.
+ Packages that depend on this library will automatically rename
+ import paths that match any of the aliases to goPackagePath.
+
+
+ In this example imports will be renamed from
+ code.google.com/p/go.net to
+ golang.org/x/net in every package that depend on the
+ go.net library.
+
+
+
+
+
+ propagatedBuildInputs is where the dependencies of a Go library are
+ listed. Only libraries should list propagatedBuildInputs. If a standalone
+ program is being built instead, use buildInputs. If a library's tests require
+ additional dependencies that are not propagated, they should be listed in buildInputs.
+
+
+
+
+
+ buildFlags is a list of flags passed to the go build command.
+
+
+
+
+
+ If disabled is true,
+ nix will refuse to build this package.
+
+
+ In this example the package will not be built for go 1.3. The isGo13
+ is an utility function that returns true if go used to build the
+ package has version 1.3.x.
+
+
+
+
+
+
+
+
+Reusable Go libraries may be found in the goPackages set. You can test
+build a Go package as follows:
+
+
+$ nix-build -A goPackages.net
+
+
+
+
+
+You may use Go packages installed into the active Nix profiles by adding
+the following to your ~/.bashrc:
+
+
+for p in $NIX_PROFILES; do
+ GOPATH="$p/share/go:$GOPATH"
+done
+
+
+
+ To extract dependency information from a Go package in automated way use go2nix.
+
+
diff --git a/doc/languages-frameworks/index.xml b/doc/languages-frameworks/index.xml
new file mode 100644
index 00000000000..743a1b70be7
--- /dev/null
+++ b/doc/languages-frameworks/index.xml
@@ -0,0 +1,43 @@
+
+
+Support for specific programming languages and frameworks
+
+The standard build
+environment makes it easy to build typical Autotools-based
+packages with very little code. Any other kind of package can be
+accomodated by overriding the appropriate phases of
+stdenv. However, there are specialised functions
+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/java.xml b/doc/languages-frameworks/java.xml
new file mode 100644
index 00000000000..2d40a254ced
--- /dev/null
+++ b/doc/languages-frameworks/java.xml
@@ -0,0 +1,84 @@
+
+
+Java
+
+Ant-based Java packages are typically built from source as follows:
+
+
+stdenv.mkDerivation {
+ name = "...";
+ src = fetchurl { ... };
+
+ buildInputs = [ jdk ant ];
+
+ buildPhase = "ant";
+}
+
+
+Note that jdk is an alias for the OpenJDK.
+
+JAR files that are intended to be used by other packages should
+be installed in $out/share/java. The OpenJDK has
+a stdenv setup hook that adds any JARs in the
+share/java directories of the build inputs to the
+CLASSPATH environment variable. For instance, if the
+package libfoo installs a JAR named
+foo.jar in its share/java
+directory, and another package declares the attribute
+
+
+buildInputs = [ jdk libfoo ];
+
+
+then CLASSPATH will be set to
+/nix/store/...-libfoo/share/java/foo.jar.
+
+Private JARs
+should be installed in a location like
+$out/share/package-name.
+
+If your Java package provides a program, you need to generate a
+wrapper script to run it using the OpenJRE. You can use
+makeWrapper for this:
+
+
+buildInputs = [ makeWrapper ];
+
+installPhase =
+ ''
+ mkdir -p $out/bin
+ makeWrapper ${jre}/bin/java $out/bin/foo \
+ --add-flags "-cp $out/share/java/foo.jar org.foo.Main"
+ '';
+
+
+Note the use of jre, which is the part of the
+OpenJDK package that contains the Java Runtime Environment. By using
+${jre}/bin/java instead of
+${jdk}/bin/java, you prevent your package from
+depending on the JDK at runtime.
+
+It is possible to use a different Java compiler than
+javac from the OpenJDK. For instance, to use the
+Eclipse Java Compiler:
+
+
+buildInputs = [ jre ant ecj ];
+
+
+(Note that here you don’t need the full JDK as an input, but just the
+JRE.) The ECJ has a stdenv setup hook that sets some environment
+variables to cause Ant to use ECJ, but this doesn’t work with all Ant
+files. Similarly, you can use the GNU Java Compiler:
+
+
+buildInputs = [ gcj ant ];
+
+
+Here, Ant will automatically use gij (the GNU Java
+Runtime) instead of the OpenJRE.
+
+
+
diff --git a/doc/languages-frameworks/lua.xml b/doc/languages-frameworks/lua.xml
new file mode 100644
index 00000000000..39b086af4cb
--- /dev/null
+++ b/doc/languages-frameworks/lua.xml
@@ -0,0 +1,51 @@
+
+
+Lua
+
+
+ Lua packages are built by the buildLuaPackage function. This function is
+ implemented
+ in
+ pkgs/development/lua-modules/generic/default.nix
+ and works similarly to buildPerlPackage. (See
+ for details.)
+
+
+
+ Lua packages are defined
+ in pkgs/top-level/lua-packages.nix.
+ Most of them are simple. For example:
+
+
+fileSystem = buildLuaPackage {
+ name = "filesystem-1.6.2";
+ src = fetchurl {
+ url = "https://github.com/keplerproject/luafilesystem/archive/v1_6_2.tar.gz";
+ sha256 = "1n8qdwa20ypbrny99vhkmx8q04zd2jjycdb5196xdhgvqzk10abz";
+ };
+ meta = {
+ homepage = "https://github.com/keplerproject/luafilesystem";
+ hydraPlatforms = stdenv.lib.platforms.linux;
+ maintainers = with maintainers; [ flosse ];
+ };
+};
+
+
+
+
+ Though, more complicated package should be placed in a seperate file in
+ pkgs/development/lua-modules.
+
+
+ Lua packages accept additional parameter disabled, which defines
+ the condition of disabling package from luaPackages. For example, if package has
+ disabled assigned to lua.luaversion != "5.1",
+ it will not be included in any luaPackages except lua51Packages, making it
+ only be built for lua 5.1.
+
+
+
+
diff --git a/doc/languages-frameworks/perl.xml b/doc/languages-frameworks/perl.xml
new file mode 100644
index 00000000000..54b82f4a056
--- /dev/null
+++ b/doc/languages-frameworks/perl.xml
@@ -0,0 +1,181 @@
+
+
+Perl
+
+Nixpkgs provides a function buildPerlPackage,
+a generic package builder function for any Perl package that has a
+standard Makefile.PL. It’s implemented in pkgs/development/perl-modules/generic.
+
+Perl packages from CPAN are defined in pkgs/top-level/perl-packages.nix,
+rather than pkgs/all-packages.nix. Most Perl
+packages are so straight-forward to build that they are defined here
+directly, rather than having a separate function for each package
+called from perl-packages.nix. However, more
+complicated packages should be put in a separate file, typically in
+pkgs/development/perl-modules. Here is an
+example of the former:
+
+
+ClassC3 = buildPerlPackage rec {
+ name = "Class-C3-0.21";
+ src = fetchurl {
+ url = "mirror://cpan/authors/id/F/FL/FLORA/${name}.tar.gz";
+ sha256 = "1bl8z095y4js66pwxnm7s853pi9czala4sqc743fdlnk27kq94gz";
+ };
+};
+
+
+Note the use of mirror://cpan/, and the
+${name} in the URL definition to ensure that the
+name attribute is consistent with the source that we’re actually
+downloading. Perl packages are made available in
+all-packages.nix through the variable
+perlPackages. For instance, if you have a package
+that needs ClassC3, you would typically write
+
+
+foo = import ../path/to/foo.nix {
+ inherit stdenv fetchurl ...;
+ inherit (perlPackages) ClassC3;
+};
+
+
+in all-packages.nix. You can test building a
+Perl package as follows:
+
+
+$ nix-build -A perlPackages.ClassC3
+
+
+buildPerlPackage adds perl- to
+the start of the name attribute, so the package above is actually
+called perl-Class-C3-0.21. So to install it, you
+can say:
+
+
+$ nix-env -i perl-Class-C3
+
+
+(Of course you can also install using the attribute name:
+nix-env -i -A perlPackages.ClassC3.)
+
+So what does buildPerlPackage do? It does
+the following:
+
+
+
+ In the configure phase, it calls perl
+ Makefile.PL to generate a Makefile. You can set the
+ variable makeMakerFlags to pass flags to
+ Makefile.PL
+
+ It adds the contents of the PERL5LIB
+ environment variable to #! .../bin/perl line of
+ Perl scripts as -Idir
+ flags. This ensures that a script can find its
+ dependencies.
+
+ In the fixup phase, it writes the propagated build
+ inputs (propagatedBuildInputs) to the file
+ $out/nix-support/propagated-user-env-packages.
+ nix-env recursively installs all packages listed
+ in this file when you install a package that has it. This ensures
+ that a Perl package can find its dependencies.
+
+
+
+
+
+buildPerlPackage is built on top of
+stdenv, so everything can be customised in the
+usual way. For instance, the BerkeleyDB module has
+a preConfigure hook to generate a configuration
+file used by Makefile.PL:
+
+
+{ buildPerlPackage, fetchurl, db }:
+
+buildPerlPackage rec {
+ name = "BerkeleyDB-0.36";
+
+ src = fetchurl {
+ url = "mirror://cpan/authors/id/P/PM/PMQS/${name}.tar.gz";
+ sha256 = "07xf50riarb60l1h6m2dqmql8q5dij619712fsgw7ach04d8g3z1";
+ };
+
+ preConfigure = ''
+ echo "LIB = ${db}/lib" > config.in
+ echo "INCLUDE = ${db}/include" >> config.in
+ '';
+}
+
+
+
+
+Dependencies on other Perl packages can be specified in the
+buildInputs and
+propagatedBuildInputs attributes. If something is
+exclusively a build-time dependency, use
+buildInputs; if it’s (also) a runtime dependency,
+use propagatedBuildInputs. For instance, this
+builds a Perl module that has runtime dependencies on a bunch of other
+modules:
+
+
+ClassC3Componentised = buildPerlPackage rec {
+ name = "Class-C3-Componentised-1.0004";
+ src = fetchurl {
+ url = "mirror://cpan/authors/id/A/AS/ASH/${name}.tar.gz";
+ sha256 = "0xql73jkcdbq4q9m0b0rnca6nrlvf5hyzy8is0crdk65bynvs8q1";
+ };
+ propagatedBuildInputs = [
+ ClassC3 ClassInspector TestException MROCompat
+ ];
+};
+
+
+
+
+Generation from CPAN
+
+Nix expressions for Perl packages can be generated (almost)
+automatically from CPAN. This is done by the program
+nix-generate-from-cpan, which can be installed
+as follows:
+
+
+$ nix-env -i nix-generate-from-cpan
+
+
+This program takes a Perl module name, looks it up on CPAN,
+fetches and unpacks the corresponding package, and prints a Nix
+expression on standard output. For example:
+
+
+$ nix-generate-from-cpan XML::Simple
+ XMLSimple = buildPerlPackage {
+ name = "XML-Simple-2.20";
+ src = fetchurl {
+ url = mirror://cpan/authors/id/G/GR/GRANTM/XML-Simple-2.20.tar.gz;
+ sha256 = "5cff13d0802792da1eb45895ce1be461903d98ec97c9c953bc8406af7294434a";
+ };
+ propagatedBuildInputs = [ XMLNamespaceSupport XMLSAX XMLSAXExpat ];
+ meta = {
+ description = "Easily read/write XML (esp config files)";
+ license = "perl";
+ };
+ };
+
+
+The output can be pasted into
+pkgs/top-level/perl-packages.nix or wherever else
+you need it.
+
+
+
+
+
diff --git a/doc/languages-frameworks/python.xml b/doc/languages-frameworks/python.xml
new file mode 100644
index 00000000000..57aceeb4868
--- /dev/null
+++ b/doc/languages-frameworks/python.xml
@@ -0,0 +1,447 @@
+
+
+Python
+
+
+ Currently supported interpreters are python26, python27,
+ python33, python34, python35
+ and pypy.
+
+
+
+ python is an alias to python27 and python3 is an alias to python34.
+
+
+
+ python26 and python27 do not include modules that require
+ external dependencies (to reduce dependency bloat). Following modules need to be added as
+ buildInput explicitly:
+
+
+
+ python.modules.bsddb
+ python.modules.curses
+ python.modules.curses_panel
+ python.modules.crypt
+ python.modules.gdbm
+ python.modules.sqlite3
+ python.modules.tkinter
+ python.modules.readline
+
+
+For convenience python27Full and python26Full
+are provided with all modules included.
+
+
+ Python packages that
+ use setuptools or distutils,
+ can be built using the buildPythonPackage function as documented below.
+
+
+
+ All packages depending on any Python interpreter get appended $out/${python.sitePackages}
+ to $PYTHONPATH if such directory exists.
+
+
+
+
+ Useful attributes on interpreters packages:
+
+
+
+ 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 for usage and documentation.
+
+
+
+
+ sitePackages
+
+ Alias for lib/${libPrefix}/site-packages.
+
+
+
+
+ executable
+
+ Name of the interpreter executable, ie python3.4.
+
+
+
+
+buildPythonPackage function
+
+
+ The function is implemented in
+ pkgs/development/python-modules/generic/default.nix.
+ Example usage:
+
+
+twisted = buildPythonPackage {
+ name = "twisted-8.1.0";
+
+ src = pkgs.fetchurl {
+ url = http://tmrc.mit.edu/mirror/twisted/Twisted/8.1/Twisted-8.1.0.tar.bz2;
+ sha256 = "0q25zbr4xzknaghha72mq57kh53qw1bf8csgp63pm9sfi72qhirl";
+ };
+
+ propagatedBuildInputs = [ self.ZopeInterface ];
+
+ meta = {
+ homepage = http://twistedmatrix.com/;
+ description = "Twisted, an event-driven networking engine written in Python";
+ license = stdenv.lib.licenses.mit;
+ };
+};
+
+
+ Most of Python packages that use buildPythonPackage are defined
+ in pkgs/top-level/python-packages.nix
+ and generated for each python interpreter separately into attribute sets python26Packages,
+ python27Packages, python35Packages, python33Packages,
+ python34Packages and pypyPackages.
+
+
+
+ buildPythonPackage mainly does four things:
+
+
+
+ In the buildPhase, it calls
+ ${python.interpreter} setup.py bdist_wheel to build a wheel binary zipfile.
+
+
+
+ In the installPhase, it installs the wheel file using
+ pip install *.whl.
+
+
+
+ In the postFixup phase, wrapPythonPrograms
+ bash function is called to wrap all programs in $out/bin/*
+ directory to include $PYTHONPATH and $PATH
+ environment variables.
+
+
+
+ In the installCheck phase, ${python.interpreter} setup.py test
+ is ran.
+
+
+
+
+ By default doCheck = true is set
+
+
+ As in Perl, dependencies on other Python packages can be specified in the
+ buildInputs and
+ propagatedBuildInputs attributes. If something is
+ exclusively a build-time dependency, use
+ buildInputs; if it’s (also) a runtime dependency,
+ use propagatedBuildInputs.
+
+
+
+ By default meta.platforms is set to the same value
+ as the interpreter unless overriden otherwise.
+
+
+
+
+ buildPythonPackage parameters
+ (all parameters from mkDerivation function are still supported)
+
+
+
+ namePrefix
+
+ Prepended text to ${name} parameter.
+ Defaults to "python3.3-" for Python 3.3, etc. Set it to
+ ""
+ if you're packaging an application or a command line tool.
+
+
+
+
+ disabled
+
+ If true, package is not build for
+ particular python interpreter version. Grep around
+ pkgs/top-level/python-packages.nix
+ for examples.
+
+
+
+
+ setupPyBuildFlags
+
+ List of flags passed to setup.py build_ext command.
+
+
+
+
+ pythonPath
+
+ List of packages to be added into $PYTHONPATH.
+ Packages in pythonPath are not propagated
+ (contrary to propagatedBuildInputs).
+
+
+
+
+ preShellHook
+
+ Hook to execute commands before shellHook.
+
+
+
+
+ postShellHook
+
+ Hook to execute commands after shellHook.
+
+
+
+
+ makeWrapperArgs
+
+ A list of strings. Arguments to be passed to
+ makeWrapper, which wraps generated binaries. By
+ default, the arguments to makeWrapper set
+ PATH and PYTHONPATH environment
+ variables before calling the binary. Additional arguments here can
+ allow a developer to set environment variables which will be
+ available when the binary is run. For example,
+ makeWrapperArgs = ["--set FOO BAR" "--set BAZ QUX"].
+
+
+
+
+
+
+
+python.buildEnv function
+
+ Create Python environments using low-level pkgs.buildEnv function. Example default.nix:
+
+
+ {};
+
+python.buildEnv.override {
+ extraLibs = [ pkgs.pythonPackages.pyramid ];
+ ignoreCollisions = true;
+}]]>
+
+
+ Running nix-build will create
+ /nix/store/cf1xhjwzmdki7fasgr4kz6di72ykicl5-python-2.7.8-env
+ with wrapped binaries in bin/.
+
+
+
+ You can also use env attribute to create local
+ environments with needed packages installed (somewhat comparable to
+ virtualenv). For example, with the following
+ shell.nix:
+
+
+ {};
+
+(python3.buildEnv.override {
+ extraLibs = with python3Packages;
+ [ numpy
+ requests
+ ];
+}).env]]>
+
+
+ Running nix-shell will drop you into a shell where
+ python will have specified packages in its path.
+
+
+
+
+ python.buildEnv arguments
+
+
+
+ extraLibs
+
+ List of packages installed inside the environment.
+
+
+
+
+ postBuild
+
+ Shell command executed after the build of environment.
+
+
+
+
+ ignoreCollisions
+
+ Ignore file collisions inside the environment (default is false).
+
+
+
+
+
+Tools
+
+Packages inside nixpkgs are written by hand. However many tools
+exist in community to help save time. No tool is preferred at the moment.
+
+
+
+
+
+ python2nix
+ by Vladimir Kirillov
+
+
+
+ pypi2nix
+ by Rok Garbas
+
+
+
+ pypi2nix
+ by Jaka Hudoklin
+
+
+
+
+
+
+Development
+
+
+ To develop Python packages buildPythonPackage has
+ additional logic inside shellPhase to run
+ pip install -e . --prefix $TMPDIR/ for the package.
+
+
+ shellPhase is executed only if setup.py
+ exists.
+
+
+ Given a default.nix:
+
+
+ {};
+
+buildPythonPackage {
+ name = "myproject";
+
+ buildInputs = with pkgs.pythonPackages; [ pyramid ];
+
+ src = ./.;
+}]]>
+
+
+ Running nix-shell with no arguments should give you
+ the environment in which the package would be build with
+ nix-build.
+
+
+
+ Shortcut to setup environments with C headers/libraries and python packages:
+
+ $ nix-shell -p pythonPackages.pyramid zlib libjpeg git
+
+
+
+ There is a boolean value lib.inNixShell set to
+ true if nix-shell is invoked.
+
+
+
+
+FAQ
+
+
+
+
+ How to solve circular dependencies?
+
+ If you have packages A and B that
+ depend on each other, when packaging B override package
+ A not to depend on B as input
+ (and also the other way around).
+
+
+
+
+ install_data / data_files problems resulting into error: could not create '/nix/store/6l1bvljpy8gazlsw2aw9skwwp4pmvyxw-python-2.7.8/etc': Permission denied
+
+
+ Known bug in setuptools install_data does not respect --prefix. Example of
+ such package using the feature is pkgs/tools/X11/xpra/default.nix. As workaround
+ install it as an extra preInstall step:
+
+ ${python.interpreter} setup.py install_data --install-dir=$out --root=$out
+sed -i '/ = data_files/d' setup.py
+
+
+
+
+ Rationale of non-existent global site-packages
+
+ There is no need to have global site-packages in Nix. Each package has isolated
+ dependency tree and installing any python package will only populate $PATH
+ inside user environment. See to create self-contained
+ interpreter with a set of packages.
+
+
+
+
+
+
+
+
+Contributing guidelines
+
+ Following rules are desired to be respected:
+
+
+
+
+
+ Make sure package builds for all python interpreters. Use disabled argument to
+ buildPythonPackage to set unsupported interpreters.
+
+
+
+ If tests need to be disabled for a package, make sure you leave a comment about reasoning.
+
+
+
+ Packages in pkgs/top-level/python-packages.nix
+ are sorted quasi-alphabetically to avoid merge conflicts.
+
+
+
+
+
+
+
+
diff --git a/doc/languages-frameworks/qt.xml b/doc/languages-frameworks/qt.xml
new file mode 100644
index 00000000000..093c33c25a1
--- /dev/null
+++ b/doc/languages-frameworks/qt.xml
@@ -0,0 +1,70 @@
+
+
+Qt
+
+The information in this section applies to Qt 5.5 and later.
+
+Qt is an application development toolkit for C++. Although it is
+not a distinct programming language, there are special considerations
+for packaging Qt-based programs and libraries. A small set of tools
+and conventions has grown out of these considerations.
+
+Libraries
+
+Packages that provide libraries should be listed in
+qt5LibsFun so that the library is built with each
+Qt version. A set of packages is provided for each version of Qt; for
+example, qt5Libs always provides libraries built
+with the latest version, qt55Libs provides
+libraries built with Qt 5.5, and so on. To avoid version conflicts, no
+top-level attributes are created for these packages.
+
+
+
+Programs
+
+Application packages do not need to be built with every Qt
+version. To ensure consistency between the package's dependencies,
+call the package with qt5Libs.callPackage instead
+of the usual callPackage. An older version may be
+selected in case of incompatibility. For example, to build with Qt
+5.5, call the package with
+qt55Libs.callPackage.
+
+Several environment variables must be set at runtime for Qt
+applications to function correctly, including:
+
+
+ QT_PLUGIN_PATH
+ QML_IMPORT_PATH
+ QML2_IMPORT_PATH
+ XDG_DATA_DIRS
+
+
+To ensure that these are set correctly, the program must be wrapped by
+invoking wrapQtProgram program
+during installation (for example, during
+fixupPhase). wrapQtProgram
+accepts the same options as makeWrapper.
+
+
+
+
+KDE
+
+Many of the considerations above also apply to KDE packages,
+especially the need to set the correct environment variables at
+runtime. To ensure that this is done, invoke wrapKDEProgram
+program during
+installation. wrapKDEProgram also generates a
+ksycoca database so that required data and services
+can be found. Like its Qt counterpart,
+wrapKDEProgram accepts the same options as
+makeWrapper.
+
+
+
+
+
diff --git a/doc/languages-frameworks/ruby.xml b/doc/languages-frameworks/ruby.xml
new file mode 100644
index 00000000000..a2b4475a4a5
--- /dev/null
+++ b/doc/languages-frameworks/ruby.xml
@@ -0,0 +1,46 @@
+
+
+Ruby
+
+ There currently is support to bundle applications that are packaged as Ruby gems. The utility "bundix" allows you to write a Gemfile, let bundler create a Gemfile.lock, and then convert
+ this into a nix expression that contains all Gem dependencies automatically.
+
+ For example, to package sensu, we did:
+
+
+ Gemfile
+source 'https://rubygems.org'
+gem 'sensu'
+$ bundler package --path /tmp/vendor/bundle
+$ $(nix-build '' -A bundix)/bin/bundix
+$ cat > default.nix
+{ lib, bundlerEnv, ruby }:
+
+bundlerEnv {
+ name = "sensu-0.17.1";
+
+ inherit ruby;
+ gemfile = ./Gemfile;
+ lockfile = ./Gemfile.lock;
+ gemset = ./gemset.nix;
+
+ meta = with lib; {
+ description = "A monitoring framework that aims to be simple, malleable,
+and scalable.";
+ homepage = http://sensuapp.org/;
+ license = with licenses; mit;
+ maintainers = with maintainers; [ theuni ];
+ platforms = platforms.unix;
+ };
+}]]>
+
+
+Please check in the Gemfile, Gemfile.lock and the gemset.nix so future updates can be run easily.
+
+
+
+
diff --git a/doc/manual.xml b/doc/manual.xml
index 1f1f50f75fb..b4c35d1a379 100644
--- a/doc/manual.xml
+++ b/doc/manual.xml
@@ -12,10 +12,10 @@
-
+
-
+
diff --git a/doc/submitting-changes.xml b/doc/submitting-changes.xml
index 0fd1954c528..0b09dffbb2d 100644
--- a/doc/submitting-changes.xml
+++ b/doc/submitting-changes.xml
@@ -261,23 +261,72 @@ Additional information.
Hydra builds for master and staging should not be used as testing platform, it's a build farm for changes that have been already tested.
-
-Master should only see non-breaking commits that do not cause mass rebuilds.
-
-
-
-Staging should only see non-breaking mass-rebuild commits. That means it's not to be used for testing, and changes must have been well tested already. Read policy here.
-
-
-
-If staging is already in a broken state, please refrain from adding extra new breakages. Stabilize it for a few days, merge into master, then resume development on staging. Keep an eye on the staging evaluations here. If any fixes for staging happen to be already in master, then master can be merged into staging.
-
-
When changing the bootloader installation process, extra care must be taken. Grub installations cannot be rolled back, hence changes may break people's installations forever. For any non-trivial change to the bootloader please file a PR asking for review, especially from @edolstra.
+
+ Master branch
+
+
+
+
+ It should only see non-breaking commits that do not cause mass rebuilds.
+
+
+
+
+
+
+ Staging branch
+
+
+
+
+ It's only for non-breaking mass-rebuild commits. That means it's not to
+ be used for testing, and changes must have been well tested already.
+ Read policy here.
+
+
+
+
+ If the branch is already in a broken state, please refrain from adding
+ extra new breakages. Stabilize it for a few days, merge into master,
+ then resume development on staging.
+ Keep an eye on the staging evaluations here.
+ If any fixes for staging happen to be already in master, then master can
+ be merged into staging.
+
+
+
+
+
+
+ Stable release branches
+
+
+
+
+ If you're cherry-picking a commit to a stable release branch, always use
+ git cherry-pick -xe and ensure the message contains a
+ clear description about why this needs to be included in the stable
+ branch.
+
+ An example of a cherry-picked commit would look like this:
+
+nixos: Refactor the world.
+
+The original commit message describing the reason why the world was torn apart.
+
+(cherry picked from commit abcdef)
+Reason: I just had a gut feeling that this would also be wanted by people from
+the stone age.
+
+
+
+
+
diff --git a/lib/licenses.nix b/lib/licenses.nix
index ebd7d56d761..4703587ed56 100644
--- a/lib/licenses.nix
+++ b/lib/licenses.nix
@@ -85,6 +85,26 @@ lib.mapAttrs (n: v: v // { shortName = n; }) rec {
fullName = "Creative Commons Zero v1.0 Universal";
};
+ cc-by-nc-sa-20 = spdx {
+ spdxId = "CC-BY-NC-SA-2.0";
+ fullName = "Creative Commons Attribution Non Commercial Share Alike 2.0";
+ };
+
+ cc-by-nc-sa-25 = spdx {
+ spdxId = "CC-BY-NC-SA-2.5";
+ fullName = "Creative Commons Attribution Non Commercial Share Alike 2.5";
+ };
+
+ cc-by-nc-sa-30 = spdx {
+ spdxId = "CC-BY-NC-SA-3.0";
+ fullName = "Creative Commons Attribution Non Commercial Share Alike 3.0";
+ };
+
+ cc-by-nc-sa-40 = spdx {
+ spdxId = "CC-BY-NC-SA-4.0";
+ fullName = "Creative Commons Attribution Non Commercial Share Alike 4.0";
+ };
+
cc-by-sa-25 = spdx {
spdxId = "CC-BY-SA-2.5";
fullName = "Creative Commons Attribution Share Alike 2.5";
diff --git a/lib/maintainers.nix b/lib/maintainers.nix
index 93bd8098f45..16e4c1e35ff 100644
--- a/lib/maintainers.nix
+++ b/lib/maintainers.nix
@@ -81,6 +81,7 @@
devhell = "devhell <\"^\"@regexmail.net>";
dezgeg = "Tuomas Tynkkynen ";
dfoxfranke = "Daniel Fox Franke ";
+ dgonyeo = "Derek Gonyeo ";
dmalikov = "Dmitry Malikov ";
dochang = "Desmond O. Chang ";
doublec = "Chris Double ";
@@ -165,6 +166,7 @@
lebastr = "Alexander Lebedev ";
leonardoce = "Leonardo Cecchi ";
lethalman = "Luca Bruno ";
+ lewo = "Antoine Eiche ";
lhvwb = "Nathaniel Baxter ";
lihop = "Leroy Hopson ";
linquize = "Linquize ";
@@ -265,6 +267,7 @@
rszibele = "Richard Szibele ";
rushmorem = "Rushmore Mushambi ";
rvl = "Rodney Lorrimar ";
+ rvlander = "Gaëtan André ";
rycee = "Robert Helgesson ";
samuelrivas = "Samuel Rivas ";
sander = "Sander van der Burg ";
@@ -318,6 +321,7 @@
vmandela = "Venkateswara Rao Mandela ";
vozz = "Oliver Hunt ";
wedens = "wedens ";
+ willtim = "Tim Philip Williams ";
winden = "Antonio Vargas Gonzalez ";
wizeman = "Ricardo M. Correia ";
wjlroe = "William Roe ";
diff --git a/nixos/doc/manual/release-notes/rl-unstable.xml b/nixos/doc/manual/release-notes/rl-unstable.xml
index cf6e4ace413..1b8efe8770e 100644
--- a/nixos/doc/manual/release-notes/rl-unstable.xml
+++ b/nixos/doc/manual/release-notes/rl-unstable.xml
@@ -113,6 +113,20 @@ nginx.override {
extra X11 options for nvidia and nouveau drivers, respectively.
+
+
+ The Ctrl+Alt+Backspace key combination
+ no longer kills the X server by default.
+ There's a new option
+ allowing to enable the combination again.
+
+
+
+
+ emacsPackagesNg now contains all packages
+ from the ELPA, MELPA, and MELPA Stable repositories.
+
+
diff --git a/nixos/modules/config/power-management.nix b/nixos/modules/config/power-management.nix
index dedc8a3f679..fbd7867a095 100644
--- a/nixos/modules/config/power-management.nix
+++ b/nixos/modules/config/power-management.nix
@@ -71,7 +71,6 @@ in
# FIXME: Implement powersave governor for sandy bridge or later Intel CPUs
powerManagement.cpuFreqGovernor = mkDefault "ondemand";
- powerManagement.scsiLinkPolicy = mkDefault "min_power";
systemd.targets.post-resume = {
description = "Post-Resume Actions";
diff --git a/nixos/modules/config/system-path.nix b/nixos/modules/config/system-path.nix
index e14e4cf1314..f510b58842e 100644
--- a/nixos/modules/config/system-path.nix
+++ b/nixos/modules/config/system-path.nix
@@ -128,7 +128,7 @@ in
# !!! Hacky, should modularise.
postBuild =
''
- if [ -x $out/bin/update-mime-database -a -w $out/share/mime/packages ]; then
+ if [ -x $out/bin/update-mime-database -a -w $out/share/mime ]; then
XDG_DATA_DIRS=$out/share $out/bin/update-mime-database -V $out/share/mime > /dev/null
fi
diff --git a/nixos/modules/installer/tools/auto-upgrade.nix b/nixos/modules/installer/tools/auto-upgrade.nix
index e14653dc4eb..4ef5fa8bc1d 100644
--- a/nixos/modules/installer/tools/auto-upgrade.nix
+++ b/nixos/modules/installer/tools/auto-upgrade.nix
@@ -42,6 +42,17 @@ let cfg = config.system.autoUpgrade; in
'';
};
+ dates = mkOption {
+ default = "04:40";
+ type = types.str;
+ description = ''
+ Specification (in the format described by
+ systemd.time
+ 5) of the time at
+ which the update will occur.
+ '';
+ };
+
};
};
@@ -73,7 +84,7 @@ let cfg = config.system.autoUpgrade; in
${config.system.build.nixos-rebuild}/bin/nixos-rebuild switch ${toString cfg.flags}
'';
- startAt = mkIf cfg.enable "04:40";
+ startAt = optionalString cfg.enable cfg.dates;
};
};
diff --git a/nixos/modules/services/audio/mopidy.nix b/nixos/modules/services/audio/mopidy.nix
index a7a7e8ae688..9981b065f28 100644
--- a/nixos/modules/services/audio/mopidy.nix
+++ b/nixos/modules/services/audio/mopidy.nix
@@ -11,17 +11,8 @@ let
mopidyConf = writeText "mopidy.conf" cfg.configuration;
- mopidyLauncher = stdenv.mkDerivation {
- name = "mopidy-launcher";
- phases = [ "installPhase" ];
- buildInputs = [ makeWrapper python ];
- installPhase = ''
- mkdir -p $out/bin
- ln -s ${mopidy}/bin/mopidy $out/bin/mopidy
- wrapProgram $out/bin/mopidy \
- --prefix PYTHONPATH : \
- "${concatStringsSep ":" (map (p: "$(toPythonPath ${p})") cfg.extensionPackages)}"
- '';
+ mopidyEnv = python.buildEnv.override {
+ extraLibs = [ mopidy ] ++ cfg.extensionPackages;
};
in {
@@ -86,7 +77,7 @@ in {
description = "mopidy music player daemon";
preStart = "mkdir -p ${cfg.dataDir} && chown -R mopidy:mopidy ${cfg.dataDir}";
serviceConfig = {
- ExecStart = "${mopidyLauncher}/bin/mopidy --config ${concatStringsSep ":" ([mopidyConf] ++ cfg.extraConfigFiles)}";
+ ExecStart = "${mopidyEnv}/bin/mopidy --config ${concatStringsSep ":" ([mopidyConf] ++ cfg.extraConfigFiles)}";
User = "mopidy";
PermissionsStartOnly = true;
};
@@ -96,7 +87,7 @@ in {
description = "mopidy local files scanner";
preStart = "mkdir -p ${cfg.dataDir} && chown -R mopidy:mopidy ${cfg.dataDir}";
serviceConfig = {
- ExecStart = "${mopidyLauncher}/bin/mopidy --config ${concatStringsSep ":" ([mopidyConf] ++ cfg.extraConfigFiles)} local scan";
+ ExecStart = "${mopidyEnv}/bin/mopidy --config ${concatStringsSep ":" ([mopidyConf] ++ cfg.extraConfigFiles)} local scan";
User = "mopidy";
PermissionsStartOnly = true;
Type = "oneshot";
diff --git a/nixos/modules/services/cluster/fleet.nix b/nixos/modules/services/cluster/fleet.nix
index 04d95fbf186..78d4ea93c49 100644
--- a/nixos/modules/services/cluster/fleet.nix
+++ b/nixos/modules/services/cluster/fleet.nix
@@ -90,7 +90,7 @@ in {
extraConfig = mkOption {
type = types.attrsOf types.str;
- apply = mapAttrs' (n: v: nameValuePair ("ETCD_" + n) v);
+ apply = mapAttrs' (n: v: nameValuePair ("FLEET_" + n) v);
default = {};
example = literalExample ''
{
@@ -120,7 +120,7 @@ in {
FLEET_PUBLIC_IP = cfg.publicIp;
FLEET_ETCD_CAFILE = cfg.etcdCafile;
FLEET_ETCD_KEYFILE = cfg.etcdKeyfile;
- FEELT_ETCD_CERTFILE = cfg.etcdCertfile;
+ FLEET_ETCD_CERTFILE = cfg.etcdCertfile;
FLEET_METADATA = cfg.metadata;
} // cfg.extraConfig;
serviceConfig = {
diff --git a/nixos/modules/services/continuous-integration/jenkins/default.nix b/nixos/modules/services/continuous-integration/jenkins/default.nix
index 9bd511ad3ae..3b76ada72bb 100644
--- a/nixos/modules/services/continuous-integration/jenkins/default.nix
+++ b/nixos/modules/services/continuous-integration/jenkins/default.nix
@@ -48,11 +48,33 @@ in {
'';
};
+ host = mkOption {
+ default = "0.0.0.0";
+ example = "localhost";
+ type = types.str;
+ description = ''
+ Specifies the bind adress on which the jenkins HTTP interface listens.
+ The default is the wildcard adress.
+ '';
+ };
+
port = mkOption {
default = 8080;
type = types.int;
description = ''
- Specifies port number on which the jenkins HTTP interface listens. The default is 8080.
+ Specifies port number on which the jenkins HTTP interface listens.
+ The default is 8080.
+ '';
+ };
+
+ prefix = mkOption {
+ default = "";
+ example = "/jenkins";
+ type = types.str;
+ description = ''
+ Specifies a urlPrefix to use with jenkins.
+ If the example /jenkins is given, the jenkins server will be
+ accessible using localhost:8080/jenkins.
'';
};
@@ -80,7 +102,7 @@ in {
extraOptions = mkOption {
type = types.listOf types.str;
default = [ ];
- example = [ "--debug=9" "--httpListenAddress=localhost" ];
+ example = [ "--debug=9" ];
description = ''
Additional command line arguments to pass to Jenkins.
'';
@@ -134,15 +156,18 @@ in {
'';
script = ''
- ${pkgs.jdk}/bin/java -jar ${pkgs.jenkins} --httpPort=${toString cfg.port} ${concatStringsSep " " cfg.extraOptions}
+ ${pkgs.jdk}/bin/java -jar ${pkgs.jenkins} --httpListenAddress=${cfg.host} \
+ --httpPort=${toString cfg.port} \
+ --prefix=${cfg.prefix} \
+ ${concatStringsSep " " cfg.extraOptions}
'';
postStart = ''
- until ${pkgs.curl}/bin/curl -s -L localhost:${toString cfg.port} ; do
+ until ${pkgs.curl}/bin/curl -s -L ${cfg.host}:${toString cfg.port}${cfg.prefix} ; do
sleep 10
done
while true ; do
- index=`${pkgs.curl}/bin/curl -s -L localhost:${toString cfg.port}`
+ index=`${pkgs.curl}/bin/curl -s -L ${cfg.host}:${toString cfg.port}${cfg.prefix}`
if [[ !("$index" =~ 'Please wait while Jenkins is restarting' ||
"$index" =~ 'Please wait while Jenkins is getting ready to work') ]]; then
exit 0
diff --git a/nixos/modules/services/continuous-integration/jenkins/job-builder.nix b/nixos/modules/services/continuous-integration/jenkins/job-builder.nix
index ec15a6a3d70..1f65db4ce95 100644
--- a/nixos/modules/services/continuous-integration/jenkins/job-builder.nix
+++ b/nixos/modules/services/continuous-integration/jenkins/job-builder.nix
@@ -144,7 +144,7 @@ in {
done
echo "Asking Jenkins to reload config"
- curl --silent -X POST http://localhost:${toString jenkinsCfg.port}/reload
+ curl --silent -X POST http://${jenkinsCfg.host}:${toString jenkinsCfg.port}${jenkinsCfg.prefix}/reload
'';
serviceConfig = {
User = jenkinsCfg.user;
diff --git a/nixos/modules/services/hardware/udisks2.nix b/nixos/modules/services/hardware/udisks2.nix
index fd6d8886348..ad5dc8e8a49 100644
--- a/nixos/modules/services/hardware/udisks2.nix
+++ b/nixos/modules/services/hardware/udisks2.nix
@@ -39,7 +39,7 @@ with lib;
mkdir -m 0755 -p /var/lib/udisks2
'';
- #services.udev.packages = [ pkgs.udisks2 ];
+ services.udev.packages = [ pkgs.udisks2 ];
systemd.services.udisks2 = {
description = "Udisks2 service";
diff --git a/nixos/modules/services/mail/dovecot.nix b/nixos/modules/services/mail/dovecot.nix
index fca0d2a7f61..7ca4faae5d4 100644
--- a/nixos/modules/services/mail/dovecot.nix
+++ b/nixos/modules/services/mail/dovecot.nix
@@ -3,137 +3,178 @@
with lib;
let
-
cfg = config.services.dovecot2;
+ dovecotPkg = cfg.package;
- dovecotConf =
- ''
- base_dir = /var/run/dovecot2/
+ baseDir = "/run/dovecot2";
+ stateDir = "/var/lib/dovecot";
- protocols = ${optionalString cfg.enableImap "imap"} ${optionalString cfg.enablePop3 "pop3"} ${optionalString cfg.enableLmtp "lmtp"}
+ protocols = concatStrings [
+ (optionalString cfg.enableImap "imap")
+ (optionalString cfg.enablePop3 "pop3")
+ (optionalString cfg.enableLmtp "lmtp")
+ ];
+
+ dovecotConf = concatStrings [
''
- + (if cfg.sslServerCert!="" then
+ base_dir = ${baseDir}
+ protocols = ${protocols}
''
- ssl_cert = <${cfg.sslServerCert}
- ssl_key = <${cfg.sslServerKey}
- ssl_ca = <${cfg.sslCACert}
- disable_plaintext_auth = yes
- '' else ''
+
+ (if isNull cfg.sslServerCert then ''
ssl = no
disable_plaintext_auth = no
+ '' else ''
+ ssl_cert = <${cfg.sslServerCert}
+ ssl_key = <${cfg.sslServerKey}
+ ${optionalString (!(isNull cfg.sslCACert)) ("ssl_ca = <" + cfg.sslCACert)}
+ disable_plaintext_auth = yes
'')
- + ''
+ ''
default_internal_user = ${cfg.user}
mail_location = ${cfg.mailLocation}
maildir_copy_with_hardlinks = yes
+ pop3_uidl_format = %08Xv%08Xu
auth_mechanisms = plain login
+
service auth {
user = root
}
+ ''
+
+ (optionalString cfg.enablePAM ''
userdb {
driver = passwd
}
+
passdb {
driver = pam
args = ${optionalString cfg.showPAMFailure "failure_show_msg=yes"} dovecot2
}
+ '')
- pop3_uidl_format = %08Xv%08Xu
- '' + cfg.extraConfig;
+ cfg.extraConfig
+ ];
+
+ modulesDir = pkgs.symlinkJoin "dovecot-modules"
+ (map (module: "${module}/lib/dovecot") cfg.modules);
in
-
{
- ###### interface
+ options.services.dovecot2 = {
+ enable = mkEnableOption "Dovecot 2.x POP3/IMAP server";
- options = {
-
- services.dovecot2 = {
-
- enable = mkOption {
- default = false;
- description = "Whether to enable the Dovecot 2.x POP3/IMAP server.";
- };
-
- enablePop3 = mkOption {
- default = true;
- description = "Start the POP3 listener (when Dovecot is enabled).";
- };
-
- enableImap = mkOption {
- default = true;
- description = "Start the IMAP listener (when Dovecot is enabled).";
- };
-
- enableLmtp = mkOption {
- default = false;
- description = "Start the LMTP listener (when Dovecot is enabled).";
- };
-
- user = mkOption {
- default = "dovecot2";
- description = "Dovecot user name.";
- };
-
- group = mkOption {
- default = "dovecot2";
- description = "Dovecot group name.";
- };
-
- extraConfig = mkOption {
- default = "";
- example = "mail_debug = yes";
- description = "Additional entries to put verbatim into Dovecot's config file.";
- };
-
- configFile = mkOption {
- default = null;
- description = "Config file used for the whole dovecot configuration.";
- apply = v: if v != null then v else pkgs.writeText "dovecot.conf" dovecotConf;
- };
-
- mailLocation = mkOption {
- default = "maildir:/var/spool/mail/%u"; /* Same as inbox, as postfix */
- example = "maildir:~/mail:INBOX=/var/spool/mail/%u";
- description = ''
- Location that dovecot will use for mail folders. Dovecot mail_location option.
- '';
- };
-
- sslServerCert = mkOption {
- default = "";
- description = "Server certificate";
- };
-
- sslCACert = mkOption {
- default = "";
- description = "CA certificate used by the server certificate.";
- };
-
- sslServerKey = mkOption {
- default = "";
- description = "Server key.";
- };
-
- showPAMFailure = mkOption {
- default = false;
- description = "Show the PAM failure message on authentication error (useful for OTPW).";
- };
+ enablePop3 = mkOption {
+ type = types.bool;
+ default = true;
+ description = "Start the POP3 listener (when Dovecot is enabled).";
};
+ enableImap = mkOption {
+ type = types.bool;
+ default = true;
+ description = "Start the IMAP listener (when Dovecot is enabled).";
+ };
+
+ enableLmtp = mkOption {
+ type = types.bool;
+ default = false;
+ description = "Start the LMTP listener (when Dovecot is enabled).";
+ };
+
+ package = mkOption {
+ type = types.package;
+ default = pkgs.dovecot22;
+ description = "Dovecot package to use.";
+ };
+
+ user = mkOption {
+ type = types.str;
+ default = "dovecot2";
+ description = "Dovecot user name.";
+ };
+
+ group = mkOption {
+ type = types.str;
+ default = "dovecot2";
+ description = "Dovecot group name.";
+ };
+
+ extraConfig = mkOption {
+ type = types.str;
+ default = "";
+ example = "mail_debug = yes";
+ description = "Additional entries to put verbatim into Dovecot's config file.";
+ };
+
+ configFile = mkOption {
+ type = types.nullOr types.str;
+ default = null;
+ description = "Config file used for the whole dovecot configuration.";
+ apply = v: if v != null then v else pkgs.writeText "dovecot.conf" dovecotConf;
+ };
+
+ mailLocation = mkOption {
+ type = types.str;
+ default = "maildir:/var/spool/mail/%u"; /* Same as inbox, as postfix */
+ example = "maildir:~/mail:INBOX=/var/spool/mail/%u";
+ description = ''
+ Location that dovecot will use for mail folders. Dovecot mail_location option.
+ '';
+ };
+
+ modules = mkOption {
+ type = types.listOf types.package;
+ default = [];
+ example = [ pkgs.dovecot_pigeonhole ];
+ description = ''
+ Symlinks the contents of lib/dovecot of every given package into
+ /var/lib/dovecot/modules. This will make the given modules available
+ if a dovecot package with the module_dir patch applied (like
+ pkgs.dovecot22, the default) is being used.
+ '';
+ };
+
+ sslCACert = mkOption {
+ type = types.nullOr types.str;
+ default = null;
+ description = "Path to the server's CA certificate key.";
+ };
+
+ sslServerCert = mkOption {
+ type = types.nullOr types.str;
+ default = null;
+ description = "Path to the server's public key.";
+ };
+
+ sslServerKey = mkOption {
+ type = types.nullOr types.str;
+ default = null;
+ description = "Path to the server's private key.";
+ };
+
+ enablePAM = mkOption {
+ type = types.bool;
+ default = true;
+ description = "Wether to create a own Dovecot PAM service and configure PAM user logins.";
+ };
+
+ showPAMFailure = mkOption {
+ type = types.bool;
+ default = false;
+ description = "Show the PAM failure message on authentication error (useful for OTPW).";
+ };
};
- ###### implementation
+ config = mkIf cfg.enable {
- config = mkIf config.services.dovecot2.enable {
-
- security.pam.services.dovecot2 = {};
+ security.pam.services.dovecot2 = mkIf cfg.enablePAM {};
users.extraUsers = [
{ name = cfg.user;
@@ -148,36 +189,47 @@ in
}
];
- users.extraGroups = singleton
- { name = cfg.group;
- gid = config.ids.gids.dovecot2;
+ users.extraGroups = singleton {
+ name = cfg.group;
+ gid = config.ids.gids.dovecot2;
+ };
+
+ systemd.services.dovecot2 = {
+ description = "Dovecot IMAP/POP3 server";
+
+ after = [ "keys.target" "network.target" ];
+ wants = [ "keys.target" ];
+ wantedBy = [ "multi-user.target" ];
+
+ preStart = ''
+ mkdir -p "${baseDir}/login"
+ chown -R ${cfg.user}:${cfg.group} "${baseDir}"
+ rm -f "${stateDir}/modules"
+ ln -s "${modulesDir}" "${stateDir}/modules"
+ '';
+
+ serviceConfig = {
+ ExecStart = "${dovecotPkg}/sbin/dovecot -F -c ${cfg.configFile}";
+ Restart = "on-failure";
+ RestartSec = "1s";
+ StartLimitInterval = "1min";
};
+ };
- systemd.services.dovecot2 =
- { description = "Dovecot IMAP/POP3 server";
+ environment.systemPackages = [ dovecotPkg ];
- after = [ "network.target" ];
- wantedBy = [ "multi-user.target" ];
-
- preStart =
- ''
- ${pkgs.coreutils}/bin/mkdir -p /var/run/dovecot2 /var/run/dovecot2/login
- ${pkgs.coreutils}/bin/chown -R ${cfg.user}:${cfg.group} /var/run/dovecot2
- '';
-
- serviceConfig = {
- ExecStart = "${pkgs.dovecot}/sbin/dovecot -F -c ${cfg.configFile}";
- Restart = "on-failure";
- RestartSec = "1s";
- StartLimitInterval = "1min";
- };
-
- };
-
- environment.systemPackages = [ pkgs.dovecot ];
-
- assertions = [{ assertion = cfg.enablePop3 || cfg.enableImap;
- message = "dovecot needs at least one of the IMAP or POP3 listeners enabled";}];
+ assertions = [
+ { assertion = cfg.enablePop3 || cfg.enableImap;
+ message = "dovecot needs at least one of the IMAP or POP3 listeners enabled";
+ }
+ { assertion = isNull cfg.sslServerCert == isNull cfg.sslServerKey
+ && (!(isNull cfg.sslCACert) -> !(isNull cfg.sslServerCert || isNull cfg.sslServerKey));
+ message = "dovecot needs both sslServerCert and sslServerKey defined for working crypto";
+ }
+ { assertion = cfg.showPAMFailure -> cfg.enablePAM;
+ message = "dovecot is configured with showPAMFailure while enablePAM is disabled";
+ }
+ ];
};
diff --git a/nixos/modules/services/networking/avahi-daemon.nix b/nixos/modules/services/networking/avahi-daemon.nix
index 284b2b84e6c..8b178ee9398 100644
--- a/nixos/modules/services/networking/avahi-daemon.nix
+++ b/nixos/modules/services/networking/avahi-daemon.nix
@@ -1,5 +1,5 @@
# Avahi daemon.
-{ config, lib, pkgs, ... }:
+{ config, lib, utils, pkgs, ... }:
with lib;
@@ -7,7 +7,9 @@ let
cfg = config.services.avahi;
- inherit (pkgs) avahi;
+ # We must escape interfaces due to the systemd interpretation
+ subsystemDevice = interface:
+ "sys-subsystem-net-devices-${utils.escapeSystemdPath interface}.device";
avahiDaemonConf = with cfg; pkgs.writeText "avahi-daemon.conf" ''
[server]
@@ -21,12 +23,18 @@ let
browse-domains=${concatStringsSep ", " browseDomains}
use-ipv4=${if ipv4 then "yes" else "no"}
use-ipv6=${if ipv6 then "yes" else "no"}
+ ${optionalString (interfaces!=null) "allow-interfaces=${concatStringsSep "," interfaces}"}
[wide-area]
enable-wide-area=${if wideArea then "yes" else "no"}
[publish]
- disable-publishing=${if publishing then "no" else "yes"}
+ disable-publishing=${if publish.enable then "no" else "yes"}
+ disable-user-service-publishing=${if publish.userServices then "no" else "yes"}
+ publish-addresses=${if publish.userServices || publish.addresses then "yes" else "no"}
+ publish-hinfo=${if publish.hinfo then "yes" else "no"}
+ publish-workstation=${if publish.workstation then "yes" else "no"}
+ publish-domain=${if publish.domain then "yes" else "no"}
'';
in
@@ -74,14 +82,55 @@ in
description = ''Whether to use IPv6'';
};
+ interfaces = mkOption {
+ type = types.nullOr (types.listOf types.str);
+ default = null;
+ description = ''
+ List of network interfaces that should be used by the avahi-daemon.
+ Other interfaces will be ignored. If null all local interfaces
+ except loopback and point-to-point will be used.
+ '';
+ };
+
wideArea = mkOption {
default = true;
description = ''Whether to enable wide-area service discovery.'';
};
- publishing = mkOption {
- default = true;
- description = ''Whether to allow publishing.'';
+ publish = {
+ enable = mkOption {
+ default = false;
+ description = ''Whether to allow publishing in general.'';
+ };
+
+ userServices = mkOption {
+ default = false;
+ description = ''Whether to publish user services. Will set addresses=true.'';
+ };
+
+ addresses = mkOption {
+ default = false;
+ description = ''Whether to register mDNS address records for all local IP addresses.'';
+ };
+
+ hinfo = mkOption {
+ default = false;
+ description = ''
+ Whether to register an mDNS HINFO record which contains information about the
+ local operating system and CPU.
+ '';
+ };
+
+ workstation = mkOption {
+ default = false;
+ description = ''Whether to register a service of type "_workstation._tcp" on the local LAN.'';
+ };
+
+ domain = mkOption {
+ default = false;
+ description = ''Whether to announce the locally used domain name for browsing by other hosts.'';
+ };
+
};
nssmdns = mkOption {
@@ -118,29 +167,36 @@ in
system.nssModules = optional cfg.nssmdns pkgs.nssmdns;
- environment.systemPackages = [ avahi ];
+ environment.systemPackages = [ pkgs.avahi ];
- jobs.avahi_daemon =
- { name = "avahi-daemon";
+ systemd.services.avahi-daemon =
+ let
+ deps = optionals (cfg.interfaces!=null) (map subsystemDevice cfg.interfaces);
+ in
+ { description = "Avahi daemon";
+ wantedBy = [ "ip-up.target" ];
+ bindsTo = deps;
+ after = deps;
+ before = [ "ip-up.target" ];
+ # Receive restart event after resume
+ partOf = [ "post-resume.target" ];
- startOn = "ip-up";
+ path = [ pkgs.coreutils pkgs.avahi ];
+
+ preStart = "mkdir -p /var/run/avahi-daemon";
script =
''
- export PATH="${avahi}/bin:${avahi}/sbin:$PATH"
-
# Make NSS modules visible so that `avahi_nss_support ()' can
# return a sensible value.
export LD_LIBRARY_PATH="${config.system.nssModules.path}"
- mkdir -p /var/run/avahi-daemon
-
- exec ${avahi}/sbin/avahi-daemon --syslog -f "${avahiDaemonConf}"
+ exec ${pkgs.avahi}/sbin/avahi-daemon --syslog -f "${avahiDaemonConf}"
'';
};
services.dbus.enable = true;
- services.dbus.packages = [avahi];
+ services.dbus.packages = [ pkgs.avahi ];
# Enabling Avahi without exposing it in the firewall doesn't make
# sense.
diff --git a/nixos/modules/services/networking/murmur.nix b/nixos/modules/services/networking/murmur.nix
index 4f91a494747..1cc19a2c9e0 100644
--- a/nixos/modules/services/networking/murmur.nix
+++ b/nixos/modules/services/networking/murmur.nix
@@ -39,6 +39,9 @@ let
certrequired=${if cfg.clientCertRequired then "true" else "false"}
${if cfg.sslCert == "" then "" else "sslCert="+cfg.sslCert}
${if cfg.sslKey == "" then "" else "sslKey="+cfg.sslKey}
+ ${if cfg.sslCa == "" then "" else "sslCA="+cfg.sslCa}
+
+ ${cfg.extraConfig}
'';
in
{
@@ -219,6 +222,18 @@ in
default = "";
description = "Path to your SSL key.";
};
+
+ sslCa = mkOption {
+ type = types.str;
+ default = "";
+ description = "Path to your SSL CA certificate.";
+ };
+
+ extraConfig = mkOption {
+ type = types.str;
+ default = "";
+ description = "Extra configuration to put into mumur.ini.";
+ };
};
};
diff --git a/nixos/modules/services/printing/cupsd.nix b/nixos/modules/services/printing/cupsd.nix
index 69c76cf97cf..0fe25b66da0 100644
--- a/nixos/modules/services/printing/cupsd.nix
+++ b/nixos/modules/services/printing/cupsd.nix
@@ -247,6 +247,8 @@ in
wantedBy = [ "multi-user.target" ];
wants = [ "cups.service" "avahi-daemon.service" ];
+ bindsTo = [ "cups.service" "avahi-daemon.service" ];
+ partOf = [ "cups.service" "avahi-daemon.service" ];
after = [ "cups.service" "avahi-daemon.service" ];
path = [ cups ];
diff --git a/nixos/modules/services/x11/desktop-managers/gnome3.nix b/nixos/modules/services/x11/desktop-managers/gnome3.nix
index 886a6c88401..c1e14e45d75 100644
--- a/nixos/modules/services/x11/desktop-managers/gnome3.nix
+++ b/nixos/modules/services/x11/desktop-managers/gnome3.nix
@@ -140,9 +140,6 @@ in {
# Update user dirs as described in http://freedesktop.org/wiki/Software/xdg-user-dirs/
${pkgs.xdg-user-dirs}/bin/xdg-user-dirs-update
- # Find the mouse
- export XCURSOR_PATH=~/.icons:${config.system.path}/share/icons
-
${gnome3.gnome_session}/bin/gnome-session&
waitPID=$!
'';
diff --git a/nixos/modules/services/x11/desktop-managers/kde5.nix b/nixos/modules/services/x11/desktop-managers/kde5.nix
index 933efa08fa3..2aeb4f67d77 100644
--- a/nixos/modules/services/x11/desktop-managers/kde5.nix
+++ b/nixos/modules/services/x11/desktop-managers/kde5.nix
@@ -135,7 +135,7 @@ in
pkgs.gst_all.gstPluginsUgly
pkgs.gst_all.gstPluginsBad
pkgs.gst_all.gstFfmpeg # for mp3 playback
- pkgs.phonon_qt5_backend_gstreamer
+ pkgs.qt55.phonon-backend-gstreamer
pkgs.gst_all_1.gstreamer
pkgs.gst_all_1.gst-plugins-base
pkgs.gst_all_1.gst-plugins-good
@@ -147,7 +147,7 @@ in
++ lib.optionals cfg.phonon.vlc.enable
[
pkgs.phonon_qt5_backend_vlc
- pkgs.phonon_backend_vlc
+ pkgs.qt55.phonon-backend-vlc
];
environment.pathsToLink = [ "/share" ];
diff --git a/nixos/modules/services/x11/xserver.nix b/nixos/modules/services/x11/xserver.nix
index 799a7329813..d637a753bb2 100644
--- a/nixos/modules/services/x11/xserver.nix
+++ b/nixos/modules/services/x11/xserver.nix
@@ -409,6 +409,16 @@ in
if possible.
'';
};
+
+ enableCtrlAltBackspace = mkOption {
+ type = types.bool;
+ default = false;
+ description = ''
+ Whether to enable the DontZap option, which binds Ctrl+Alt+Backspace
+ to forcefully kill X. This can lead to data loss and is disabled
+ by default.
+ '';
+ };
};
};
@@ -534,6 +544,7 @@ in
''
Section "ServerFlags"
Option "AllowMouseOpenFail" "on"
+ Option "DontZap" "${if cfg.enableCtrlAltBackspace then "off" else "on"}"
${cfg.serverFlagsSection}
EndSection
diff --git a/nixos/modules/system/boot/loader/grub/grub.nix b/nixos/modules/system/boot/loader/grub/grub.nix
index 87dbbd7cd51..47605e3685c 100644
--- a/nixos/modules/system/boot/loader/grub/grub.nix
+++ b/nixos/modules/system/boot/loader/grub/grub.nix
@@ -10,8 +10,11 @@ let
realGrub = if cfg.version == 1 then pkgs.grub
else if cfg.zfsSupport then pkgs.grub2.override { zfsSupport = true; }
- else if cfg.enableTrustedBoot then pkgs.trustedGrub
- else pkgs.grub2;
+ else if cfg.trustedBoot.enable
+ then if cfg.trustedBoot.isHPLaptop
+ then pkgs.trustedGrub-for-HP
+ else pkgs.trustedGrub
+ else pkgs.grub2;
grub =
# Don't include GRUB if we're only generating a GRUB menu (e.g.,
@@ -369,24 +372,37 @@ in
'';
};
- enableTrustedBoot = mkOption {
- default = false;
- type = types.bool;
- description = ''
- Enable trusted boot. GRUB will measure all critical components during
- the boot process to offer TCG (TPM) support.
- '';
- };
+ trustedBoot = {
+
+ enable = mkOption {
+ default = false;
+ type = types.bool;
+ description = ''
+ Enable trusted boot. GRUB will measure all critical components during
+ the boot process to offer TCG (TPM) support.
+ '';
+ };
+
+ systemHasTPM = mkOption {
+ default = "";
+ example = "YES_TPM_is_activated";
+ type = types.string;
+ description = ''
+ Assertion that the target system has an activated TPM. It is a safety
+ check before allowing the activation of 'trustedBoot.enable'. TrustedBoot
+ WILL FAIL TO BOOT YOUR SYSTEM if no TPM is available.
+ '';
+ };
+
+ isHPLaptop = mkOption {
+ default = false;
+ type = types.bool;
+ description = ''
+ Use a special version of TrustedGRUB that is needed by some HP laptops
+ and works only for the HP laptops.
+ '';
+ };
- systemHasTPM = mkOption {
- default = "";
- example = "YES_TPM_is_activated";
- type = types.string;
- description = ''
- Assertion that the target system has an activated TPM. It is a safety
- check before allowing the activation of 'enableTrustedBoot'. TrustedBoot
- WILL FAIL TO BOOT YOUR SYSTEM if no TPM is available.
- '';
};
};
@@ -452,19 +468,19 @@ in
message = "You cannot have duplicated devices in mirroredBoots";
}
{
- assertion = !cfg.enableTrustedBoot || cfg.version == 2;
+ assertion = !cfg.trustedBoot.enable || cfg.version == 2;
message = "Trusted GRUB is only available for GRUB 2";
}
{
- assertion = !cfg.efiSupport || !cfg.enableTrustedBoot;
+ assertion = !cfg.efiSupport || !cfg.trustedBoot.enable;
message = "Trusted GRUB does not have EFI support";
}
{
- assertion = !cfg.zfsSupport || !cfg.enableTrustedBoot;
+ assertion = !cfg.zfsSupport || !cfg.trustedBoot.enable;
message = "Trusted GRUB does not have ZFS support";
}
{
- assertion = !cfg.enableTrustedBoot || cfg.systemHasTPM == "YES_TPM_is_activated";
+ assertion = !cfg.trustedBoot.enable || cfg.trustedBoot.systemHasTPM == "YES_TPM_is_activated";
message = "Trusted GRUB can break the system! Confirm that the system has an activated TPM by setting 'systemHasTPM'.";
}
] ++ flip concatMap cfg.mirroredBoots (args: [
diff --git a/nixos/modules/tasks/filesystems/zfs.nix b/nixos/modules/tasks/filesystems/zfs.nix
index 675bd3d232a..dedd3f5ca45 100644
--- a/nixos/modules/tasks/filesystems/zfs.nix
+++ b/nixos/modules/tasks/filesystems/zfs.nix
@@ -214,7 +214,7 @@ in
done
''] ++ (map (pool: ''
echo "importing root ZFS pool \"${pool}\"..."
- zpool import -N $ZFS_FORCE "${pool}"
+ zpool import -d /dev/disk/by-id -N $ZFS_FORCE "${pool}"
'') rootPools));
};
@@ -255,7 +255,7 @@ in
};
script = ''
zpool_cmd="${zfsUserPkg}/sbin/zpool"
- ("$zpool_cmd" list "${pool}" >/dev/null) || "$zpool_cmd" import -N ${optionalString cfgZfs.forceImportAll "-f"} "${pool}"
+ ("$zpool_cmd" list "${pool}" >/dev/null) || "$zpool_cmd" import -d /dev/disk/by-id -N ${optionalString cfgZfs.forceImportAll "-f"} "${pool}"
'';
};
in listToAttrs (map createImportService dataPools) // {
diff --git a/nixos/modules/virtualisation/azure-agent.nix b/nixos/modules/virtualisation/azure-agent.nix
index e657cc51939..ef4e3e1e48d 100644
--- a/nixos/modules/virtualisation/azure-agent.nix
+++ b/nixos/modules/virtualisation/azure-agent.nix
@@ -156,6 +156,12 @@ in
after = [ "ip-up.target" ];
wants = [ "ip-up.target" ];
+ environment = {
+ GIT_SSL_CAINFO = "/etc/ssl/certs/ca-certificates.crt";
+ OPENSSL_X509_CERT_FILE = "/etc/ssl/certs/ca-certificates.crt";
+ SSL_CERT_FILE = "/etc/ssl/certs/ca-certificates.crt";
+ };
+
path = [ pkgs.e2fsprogs ];
description = "Windows Azure Agent Service";
unitConfig.ConditionPathExists = "/etc/waagent.conf";
diff --git a/nixos/release-combined.nix b/nixos/release-combined.nix
index 9a2a77b3155..06890b458ef 100644
--- a/nixos/release-combined.nix
+++ b/nixos/release-combined.nix
@@ -71,6 +71,7 @@ in rec {
(all nixos.tests.misc)
(all nixos.tests.nat.firewall)
(all nixos.tests.nat.standalone)
+ (all nixos.tests.networking.scripted.loopback)
(all nixos.tests.networking.scripted.static)
(all nixos.tests.networking.scripted.dhcpSimple)
(all nixos.tests.networking.scripted.dhcpOneIf)
diff --git a/nixos/release.nix b/nixos/release.nix
index b5ac97b3b94..e1235c5fe28 100644
--- a/nixos/release.nix
+++ b/nixos/release.nix
@@ -256,6 +256,7 @@ in rec {
tests.mysqlReplication = callTest tests/mysql-replication.nix {};
tests.nat.firewall = callTest tests/nat.nix { withFirewall = true; };
tests.nat.standalone = callTest tests/nat.nix { withFirewall = false; };
+ tests.networking.networkd.loopback = callTest tests/networking.nix { networkd = true; test = "loopback"; };
tests.networking.networkd.static = callTest tests/networking.nix { networkd = true; test = "static"; };
tests.networking.networkd.dhcpSimple = callTest tests/networking.nix { networkd = true; test = "dhcpSimple"; };
tests.networking.networkd.dhcpOneIf = callTest tests/networking.nix { networkd = true; test = "dhcpOneIf"; };
@@ -264,6 +265,7 @@ in rec {
tests.networking.networkd.macvlan = callTest tests/networking.nix { networkd = true; test = "macvlan"; };
tests.networking.networkd.sit = callTest tests/networking.nix { networkd = true; test = "sit"; };
tests.networking.networkd.vlan = callTest tests/networking.nix { networkd = true; test = "vlan"; };
+ tests.networking.scripted.loopback = callTest tests/networking.nix { networkd = false; test = "loopback"; };
tests.networking.scripted.static = callTest tests/networking.nix { networkd = false; test = "static"; };
tests.networking.scripted.dhcpSimple = callTest tests/networking.nix { networkd = false; test = "dhcpSimple"; };
tests.networking.scripted.dhcpOneIf = callTest tests/networking.nix { networkd = false; test = "dhcpOneIf"; };
diff --git a/nixos/tests/networking.nix b/nixos/tests/networking.nix
index 6a7f63702c4..813d7c2bf51 100644
--- a/nixos/tests/networking.nix
+++ b/nixos/tests/networking.nix
@@ -31,6 +31,17 @@ import ./make-test.nix ({ pkgs, networkd, test, ... }:
};
};
testCases = {
+ loopback = {
+ name = "Loopback";
+ machine.networking.useNetworkd = networkd;
+ testScript = ''
+ startAll;
+ $machine->waitForUnit("network-interfaces.target");
+ $machine->waitForUnit("network.target");
+ $machine->succeed("ip addr show lo | grep -q 'inet 127.0.0.1/8 '");
+ $machine->succeed("ip addr show lo | grep -q 'inet6 ::1/128 '");
+ '';
+ };
static = {
name = "Static";
nodes.router = router;
diff --git a/pkgs/applications/audio/mopidy-mopify/default.nix b/pkgs/applications/audio/mopidy-mopify/default.nix
index 4792a02f341..b7a1fbf2f08 100644
--- a/pkgs/applications/audio/mopidy-mopify/default.nix
+++ b/pkgs/applications/audio/mopidy-mopify/default.nix
@@ -3,11 +3,11 @@
pythonPackages.buildPythonPackage rec {
name = "mopidy-mopify-${version}";
- version = "1.5.1";
+ version = "1.5.8";
src = fetchurl {
url = "https://github.com/dirkgroenen/mopidy-mopify/archive/${version}.tar.gz";
- sha256 = "0hhdss4i5436dj37pndxk81a4g3g8f6zqjyv04lhpqcww01290as";
+ sha256 = "1gq88i5hbyskwhqf51myndqgmrndkyy6gs022sc387fy3dwxmvn0";
};
propagatedBuildInputs = with pythonPackages; [ mopidy configobj ];
diff --git a/pkgs/applications/audio/mopidy-musicbox-webclient/default.nix b/pkgs/applications/audio/mopidy-musicbox-webclient/default.nix
new file mode 100644
index 00000000000..e13a1a978fd
--- /dev/null
+++ b/pkgs/applications/audio/mopidy-musicbox-webclient/default.nix
@@ -0,0 +1,24 @@
+{ stdenv, fetchFromGitHub, pythonPackages, mopidy }:
+
+pythonPackages.buildPythonPackage rec {
+ name = "mopidy-musicbox-webclient-${version}";
+
+ version = "2.0.0";
+
+ src = fetchFromGitHub {
+ owner = "pimusicbox";
+ repo = "mopidy-musicbox-webclient";
+ rev = "v${version}";
+ sha256 = "0gnw6jn55jr6q7bdp70mk3cm5f6jy8lm3s7ayfmisihhjbl3rnaq";
+ };
+
+ propagatedBuildInputs = [ mopidy ];
+
+ doCheck = false;
+
+ meta = with stdenv.lib; {
+ description = "Mopidy extension for playing music from SoundCloud";
+ license = licenses.mit;
+ maintainers = [ maintainers.spwhitt ];
+ };
+}
diff --git a/pkgs/applications/audio/mopidy-soundcloud/default.nix b/pkgs/applications/audio/mopidy-soundcloud/default.nix
new file mode 100644
index 00000000000..c10bb00909a
--- /dev/null
+++ b/pkgs/applications/audio/mopidy-soundcloud/default.nix
@@ -0,0 +1,24 @@
+{ stdenv, fetchFromGitHub, pythonPackages, mopidy }:
+
+pythonPackages.buildPythonPackage rec {
+ name = "mopidy-soundcloud-${version}";
+
+ version = "2.0.1";
+
+ src = fetchFromGitHub {
+ owner = "mopidy";
+ repo = "mopidy-soundcloud";
+ rev = "v${version}";
+ sha256 = "05yvjnivj26wjish7x1xrd9l5z8i14b610a8pbifnq3cq7y2m22r";
+ };
+
+ propagatedBuildInputs = [ mopidy ];
+
+ doCheck = false;
+
+ meta = with stdenv.lib; {
+ description = "Mopidy extension for playing music from SoundCloud";
+ license = licenses.mit;
+ maintainers = [ maintainers.spwhitt ];
+ };
+}
diff --git a/pkgs/applications/audio/mopidy-spotify-tunigo/default.nix b/pkgs/applications/audio/mopidy-spotify-tunigo/default.nix
new file mode 100644
index 00000000000..ab07b0f1f68
--- /dev/null
+++ b/pkgs/applications/audio/mopidy-spotify-tunigo/default.nix
@@ -0,0 +1,24 @@
+{ stdenv, fetchFromGitHub, pythonPackages, mopidy, mopidy-spotify }:
+
+pythonPackages.buildPythonPackage rec {
+ name = "mopidy-spotify-tunigo-${version}";
+
+ version = "0.2.1";
+
+ src = fetchFromGitHub {
+ owner = "trygveaa";
+ repo = "mopidy-spotify-tunigo";
+ rev = "v${version}";
+ sha256 = "0827wghbgrscncnshz30l97hgg0g5bsnm0ad8596zh7cai0ibss0";
+ };
+
+ propagatedBuildInputs = [ mopidy mopidy-spotify pythonPackages.tunigo ];
+
+ doCheck = false;
+
+ meta = with stdenv.lib; {
+ description = "Mopidy extension for providing the browse feature of Spotify";
+ license = licenses.asl20;
+ maintainers = [ maintainers.spwhitt ];
+ };
+}
diff --git a/pkgs/applications/audio/mopidy-youtube/default.nix b/pkgs/applications/audio/mopidy-youtube/default.nix
new file mode 100644
index 00000000000..efd1425e255
--- /dev/null
+++ b/pkgs/applications/audio/mopidy-youtube/default.nix
@@ -0,0 +1,24 @@
+{ stdenv, fetchFromGitHub, pythonPackages, mopidy }:
+
+pythonPackages.buildPythonPackage rec {
+ name = "mopidy-youtube-${version}";
+
+ version = "2.0.1";
+
+ src = fetchFromGitHub {
+ owner = "mopidy";
+ repo = "mopidy-youtube";
+ rev = "v${version}";
+ sha256 = "1si7j7m5kg0cxlhkw8s2mbnpmc9mb3l69n5sgklb1yv1s55iia6z";
+ };
+
+ propagatedBuildInputs = with pythonPackages; [ mopidy pafy ];
+
+ doCheck = false;
+
+ meta = with stdenv.lib; {
+ description = "Mopidy extension for playing music from YouTube";
+ license = licenses.asl20;
+ maintainers = [ maintainers.spwhitt ];
+ };
+}
diff --git a/pkgs/applications/audio/mopidy/default.nix b/pkgs/applications/audio/mopidy/default.nix
index 39889973430..91fc9d6f3fc 100644
--- a/pkgs/applications/audio/mopidy/default.nix
+++ b/pkgs/applications/audio/mopidy/default.nix
@@ -1,5 +1,5 @@
{ stdenv, fetchurl, pythonPackages, pygobject, gst_python
-, gst_plugins_good, gst_plugins_base
+, gst_plugins_good, gst_plugins_base, gst_plugins_ugly
}:
pythonPackages.buildPythonPackage rec {
@@ -13,7 +13,7 @@ pythonPackages.buildPythonPackage rec {
};
propagatedBuildInputs = with pythonPackages; [
- gst_python pygobject pykka tornado requests2 gst_plugins_base gst_plugins_good
+ gst_python pygobject pykka tornado requests2 gst_plugins_base gst_plugins_good gst_plugins_ugly
];
# There are no tests
diff --git a/pkgs/applications/audio/ncmpcpp/default.nix b/pkgs/applications/audio/ncmpcpp/default.nix
index e316df4a8c1..70cde4b0c70 100644
--- a/pkgs/applications/audio/ncmpcpp/default.nix
+++ b/pkgs/applications/audio/ncmpcpp/default.nix
@@ -1,5 +1,5 @@
{ stdenv, fetchurl, boost, mpd_clientlib, ncurses, pkgconfig, readline
-, libiconv
+, libiconv, icu
, outputsSupport ? false # outputs screen
, visualizerSupport ? false, fftw ? null # visualizer screen
, clockSupport ? false # clock screen
@@ -15,11 +15,11 @@ assert taglibSupport -> (taglib != null);
with stdenv.lib;
stdenv.mkDerivation rec {
name = "ncmpcpp-${version}";
- version = "0.6.7";
+ version = "0.7";
src = fetchurl {
url = "http://ncmpcpp.rybczak.net/stable/${name}.tar.bz2";
- sha256 = "0yr1ib14qkgbsv839anpzkfbwkm6gg8wv4bf98ar7q5l2p2pv008";
+ sha256 = "0xzz0g9whqjcjaaqmsw5ph1zvpi2j5v3i5k73g7916rca3q4z4jh";
};
configureFlags = [ "BOOST_LIB_SUFFIX=" ]
@@ -32,7 +32,7 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [ pkgconfig ];
- buildInputs = [ boost mpd_clientlib ncurses readline libiconv ]
+ buildInputs = [ boost mpd_clientlib ncurses readline libiconv icu ]
++ optional curlSupport curl
++ optional visualizerSupport fftw
++ optional taglibSupport taglib;
diff --git a/pkgs/applications/audio/spotify/default.nix b/pkgs/applications/audio/spotify/default.nix
index 2868d760973..f53154217a8 100644
--- a/pkgs/applications/audio/spotify/default.nix
+++ b/pkgs/applications/audio/spotify/default.nix
@@ -1,7 +1,7 @@
{ fetchurl, stdenv, dpkg, xorg, qt4, alsaLib, makeWrapper, openssl, freetype
, glib, pango, cairo, atk, gdk_pixbuf, gtk, cups, nspr, nss, libpng, GConf
, libgcrypt, chromium, udev, fontconfig
-, dbus, expat }:
+, dbus, expat, ffmpeg_0_10 }:
assert stdenv.system == "x86_64-linux";
@@ -15,6 +15,7 @@ let
cups
dbus
expat
+ ffmpeg_0_10
fontconfig
freetype
GConf
diff --git a/pkgs/applications/audio/tomahawk/default.nix b/pkgs/applications/audio/tomahawk/default.nix
index 32d5f1aa13e..61cb6b9896e 100644
--- a/pkgs/applications/audio/tomahawk/default.nix
+++ b/pkgs/applications/audio/tomahawk/default.nix
@@ -11,9 +11,7 @@ assert enableXMPP -> libjreen != null;
assert enableKDE -> kdelibs != null;
assert enableTelepathy -> telepathy_qt != null;
-let
- quazipQt4 = quazip.override { qt = qt4; };
-in stdenv.mkDerivation rec {
+stdenv.mkDerivation rec {
name = "tomahawk-${version}";
version = "0.8.4";
@@ -29,7 +27,7 @@ in stdenv.mkDerivation rec {
buildInputs = [
cmake pkgconfig attica boost gnutls libechonest liblastfm lucenepp phonon
- qca2 qjson qt4 qtkeychain quazipQt4 sparsehash taglib websocketpp
+ qca2 qjson qt4 qtkeychain quazip sparsehash taglib websocketpp
makeWrapper
] ++ stdenv.lib.optional enableXMPP libjreen
++ stdenv.lib.optional enableKDE kdelibs
diff --git a/pkgs/applications/editors/emacs-modes/elpa-packages.json b/pkgs/applications/editors/emacs-modes/elpa-packages.json
index 0572dca56be..a3813435f63 100644
--- a/pkgs/applications/editors/emacs-modes/elpa-packages.json
+++ b/pkgs/applications/editors/emacs-modes/elpa-packages.json
@@ -201,10 +201,10 @@
"tiny": {
"fetch": {
"tag": "fetchurl",
- "url": "http://elpa.gnu.org/packages/tiny-0.1.tar",
- "sha256": "04iyidzjgnm4ka575wxqdak19h8j4dlni2ahf0bkq1q9by79xq1q"
+ "url": "http://elpa.gnu.org/packages/tiny-0.1.1.tar",
+ "sha256": "1nhg8375qdn457wj0xmfaj72s87xbabk2w1nl6q7rjvwxv08yyn7"
},
- "version": "0.1",
+ "version": "0.1.1",
"deps": []
},
"coffee-mode": {
@@ -246,10 +246,10 @@
"org": {
"fetch": {
"tag": "fetchurl",
- "url": "http://elpa.gnu.org/packages/org-20151123.tar",
- "sha256": "13ybzjg6k61paldfln6isc6149hvilwsgsnhyirig42bz1z0vjbb"
+ "url": "http://elpa.gnu.org/packages/org-20151214.tar",
+ "sha256": "15m9l7p7xfmcrxrcsxbvpp8bq5ajcapknvqblhmk77j7ca3jffi1"
},
- "version": "20151123",
+ "version": "20151214",
"deps": []
},
"bug-hunter": {
@@ -594,10 +594,10 @@
"hydra": {
"fetch": {
"tag": "fetchurl",
- "url": "http://elpa.gnu.org/packages/hydra-0.13.3.tar",
- "sha256": "1il0maxkxm2nxwz6y6v85zhf6a8f52gfq51h1filcnlzg10b5arm"
+ "url": "http://elpa.gnu.org/packages/hydra-0.13.4.tar",
+ "sha256": "11msy6n075iv00c2r9f85bzx3srnj403rhlga1rgsl6vsryf21fj"
},
- "version": "0.13.3",
+ "version": "0.13.4",
"deps": [
"cl-lib"
]
@@ -734,10 +734,10 @@
"ggtags": {
"fetch": {
"tag": "fetchurl",
- "url": "http://elpa.gnu.org/packages/ggtags-0.8.10.el",
- "sha256": "0bigf87idd2rh40akyjiy1qvym6y3hvvx6khyb233b231s400aj9"
+ "url": "http://elpa.gnu.org/packages/ggtags-0.8.11.el",
+ "sha256": "1q2bp2b7lylf7n6c1psfn5swyjg0y78ykm0ak2kd84pbyhqak2mq"
},
- "version": "0.8.10",
+ "version": "0.8.11",
"deps": [
"cl-lib",
"emacs"
@@ -953,10 +953,10 @@
"swiper": {
"fetch": {
"tag": "fetchurl",
- "url": "http://elpa.gnu.org/packages/swiper-0.5.1.tar",
- "sha256": "06kd6r90fnjz3lapm52pgsx4dhnd95mkzq9y4khkzqny59h0vmm6"
+ "url": "http://elpa.gnu.org/packages/swiper-0.7.0.tar",
+ "sha256": "1bzzx41zcf3yk6r6csqzlffwwrw9gyk8ab026r55l6416b6rcynx"
},
- "version": "0.5.1",
+ "version": "0.7.0",
"deps": [
"emacs"
]
@@ -1018,10 +1018,10 @@
"transcribe": {
"fetch": {
"tag": "fetchurl",
- "url": "http://elpa.gnu.org/packages/transcribe-0.5.0.el",
- "sha256": "1wxfv96sjcxins8cyqijsb16fc3n0m13kvaw0hjam8x91wamcbxq"
+ "url": "http://elpa.gnu.org/packages/transcribe-1.0.2.el",
+ "sha256": "0b0qaq0b3l37h6wfs4j80csmfcbidcd8a8wk6mwn6p4cdi7msr15"
},
- "version": "0.5.0",
+ "version": "1.0.2",
"deps": []
},
"websocket": {
diff --git a/pkgs/applications/editors/emacs-modes/elpa-packages.nix b/pkgs/applications/editors/emacs-modes/elpa-packages.nix
index 3cf37c26280..aa30d62c60a 100644
--- a/pkgs/applications/editors/emacs-modes/elpa-packages.nix
+++ b/pkgs/applications/editors/emacs-modes/elpa-packages.nix
@@ -1,8 +1,21 @@
-pkgs: with pkgs;
+/*
+
+# Updating
+
+To update the list of packages from ELPA,
+
+1. Clone https://github.com/ttuegel/emacs2nix
+2. Run `./elpa-packages.sh` from emacs2nix
+3. Copy the new elpa-packages.json file into Nixpkgs
+4. `git commit -m "elpa-packages $(date -Idate)"`
+
+*/
+
+{ fetchurl, lib, stdenv, texinfo }:
let
- inherit (stdenv.lib) makeScope mapAttrs;
+ inherit (lib) makeScope mapAttrs;
json = builtins.readFile ./elpa-packages.json;
manifest = builtins.fromJSON json;
@@ -10,17 +23,20 @@ let
mkPackage = self: name: recipe:
let drv =
{ elpaBuild, stdenv, fetchurl }:
- let fetch = { inherit fetchurl; }."${recipe.fetch.tag}"
- or (abort "emacs-${name}: unknown fetcher '${recipe.fetch.tag}'");
- args = builtins.removeAttrs recipe.fetch [ "tag" ];
- src = fetch args;
+ let
+ unknownFetcher =
+ abort "emacs-${name}: unknown fetcher '${recipe.fetch.tag}'";
+ fetch =
+ { inherit fetchurl; }."${recipe.fetch.tag}"
+ or unknownFetcher;
+ args = builtins.removeAttrs recipe.fetch [ "tag" ];
+ src = fetch args;
in elpaBuild {
pname = name;
inherit (recipe) version;
inherit src;
- deps =
- let lookupDep = d:
- self."${d}" or (abort "emacs-${name}: missing dependency ${d}");
+ packageRequires =
+ let lookupDep = d: self."${d}" or null;
in map lookupDep recipe.deps;
meta = {
homepage = "http://elpa.gnu.org/packages/${name}.html";
@@ -29,14 +45,42 @@ let
};
in self.callPackage drv {};
- packages = self:
- let
- elpaPackages = mapAttrs (mkPackage self) manifest;
+in
- elpaBuild = import ../../../build-support/emacs/melpa.nix {
- inherit (pkgs) lib stdenv fetchurl texinfo;
- inherit (self) emacs;
- };
- in elpaPackages // { inherit elpaBuild elpaPackages; };
+self:
-in makeScope pkgs.newScope packages
+ let
+ super = mapAttrs (mkPackage self) manifest;
+
+ elpaBuild = import ../../../build-support/emacs/melpa.nix {
+ inherit fetchurl lib stdenv texinfo;
+ inherit (self) emacs;
+ };
+
+ markBroken = pkg: pkg.override {
+ elpaBuild = args: self.elpaBuild (args // {
+ meta = (args.meta or {}) // { broken = true; };
+ });
+ };
+
+ elpaPackages = super // {
+ ace-window = markBroken super.ace-window;
+ ada-mode = markBroken super.ada-mode;
+ beacon = markBroken super.beacon;
+ bug-hunter = markBroken super.bug-hunter;
+ company-math = markBroken super.company-math;
+ company-statistics = markBroken super.company-statistics;
+ context-coloring = markBroken super.context-coloring;
+ dict-tree = markBroken super.dict-tree;
+ el-search = markBroken super.el-search;
+ ergoemacs-mode = markBroken super.ergoemacs-mode;
+ exwm = markBroken super.exwm;
+ gnugo = markBroken super.gnugo;
+ iterators = markBroken super.iterators;
+ midi-kbd = markBroken super.midi-kbd;
+ stream = markBroken super.stream;
+ tNFA = markBroken super.tNFA;
+ trie = markBroken super.trie;
+ xelb = markBroken super.xelb;
+ };
+ in elpaPackages // { inherit elpaBuild elpaPackages; }
diff --git a/pkgs/applications/editors/emacs-modes/melpa-packages.json b/pkgs/applications/editors/emacs-modes/melpa-packages.json
new file mode 100644
index 00000000000..39e720553ca
--- /dev/null
+++ b/pkgs/applications/editors/emacs-modes/melpa-packages.json
@@ -0,0 +1,46399 @@
+{
+ "netherlands-holidays": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "abo-abo",
+ "repo": "netherlands-holidays",
+ "sha256": "1kkflj2qnrn6kzh1l6bjl5n5507qilb22pqj3h0f2m6hfyn0sw5z",
+ "rev": "26236178cdd650df9958bf5a086e184096559f00"
+ },
+ "recipe": {
+ "sha256": "181linsbg5wrx1z7zbj3in2d3d4zd2v7drspkj0b6l0c5yfxwayf",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150202.1017",
+ "deps": []
+ },
+ "qiita": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "gongo",
+ "repo": "qiita-el",
+ "sha256": "0ggivlaj29rbbhkjpf3bf7vr96xjzffas0sf5m54qh6nyz6nnha5",
+ "rev": "93c697b97d540fd1601a13a3d9889fb939b19878"
+ },
+ "recipe": {
+ "sha256": "1kzk7pc68ks9gxm2l2d28al23gxh56z0cmkl80qwg7sh4gsmhyxl",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140118.244",
+ "deps": [
+ "helm",
+ "markdown-mode"
+ ]
+ },
+ "drawille": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "sshbio",
+ "repo": "drawille",
+ "sha256": "0ay71bny5sn8ndv5b7mpr19hjislaaah0sw2wbqxcvh219l05gna",
+ "rev": "d56a71a168b391365c8d6f567391a6892bbd3909"
+ },
+ "recipe": {
+ "sha256": "01rl21hbj3hwy072yr27jl6iql331v131d3mr9zifg9v6f3jqbil",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151213.1208",
+ "deps": [
+ "cl-lib"
+ ]
+ },
+ "om-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "danielsz",
+ "repo": "om-mode",
+ "sha256": "03szb2i2xk3nq578cz1drsddsbld03ryvykdfzmfvwcmlpaknvzb",
+ "rev": "cdc0c2912321f8438b0f3449ba8aca50ec150bba"
+ },
+ "recipe": {
+ "sha256": "1q2h9wjnyg7wlk913px4vj1cxqynd6xfh9ind7kjyra436yw3l4j",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140915.1610",
+ "deps": []
+ },
+ "outorg": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "tj64",
+ "repo": "outorg",
+ "sha256": "0jhqpm31rsmc2r01ra48nbnd9rx9am90qk6i0qrhgfzx9q1svmj9",
+ "rev": "9d6d6f1fb8c68ee044ffba1ae1aed8146bcff1f1"
+ },
+ "recipe": {
+ "sha256": "04swss84p33a9baa4swqc1a9lfp6wziqrwa7vcyi3y0yzllx36cx",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150910.1440",
+ "deps": []
+ },
+ "cg": {
+ "fetch": {
+ "tag": "fetchsvn",
+ "url": "http://beta.visl.sdu.dk/svn/visl/tools/vislcg3/trunk/emacs",
+ "sha256": "1v8wgm3cvz4xx2jlx95ipd9340mxfxgk5hqialp76y74x03vfzq1",
+ "rev": "11156"
+ },
+ "recipe": {
+ "sha256": "0ra6mxf8l9fjn1vszjj71fs6f6l08hwypka8zsb3si96fzb6sgjh",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150819.604",
+ "deps": []
+ },
+ "helm-ls-hg": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "emacs-helm",
+ "repo": "helm-ls-hg",
+ "sha256": "1msrsqiwk7bg5gry5cia8a6c7ifymfyn738hk8g2qwzzw4vkxxcs",
+ "rev": "61b91a22fcfb62d0fc56e361ec01ce96973c7165"
+ },
+ "recipe": {
+ "sha256": "0ca0xn7n8bagxb504xgkcv04rpm1vxhx2m77biqrx5886pwl25bh",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150909.43",
+ "deps": [
+ "helm"
+ ]
+ },
+ "wgrep-ag": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "mhayashi1120",
+ "repo": "Emacs-wgrep",
+ "sha256": "075z0glain0dp56d0cp468y5y88wn82ab26aapsrdzq8hmlshwn4",
+ "rev": "7ef26c51feaef8a5ec0929737130ab8ba326983c"
+ },
+ "recipe": {
+ "sha256": "1b2mj06kws29ha7g16l5d1s3p3nwyw8rprbpaiijdk9nxqcm0a8a",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20141012.511",
+ "deps": [
+ "wgrep"
+ ]
+ },
+ "color-theme-sanityinc-tomorrow": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "purcell",
+ "repo": "color-theme-sanityinc-tomorrow",
+ "sha256": "1qs6n30amzv47d4d12z6jj506jsm5janp639jg9w65zibbp2dy7a",
+ "rev": "e309cb5a26228633797209276c5d48c070b90767"
+ },
+ "recipe": {
+ "sha256": "1k8iwjc7iidq5sxybs47rnswa6c5dwqfdzfw7w0by2h1id2z6nqd",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151215.2305",
+ "deps": []
+ },
+ "focus": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "larstvei",
+ "repo": "Focus",
+ "sha256": "0aj5qxzlfxxp7z27fiw9bvir5yi2zj0xzj5kbh17ix4wnhi03bhc",
+ "rev": "0a6e9624ea5607dadd0f2cd4d3eaa2b10b788eb9"
+ },
+ "recipe": {
+ "sha256": "0jw26j8npyl3dgsrs7ap2djxmkafn2hl6gfqvi7v76bccs4jkyv8",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151118.215",
+ "deps": [
+ "cl-lib",
+ "emacs"
+ ]
+ },
+ "xahk-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "xahlee",
+ "repo": "xahk-mode.el",
+ "sha256": "0dc74kqwi0hpihdbb9a9lrqb7823w6j96mah47zyd9d4rd3vx850",
+ "rev": "91301b8eae7fd703b258a4c68066d9d5af943c4b"
+ },
+ "recipe": {
+ "sha256": "1bs12z7lnqlhm44hq0l98d0ka1bjgvm2yv97yivaj9akd53znca9",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150504.1811",
+ "deps": []
+ },
+ "buffer-move": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "lukhas",
+ "repo": "buffer-move",
+ "sha256": "0n60373l60fb7w679ld8i1fa6fqj23f8q8ypfddv1zjxjkp4n2k0",
+ "rev": "7034d74abe4df67737d520e994d55dbb34b3b4d5"
+ },
+ "recipe": {
+ "sha256": "0wysywff2bggrha7lpl83c8x6ln7zgdj9gsqmjva6gramqb260fg",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151106.249",
+ "deps": []
+ },
+ "slovak-holidays": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "Fuco1",
+ "repo": "slovak-holidays",
+ "sha256": "1y1gay1h91c0690gly4qibx1my0l1zpb6s3x58lks8m21jdwfw28",
+ "rev": "effb16dfcd14797bf7448f5113085479db339c02"
+ },
+ "recipe": {
+ "sha256": "1dcw8pa3r9b7n7dc8fgzijz7ywwxb3nlfg7n0by8dnvpjq2c30bg",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150418.355",
+ "deps": []
+ },
+ "youdao-dictionary": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "xuchunyang",
+ "repo": "youdao-dictionary.el",
+ "sha256": "0016qff7hdnd0xkyhxakfzzscwlwkpzppvc4wxfw0iacpjkz1fnr",
+ "rev": "5b4f716ca41fa0cdb18a4949ac5cdcd470182c57"
+ },
+ "recipe": {
+ "sha256": "1qfk7s18br9jask1bpida0cjxks098qpz0ssmw8misi3bjax0fym",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150914.144",
+ "deps": [
+ "chinese-word-at-point",
+ "emacs",
+ "names",
+ "popup"
+ ]
+ },
+ "ox-nikola": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "masayuko",
+ "repo": "ox-nikola",
+ "sha256": "0cc14p6c3d4djfmrkac0abb2jq128vlmayv2a8cyvnyjffyvjbk7",
+ "rev": "5bcbc1a38f6619f62294194f13ca0cd4ca14dd48"
+ },
+ "recipe": {
+ "sha256": "1amplnazs9igfd382djq23d8j7r0knr0hwlpasd01aypc25c82a4",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151114.516",
+ "deps": [
+ "emacs",
+ "org",
+ "ox-rst"
+ ]
+ },
+ "io-mode-inf": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "slackorama",
+ "repo": "io-emacs",
+ "sha256": "1ard88kc13c57y9zdkyr012w8rdrwahz8a3fb5v6hwqymg16m20s",
+ "rev": "6dd2bac3fd87484bb7d97e135b06c29d70b444b6"
+ },
+ "recipe": {
+ "sha256": "0hwhvf1qwkmzzlzdda1flw6p1jjh9rzxsfwm2sc4795ac2xm6dhc",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140128.1334",
+ "deps": []
+ },
+ "emacsql": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "skeeto",
+ "repo": "emacsql",
+ "sha256": "0ld5qpl7b3iksgxcfysznf88wj019l5271kdz4nalqi4kchf5xad",
+ "rev": "74bd11bc0998d7019a05eecc0486fee09c84a93b"
+ },
+ "recipe": {
+ "sha256": "1x4rn8dmgz871dhz878i2mqci576zccf9i2xmq2ishxgqm0hp8ax",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151003.2131",
+ "deps": [
+ "cl-lib",
+ "emacs",
+ "finalize"
+ ]
+ },
+ "ido-skk": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "tsukimizake",
+ "repo": "ido-skk",
+ "sha256": "149cznbybwj0gkjyvpnh4kn258kxw449m7cn95n9jbh1r45vljvy",
+ "rev": "89a2e62799bff2841ff634517c86084c4ce69246"
+ },
+ "recipe": {
+ "sha256": "1fyzjkw9xp126bzfv1254bvyakh323iw3wdzrkd9gb4ir39k5jzw",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151111.350",
+ "deps": [
+ "ddskk",
+ "emacs"
+ ]
+ },
+ "help-fns+": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/help-fns+.el",
+ "sha256": "00x3ln7x4d6r422x845smf3h0x1z85l5jqyjkrllqcs7qijcrk5w"
+ },
+ "recipe": {
+ "sha256": "10vz7w79k3barlcs3ph3pc7914xdhcygagdk2wj3bq0wmwxa1lia",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151215.837",
+ "deps": []
+ },
+ "cmake-ide": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "atilaneves",
+ "repo": "cmake-ide",
+ "sha256": "1qkcyh26iz7xm9a9ki0k3m1mcq4jfddy6n2ibvxl2g1l1p487cgq",
+ "rev": "1b4a9cb5c588efd2e0f9fc9bbc2f638e29bbb9f5"
+ },
+ "recipe": {
+ "sha256": "0xvy7l80zw67jgvk1rkhwzjvsqjqckmd8zj6s67rgbm56z6ypmcg",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151216.1347",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "hideshow-org": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "shanecelis",
+ "repo": "hideshow-org",
+ "sha256": "1dr06b9njzih8z97k62l9w3x0a801x4bp043zvk7av9qkz8izl2r",
+ "rev": "16419e52e6cdd2f46f755144c0ab11ce00d1a626"
+ },
+ "recipe": {
+ "sha256": "1bzx5ii06r64nra92zv1dvw5zv3im7la2dd3md801hxyfrpb74gc",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20120223.1650",
+ "deps": []
+ },
+ "jammer": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "wasamasa",
+ "repo": "jammer",
+ "sha256": "0x0vz7m9kn7b2aiqvrdqx8qh84ynbpzy2asz2b18l47bcwa7r5bh",
+ "rev": "1ba232b71507b468c60dc53c2bc8888bef36c858"
+ },
+ "recipe": {
+ "sha256": "01c4bii7gswhp6z9dgx4bhvsywiwbbdv7mg1zj6vp1530l74zx6z",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151213.814",
+ "deps": []
+ },
+ "ghci-completion": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "manzyuk",
+ "repo": "ghci-completion",
+ "sha256": "17fl3k2sqiavbv3bp6rnp3p89j6pnpkkp7wi26pzzk4675r5k45q",
+ "rev": "c47e23d585d2a3c7b13aac163693fdc4f2bb90e5"
+ },
+ "recipe": {
+ "sha256": "1a6k47z5kmacj1s5479393jyj27bjx0911yaqfmmwg2hr0yz7vll",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151125.657",
+ "deps": [
+ "cl-lib",
+ "emacs"
+ ]
+ },
+ "dired-sort-menu+": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/dired-sort-menu+.el",
+ "sha256": "0l19xa7z4015lqw98dzb5i40na32758wxyfka2vdhn7g5iq7qday"
+ },
+ "recipe": {
+ "sha256": "19ah8qgbfdvyhfszdr6hlw8l01lbdb84vf5snldw8qh3x6lw8cfq",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151213.1640",
+ "deps": [
+ "dired-sort-menu"
+ ]
+ },
+ "tide": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "ananthakumaran",
+ "repo": "tide",
+ "sha256": "045c1fmmig88lc7c85vy8532mx0lhl666m5lrrv4i6r5n6sf68s3",
+ "rev": "0c0f95b9e5abdbe60ccfcefc81f02178bfa940ab"
+ },
+ "recipe": {
+ "sha256": "1z2xr25s23sz6nrzzw2xg1l2j8jvjhxi53qh7nvxmmq6n6jjpwg1",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151201.245",
+ "deps": [
+ "dash",
+ "emacs",
+ "flycheck",
+ "typescript-mode"
+ ]
+ },
+ "org-doing": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "omouse",
+ "repo": "org-doing",
+ "sha256": "1wrgqdrfdxc1vrcr6dsa8dcxrwj6zgjr9h1fzilwnxlzfvdilnsm",
+ "rev": "7d0a8ef5dcd18ee375da6298d96e6858508fb919"
+ },
+ "recipe": {
+ "sha256": "17w49z78fvbz182sxv9mnryj124gm9jbdmbybppjqz4rk6wvnm2j",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150824.901",
+ "deps": []
+ },
+ "go-eldoc": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "syohex",
+ "repo": "emacs-go-eldoc",
+ "sha256": "1jwh5rqk7vr6kna6i0p3fl3wjk3mhlr6gxklc3xij4r2zdyfj8na",
+ "rev": "684f1414913c85695eb8ca4a2643cea04ee60527"
+ },
+ "recipe": {
+ "sha256": "1k115dirfqxdnb6hdzlw41xdy2dxp38g3vq5wlvslqggha7gzhkk",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151028.210",
+ "deps": [
+ "cl-lib",
+ "go-mode"
+ ]
+ },
+ "w32browser-dlgopen": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/w32browser-dlgopen.el",
+ "sha256": "15cjfr8fknlp61mqz6377d4pprv3pddhiqqdhk1lsz2mncw8z9mq"
+ },
+ "recipe": {
+ "sha256": "0dnvsnahnbnvjlhfmb0q6agzikv9d42fbnfrwsz6hni92937gz39",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150104.1906",
+ "deps": []
+ },
+ "cerbere": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "nlamirault",
+ "repo": "cerbere",
+ "sha256": "17jg5d5afh9zpnjx8wkys8bjllxq99j0yhz8j3fvkskisvhkz1im",
+ "rev": "ef573b05f4c2a067b8234003aaa4b2a76fffea5c"
+ },
+ "recipe": {
+ "sha256": "1g3svmh5dlh5mvyag3hmiy90dfkk6f7ppd9qpwckxqyll9vl7r06",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140418.915",
+ "deps": [
+ "f",
+ "pkg-info",
+ "s"
+ ]
+ },
+ "key-intercept": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "tarao",
+ "repo": "key-intercept-el",
+ "sha256": "143nfs8pgi5yy3mjq7nirffplk4vb8kik4q7zypynh2pddip30a4",
+ "rev": "d9a60edb4ce893f2d3d94f242164fdcc62d43cf2"
+ },
+ "recipe": {
+ "sha256": "1z776jbpjks5bir6bd0748mlrmz05nf0jy9l4hlmwgyn72dcbx16",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140211.149",
+ "deps": []
+ },
+ "grandshell-theme": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "steckerhalter",
+ "repo": "grandshell-theme",
+ "sha256": "1202fwwwdr74q6s5jv1n0mvmq4n9mra85l14hdhwh2kks513s6vs",
+ "rev": "6bf34fb1a3117244629a7fb23daf610f50854bed"
+ },
+ "recipe": {
+ "sha256": "1mnnjsw1kx40b6ws8wmk25fz9rq8rd70xia9cjpwdfkg7kh8xvsa",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150404.701",
+ "deps": []
+ },
+ "warm-night-theme": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "mswift42",
+ "repo": "warm-night-theme",
+ "sha256": "1x472s5qr6wvla7nj5i9mas8z9qhkj4zj5qghfwn5chb9igvfkif",
+ "rev": "67cc2a1591c0627e6310cdfe8ca7c8d4565b9c16"
+ },
+ "recipe": {
+ "sha256": "1nrjkrr64rry6fjya22b0lcs0f8a2ijvr87192z311y9mw5rvb29",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150607.941",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "cbm": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "akermu",
+ "repo": "cbm.el",
+ "sha256": "1b3cjb27z0nypn9nsmi93b61j7a252fb7sclh1mrsnanhvbwl0zx",
+ "rev": "40ae4f6ed075889346b4ba7cf991f5ad6dd6d1b7"
+ },
+ "recipe": {
+ "sha256": "02ch0gdw610c8dfxxjxs7ijsc9lzbhklj7hqgwfwksnyc36zcjmn",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150715.1404",
+ "deps": []
+ },
+ "lacarte": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/lacarte.el",
+ "sha256": "1nlras4g3ncp1pcmkkpa2j88zvqjibmn5h6ilahgjry0dwg9qw5j"
+ },
+ "recipe": {
+ "sha256": "0a0n1lqakgsbz0scn6617rkkkvzwranzlvkzw9q4zapiz1s9xqp9",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150104.1750",
+ "deps": []
+ },
+ "diff-hl": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "dgutov",
+ "repo": "diff-hl",
+ "sha256": "1n1acyd39n0zbfcc5bzn81yzw7f1z1mxz43maq5hdc25m8rcqkw2",
+ "rev": "89e08d60c4e8d5d4ddd47e14c0dd769ba965a545"
+ },
+ "recipe": {
+ "sha256": "0kw0v9xcqidhf26qzrqwdlav2zhq32xx91k7akd2536jpji5pbn6",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151120.1915",
+ "deps": [
+ "cl-lib"
+ ]
+ },
+ "outline-magic": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "tj64",
+ "repo": "outline-magic",
+ "sha256": "116cwlhn7s47rhivz6113lh8lvaz3bjb3ynjlbx9hyf7gq3nfnxn",
+ "rev": "5689436cd67edc86066e51be77fa4e1fe21de507"
+ },
+ "recipe": {
+ "sha256": "085yayzph3y7fh6pd5sdjdkhdcvwfzcyqd6y3xlbz7wni5ac6b5f",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150209.1626",
+ "deps": []
+ },
+ "vim-empty-lines-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "jmickelin",
+ "repo": "vim-empty-lines-mode",
+ "sha256": "09x857vbx35rpyc5x1322ajby613gva090x4vawaczk22idq65h4",
+ "rev": "442a29b0ba1635a3b352c9dd1faf9ce99656d048"
+ },
+ "recipe": {
+ "sha256": "17bl1g4ais73ws596mha0l8dgckfqhx9k2v9m9k0gw7kg7dcjhnb",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150110.2226",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "mmt": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "mrkkrp",
+ "repo": "mmt",
+ "sha256": "05nmcx3f63ds31cj3qwwp03ksflkfwlcn3z2xyxbny83r0dxbgvc",
+ "rev": "e77b809e39b9ab437b662ee759e990163bc89377"
+ },
+ "recipe": {
+ "sha256": "0hal3qcw6x9658xpdaw6q9l2rr2z107pvg5bdzshf67p1b3lf9dq",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150906.1159",
+ "deps": [
+ "cl-lib",
+ "emacs"
+ ]
+ },
+ "fetch": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "crshd",
+ "repo": "fetch.el",
+ "sha256": "0pjw9fb3n08yd38680ifdn2wlnw2k6q97lzhqb2259mywsycyqy8",
+ "rev": "3f2793afcbbc32f320e572453166f9354ecc6d06"
+ },
+ "recipe": {
+ "sha256": "1jqc6pspgcrdzm7ij46r1q6vpjq7il5dy2xyxwn2c1ky5a80paby",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20131201.130",
+ "deps": []
+ },
+ "vimish-fold": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "mrkkrp",
+ "repo": "vimish-fold",
+ "sha256": "1kypjcw9n2amfq3y2g1dgx6zxf0yy4xnmxjg1fgs9j3xshg6y61m",
+ "rev": "843a709a129f3f587fa69a67ec655b2ef301ea8a"
+ },
+ "recipe": {
+ "sha256": "017by9w53d8pqlsazfycmhdv16yylks308p5vxp1rcw2qacpc5m3",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151124.1009",
+ "deps": [
+ "cl-lib",
+ "emacs",
+ "f"
+ ]
+ },
+ "stripe-buffer": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "sabof",
+ "repo": "stripe-buffer",
+ "sha256": "0dxajh72wdcwdb9ydbcm19fmp0p1drmh1niq4r69jnbn8sah0zax",
+ "rev": "c252080f55cb78c951b19ebab9687f6d00237baf"
+ },
+ "recipe": {
+ "sha256": "02wkb9y6vykrn6a5nfnimaplj7ig8i8h6m2rvwv08f5ilbccj16a",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20141208.908",
+ "deps": [
+ "cl-lib"
+ ]
+ },
+ "web-completion-data": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "osv",
+ "repo": "web-completion-data",
+ "sha256": "12j8ql9v9mrg8hlsminpm3ydcacc2fbdjsfw7l604sc3qvgza1lm",
+ "rev": "81482f9ff17e13906bdbd9db6bc4e1cbdc0e1870"
+ },
+ "recipe": {
+ "sha256": "1zzdmhyn6bjaidk808s4pdk25a5rn4287949ps5vbpyniaf6gny9",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150623.533",
+ "deps": []
+ },
+ "slime-company": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "anwyn",
+ "repo": "slime-company",
+ "sha256": "1yi89hmnawf1pf9nv3f6i8a168wvri3zc40wgbbgnda8hxrcqkjx",
+ "rev": "cf03a862c3aa2393eb151af9e5bc032aa6b6f154"
+ },
+ "recipe": {
+ "sha256": "195s5fi2dl3h2jyy4d45q22jac35sciz81n13b4lgw94mkxx4rq2",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151210.814",
+ "deps": [
+ "company",
+ "slime"
+ ]
+ },
+ "flymake-php": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "purcell",
+ "repo": "flymake-php",
+ "sha256": "09mibjdji5mf3qvngspv1zmik1zd9jwp4mb4c1w4256202359sf4",
+ "rev": "93abe12d62b13f1d035a0df01e53e4bacdac2c66"
+ },
+ "recipe": {
+ "sha256": "12ds2l5kvs7fz38syp4amasbjkpqd36rlpajnb3xxll0hbk6vffk",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20121104.1302",
+ "deps": [
+ "flymake-easy"
+ ]
+ },
+ "jade-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "brianc",
+ "repo": "jade-mode",
+ "sha256": "1q6wpjb7vhsy92li6fag34pwyil4zvcchbvfjml612aaykiys506",
+ "rev": "0d0bbf60730d0e33c6362e1fceeaf0e133b1ceeb"
+ },
+ "recipe": {
+ "sha256": "156j0d9wx6hrhph0nsjsi1jha4h65rcbrbff1j2yr8vdsszjrs94",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150801.1144",
+ "deps": []
+ },
+ "cheatsheet": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "darksmile",
+ "repo": "cheatsheet",
+ "sha256": "1v2r7b6dbnxfhacg8cbb0wkymsnxnr2qgxsdbzqb4lh7r282vxxn",
+ "rev": "80e58c1783571e2907dfe25a32ae46ad3da1bcf1"
+ },
+ "recipe": {
+ "sha256": "11z3svlzvmhdy0pkxbx9qz9bnq056cgkbfyw9z34aq1yxazi2cpq",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151203.351",
+ "deps": [
+ "cl-lib",
+ "emacs"
+ ]
+ },
+ "xquery-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "mblakele",
+ "repo": "xquery-mode",
+ "sha256": "09fpxr55b2adqmca8xhpy8z5cify5091fjdjyxjd1jh5wdp1658v",
+ "rev": "ac0ca72ccd575952393804330c3efe3b2271c4e2"
+ },
+ "recipe": {
+ "sha256": "0b5k2ihbjm5drv4lf64ap31yj873x1fcq85y6yq1ayahn6s52rql",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140121.1143",
+ "deps": []
+ },
+ "dakrone-theme": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "dakrone",
+ "repo": "dakrone-theme",
+ "sha256": "0fd0h07m42q2h1ggsjra20kzv209rpb4apjv408h2dxqm8sy0jiy",
+ "rev": "281ac9f9080a94bf9dada2f40cdba58e50f94235"
+ },
+ "recipe": {
+ "sha256": "0ma4rfmgwd6k24jzn6pgk46b88jfix7mz0ib7c7r90h5vmpiq814",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140211.2245",
+ "deps": []
+ },
+ "smart-mode-line-powerline-theme": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "Malabarba",
+ "repo": "smart-mode-line",
+ "sha256": "17m8nqp9xarrsr68n6c9jqzv2jzsyq0m1hqqhlj9j363x6y8790y",
+ "rev": "4b3265ec3e442bd8c596b99cfd4ec73424c395ec"
+ },
+ "recipe": {
+ "sha256": "0hv3mx39m3l35xhz351zp98321ilr6qq9wzwn1f0ziiv814khcn4",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151201.839",
+ "deps": [
+ "emacs",
+ "powerline",
+ "smart-mode-line"
+ ]
+ },
+ "signature": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "pidu",
+ "repo": "signature",
+ "sha256": "1g4rr7hpy9r3y4vdpv48xpmy8kqvs4j64kvnhnj2rw2wv1grw78j",
+ "rev": "c47df2e1189a84505f9224aa78e87b6c65d13d37"
+ },
+ "recipe": {
+ "sha256": "11n3id1iiip99lj8c0iffbrf59s2yvmwlhqbf8xzxkhws7vwdl5q",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140730.1449",
+ "deps": []
+ },
+ "unfill": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "purcell",
+ "repo": "unfill",
+ "sha256": "0fd9k5m1yw2274m2w9rkrg7vqagzf0rjbybglqi7d200b3hmjin3",
+ "rev": "d5f3dbaaaa871dc26bbc9e4bcd6deacac02a02d4"
+ },
+ "recipe": {
+ "sha256": "0b21dk45vbz4vqdbdx0n6wx30rm38w1jjqbsxfj7b96p3i5shwqv",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20131103.413",
+ "deps": []
+ },
+ "sonic-pi": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "repl-electric",
+ "repo": "sonic-pi.el",
+ "sha256": "1ga35d3rhdf6ffd36q58ay6380gjvkmaiid4vscga3v7ca0dkhl1",
+ "rev": "3d88a784bf7883ec56fbef5923c4e1b50d2b9b09"
+ },
+ "recipe": {
+ "sha256": "07qxm1rkw2cbxf4g2vqk3s7xnqldqkdm2zw1qh2kqjscg5gwpkqp",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150919.530",
+ "deps": [
+ "cl-lib",
+ "dash",
+ "emacs",
+ "osc"
+ ]
+ },
+ "org-page": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "kelvinh",
+ "repo": "org-page",
+ "sha256": "05q3dx7sfv51frsa3mk06pbrw3n986adgn08yrjwj0am0p11vpqs",
+ "rev": "75859f2d7e05be5dd9899f765adbf2e2d434ba83"
+ },
+ "recipe": {
+ "sha256": "1326m3w7vz22zk7rx40z28fddsccy5fl1qhbb7clci8l69blcc2v",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150913.1933",
+ "deps": [
+ "dash",
+ "ht",
+ "htmlize",
+ "mustache",
+ "org",
+ "simple-httpd"
+ ]
+ },
+ "auto-complete-c-headers": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "mooz",
+ "repo": "auto-complete-c-headers",
+ "sha256": "12mzi6bwg702sp0f0wd1ag555blbpk252rr9rqs03bn8pkw89h4n",
+ "rev": "52fef720c6f274ad8de52bef39a343421006c511"
+ },
+ "recipe": {
+ "sha256": "02pkrxvzrpyjrr2fkxnl1qw06aspzv8jlp2c1piln6zcjd92l3j7",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150911.2223",
+ "deps": [
+ "auto-complete"
+ ]
+ },
+ "grails-projectile-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "yveszoundi",
+ "repo": "grails-projectile-mode",
+ "sha256": "11ry4p5r0hg3jlmfhp6hfkryzrp6snl38v8j7ds8limhbpdh5wr4",
+ "rev": "6cb3b7890ce869a911a7b1d5892a6eef7992c199"
+ },
+ "recipe": {
+ "sha256": "0dy8v2mila7ccvb7j5jlfkhfjsjfk3bm3rcy84m0rgbqjai67amn",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20141229.1329",
+ "deps": [
+ "cl-lib",
+ "emacs",
+ "projectile"
+ ]
+ },
+ "web-beautify": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "yasuyk",
+ "repo": "web-beautify",
+ "sha256": "0ky2rg16xrbnsvqc6gcfhgi69fdzbx6jlsq73n8hr0n4562czhzl",
+ "rev": "be2b9a7f510e1719396ebeab9135bc64f0785b78"
+ },
+ "recipe": {
+ "sha256": "06ky2svhca8hjgmvxrg3h6ya7prl72q1r88x967yc6b0qq3r7g0f",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20131118.426",
+ "deps": []
+ },
+ "inf-clojure": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "clojure-emacs",
+ "repo": "inf-clojure",
+ "sha256": "1vjzykbh9fid490481zr913hzw2vyhzsym44pkqafzm9q27075mc",
+ "rev": "f7948896f05e4e35a6aba97bd3c7e330f416e548"
+ },
+ "recipe": {
+ "sha256": "0n8w0vx1dnbfz88j45a57z9bsmkxr2zyh6ld72ady8asanf17zhl",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151129.234",
+ "deps": [
+ "clojure-mode",
+ "emacs"
+ ]
+ },
+ "php-boris-minor-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "steckerhalter",
+ "repo": "php-boris-minor-mode",
+ "sha256": "1wk7vq80v97psxfg0pwy4mc6kdc61gm6h1vgl9p71ii6g6zvzcqg",
+ "rev": "c70e176dd6545f2d42ca3427e87b469635616d8a"
+ },
+ "recipe": {
+ "sha256": "1cmpd303chldss7kylpinv8qc3c78srz02a9cp9x79c8arq7apwl",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140209.1235",
+ "deps": [
+ "highlight",
+ "php-boris"
+ ]
+ },
+ "rcirc-alertify": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "fgallina",
+ "repo": "rcirc-alertify",
+ "sha256": "1mpk5rzsil298q3ppv5v9jrn274v71jffyz0jihrksh1wbjzwhlx",
+ "rev": "ea5cafc55893f375eccbe013d12dbaa94bf6e259"
+ },
+ "recipe": {
+ "sha256": "13448bykmy0jqcajhn2gjiar3m8cingyr8394vxybp2m1zvv0pws",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140406.2019",
+ "deps": [
+ "alert"
+ ]
+ },
+ "git-wip-timemachine": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "itsjeyd",
+ "repo": "git-wip-timemachine",
+ "sha256": "1ivnf4vsqk6c7iw1cid7q1hxp7047ajd1mpg0fl002d7m7ginhyl",
+ "rev": "ed4c7931a5f5233bf3e358b1e81647d063526460"
+ },
+ "recipe": {
+ "sha256": "02fi51k6l23cgnwjp507ylkiwb8azmnhc0fips68nwn9dghzp6dw",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150408.506",
+ "deps": [
+ "s"
+ ]
+ },
+ "shell-pop": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "kyagi",
+ "repo": "shell-pop-el",
+ "sha256": "0fzywfdaisvvdbcl813n1shz0r8v1k9kcgxgynv5l0i4nkrgkww5",
+ "rev": "4531d234ca471ed80458252cba0ed005a0720b27"
+ },
+ "recipe": {
+ "sha256": "02s17ln0hbi9gy3di8fksp3mqc7d8ahhf5vwyz4vrc1bg77glxw8",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151121.830",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "cider-decompile": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "clojure-emacs",
+ "repo": "cider-decompile",
+ "sha256": "1w4y65s3m2irga4iqfqqkcmvl6ss24zmaxqzbfib8jmi84r4lpac",
+ "rev": "5d87035f3c3c14025e8f01c0c53d0ce2c8f56651"
+ },
+ "recipe": {
+ "sha256": "0jhsm31zcfwkbpsdh1lvmjm1fv2m7y849930sjvf5nxv3ffhx3b4",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151121.2337",
+ "deps": [
+ "cider",
+ "javap-mode"
+ ]
+ },
+ "j-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "zellio",
+ "repo": "j-mode",
+ "sha256": "07kbicf760nw4qlb2lkf1ns8yzqy0r5jqqwqjbsnqxx4sm52hml9",
+ "rev": "caa55dfaae01d1875380929826952c2b3ef8a653"
+ },
+ "recipe": {
+ "sha256": "0f9lsr9hjhdvmzx565ivlncfzb4iq4rjjn6a41053cjy50bl066i",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140702.1009",
+ "deps": []
+ },
+ "persistent-scratch": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "Fanael",
+ "repo": "persistent-scratch",
+ "sha256": "0vzifam1a3gy27phvhgi081v99pim669xymfwd9f96pnh0pwsqbh",
+ "rev": "52be8e41fe1e23a1f2b912fc119af06cc051bd28"
+ },
+ "recipe": {
+ "sha256": "0iai65lsg3zxj07hdb9201w3rwrvdb3wffr6k2jdl8hzg5idghn1",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150202.1143",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "map-regexp": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "tarsius",
+ "repo": "map-regexp",
+ "sha256": "0kk1sk3cr4dbmgq4wzml8kdf14dn9jbyq4bwmvk0i7dic9vwn21c",
+ "rev": "b8e06284ec1c593d7d2bda5f35597a63de46333f"
+ },
+ "recipe": {
+ "sha256": "0yiif0033lhaqggywzfizfia3siggwcz7yv4z7przhnr04akdmbj",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20130522.1603",
+ "deps": [
+ "cl-lib"
+ ]
+ },
+ "sauron": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "djcb",
+ "repo": "sauron",
+ "sha256": "0hzg05i8x2xgsr99nyikvflsibjsq2nryfsw7y2wyhc43w89l8cb",
+ "rev": "d7704fd9a0623d862f03f40588ac816a8877f308"
+ },
+ "recipe": {
+ "sha256": "01fk1xfh7r16fb1xg5ibbs7gci9dja49msdlf7964hiq7pnnhxgb",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150614.246",
+ "deps": []
+ },
+ "ob-browser": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "krisajenkins",
+ "repo": "ob-browser",
+ "sha256": "1nzli8wk3nd05j2z2fw511857qbawirhg8mfw21wqclkz8zqn813",
+ "rev": "9271453d28d0912093ab5f91807745ada69ada0c"
+ },
+ "recipe": {
+ "sha256": "1yqbzmmazamgf8fi8ipq14ffm8h1pp5d2lkflbxjsagdq61hirxm",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150101.910",
+ "deps": [
+ "org"
+ ]
+ },
+ "scratch-palette": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "zk-phi",
+ "repo": "scratch-palette",
+ "sha256": "00b4r8bqlxc29k18vig0164d5c9fp5bp5q26d28lwr4f0s4a71d2",
+ "rev": "f6803b448079f4a81cc699cec7442ef543cd5818"
+ },
+ "recipe": {
+ "sha256": "0m6hc2amwnnii4y189kkridhapl9jipkmadvrmwvspgy3lxhlafs",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150225.242",
+ "deps": [
+ "popwin"
+ ]
+ },
+ "ariadne": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "manzyuk",
+ "repo": "ariadne-el",
+ "sha256": "0vh9wfc3657sd12ybjcrxpg6f757x2ghkcl1lw01szmyy5vmj27h",
+ "rev": "6fe401c7f996bcbc2f685e7971324c6f5e5eaf15"
+ },
+ "recipe": {
+ "sha256": "0lfhving19wcfr40gjb2gnginiz8cncixiyyxhwx08lm84qb3a7p",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20131117.1111",
+ "deps": [
+ "bert"
+ ]
+ },
+ "company-ansible": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "krzysztof-magosa",
+ "repo": "company-ansible",
+ "sha256": "06gh33qzglv40r62dsapzhxwparw8ciblv80g7h6y6ilyazwcidn",
+ "rev": "cfe1c915f49d716f30eec654c54db761f662952c"
+ },
+ "recipe": {
+ "sha256": "084l9dr2hvm00952y4m3jhchzxjhcd61sfn5ywj9b9a1d4sr110d",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150901.450",
+ "deps": [
+ "company",
+ "emacs"
+ ]
+ },
+ "flycheck-ocaml": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "flycheck",
+ "repo": "flycheck-ocaml",
+ "sha256": "0fm8w7126vf04n76qhh33rzybvl1n7va2whbqzafbvmv2nny3v94",
+ "rev": "e4412025f27850918762237fa80b33e285a63e7c"
+ },
+ "recipe": {
+ "sha256": "1cv2bb66aql2kj1y1gsl4xji8yrzrq6rd8hxxs5vpfsk47052lf7",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151103.412",
+ "deps": [
+ "emacs",
+ "flycheck",
+ "let-alist",
+ "merlin"
+ ]
+ },
+ "eshell-z": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "xuchunyang",
+ "repo": "eshell-z",
+ "sha256": "0znk2wmvk7b5mi727cawbddvzx74dlm1lwsxgkiylx2qp299ark0",
+ "rev": "5a1317a58d9761c200d0ad49dc4793dec9f9490f"
+ },
+ "recipe": {
+ "sha256": "14ixazj0nscyqsdv7brqnfr0q8llir1pwb91yhl9jdqypmadpm6d",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151110.2246",
+ "deps": [
+ "cl-lib"
+ ]
+ },
+ "fix-word": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "mrkkrp",
+ "repo": "fix-word",
+ "sha256": "17f11v9sd5fay3i4k6lmpsjicdw9j3zvx3fvhx0a86mp7ay2ywwf",
+ "rev": "3e6aa7e3e2625efdac2c0f7d715959dabf01560f"
+ },
+ "recipe": {
+ "sha256": "0a8w09cx8p5pkkd4533nd199axkhdhs2a7blp7syfn40bkscx6xc",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150716.802",
+ "deps": [
+ "cl-lib",
+ "emacs"
+ ]
+ },
+ "celery": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "ardumont",
+ "repo": "emacs-celery",
+ "sha256": "0974bxy85rcxia6dkfryas2g46nanjdf8fv90adbc7kyj07xsf7c",
+ "rev": "5b5b1968fd258c444dc2372e989aab82830004c3"
+ },
+ "recipe": {
+ "sha256": "0m3hmvp6xz2m7z1kbb0ii0j3c95zi19652gfixq5a5x23kz8y59h",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150812.347",
+ "deps": [
+ "dash-functional",
+ "deferred",
+ "emacs",
+ "s"
+ ]
+ },
+ "lib-requires": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/lib-requires.el",
+ "sha256": "1s6969kz6hpgjdm3xp18ik116nji43md7vbya600cmq48njk44nk"
+ },
+ "recipe": {
+ "sha256": "1g22jh56z8rnq0h80wj10gs38yig1rk9xmk3kmhmm5mm6b14iwdx",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150104.1751",
+ "deps": []
+ },
+ "charmap": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "lateau",
+ "repo": "charmap",
+ "sha256": "0crnd64cnsnaj5mcy55q0sc1rnamxa1xbpwpmirhyhxz780klww6",
+ "rev": "165193d91ef96f563ae8366ed4c1a2df5a4eaed2"
+ },
+ "recipe": {
+ "sha256": "1j7762d2i17ysn9ys8j7wfv989avmax8iylml2hc26mwbpyfpm84",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20131019.2358",
+ "deps": []
+ },
+ "parsebib": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "joostkremers",
+ "repo": "parsebib",
+ "sha256": "0n91whyjnrdhb9bqfif01ygmwv5biwpz2pvjv5w5y1d4g0k1x9ml",
+ "rev": "9a1f60bed2814dfb5cec2b92efb5951a4b465cce"
+ },
+ "recipe": {
+ "sha256": "07br2x68scsxykdk2ajc4mfqhdb7vjkcfgz3vnpy91sirxzgfjdd",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151006.432",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "hindent": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "chrisdone",
+ "repo": "hindent",
+ "sha256": "1phyaf6fwaxi2plq38m09cfb5ls401ay8jw0yf5rix8nyvm8nrn9",
+ "rev": "575a7a19f9c86b9699a6222072c79fe02da18c4c"
+ },
+ "recipe": {
+ "sha256": "1f3vzgnqigwbwvglxv0ziz3kyp5dxjraw3vlghkpw39f57mky4xz",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151113.224",
+ "deps": [
+ "cl-lib"
+ ]
+ },
+ "world-time-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "nicferrier",
+ "repo": "emacs-world-time-mode",
+ "sha256": "0i00xm4rynbp2v3gm6h46ajgj8h8nxnsjh6db1659b0hbpnah0ji",
+ "rev": "ce7a3b45c87eb24cfe61eee453175d64f741d7cc"
+ },
+ "recipe": {
+ "sha256": "10gdlz4l9iqw1zdlk5i3knysn36iqxdh3xabjq8kq04jkl7i36dl",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140627.307",
+ "deps": []
+ },
+ "sudden-death": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "yewton",
+ "repo": "sudden-death.el",
+ "sha256": "1007xz4x1wgvxilv1qwf0a4y7hd7sqnnzwk2bdr12kfk7vq9cw2b",
+ "rev": "beba6b4fb42b1e27575d3f722d23a0eb19666736"
+ },
+ "recipe": {
+ "sha256": "1wrhb3d27j07i64hvjggyajm752w4mhrhq09lfvyhz6ykp1ly3fh",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140829.738",
+ "deps": []
+ },
+ "multifiles": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "magnars",
+ "repo": "multifiles.el",
+ "sha256": "065l04ylplng1vgykkbn2vnkcs3sn1k2cikx1ha2q8wmgx6bkvai",
+ "rev": "dddfe64b8e1c1cd1f9ccc1f03405477fc0d53897"
+ },
+ "recipe": {
+ "sha256": "0m0pi2qjis9p6z9cd8hlxm1r88ynwmd2ks8wg65sffffwsdbg4kz",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20130615.1633",
+ "deps": []
+ },
+ "remark-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "torgeir",
+ "repo": "remark-mode.el",
+ "sha256": "0w40cx58c0hmc0yzs8maq1389hwha0qwfbz76pc6kpcx14v1gkhh",
+ "rev": "a7e22eaf17673bd5cbf2f80bdfb219c89c1ea74b"
+ },
+ "recipe": {
+ "sha256": "1zl8k3h4acbgb3hmjs2b4a14g0s0vl3xamrqxrr742zmqpr1h0w0",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151004.1155",
+ "deps": [
+ "markdown-mode"
+ ]
+ },
+ "flatland-theme": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "gchp",
+ "repo": "flatland-emacs",
+ "sha256": "0cl8m1i1aaw4zmkrkhfchhp0gxhpvhcmpjglsisjni47y5mydypf",
+ "rev": "b2c2df1fc20a3a23787644f91f8121d9353f9bf9"
+ },
+ "recipe": {
+ "sha256": "14drqwcp9nv269aqm34d426a7gx1a7kr9ygnqa2c8ia1fsizybl3",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140805.505",
+ "deps": []
+ },
+ "jist": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "emacs-pe",
+ "repo": "jist.el",
+ "sha256": "0irfqrga1hzi8g1bji5mq01z63sp0dqnd8nf0jkf02vgaagrhdc8",
+ "rev": "9e0f37812eb5a215518d9b2beb089ef9e1c28950"
+ },
+ "recipe": {
+ "sha256": "11m9li1016cfkm4931h69d7g1dc59lwjl83wy3yipswdg3zlw0ar",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150927.1318",
+ "deps": [
+ "cl-lib",
+ "emacs",
+ "magit",
+ "pkg-info",
+ "request"
+ ]
+ },
+ "groovy-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "Groovy-Emacs-Modes",
+ "repo": "groovy-emacs-modes",
+ "sha256": "07xiyf30p6hdd6lxv7c6xqpnvw6ys0halg8di0m3pwqz9qf4rj4i",
+ "rev": "74f360ee1ad25755707a89bec9eeed571b6748d0"
+ },
+ "recipe": {
+ "sha256": "1pxw7rdn56klmr6kw21lhzh7zhp338gyf54ypsml64ibzr1x9kal",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151206.154",
+ "deps": []
+ },
+ "redshank": {
+ "fetch": {
+ "tag": "fetchgit",
+ "url": "http://www.foldr.org/~michaelw/projects/redshank.git",
+ "sha256": "5547c5db0caa147ae2fa0099b9c58a8629b47bf4facb6c5cc72cee45e84be392",
+ "rev": "f98e68f532e622bcd464292ca4a9cf5fbea14ebb"
+ },
+ "recipe": {
+ "sha256": "07s4gja1w8piabkajbzrgq77mkdkxr0jy9bmy2qb9w2svfsyns9b",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20120510.1430",
+ "deps": []
+ },
+ "simplenote2": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "alpha22jp",
+ "repo": "simplenote2.el",
+ "sha256": "1a0l0f6by1nmnnq0n52la9g3d357bmwak4qgy6p8g66qb9rx6rzv",
+ "rev": "2a6c539d98968837ec09d2754e9235ff278057a8"
+ },
+ "recipe": {
+ "sha256": "1qdzbwhzmsga65wmrd0mb3rbs71nlyqqb6f4v7kvfxzyis50cswm",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150630.916",
+ "deps": [
+ "request-deferred"
+ ]
+ },
+ "pivotal-tracker": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "jxa",
+ "repo": "pivotal-tracker",
+ "sha256": "1sbwqrk9nciqwm53sfbq3nr9f9zzpz79dmxs8yp005dk7accdlls",
+ "rev": "93f2b45b373bf6972dcc4b16814ef23e1a6c16f5"
+ },
+ "recipe": {
+ "sha256": "195wcfn434yp0p93zqih1snkkg1v7nxgb4gn0klajahmyrrjq2a2",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151203.1350",
+ "deps": []
+ },
+ "cake": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "k1LoW",
+ "repo": "emacs-cake",
+ "sha256": "0bvrwzjx93qyx97qqw0imvnkkx4w91yk99rnhcmk029zj1fy0kzg",
+ "rev": "a7c9f3bee71eb3865060123d4d98e5397c2f967e"
+ },
+ "recipe": {
+ "sha256": "06qlqrazz2jr08g44q73hx9vpp6xnjvkpd6ky108g0xc5p9q2hcr",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140603.2331",
+ "deps": [
+ "anything",
+ "cake-inflector",
+ "historyf"
+ ]
+ },
+ "realgud": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "rocky",
+ "repo": "emacs-dbgr",
+ "sha256": "1qlf9whz912jk7j87zal10b48a9agpfxkyqa7s1xjchs4k662a24",
+ "rev": "4e85910b106e3094d2b27ac34f584df5bf4ab457"
+ },
+ "recipe": {
+ "sha256": "15vlln4w4wlgrk5i5nhgvjcbardpahgs9kwwayb1vmj10c8a837s",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151215.1523",
+ "deps": [
+ "list-utils",
+ "load-relative",
+ "loc-changes",
+ "test-simple"
+ ]
+ },
+ "js2-refactor": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "magnars",
+ "repo": "js2-refactor.el",
+ "sha256": "08wxsz90x5zhma3q8kqfd01avhzxjmcrjc95s757l5xaynsc2bly",
+ "rev": "ac3da94a33b714d44d4f0adc670a829fdc522e34"
+ },
+ "recipe": {
+ "sha256": "09dcfwpxxyw0ffgjjjaaxbsj0x2nwfrmxy1a05h8ba3r3jl4kl1r",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151029.707",
+ "deps": [
+ "dash",
+ "js2-mode",
+ "multiple-cursors",
+ "s",
+ "yasnippet"
+ ]
+ },
+ "ecb": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "alexott",
+ "repo": "ecb",
+ "sha256": "1hs069m4m6vhb37ac2x6hzbp9mfmpd3zhp4m631lx8dlmx11rydz",
+ "rev": "071706b22efcfeb65da8381e317220d7f9d8cb54"
+ },
+ "recipe": {
+ "sha256": "097hdskhfh255znrqamcssx4ns1sgkxchlbc7pjqwzpflsi0fx89",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140215.314",
+ "deps": []
+ },
+ "meta-presenter": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "myTerminal",
+ "repo": "meta-presenter",
+ "sha256": "1x425ah3ymjyp3pxvyzyp4gd8zrjx8lgdzprml8qvf1yk82iv45l",
+ "rev": "bfdbe68384466bf3eb991d05c7f371f0b52a382f"
+ },
+ "recipe": {
+ "sha256": "0f70cfa91wavchlx8d9hdlgq90cmnylhbg2dbw603rzjkyvslp5d",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150501.610",
+ "deps": []
+ },
+ "kroman": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "cheunghy",
+ "repo": "kroman-el",
+ "sha256": "11axxmhdpwgrcyjz200pf5bqzjw9wz4085r8p1n2vr5gx98374fr",
+ "rev": "90402b6ae40383e75d8ba97d66eee93eebf40f70"
+ },
+ "recipe": {
+ "sha256": "0y9ji3c8kndrz605n7b4w5xq0qp093d61hxwhblm3qrh3370mws7",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150827.1840",
+ "deps": []
+ },
+ "quickrun": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "syohex",
+ "repo": "emacs-quickrun",
+ "sha256": "1i7bx81g8xq7659hc1zlvs0afwkr8mg10cki45khxsxwcy5jr7dh",
+ "rev": "fd9d372bcbb9b4ad52dcae782ca007e5aa7087fd"
+ },
+ "recipe": {
+ "sha256": "1szgirakfnkn9ksls16p233sr7x9ck5m1f1kbk6ancj36yja2nki",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151203.2352",
+ "deps": [
+ "cl-lib",
+ "emacs"
+ ]
+ },
+ "enh-ruby-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "zenspider",
+ "repo": "enhanced-ruby-mode",
+ "sha256": "008wggl6xxk339njrgpj2fndbil7k9f3i2hg1mjwqk033j87nbz7",
+ "rev": "73d949ab1de16a4d3f368cde94dd5403c0402ab4"
+ },
+ "recipe": {
+ "sha256": "0r486yajjf7vsaz92ypxpfmz2nsvw9giffpxb9szj7fcry3nfdns",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151123.341",
+ "deps": []
+ },
+ "ukrainian-holidays": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "abo-abo",
+ "repo": "ukrainian-holidays",
+ "sha256": "033v4ck979lhkpwblci5clacfc1xnkq03p5d1m566wff8dp5flwz",
+ "rev": "e52b0c92843e9f4d0415a7ba3b8559785497d23d"
+ },
+ "recipe": {
+ "sha256": "0kbfj2l1rcv74c88nabkwkcl7k9pkim835l24q61zv3i6wf9sykf",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20130720.849",
+ "deps": []
+ },
+ "rsense": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "m2ym",
+ "repo": "rsense",
+ "sha256": "0xkr1qn8fm3kv5c11janq5acp1q02abvxc463zijvm2qk735yl4d",
+ "rev": "8b5ee58318747ca1dde84ee41d48c4f50175cf35"
+ },
+ "recipe": {
+ "sha256": "1901xqlpc8fg4sl9j58jn40i2djs8s0cdcqcrzrq02lvk8ssfdf5",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20100510.2305",
+ "deps": []
+ },
+ "capture": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "pashinin",
+ "repo": "capture.el",
+ "sha256": "08cp45snhyir5w8gyp6xws1q7c54pz06q099l0m3zmwn9277g68z",
+ "rev": "1bb26060311da76767f70096218313fc93b0c806"
+ },
+ "recipe": {
+ "sha256": "1hxrvyq8my5886q7wj5w3mhyja7d6cf19gyclap492ci7kmrkdk2",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20130828.1144",
+ "deps": []
+ },
+ "ocodo-svg-modelines": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "ocodo",
+ "repo": "ocodo-svg-modelines",
+ "sha256": "155gmls6cz3zf4lcj89kzb96y7k0glx0f659jg5z0skgxq79hf48",
+ "rev": "c7b0789a177219f117c4de5659ecfa8622958c40"
+ },
+ "recipe": {
+ "sha256": "0fa88ns70wsr9i9gf4zx3fvmn1a32mrjsda105n0cx6c965kfmay",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150516.919",
+ "deps": [
+ "svg-mode-line-themes"
+ ]
+ },
+ "jedi-core": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "tkf",
+ "repo": "emacs-jedi",
+ "sha256": "0xbp9fcxgbf298w05hvf52z41kk7r52975ailgdn8sg60xc98fa7",
+ "rev": "8da022c8cda511428c72a6dc4c5be3c0a0c88584"
+ },
+ "recipe": {
+ "sha256": "0pzi32zdb4g9n4kvpmkdflmqypa7nckmnjq60a3ngym4wlzbb32f",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151214.905",
+ "deps": [
+ "cl-lib",
+ "emacs",
+ "epc",
+ "python-environment"
+ ]
+ },
+ "dim-autoload": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "tarsius",
+ "repo": "dim-autoload",
+ "sha256": "0bw1gkaycbbv2glnaa36gwzkl1l6lsq7i2i7jinka92b27zvrans",
+ "rev": "d68ef0d2f9204ffe0d521e2647e6d8f473588fd3"
+ },
+ "recipe": {
+ "sha256": "0lhzzjrgfvbqnzwhjywrk3skdb7x10xdq7d21q6kdk3h5r0np9f9",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150815.1032",
+ "deps": []
+ },
+ "sentence-highlight": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/sentence-highlight.el",
+ "sha256": "01qj57zpqpr4rxk9bsx828c7baac1xaa58cz22fncirdx00svn2k"
+ },
+ "recipe": {
+ "sha256": "16kh6567hb9lczh8zpqwbzz5bikg2fsabifhhky8qwxp4dy07v9m",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20121026.950",
+ "deps": []
+ },
+ "pkgbuild-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "juergenhoetzel",
+ "repo": "pkgbuild-mode",
+ "sha256": "077vp3fxwxj7b98ydw6iyi391w3acp73qwk6615yqdylpp66m750",
+ "rev": "7369ab3c6b59cfdf2ecd2b32ad96ce006e766fa0"
+ },
+ "recipe": {
+ "sha256": "1lp7frjahcpr4xnzxz77qj5hbpxbxm2g28apkixrnc1xjha66v3x",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151010.936",
+ "deps": []
+ },
+ "erc-youtube": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "kidd",
+ "repo": "erc-youtube.el",
+ "sha256": "0kh4amx3l3a14qaiyvjyak1jbybs6n49mdvzjrd1i2vd1y74zj5w",
+ "rev": "97054ba8475b442e2aa81e5a291f668b7f28697f"
+ },
+ "recipe": {
+ "sha256": "12ylxkskkgfv5x7vlkib963ichb3rlmdzkf4zh8a39cgl8wsmacx",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150603.1636",
+ "deps": []
+ },
+ "roguel-ike": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "stevenremot",
+ "repo": "roguel-ike",
+ "sha256": "108j3106n9anas07mj26xlrvscsl5irshd39czkippla84gwmgyc",
+ "rev": "6d9322ad9d43d0c7465f125c8e08b222866e6923"
+ },
+ "recipe": {
+ "sha256": "1a7sa6nhgi0s4gjh55bhk5cg6q6s7564fk008ibmrm05gfq9wlg8",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140227.929",
+ "deps": [
+ "popup"
+ ]
+ },
+ "memoize": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "skeeto",
+ "repo": "emacs-memoize",
+ "sha256": "0fjwlrdm270qcrqffvarw5yhijk656q4lam79ybhaznzj0dq3xpw",
+ "rev": "b55eab0cb6ab05d941e07b8c01f1655c0cf1dd75"
+ },
+ "recipe": {
+ "sha256": "0mzz3hghnbkmxf9wgjqv3sbyxyqqzvvscazq9ybb0b41qrzm73s6",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20130421.1434",
+ "deps": []
+ },
+ "helm-words": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "pronobis",
+ "repo": "helm-words",
+ "sha256": "19l8vysjygscr1nsddjz2yv0fjhbsswfq40rdny8zsmaa6qhpj35",
+ "rev": "637aa3a7e9cfd34e0127472c5b1f993a4da26185"
+ },
+ "recipe": {
+ "sha256": "0l9mb7g3xzasna1bw2p7vh2wdg1hmjkff40p8kpqvwwzszdm9v76",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150413.1518",
+ "deps": []
+ },
+ "name-this-color": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "knl",
+ "repo": "name-this-color.el",
+ "sha256": "0amhw630hgc0j8wr8m6aav399ixi3vbwrck79hhlr3pmyh91vv7n",
+ "rev": "e37cd1291d5d68d4c8d6386eab9cb9d94fd3bcfa"
+ },
+ "recipe": {
+ "sha256": "12nrk1ww766jb4gb4iz6w485nimh2iv8wni2jq4l38v8ndh490zb",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151014.1530",
+ "deps": [
+ "cl-lib",
+ "dash",
+ "emacs"
+ ]
+ },
+ "git-messenger": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "syohex",
+ "repo": "emacs-git-messenger",
+ "sha256": "038m4fjva8ynlms6dbh55w8x8wsn9c3z02rh4782ck2zi51q0d8g",
+ "rev": "7b16fdc9f6fd1a3b9c9f212b1633291c4c18fc9b"
+ },
+ "recipe": {
+ "sha256": "1rnqsv389why13cy6462vyq12qc2zk58p01m3hsazp1gpfw2hfzn",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150314.802",
+ "deps": [
+ "cl-lib",
+ "popup"
+ ]
+ },
+ "maven-test-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "rranelli",
+ "repo": "maven-test-mode",
+ "sha256": "1xn2yyr8mr90cynbxgv0h5v180pzf0ydnjr9spg34mrdicqlki6c",
+ "rev": "a19151861df2ad8ae4880a2e7c86ddf848cb569a"
+ },
+ "recipe": {
+ "sha256": "1k9w51rh003p67yalzq1w8am40nnr2khyyb5y4bwxgpms8z391fm",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20141219.2357",
+ "deps": [
+ "emacs",
+ "s"
+ ]
+ },
+ "rails-new": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "cheunghy",
+ "repo": "rails-new",
+ "sha256": "0cqp2vns7gq377bm6q9n5q0ra1d5yy2x2aiw9q1hswk82xpibj9l",
+ "rev": "b68055a99cde15f9d02ab36b8ad0ea7ab35b2283"
+ },
+ "recipe": {
+ "sha256": "0wgbm6qxqkpsbzj9wccicsphajaii07dl27b8x2vidsyw6ambj5h",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20141221.249",
+ "deps": []
+ },
+ "help-mode+": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/help-mode+.el",
+ "sha256": "1xnlb1sn52dzpwz2hx0wr34682cl83nar7qsacsn70z9h443a30j"
+ },
+ "recipe": {
+ "sha256": "1pmb845bxa5kazjpdxm12rm2wcshmv2cmisigs3kyva1pmi1shra",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150104.1616",
+ "deps": []
+ },
+ "nnir-est": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "kawabata",
+ "repo": "nnir-est",
+ "sha256": "0gzxcq0gki89dz9ad26683zhq1nif3wdz185cdplwy68z9szbdx1",
+ "rev": "ba263fbd872fe05cfa6b3d815c0d98cdbe24b687"
+ },
+ "recipe": {
+ "sha256": "04ih47pipph8sl84nv6ka4xlpd8vhnpwhs5cchgk5k1zv3l5scxv",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140301.802",
+ "deps": []
+ },
+ "discover-my-major": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "steckerhalter",
+ "repo": "discover-my-major",
+ "sha256": "183dh0laiwnnrjfp9kimg4s9lrzv2lvrc35203igjadj74vpbg1a",
+ "rev": "22130d8f16ef1bf7835d6204216c8c6b1fc8eb95"
+ },
+ "recipe": {
+ "sha256": "0ch2y4grdjp7pvw2kxqnqdl7jd3q609n3pm3r0gn6k0xmcw85fgg",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151008.212",
+ "deps": [
+ "makey"
+ ]
+ },
+ "never-comment": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "To1ne",
+ "repo": "never-comment",
+ "sha256": "0p00mmid04pfsna4ify3cy0b9lx431q1r5h772hihsg4f1rs2ppy",
+ "rev": "74ded8f1e7f23240f5f6032d0451fb0a51733bc4"
+ },
+ "recipe": {
+ "sha256": "0sn8y57895bfpgiynnj4m9b3x3dbb9v5fwkcwmf9jr39dbf98v6s",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140104.1607",
+ "deps": []
+ },
+ "helm": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "emacs-helm",
+ "repo": "helm",
+ "sha256": "1dsipz9qz3bsmgj49z42vfs3ggdv37jcn852hffwjyzlhalwpi8i",
+ "rev": "e42e3ed6543b72756e6f2f1a96cbd0d35166cb6e"
+ },
+ "recipe": {
+ "sha256": "0xsf4rg7kn0m5wjlbwhd1mc38lg2822037dyd0h66h6x2gbs3fd9",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151218.1416",
+ "deps": [
+ "async",
+ "cl-lib",
+ "emacs",
+ "helm-core"
+ ]
+ },
+ "helm-flyspell": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "pronobis",
+ "repo": "helm-flyspell",
+ "sha256": "1k7invgzqrcm11plyvinqwf98yxibr8i4r9yw3csfsicc8b6if59",
+ "rev": "a9ea896fd932fec15709b88ef8bf101dff261b2d"
+ },
+ "recipe": {
+ "sha256": "1g6xry2y6396pg7rg8hc0l84z5r3j2df7dpd1jgffxa8xa3i661f",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151026.1112",
+ "deps": [
+ "helm"
+ ]
+ },
+ "latex-preview-pane": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "jsinglet",
+ "repo": "latex-preview-pane",
+ "sha256": "1bvhrh9xfl7p474b8jcczw255d2pjmrz5b60wis0lmmxdljplrfa",
+ "rev": "1a0539ab70eaf5dd31c2c94773dddd6f437fed41"
+ },
+ "recipe": {
+ "sha256": "1id1l473azmc9hm5vq5wba8gad9np7sv38x94qd2zkf8b78pzkbw",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151023.1503",
+ "deps": []
+ },
+ "pastelmac-theme": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "bmastenbrook",
+ "repo": "pastelmac-theme-el",
+ "sha256": "1v5mpjb8kavbqhvg4rizwg8cypgmi6ngdiy8qp9pimmkb56y42ly",
+ "rev": "bead21741e3f46f6506e8aef4469d4240a819389"
+ },
+ "recipe": {
+ "sha256": "168zzqhp2dbfcnknwfqxk68rgmibfw71ksghvi6h2j2c1m08l23f",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151030.2136",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "omni-scratch": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "AdrieanKhisbe",
+ "repo": "omni-scratch.el",
+ "sha256": "1icdk19vwihc8mn04yxl2brql2gssn3gxd5bv7ljdd6mn5hkw500",
+ "rev": "7e04d7f20ee383bf72dfdcfd642bf08e4b8ab973"
+ },
+ "recipe": {
+ "sha256": "190dkqcw8xywzrq8a99w4rqi0y1h2aj23s84g2ln1sf7jaf6d6n9",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151211.1059",
+ "deps": []
+ },
+ "company-auctex": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "alexeyr",
+ "repo": "company-auctex",
+ "sha256": "0mkyg9y1rhl6hdzhr51psnvy2q0zw4y29m9p0ivb7s643k3fjjp5",
+ "rev": "780ba68b4154ecac4f20dbd4b1ba561ba40f248b"
+ },
+ "recipe": {
+ "sha256": "1jia80sqmm83kzjcf1h1d9iz2k4k9albzvfka5hx6hpa4h8nm5q4",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151102.843",
+ "deps": [
+ "auctex",
+ "company",
+ "yasnippet"
+ ]
+ },
+ "newlisp-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "kosh04",
+ "repo": "newlisp-mode",
+ "sha256": "05jwaj7wlrdpmylawv14ypwpg9qz9pqqqd1nvb94b9gbs79j86z5",
+ "rev": "7f44e7c763bd16481e78bced5ff310b8113883e5"
+ },
+ "recipe": {
+ "sha256": "0i2d2gyzzvpr5qm2cqzbn9my21lfb66315hg9fj86ac5pkc25zrd",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150120.1240",
+ "deps": []
+ },
+ "flycheck-hdevtools": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "flycheck",
+ "repo": "flycheck-hdevtools",
+ "sha256": "1lzr2hdq5m8n331bz5213gf9n9zhhrw9xa1z1r9rkwam1mc23ciy",
+ "rev": "6997f8d033811b7a169052fa23c086fd8e904edb"
+ },
+ "recipe": {
+ "sha256": "0ahvai1q4x59ryiyccvqvjisgqbaiahx4gk8ssaxhblhj0sqga93",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150329.523",
+ "deps": [
+ "dash",
+ "flycheck"
+ ]
+ },
+ "mellow-theme": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "emacsfodder",
+ "repo": "emacs-mellow-theme",
+ "sha256": "0bilwhvprzk634sk5hnxilrvrl0yv593swzznch0p38hqxl585ld",
+ "rev": "ab72898824af6452d0cefea16e49491e42b660d1"
+ },
+ "recipe": {
+ "sha256": "0kl1psykx7akxwabszk4amszh3zil8ia4bfbjjvr6h9phgx66pb0",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20141116.102",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "org-fstree": {
+ "fetch": {
+ "tag": "fetchgit",
+ "url": "http://repo.or.cz/r/org-fstree.git",
+ "sha256": "35000fb42e317ec1a6e6c7b448bfdec7ecf65fd9f5ab4723062513c3a4acba79",
+ "rev": "24e305c6443be9f45198185772eecfddc390a9ce"
+ },
+ "recipe": {
+ "sha256": "11ddkfddmsy26mmhgw24757f753ssh056v9vxn89pxp4qypxidfz",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20090723.1019",
+ "deps": []
+ },
+ "el-sprunge": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "eschulte",
+ "repo": "el-sprunge",
+ "sha256": "04k1fz0ypmfzgwamncp2vz0lq54bq6y7c8k9nm39csp2564vmbbc",
+ "rev": "37855ec60aeb4d565c49a4d711edc7341e9a22cb"
+ },
+ "recipe": {
+ "sha256": "0rb1cr7zrfl1s5prxy3xwdqgnm8ddw33pcvk049km2qbccb08v6a",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140106.1939",
+ "deps": [
+ "emacs",
+ "htmlize",
+ "web-server"
+ ]
+ },
+ "4clojure": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "joshuarh",
+ "repo": "4clojure.el",
+ "sha256": "1fybicg46fc5jjqv7g2d3dnj1x9n58m2fg9x6qxn9l8qlzk9yxkq",
+ "rev": "3cdfd356c24cd3518397d29ae833f56a4d20b4ca"
+ },
+ "recipe": {
+ "sha256": "1w9zxy6jwiln28cmdgkbbdfk3pdscqlfahrqi6lbgpjvkw9z44mb",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20131014.1707",
+ "deps": [
+ "json",
+ "request"
+ ]
+ },
+ "mustard-theme": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "emacsfodder",
+ "repo": "emacs-mustard-theme",
+ "sha256": "170qhbbvcv9dg6jzfd9r95in5m8z1k647mn0gaqflfj0hvq5hwgf",
+ "rev": "33bc6e3a0e2abc5668afdb349bca7e8b5730582c"
+ },
+ "recipe": {
+ "sha256": "0izxhivhmv49dja4wy9n0ipd41xdzdza2ql7pfa7ny35ji5hskik",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20141116.102",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "blank-mode": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/blank-mode.el",
+ "sha256": "1wdplnmdllbydwr9gyyq4fbkxl5xjh7220vd4iajyv74pg2jkkkv"
+ },
+ "recipe": {
+ "sha256": "1pyx5xwflnni9my5aqpgf8xz4q4rvmj67pwb4zxx1lghrca97z87",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20130824.659",
+ "deps": []
+ },
+ "sly-company": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "capitaomorte",
+ "repo": "sly-company",
+ "sha256": "0qpw345ch5b9dbznk916f6h9f9dnf03wfyvpgnzdf30ffvf4q01w",
+ "rev": "21248bd852c9520ec27692f286c5f43b50892b12"
+ },
+ "recipe": {
+ "sha256": "034gnxmcdn1f9b08gs9r8ycbam4212ip1z4kmmpwgpl9zcq9z5kj",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151126.222",
+ "deps": [
+ "company",
+ "emacs",
+ "sly"
+ ]
+ },
+ "ht": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "Wilfred",
+ "repo": "ht.el",
+ "sha256": "17x5w5kzam8cgaphyasnqzm2yhc0hwm38azvmin7ra4h912vlisd",
+ "rev": "84b5b4404515ed3a3f6a85aacf2723302de851a4"
+ },
+ "recipe": {
+ "sha256": "16vmxksannn2wyn8r44jbkdp19jvz1bg57ggbs1vn0yi7nkanwbd",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150830.1315",
+ "deps": []
+ },
+ "quelpa": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "quelpa",
+ "repo": "quelpa",
+ "sha256": "0v5fcbjf7ndmywjsq9di3cwxsh2csv5pj3mqgqb340i2yp77r9wy",
+ "rev": "e011b4fa916a8b6057225f3e7ee6befc8928d443"
+ },
+ "recipe": {
+ "sha256": "1g53fcy837hpyn9lnmmri0h4c5va61vszhblz4caadqq265hknvs",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151203.305",
+ "deps": [
+ "emacs",
+ "package-build"
+ ]
+ },
+ "erc-yt": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "yhvh",
+ "repo": "erc-yt",
+ "sha256": "1dlw34kaslyvnsrahf4rm76r2b7qqqn589i4mmhr23prl8xbz9z9",
+ "rev": "43e7d49325b17a3217a6ffb4a9daf75c5ff4e6f8"
+ },
+ "recipe": {
+ "sha256": "0yrwvahv4l2s1aavy6y6mjlrw8l11i00a249825ab5yaxrkzz7xc",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150426.749",
+ "deps": [
+ "dash"
+ ]
+ },
+ "org-webpage": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "tumashu",
+ "repo": "org-webpage",
+ "sha256": "15r6scvg3pynzj0waam9m22s3ym5kri4mwrsjkyxgz5fr929crj7",
+ "rev": "944b46e74d0d753a30bfefbebbe533abe06d25f4"
+ },
+ "recipe": {
+ "sha256": "0vwv8cv38gx8rnfskbmnaf8y8sffjqy1408655bwhjz6dp69qmah",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151125.15",
+ "deps": [
+ "cl-lib",
+ "dash",
+ "ht",
+ "htmlize",
+ "mustache",
+ "org",
+ "web-server"
+ ]
+ },
+ "elisp-slime-nav": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "purcell",
+ "repo": "elisp-slime-nav",
+ "sha256": "184yxv2qhqc2g5v259kprihppvcwsd52idjay2c01lkmk1i3qnj5",
+ "rev": "f6d241b11abbc4064e17e02dbd0bc6c61db256cc"
+ },
+ "recipe": {
+ "sha256": "009zgp68i4naprpjr8lcp06lh3i5ickn0nh0lgvrqs0niprnzh8c",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150805.1448",
+ "deps": []
+ },
+ "vlf": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "m00natic",
+ "repo": "vlfi",
+ "sha256": "0vl0hwxzzvgna8sysf517qq08fi1zsff3dmcgwvsgzhc47sq8mng",
+ "rev": "4eaf763cadac62d7a74f7b2d2436d7793c8f7b43"
+ },
+ "recipe": {
+ "sha256": "1ipkv5kmda0l39xwbf7ns9p0mx3kb781mxsm9vmbkhr5x577s2j8",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150101.918",
+ "deps": []
+ },
+ "xkcd": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "vibhavp",
+ "repo": "emacs-xkcd",
+ "sha256": "0gd7ag7cqzkfk8y9rbkrjpnyjnwad5bx86a30vxamd1ql8xp57ap",
+ "rev": "8f0009f15926f37f2ea02471425ab6dbac00e50d"
+ },
+ "recipe": {
+ "sha256": "1r88yhs8vnkak8xl16vw3xdpm7ncz4ydkml8932bqk8xix8l8f0w",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151016.2353",
+ "deps": [
+ "json"
+ ]
+ },
+ "github-notifier": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "xuchunyang",
+ "repo": "github-notifier.el",
+ "sha256": "1z3ikxa4wz2gqzny6a7ll0h80y5db7jsh4iz7ynsmlbrck2s9kqk",
+ "rev": "d3d8ee1711972872f660a3129430bcc2c1ec573a"
+ },
+ "recipe": {
+ "sha256": "1jqc2wx1pvkca8syj97ds32404szm0wn12b7zpa98265sg3n64nw",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151109.523",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "easy-after-load": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "pd",
+ "repo": "easy-after-load",
+ "sha256": "09ikwg5s42b50lfj0796pa2h32larkf5j6cy042dzh8c441vgih4",
+ "rev": "f8e6e10725d80d3b7e8b1ca966de6190089d8f12"
+ },
+ "recipe": {
+ "sha256": "1mn4hpx82nifphzx71yw3rbixbgis8bhvl3iyxcgcd88n5hqwvys",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20121224.2049",
+ "deps": []
+ },
+ "recover-buffers": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "tripleee",
+ "repo": "recover-buffers",
+ "sha256": "114ssmby614xjs7mrpbbsdd4gj5ra6klfh8h6z8iij8xn3kii83q",
+ "rev": "a1db7f084977697081da3497628e3514e032b966"
+ },
+ "recipe": {
+ "sha256": "0g40d7440hzlc9b45v63ng0anvmgip4dhbd9wcm2sn8qjfr4w11b",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150812.205",
+ "deps": []
+ },
+ "evil-args": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "wcsmith",
+ "repo": "evil-args",
+ "sha256": "1nh7wa4ynr7ln42x32znzqsmh7ijzy5ymd7rszf49l8677alvazq",
+ "rev": "2a88b4d19953a11227cc1e91973b92149116f44c"
+ },
+ "recipe": {
+ "sha256": "1bwdvf1i3jc77bw2as1wr1djm8z3a7wms60694xkyqh0m909hs2w",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140329.1629",
+ "deps": [
+ "evil"
+ ]
+ },
+ "smart-region": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "uk-ar",
+ "repo": "smart-region",
+ "sha256": "0h559cdyln5f4ignx1r86ryi7wizys0gj03dj7lfzaxr7wkd0jaf",
+ "rev": "5a8017fd8e8dc3483865951c4942cab3f96f69f6"
+ },
+ "recipe": {
+ "sha256": "1bcvxf62bfi5lmhprma9rh670kka9p9ygbkgmv6dg6ajjfsplgwc",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150903.903",
+ "deps": [
+ "cl-lib",
+ "emacs",
+ "expand-region",
+ "multiple-cursors"
+ ]
+ },
+ "color-theme-approximate": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "tungd",
+ "repo": "color-theme-approximate",
+ "sha256": "1b0ymwszqsjcihcbfp7s4fjam983ixh3yb7sdc0rmqlyric1zwxq",
+ "rev": "f54301ca39bc5d2ffb000f233f8114184a3e7d71"
+ },
+ "recipe": {
+ "sha256": "1wdnia9q42x7vky3ks555iic5s50g4mx7ss5ppaljvgxvbxyxqh1",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140227.2236",
+ "deps": []
+ },
+ "framemove": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/framemove.el",
+ "sha256": "03ll68d0j0b55rfxymzcirdigkmxcy8556d0i67ghdzmcqfwily7"
+ },
+ "recipe": {
+ "sha256": "10qf017j0zfnzmcs1i56pznhbvgw7mv4232p8znqaaxphgh6r0ar",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20130328.633",
+ "deps": []
+ },
+ "real-auto-save": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "chillaranand",
+ "repo": "real-auto-save",
+ "sha256": "1kghhps8mqys5l59qwzv3fgy1fvb15cnyaxmk29v818a6khjc5l2",
+ "rev": "81bf61742ea553ccdee0e22d3abb43fcf07f82cf"
+ },
+ "recipe": {
+ "sha256": "03dbbizpyg62v6zbq8hd16ikrifz8m2bdlbb3g67f2834xqmxha8",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150701.1015",
+ "deps": []
+ },
+ "ebib": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "joostkremers",
+ "repo": "ebib",
+ "sha256": "015dch0f4h9qrjgv3rapxq5afi8g074jfgjjsgvqcm90myx12p1m",
+ "rev": "9ef4cb26f944bf6a9a0fb6054e5fc65f89270130"
+ },
+ "recipe": {
+ "sha256": "1kdqf5nk9l6mr3698nqngrkw5dicgf7d24krir5wrcfbrsqrfmid",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151116.933",
+ "deps": [
+ "dash",
+ "emacs",
+ "parsebib"
+ ]
+ },
+ "db-pg": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "nicferrier",
+ "repo": "emacs-db-pg",
+ "sha256": "15r0qwjkl33p8kh2k5kxz9wnbkv1k470b1h0i6svvljkx9ynk68a",
+ "rev": "7d5ab86b74b05fe003b3b434d4835f37f3f3eded"
+ },
+ "recipe": {
+ "sha256": "06nfibw01ijv7nr0m142y80jbbpg9kk1dh19s5wq7i6fqf7g08xg",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20130131.1302",
+ "deps": [
+ "db",
+ "pg"
+ ]
+ },
+ "multiple-cursors": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "magnars",
+ "repo": "multiple-cursors.el",
+ "sha256": "0hl9ll7pgqv74dnihyy0gz15wz0swj1cpa208484qd3g0dvin8j6",
+ "rev": "a393384b3508e7d8d721e66d2bfb97fa7153dd4f"
+ },
+ "recipe": {
+ "sha256": "0mky5p9wpd3270wr5vfna8rkk2ff81wk7vicyxli39195m0qgg0x",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151205.1425",
+ "deps": []
+ },
+ "tss": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "aki2o",
+ "repo": "emacs-tss",
+ "sha256": "1bk5v9dffs65qsay0dp336s2ly065nd0cg572zz058ikwxd44zd3",
+ "rev": "81ac6351a2ae258fd0ebf916dae9bd5a179fefd0"
+ },
+ "recipe": {
+ "sha256": "0d16x5r2xfy6mrwy0mqzpr9b3inqmyyxgawrxlfh83j1xb903dhm",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150913.908",
+ "deps": [
+ "auto-complete",
+ "json-mode",
+ "log4e",
+ "yaxception"
+ ]
+ },
+ "isearch+": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/isearch+.el",
+ "sha256": "1cg5rvc16ljncini13fpwmzfhp3zy9rd1jvdd3jxpdkqzw07rnc6"
+ },
+ "recipe": {
+ "sha256": "1rzlsf08nmc3p3vhpwbiy8cgnnl2c10xrnsr2rlpv0g2kxkrd69r",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151128.941",
+ "deps": []
+ },
+ "ac-js2": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "ScottyB",
+ "repo": "ac-js2",
+ "sha256": "0yn9333rjs2pzb1wk1japclsqagdcl28j0yjl3q5b70g5gi5vx7k",
+ "rev": "721c482e1d4a08f4a29a74437257d573e8f69969"
+ },
+ "recipe": {
+ "sha256": "0gcr0xdi89nj3854v2z3nndfgazmcdzmd6wdndl0i4s7pdfl96fa",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140906.642",
+ "deps": [
+ "js2-mode",
+ "skewer-mode"
+ ]
+ },
+ "turnip": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "kljohann",
+ "repo": "turnip.el",
+ "sha256": "0khl4q22x6vdn87xdqqg5f535d4dqpnfbhk6qhlh187p1w7qaiq4",
+ "rev": "2fd32562fc6fc1cda6d91aa939cfb29f9b16e9de"
+ },
+ "recipe": {
+ "sha256": "1vfqv71j47fn53klz3jl8r8hscywd01kkl4w96a308sac3lhbrps",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150309.129",
+ "deps": [
+ "dash",
+ "s"
+ ]
+ },
+ "soft-stone-theme": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "mswift42",
+ "repo": "soft-stone-theme",
+ "sha256": "030mf8b0sf9mmzwhg85zh0ccvcg768kckwvbm0yzg7vmq1x46hjl",
+ "rev": "fb475514cfb02cf30ce358a61c48e46614344d48"
+ },
+ "recipe": {
+ "sha256": "05jjw9z6hqln9yj8ya2xrmjnylp7psfdj9206n30m3lwnlwx399v",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140614.335",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "el2markdown": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "Lindydancer",
+ "repo": "el2markdown",
+ "sha256": "03xlxx57z1id9mr7afkvf77m2f9rrknrm1380p51vka84v2hl3mh",
+ "rev": "875648f9a65ed18fe71fc72872a0db70aab5253d"
+ },
+ "recipe": {
+ "sha256": "1a52qm0jrcvvpb01blr5l7apaxqn4bvhkgha53cr48rdkmmq318g",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150516.1538",
+ "deps": []
+ },
+ "espuds": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "ecukes",
+ "repo": "espuds",
+ "sha256": "16r4j27j9yfdiy841w9q5ykkc6n3wrm7hvfacagb32mydk821ijg",
+ "rev": "1405972873339e056517217136de4ad3202d744a"
+ },
+ "recipe": {
+ "sha256": "16yzw9l64ahf5v92jzb7vyb4zqxxplq6qh0y9rkfmvm59s4nhk6c",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151114.959",
+ "deps": [
+ "dash",
+ "f",
+ "s"
+ ]
+ },
+ "nav-flash": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "rolandwalker",
+ "repo": "nav-flash",
+ "sha256": "07wjicbvzg7cz983hv0p2qw1qlln07djigkmbqfpwvg3fk50fdyg",
+ "rev": "53f5bc59e3f32c1192d15637d3979732dacb2c35"
+ },
+ "recipe": {
+ "sha256": "0936kr0s6zxxmjwaqm7ywdw2im4dxai1xb7j6xa2gp7c70qvvsx3",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140508.1541",
+ "deps": []
+ },
+ "persp-projectile": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "bbatsov",
+ "repo": "projectile",
+ "sha256": "01mwciy9bacx5vkxckp0hsxx0s00qss48kkcc2rhlypdcmmawvn7",
+ "rev": "05058b1c73799b07003ad0978f5ba9a231783be4"
+ },
+ "recipe": {
+ "sha256": "0bqq13rr1hc7rhmw37rbrwaz9flcv3hw3hx0k5b7y9zd3qndy2cj",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150405.327",
+ "deps": [
+ "cl-lib",
+ "perspective",
+ "projectile"
+ ]
+ },
+ "osx-location": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "purcell",
+ "repo": "osx-location",
+ "sha256": "1csnxpsfnv9lv07kgvc60qx5c33sshmnz60p3qjz7ym7rnjy9b5x",
+ "rev": "110aee945b53ea550e4debe69bf3c077d940ec8c"
+ },
+ "recipe": {
+ "sha256": "1p12mmrw70p3b04zlprkdxdfnb7m3vkm6gci3fwhr5zyfvwxvn0c",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150613.417",
+ "deps": []
+ },
+ "objc-font-lock": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "Lindydancer",
+ "repo": "objc-font-lock",
+ "sha256": "138c1nm579vr37dqprqsakfkhs2awm3klzyyd6bv9rhkrysrpbqk",
+ "rev": "34b457d577f97ca94b8792d025f9a909c7610612"
+ },
+ "recipe": {
+ "sha256": "0njslpgdcph3p3gamrbd6pc04szks07yv4ij3p1l7p5dc2p06rs6",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20141021.1322",
+ "deps": []
+ },
+ "unify-opening": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "DamienCassou",
+ "repo": "unify-opening",
+ "sha256": "1vbx10s2zmhpxjg26ik947bcg9f7w3g2w45wmm0shjp743fsdq8p",
+ "rev": "2812e43029cab7183197ce5e3c9577856bfd22c5"
+ },
+ "recipe": {
+ "sha256": "1gpmklbdbmv8va8d3yr94r1ydkcyvdzcgxv56rp0bxwbcgmk0as8",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151116.1848",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "visual-regexp": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "benma",
+ "repo": "visual-regexp.el",
+ "sha256": "04wds01yzhia508852gm18rp7dkg0838j0w8cr1l1qmc8p0jjsz9",
+ "rev": "58566c09e593dda9c3e3a348310a9bdc42dcb3d8"
+ },
+ "recipe": {
+ "sha256": "16bdqq2j7pnjq3j6qa4rhxzidqdhyg80c7nazd93smis8rcv5d0z",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151206.719",
+ "deps": [
+ "cl-lib"
+ ]
+ },
+ "ghc": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "kazu-yamamoto",
+ "repo": "ghc-mod",
+ "sha256": "0s3d2h0fhsli2bq6q6kfaf8gng1wfff6rr1ms6smpg1sxd3k783n",
+ "rev": "2988749b844136148bdd35f239d3f4747813b821"
+ },
+ "recipe": {
+ "sha256": "0xqriwggd1ahla5aff7k0j4admx6q18rmqsx3ipn4nfk86wrhb8g",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151211.1843",
+ "deps": [
+ "haskell-mode"
+ ]
+ },
+ "orgtbl-show-header": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "DamienCassou",
+ "repo": "orgtbl-show-header",
+ "sha256": "0zfiq9d5jqzpmscngb1s2jgfiqmbi4dyw0fqa59v2g84gxjg793x",
+ "rev": "f0f48ccc0f96d4aa2a676ff609d9dddd71748e6f"
+ },
+ "recipe": {
+ "sha256": "1xgqjg3lmcczdblxaka47cc1ad8p8jhyb2nqwq0qnbqw46fqjp3k",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20141023.337",
+ "deps": []
+ },
+ "inf-php": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "taksatou",
+ "repo": "inf-php",
+ "sha256": "1z5ns94xgj2dkv2sc2ckax6bzwdxsm19pkvni24ys2w7d5nhajzr",
+ "rev": "4396022d6e169f0cf30cd9f68ca575d8b30c418a"
+ },
+ "recipe": {
+ "sha256": "011sc6f0ka7mmik8z0df8qk24mf6ygq22jy781f2ikhjh94gy83d",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20130414.221",
+ "deps": [
+ "php-mode"
+ ]
+ },
+ "omniref": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "dotemacs",
+ "repo": "omniref.el",
+ "sha256": "1hzvpajq58py6k7z2rwwax1c7pm65m534mq8mr9g9kxn9hqiz9n8",
+ "rev": "0026e0472c7071e06cfdc24be91d3f4989ba8115"
+ },
+ "recipe": {
+ "sha256": "0lgw1knqppdg046zqx4m7nbzvsasr89wa9i4594hf46w1094dabj",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151118.221",
+ "deps": []
+ },
+ "flycheck-dialyzer": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "lbolla",
+ "repo": "emacs-flycheck-dialyzer",
+ "sha256": "15dc76r047pnxll229z0pmpn76zw3cc6qs81b7wg7yc5czsk8axh",
+ "rev": "3560214658cbdbd454f8b3d4f108cb51537afa36"
+ },
+ "recipe": {
+ "sha256": "0bn81yzijmnfg5xcnvcvxvqxz995iaafhgbfckgcal974s229kd2",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151024.37",
+ "deps": [
+ "flycheck"
+ ]
+ },
+ "ninja-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "martine",
+ "repo": "ninja",
+ "sha256": "1yvgamxjqyzpwk59lm3gvcw6f9ab64cnbwwcmmyrk4yxhyva6r3q",
+ "rev": "9a4eb587f3d3dcc6e6edd8d344a93b1c32d27dc7"
+ },
+ "recipe": {
+ "sha256": "1m7f25sbkz8k343giczrnw2ah5i3mk4c7csi8kk9x5y16030asik",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20141203.2359",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "el-x": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "sigma",
+ "repo": "el-x",
+ "sha256": "1i6j44ssxm1xdg0mf91nh1lnprwsaxsx8vsrf720nan7mfr283h5",
+ "rev": "e96541c1f32e0a3aca4ad0a0eb382bd898250163"
+ },
+ "recipe": {
+ "sha256": "1721d9mljlcbdwb5b9934q7a48y30x6706pp4bjvgys0r64dml5g",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140111.1601",
+ "deps": []
+ },
+ "migemo": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "emacs-jp",
+ "repo": "migemo",
+ "sha256": "1az4mnmanhz9ga0g46jf33w8axcw8lnrb9lmszajwv7y5j9nk7yr",
+ "rev": "c2240afa9afc0f003bb1d846710505e8e8e38169"
+ },
+ "recipe": {
+ "sha256": "0y49imdwygv5zd7cyh9ngda4gyb2mld2a4s7zh4yzlh7z5ha9qkr",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150412.941",
+ "deps": [
+ "cl-lib"
+ ]
+ },
+ "screenshot": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/screenshot.el",
+ "sha256": "0q7yxaaa0fic4d2xwr0qk28clkinwz4xvw3wf8dv1g322s0xx2cw"
+ },
+ "recipe": {
+ "sha256": "0aw2343as38y26r2g7wpn1rq1n6xpw4y5c7ir8qh1crkc1y513hs",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20120509.605",
+ "deps": []
+ },
+ "easy-repeat": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "xuchunyang",
+ "repo": "easy-repeat.el",
+ "sha256": "18bm5ns1qrxq0rrz9sylshr62wkymh1m6b7ch2y74f8rcwdwjgnq",
+ "rev": "060f0e6801c82c40c06961dc0528a00e18947a8c"
+ },
+ "recipe": {
+ "sha256": "1vx57gpw0nbxh976s18va4ali1nqxqffhaxv1c5rhf4pwlk2fa06",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150516.348",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "python3-info": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "dvhansen",
+ "repo": "python3-info",
+ "sha256": "1w29l4zyvcchjdywz2py95qq7bszhldpga2ng75g7p07pq7f2w1p",
+ "rev": "4530e180ded2ad64774e51742eece3e5ea00c5f5"
+ },
+ "recipe": {
+ "sha256": "1hma8sphxk95m25s56adgyk7d4blsc02gq5a7vw1pawwvxm2qlz3",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151117.31",
+ "deps": []
+ },
+ "doremi-frm": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/doremi-frm.el",
+ "sha256": "0p2wcyb1cqa6b0lvrc83wj6xwl8gnmfg12k1q36scq2y430qbmdc"
+ },
+ "recipe": {
+ "sha256": "1rj3p665q32acsxxwygv1j5nbmjqrhi0b4glzrk88xki4lyz0ihz",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150727.1554",
+ "deps": [
+ "doremi",
+ "faces+",
+ "frame-fns",
+ "hexrgb"
+ ]
+ },
+ "weblogger": {
+ "fetch": {
+ "tag": "fetchbzr",
+ "url": "lp:weblogger-el",
+ "sha256": "1z7ld9d0crwdh778fyaapx75vpnlnslsh9nf07ywkylhz4w68yyv",
+ "rev": "38"
+ },
+ "recipe": {
+ "sha256": "17ccj602cp0lrs30rcp45g7fqb7k1l1hr9h8z4gh7rqs0n7z1jad",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20110926.1118",
+ "deps": [
+ "xml-rpc"
+ ]
+ },
+ "helm-ad": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "tnoda",
+ "repo": "helm-ad",
+ "sha256": "0hxfgdn56c7qr64r59g9hvxxwa4mw0ad9c9m0z5cj85bsdd7rlx4",
+ "rev": "8ac044705d8620ee354a9cfa8cc1b865e83c0d55"
+ },
+ "recipe": {
+ "sha256": "0h2zjfj9hy7bkpmmjjs0a4a06asbw0yww8mw9rk2xi1gc2aqq4hi",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151209.415",
+ "deps": [
+ "dash",
+ "helm"
+ ]
+ },
+ "pophint": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "aki2o",
+ "repo": "emacs-pophint",
+ "sha256": "0n1w1adglbavqgrv16rzhym72c3q083mh0c8yl5lj7adn4nr4gr3",
+ "rev": "fc02a155e28ae27466bedabc756e75c936b01266"
+ },
+ "recipe": {
+ "sha256": "1chq2j79hg095jxw5z3pz4qicqrccw0gj4sxrin0a55hnprzzp72",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150930.1234",
+ "deps": [
+ "log4e",
+ "popup",
+ "yaxception"
+ ]
+ },
+ "shell-command": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/shell-command.el",
+ "sha256": "0jr5sbmg4zrx2dfdrajh2didm6dxx9ri5ib9qnwhc1jlppinyi7l"
+ },
+ "recipe": {
+ "sha256": "1jxn721i4s1k5x1qldiynnl5khsl22x9k3whm698nzv8m786spxl",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20090621.832",
+ "deps": []
+ },
+ "filesets+": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/filesets+.el",
+ "sha256": "0vqmz5rac2fgry1mzg3hnp0w65x6va471f982g9i8fn70ws46ww2"
+ },
+ "recipe": {
+ "sha256": "06n8pw8c65bmrkxda2akvv57ndfijgbp95l40j7sjg8bjp385spn",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150104.1602",
+ "deps": []
+ },
+ "find-file-in-project": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "technomancy",
+ "repo": "find-file-in-project",
+ "sha256": "0bf32nhpmjvvgnr6g9xqh8pqnhr3dl24y3g40lsv4pc8ffs70ydm",
+ "rev": "908cc56c0fd715001da4d97b30cba5eb7af3a609"
+ },
+ "recipe": {
+ "sha256": "0aznnv82xhnilc9j4cdmcgh6ksv7bhjjm3pa76hynnyrfn7kq7wy",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151216.2050",
+ "deps": [
+ "emacs",
+ "swiper"
+ ]
+ },
+ "paren-face": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "tarsius",
+ "repo": "paren-face",
+ "sha256": "0ggpb58dw4dv9i0czj064a8fdcalgjqgl4cm5zsk7hcvjcmal9af",
+ "rev": "09bb594f0c9614fb336fd8b5598215cf7c2d2c7e"
+ },
+ "recipe": {
+ "sha256": "0dmzk66m3rd8x0rb925pyrfpc2qsvayks4kmhpb2ccdrx68pg8gf",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151105.2106",
+ "deps": []
+ },
+ "racket-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "greghendershott",
+ "repo": "racket-mode",
+ "sha256": "0yshyfgdvpys38iqi4jqxa40gvwhc79njp0gq25n036kzarwjch8",
+ "rev": "f5f7ffea9b0be0d792b81d1ec1e2c16271a35cdd"
+ },
+ "recipe": {
+ "sha256": "04sr55zrgwyi48sj4ssm4rmm327yxs7hvjhxclnkhaaigrmrv7jb",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151207.2152",
+ "deps": [
+ "emacs",
+ "faceup",
+ "s"
+ ]
+ },
+ "mozc-popup": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "d5884",
+ "repo": "mozc-popup",
+ "sha256": "1mbpkjc6sk7qqmgsmr5a5l2ycwnqp8bkwgikdavgs6hnal10bkmn",
+ "rev": "f0684b875a7427ec08f8df13939a486e5d5cf420"
+ },
+ "recipe": {
+ "sha256": "1n43lwflxzzyskxgzg19rg3hiqqkf5l7vfgaydryf4sk8480x687",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150223.1834",
+ "deps": [
+ "mozc",
+ "popup"
+ ]
+ },
+ "writeroom-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "joostkremers",
+ "repo": "writeroom-mode",
+ "sha256": "0an36zra25r0l482irxbwrq90fd3rik53yqw3gccjkgdf3lpkc4x",
+ "rev": "57aeef137b04134fe05c7e701e42b05f3edbcc30"
+ },
+ "recipe": {
+ "sha256": "1kpsrp3agw8bg3qbf5rf5k1a7ww30q5xsa8z5ywxajsaywjzx1bk",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151111.301",
+ "deps": [
+ "emacs",
+ "visual-fill-column"
+ ]
+ },
+ "use-package": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "jwiegley",
+ "repo": "use-package",
+ "sha256": "14v6wzqn2jhjdbr7nwqilxy9l79m1f2rdrz2c6c6pcla5yjpd1k0",
+ "rev": "77a77c8b03044f0279e00cadd6a6d1a7ae97b016"
+ },
+ "recipe": {
+ "sha256": "0z7k77yfvsndql719qy4vypnwvi9izal8k8vhdx0pw8msaz4xqd8",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151112.1639",
+ "deps": [
+ "bind-key",
+ "diminish"
+ ]
+ },
+ "unicode-input": {
+ "fetch": {
+ "tag": "fetchhg",
+ "url": "https://bitbucket.com/m00nlight/unicode-input",
+ "sha256": "0kzcg1wxi1z424jdn7pibk9zyfyi85kligav08sl1c2hdldzya4l",
+ "rev": "e76ccb549e6a"
+ },
+ "recipe": {
+ "sha256": "17sf3xnl8yyx4ln4mrjlrvfinb8dvabh81l3qyr9pkn5skpgqgj8",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20141219.120",
+ "deps": []
+ },
+ "highlight-defined": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "Fanael",
+ "repo": "highlight-defined",
+ "sha256": "1l10xnjyvcbv1v8xlldaca7z3fk5qav7nsbhfnjxxd0bgh5v9by2",
+ "rev": "243478cc204ab42d29805ed610961cbb260c1dfd"
+ },
+ "recipe": {
+ "sha256": "1vjxm35wf4c2qphpkjh57hf03a5qdssdlmfj0n0gwxsdw1q5rpms",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20141225.930",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "org-present": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "rlister",
+ "repo": "org-present",
+ "sha256": "1n9magg7r7xnw16d43fh6nzjf42s70l3mxq6ph727zi4lz5ngmfm",
+ "rev": "1b519cfd5abf44bed307cac576dc9fd61eb2c35f"
+ },
+ "recipe": {
+ "sha256": "09h0cjqjwhqychyrdv1hmiyak677vgf1b94392sdsq3ns70zyjk7",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20141109.1956",
+ "deps": [
+ "org"
+ ]
+ },
+ "vkill": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "emacsmirror",
+ "repo": "vkill",
+ "sha256": "0hb845pnh2yska6alca8hbbxh65x7g81pr7852h8fddm0qd1agkd",
+ "rev": "8ffe640ed03ddcc23db1c74c76d1acbf25250ad9"
+ },
+ "recipe": {
+ "sha256": "09siqsip6d2h3jrxbdbhylkqm42dx3d2dqlkkdw3a81c7ga9lpwm",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20091203.1222",
+ "deps": []
+ },
+ "spacemacs-theme": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "nashamri",
+ "repo": "spacemacs-theme",
+ "sha256": "0vg5g5pw5qzrd8yx1imfgv9r62c9laiqd9xckah30hsyzglzdakn",
+ "rev": "febe56c3e56757b149eac0536c087259782d2345"
+ },
+ "recipe": {
+ "sha256": "0riiim6qb6x9g5hz0k3qgdymgikynlb9l07mrbfmybkv4919p992",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151206.848",
+ "deps": []
+ },
+ "historyf": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "k1LoW",
+ "repo": "emacs-historyf",
+ "sha256": "1y275fchhx0n6dv038hsr44a3bjghqdhc8j1dcpm2rvs8chgm8g0",
+ "rev": "66590519a02816cde8f442032fb144f3c38ebc6e"
+ },
+ "recipe": {
+ "sha256": "15pcaqfjpkfwcy46yqqw10q8kpw7aamcg0gr4frbdgzbv0yld08s",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151123.1959",
+ "deps": []
+ },
+ "dired-narrow": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "Fuco1",
+ "repo": "dired-hacks",
+ "sha256": "15jri9cj5jgr3ff423izd8idd7djay238c9pa3ccy05djl9z2hdx",
+ "rev": "6647825dbca4269afa76302e345d6bd15b222e42"
+ },
+ "recipe": {
+ "sha256": "1rgqiscbizalh78jwc53zbj599dd13a6vzdgf75vzllc1w7jsg6d",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151126.1141",
+ "deps": [
+ "dash",
+ "dired-hacks-utils"
+ ]
+ },
+ "skype": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "kiwanami",
+ "repo": "emacs-skype",
+ "sha256": "0gzj7cf42nhp3ac1a2gxcfbmn80z1z46zxsfr2f5xil2gjag39fx",
+ "rev": "c10f96d1d105acee8a9a9804652bf6a813591da4"
+ },
+ "recipe": {
+ "sha256": "06p5s5agajbm9vg9xxpzv817xmjw2kmcahiw4iypn5yzwhv1aykl",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20131001.2318",
+ "deps": []
+ },
+ "flymake-rust": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "joaoxsouls",
+ "repo": "flymake-rust",
+ "sha256": "1qxb3vhh83ikhmm89ms7irdip2l03hnjcq5ncmgywkaqkpslaacv",
+ "rev": "72ec92c261670b7384ee2593d0f1946ea29f429a"
+ },
+ "recipe": {
+ "sha256": "080cvgl2cg08kyvmgg080zqb6k6bngga3m5lfwb2dpmi1bajywc1",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20141004.1752",
+ "deps": [
+ "flymake-easy"
+ ]
+ },
+ "js-doc": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "mooz",
+ "repo": "js-doc",
+ "sha256": "1d2jy71iw1v7l0jrvszmr3qdls5mak6kjvyvk0n9895z87lhgm8g",
+ "rev": "cf9b5292b7fca655bafb87bd55662edcf842d5b6"
+ },
+ "recipe": {
+ "sha256": "0nafqgb4kf8jgrb7ijfcvigq8kf043ki89h61izda4hccm3c42pk",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20131215.719",
+ "deps": []
+ },
+ "ess-smart-underscore": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "mattfidler",
+ "repo": "ess-smart-underscore.el",
+ "sha256": "01xa98q0pqsf4gyl6ixlpjjdqazqsxg1sf7a3j2wbh7196ps61v5",
+ "rev": "f3bbee01754888452232b337173b57c6c266de49"
+ },
+ "recipe": {
+ "sha256": "01pki1xa8zpgvldcbjwg6vmslj7ddf44hsx976xipc95vrdk15r2",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20131229.2051",
+ "deps": [
+ "ess"
+ ]
+ },
+ "edbi-database-url": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "proofit404",
+ "repo": "edbi-database-url",
+ "sha256": "1l5lkdgcy1z6fkjh3zrhf0f4f26bzhpqy33ak1xacvm9fyf54s2x",
+ "rev": "08b833584460ddfd4d0d76e5b159625dde684bcf"
+ },
+ "recipe": {
+ "sha256": "018rxijmy0lvisy281d501ra9lnh5xi0wmvz5avbjpb0fi4q1zdn",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150126.603",
+ "deps": [
+ "edbi",
+ "emacs"
+ ]
+ },
+ "geeknote": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "avendael",
+ "repo": "emacs-geeknote",
+ "sha256": "14v5gm931dcsfflhsvijr4ihx7cs6jymvnjzph3arvhvqwyqhwgq",
+ "rev": "e0d25cddc35e9a0f5986a04df2c3d11f78dd3ad9"
+ },
+ "recipe": {
+ "sha256": "1ci82fj3layd95lqj2w40y87xps6bs7x05z8ai9m59k244g26m8v",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150223.1015",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "autofit-frame": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/autofit-frame.el",
+ "sha256": "14iajfdf59lc9ik6spv4sq3v0ji1dmhfl1zwhcz2bkypxlbg1v3s"
+ },
+ "recipe": {
+ "sha256": "0p24qqnfa1vfn5pgnpvbxwi11zjkd6f3cv5igwg6h0pr5s7spnvw",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150104.1508",
+ "deps": [
+ "fit-frame"
+ ]
+ },
+ "winpoint": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "jorgenschaefer",
+ "repo": "winpoint",
+ "sha256": "1qrbvidnmgg7jyasb28bc0z1x4a4ayzq5jmv38dsx0qs080s85wy",
+ "rev": "e6050093c076308184566fa1d1012423d6934773"
+ },
+ "recipe": {
+ "sha256": "10ji7xd9ipmy6c2qxljqdxgqf5sb8h7lwz43mr6ixbn7v1b7pp6w",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20131023.1213",
+ "deps": []
+ },
+ "vala-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "emacsorphanage",
+ "repo": "vala-mode",
+ "sha256": "10vs4d8csww781j1ps3f6dczy5zzza36z7a8zqk40fg4x57ikw44",
+ "rev": "fb2871a4492d75d03d72e60474919ab89adb267b"
+ },
+ "recipe": {
+ "sha256": "164dhlsiflhpdymk3q5x0bv8gpbwfp34lnkhm2x90kdakfzqf91p",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150324.1725",
+ "deps": []
+ },
+ "pinot": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "tkf",
+ "repo": "emacs-pinot-search",
+ "sha256": "1wc31r5fpcia4n4vbpg7vv3rzrnjzh18yygi3kp4wvl2wzx2azqh",
+ "rev": "67fda555a155b22bb2ce44ba618b4bd6fc5f144a"
+ },
+ "recipe": {
+ "sha256": "1kjzq02pddnkia637xz2mnjjyglyh6qzragnf7nnxbw9ayiim58i",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140211.1426",
+ "deps": []
+ },
+ "mmm-jinja2": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "beardedprojamz",
+ "repo": "mmm-jinja2",
+ "sha256": "1lcc2p9qz70kpykgx82isv0qiqlsajp4vvcj6bvag92d7h9yk9bv",
+ "rev": "0ecd7fd239fc096495d903b5f1bafac83515acef"
+ },
+ "recipe": {
+ "sha256": "0579sv77dyzishhcw4xxi444inwy4jgh9vmxwd856nd05j3cyc7z",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150904.1334",
+ "deps": [
+ "mmm-mode"
+ ]
+ },
+ "tronesque-theme": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "aurelienbottazini",
+ "repo": "tronesque",
+ "sha256": "06wm3qwxjhzwjn9nnrqm5wwj1z5gfghg9d2qbg8w3zyqzva5dmvm",
+ "rev": "42093c08a50c860601c364c8a746c803458c10ba"
+ },
+ "recipe": {
+ "sha256": "1bk73zawl1922aq739r3rz30flxd6nq87k8ahzbix139g7gxf19j",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150125.441",
+ "deps": []
+ },
+ "sensitive": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "timvisher",
+ "repo": "sensitive.el",
+ "sha256": "0g4jfcc5k26yh192bmmxnim9mqv993v2jjd9g9ssvnd42ihpx1n3",
+ "rev": "7f2c77811e983234e1a93055d78cc4480ae807c3"
+ },
+ "recipe": {
+ "sha256": "0v988k0x3mdp7ank2ihghphh8sanvv96s4sg6pnszg5hczak1vr3",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20131015.835",
+ "deps": [
+ "emacs",
+ "sequences"
+ ]
+ },
+ "dark-souls": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "tomjakubowski",
+ "repo": "dark-souls.el",
+ "sha256": "1w0y2j0j9n107dbk7ksr9bipshjfs9dk08qbs9m6h5aqh4hmwa4r",
+ "rev": "94122b1215423e58dcf18584a2bd022029d54d4b"
+ },
+ "recipe": {
+ "sha256": "1ilsn657mpl7v8vkbzqf3gp0gmvy0dgynfsn8w4cb49qaiy337xc",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140314.628",
+ "deps": []
+ },
+ "narrowed-page-navigation": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "david-christiansen",
+ "repo": "narrowed-page-navigation",
+ "sha256": "0ydxj6dc10knambma2hpimqrhfz216nbj96w1dcwgjixs4cd4nax",
+ "rev": "b215adbac4873f56fbab65772062f0f5be8058a1"
+ },
+ "recipe": {
+ "sha256": "1yrmih60dd69qnin505jlmfidm2svzpdrz46286r7nm6pk7s4pb7",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150108.2319",
+ "deps": [
+ "cl-lib",
+ "emacs"
+ ]
+ },
+ "thingopt": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "m2ym",
+ "repo": "thingopt-el",
+ "sha256": "0imzrb3vqnm36illqnpfc6x7rbq9rrrlpcw9n2yzl4n309mqdwr6",
+ "rev": "6a50f23faa764c5f6200c0253c606b0b4e5226f8"
+ },
+ "recipe": {
+ "sha256": "0yvzq1z2nrldr8vhcvxqgzvh4gbrjjwfmprg59p4v5hlxvhxsb1y",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150315.723",
+ "deps": []
+ },
+ "broadcast": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "killdash9",
+ "repo": "broadcast.el",
+ "sha256": "0w6b9rxdciy1365kgf6fh3vgrjr8xd5ar6xcn0g4h56f2zg9hdmj",
+ "rev": "f6f9cd2e0e3f8c31d6b8e7446c27eb0e50b25f16"
+ },
+ "recipe": {
+ "sha256": "1h2c3mb49q3vlpalrsrx8q3rmy1zg0y45ayvzbvzdkfgs8idgbib",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151204.2012",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "lxc": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "nicferrier",
+ "repo": "emacs-lxc",
+ "sha256": "090gk0il4yyypzjbh2qrjdaldwf90fi30impmh4zcfl73bic5q9q",
+ "rev": "88bed56c954d1edd9ff5ce0ced2c02dcf9f71835"
+ },
+ "recipe": {
+ "sha256": "1rv1ybmbjx7n3cavx21nzmvckw63q3jmjsfdr2pcgavrr2ck6lka",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140410.1522",
+ "deps": []
+ },
+ "conkeror-minor-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "Malabarba",
+ "repo": "conkeror-minor-mode",
+ "sha256": "0sz3qx1bn0lwjhka2l6wfl4b5486ji9dklgjs7fdlkg3dgpp1ahx",
+ "rev": "476e81c27b056e21c192391fe674a2bf875466b0"
+ },
+ "recipe": {
+ "sha256": "1ch108f20k7xbf79azsp31hh4wmw7iycsxddcszgxkbm7pj11933",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150114.1004",
+ "deps": []
+ },
+ "pycarddavel": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "DamienCassou",
+ "repo": "pycarddavel",
+ "sha256": "09glwrb9q65qdm4yd0mbi5hwdy2434zm8699ywhs6hqpjacadlmi",
+ "rev": "a6d81ee4eb8309cd82f6082aeca68c5a015702a3"
+ },
+ "recipe": {
+ "sha256": "12k2mnzkd8yv17csfhclsnd479vcabawmac23yw6dsw7ic53jf1a",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150831.716",
+ "deps": [
+ "emacs",
+ "helm"
+ ]
+ },
+ "org-jira": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "baohaojun",
+ "repo": "org-jira",
+ "sha256": "0b5f8qkyzh4jwj3kvbaj3m4dpjbvh1fql7v1nb9bi5n7iwkv3lxp",
+ "rev": "eb4f3012d64bcab0c28491a26eac085ccae5bf78"
+ },
+ "recipe": {
+ "sha256": "11h7kbkf38p2xycw8hvabpaacp72xdgy8c7kzcgjb2a8qlbs5ifm",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150911.758",
+ "deps": []
+ },
+ "flycheck-mercury": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "flycheck",
+ "repo": "flycheck-mercury",
+ "sha256": "0isqa6ybdd4166h3rdcg0b8pcxn00v8dav58xwfcj92nhzvs0qca",
+ "rev": "fa9e433a0a912f0fae9e4dec9ea616ef99fcf861"
+ },
+ "recipe": {
+ "sha256": "1z2y6933f05yv9y2aapmn876jnsydh642zqid3j88bb9kqi67x0h",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151123.134",
+ "deps": [
+ "dash",
+ "flycheck",
+ "s"
+ ]
+ },
+ "chatwork": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "ataka",
+ "repo": "chatwork",
+ "sha256": "1r2s3fszblk5wa6v3hnbzsri550gi5qsmp2w1spvmf1726n900cb",
+ "rev": "7a1def04735423d47e058a8137e859391a6aaf7e"
+ },
+ "recipe": {
+ "sha256": "0p71swcpfqbx2zmp5nh57f0m30cn68g3019005wa5x4fg7dx746p",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150807.2148",
+ "deps": []
+ },
+ "bookmark+": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/bookmark+.el",
+ "sha256": "1qp84qzywc9nzb8n6j6cl99g7z88355ypw2fr4vpwy6n863a4b7l"
+ },
+ "recipe": {
+ "sha256": "0121xx7dp2pakk9g7sg6par4mkxd9ky746yk4wh2wrhprc9dqzni",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151107.1047",
+ "deps": []
+ },
+ "ert-expectations": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/ert-expectations.el",
+ "sha256": "0cwy3ilsid90abzzjb7ha2blq9kmv3gfp3icwwfcz6qczgirq6g7"
+ },
+ "recipe": {
+ "sha256": "094lkf1h83rc0dkvdv8923xjrzj5pnpnsb4izk8n5n7g0rbz1l9w",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20130824.700",
+ "deps": []
+ },
+ "orgtbl-join": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "tbanel",
+ "repo": "orgtbljoin",
+ "sha256": "06nc82wiha11i79izqil53dkd95fl55nb5m739gyyzvx3sksb0dg",
+ "rev": "ccf5e0d96e053dc289da39a048715fcf36835ff2"
+ },
+ "recipe": {
+ "sha256": "1kq2h0lb521z8q2xb9bsi37xzzdsa0hw4mm3qkzidi5j9fi3apf1",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150121.1646",
+ "deps": [
+ "cl-lib"
+ ]
+ },
+ "sclang-snippets": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "ptrv",
+ "repo": "sclang-snippets",
+ "sha256": "0vbcghgapwdf3jgjnjdla17dhf5mkmwapz4a8fmlr7sw1wqvj857",
+ "rev": "c840a416b96f83bdd70491e3d1fbe2f1ae8b3f58"
+ },
+ "recipe": {
+ "sha256": "0q1bh316v737a0hm9afijk1spvg144cgrf45jm0bpd60zhiv7bb2",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20130513.251",
+ "deps": [
+ "yasnippet"
+ ]
+ },
+ "multi-eshell": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/multi-eshell.el",
+ "sha256": "1w1jwfznpl214a1xx46zlgqbx9c5yjzpyqqrkn3xqjgnj485yhkl"
+ },
+ "recipe": {
+ "sha256": "1i0mvgqxsc99dwp9qcdrijqxsxflrbxw846rgw89p1jfs8mp4l7d",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20120608.1335",
+ "deps": []
+ },
+ "disaster": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "jart",
+ "repo": "disaster",
+ "sha256": "1srlz63pncxndh1kmb6dl5sxaanspxa444wg998dld3dkdflwavq",
+ "rev": "8d8fc67af5b3d876b0056562ece0478e6e2367f0"
+ },
+ "recipe": {
+ "sha256": "1ad8q81n0s13cwmm216wqx3s92195pda1amc4wxvpb3lq7dbd3yn",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20130509.1255",
+ "deps": []
+ },
+ "emoji-cheat-sheet-plus": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "syl20bnr",
+ "repo": "emacs-emoji-cheat-sheet-plus",
+ "sha256": "1rk7am0xvpnv98yi7a62wlyh576md4n2ddj7nm201bjd4wdl2yxk",
+ "rev": "96a003127d646a2683d81ca906a17eace0a6413e"
+ },
+ "recipe": {
+ "sha256": "1ciwlbw0ihm0p5gnnl3safcj7dxwiy53bkj8cmw3i334al0gjnnv",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150617.831",
+ "deps": [
+ "emacs",
+ "helm"
+ ]
+ },
+ "helm-proc": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "markus1189",
+ "repo": "helm-proc",
+ "sha256": "076yhcf447fas14k8gg67rc743x049xf66627sd9lgjv7107r8vr",
+ "rev": "76fee002caa1c83809f4d3f7b30fa672dcb36937"
+ },
+ "recipe": {
+ "sha256": "1bq60giy2bs9m3hlbc5nwvy51702a98s0vqass3b290hdgki4bnx",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140504.357",
+ "deps": [
+ "helm"
+ ]
+ },
+ "minimap": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "dustinlacewell",
+ "repo": "emacs-minimap",
+ "sha256": "0s95bb6ld7a23jrq2pa087w9yg16ymnajp3pmw880j6dahlwpdgk",
+ "rev": "be119f9b9c321c0045b01d940e495f16f2ea4f5c"
+ },
+ "recipe": {
+ "sha256": "1gnvakp71l25r48bx1n2j33dq8q1lc7ff1j4fcnnvblhh3rsra96",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150108.1815",
+ "deps": []
+ },
+ "evil-lisp-state": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "syl20bnr",
+ "repo": "evil-lisp-state",
+ "sha256": "0lvjqs40caxj3781cs41qavk10vlz2mjw0r6fmxa2z3c087cxnxw",
+ "rev": "f4da21900563f4ac1abf79f3fe73eaf1edcd633d"
+ },
+ "recipe": {
+ "sha256": "117irac05fs73n7sgja3zd7yh4nz9h0gw5b1b57lfkav6y3ndgcy",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151201.924",
+ "deps": [
+ "bind-map",
+ "evil",
+ "smartparens"
+ ]
+ },
+ "gitolite-clone": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "IvanMalison",
+ "repo": "gitolite-clone",
+ "sha256": "1h66wywhl5ipryx0s0w1vxp3ydg57zpizjz61wvf6qd8zn07nhng",
+ "rev": "36e8dbc2906b7bfce382db64211d982c9719ab59"
+ },
+ "recipe": {
+ "sha256": "1la1nrfns9j6wii6lriwwsd44cx3ksyhh09h8lf9dai6wp67kjac",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150819.839",
+ "deps": [
+ "dash",
+ "emacs",
+ "pcache",
+ "s"
+ ]
+ },
+ "helm-spotify": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "krisajenkins",
+ "repo": "helm-spotify",
+ "sha256": "133dcqk42nq5gh5qlcbcmx3lczisfgymcnypnld318jvjgd2ma8a",
+ "rev": "a1a8275a4769221f7df9a67ed9a028fecbdc29ca"
+ },
+ "recipe": {
+ "sha256": "1rzvxnaqh8bm78qp0rhpqs971pc855qrq589r3s8z3gpqzmwlnmf",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20131014.1621",
+ "deps": [
+ "helm",
+ "multi"
+ ]
+ },
+ "linphone": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "zabbal",
+ "repo": "emacs-linphone",
+ "sha256": "01yv6239z90hvncwmm9g5nh4xvyxv2ig3h4hsmxdn4kacfxvc84n",
+ "rev": "99af3db941b7f4e5272bb48bff96c1ce4ceac302"
+ },
+ "recipe": {
+ "sha256": "0q7mw1npxq24szhwswc93qz5h6magcxw63ymba7hwhif6my65zx7",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20130524.609",
+ "deps": []
+ },
+ "popwin": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "m2ym",
+ "repo": "popwin-el",
+ "sha256": "0nips9npm4zmz3f37vvb4s0g1ci0p9cl6w0z4sc6agg4rybjhpdp",
+ "rev": "95dea14c60019d6cccf9a3b33e0dec4e1f22c304"
+ },
+ "recipe": {
+ "sha256": "1zp54nv8rh0b3g8y5aj4793miiw2r1ijwbzq31lkwmbdr09mixmf",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150315.800",
+ "deps": []
+ },
+ "py-isort": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "paetzke",
+ "repo": "py-isort.el",
+ "sha256": "0150q6xcnzzrkn9fa9njm973l1d49c48ad8qia71k4jwrxjjj6zr",
+ "rev": "cfbb576784fe4501909c15299607ce2a2d0bf164"
+ },
+ "recipe": {
+ "sha256": "0k5gn3bjn5pv6dn6p0m9xghn0sx3m29bj3pfrmyh6gd5ic0l00yb",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150422.1039",
+ "deps": []
+ },
+ "theme-looper": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "myTerminal",
+ "repo": "theme-looper",
+ "sha256": "1kd4mazrcy5xamkvvrwsmcx63g0gp5w4264kxbk3d25bjqcf8rmj",
+ "rev": "41c15ae98f9406b7932974318a2eada3668a88e7"
+ },
+ "recipe": {
+ "sha256": "02hz9k4ybpp4i8ik2av9rg240sjgicbf6w24zn67dmw4nc4lp9c5",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150723.1304",
+ "deps": [
+ "cl-lib"
+ ]
+ },
+ "org-octopress": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "yoshinari-nomura",
+ "repo": "org-octopress",
+ "sha256": "132jv1zvp3yp4pa4ysl0n3a81d39cdi3nqfziz1ha1pl10qbn6wr",
+ "rev": "e04d55c3f4bb88e5661ee136cb3a55f998dca931"
+ },
+ "recipe": {
+ "sha256": "0r6ms9j4xxsrik4206g7gz4wz41wr4ylpal6yfqs4hhz88yhxrhw",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150826.616",
+ "deps": [
+ "ctable",
+ "org",
+ "orglue"
+ ]
+ },
+ "django-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "myfreeweb",
+ "repo": "django-mode",
+ "sha256": "0dw0m77w7kdwxxh53b4k15jjkpfl5vha17hw9dn29ap77pf820va",
+ "rev": "3d82a62a7faeb2c124ac4c109e075f581c175508"
+ },
+ "recipe": {
+ "sha256": "1rdkzqvicjpfh9k66m31ky6jshx9fqw7pza7add36bk6xg8lbara",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150207.717",
+ "deps": []
+ },
+ "mobdebug-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "deftsp",
+ "repo": "mobdebug-mode",
+ "sha256": "04hbd7mv29v3fv4ld0b3skrir0wp9dix2n5nbqp63fj6n5i4cyyz",
+ "rev": "e1d483bc4e341c762bc5c0a8c52306a8d01ea0da"
+ },
+ "recipe": {
+ "sha256": "19k0c7igqsqvib6hx0nssig4l5f959dlr4wijd1hp5h1hmcb5vv8",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140109.2146",
+ "deps": [
+ "emacs",
+ "lua-mode"
+ ]
+ },
+ "paredit": {
+ "fetch": {
+ "tag": "fetchgit",
+ "url": "http://mumble.net/~campbell/git/paredit.git",
+ "sha256": "34dd7d8c07c697b54ea943566e6967012f7366d6f5a21e31e3d768716bc4928f",
+ "rev": "9a696fdcce87c9d9eec4569a9929d0300ac6ae5c"
+ },
+ "recipe": {
+ "sha256": "1rp859y4qyqdfvp261l8mmbd62p1pw0dypm1mng6838b6q6ycakr",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150217.913",
+ "deps": []
+ },
+ "gh": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "sigma",
+ "repo": "gh.el",
+ "sha256": "0fkq3yl9jpakfnahymjv28fcal38c210garnq055rgmyhyhhpdwd",
+ "rev": "3ceef078d9418cf19e1fe6be15cf34794a14880a"
+ },
+ "recipe": {
+ "sha256": "1141l8pas3m755yzby4zsan7p81nbnlch3kj1zh69qzjpgqp30c0",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151216.946",
+ "deps": [
+ "emacs",
+ "logito",
+ "pcache"
+ ]
+ },
+ "cider-profile": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "thunknyc",
+ "repo": "nrepl-profile",
+ "sha256": "0lgq4p7rs4prqfqd83v1l36xxacrd65jsfzbp7q62b2pjqikpgk0",
+ "rev": "9aa7e404f53f5136ac8d15301ce8ca2924785cb3"
+ },
+ "recipe": {
+ "sha256": "14jc98h4r9rb7pxfb60ps4ss8p0bm66wdl6n8z1357hk93h9kmfs",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20141120.825",
+ "deps": [
+ "cider"
+ ]
+ },
+ "simp": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "re5et",
+ "repo": "simp",
+ "sha256": "1m8azyb4nxxdh6pwik9qb0zqp4z8z4vk3dlpfgklsq9rss8gwbaf",
+ "rev": "334b20287b3160f77e25c8e0ee2a73dd41fbe0ab"
+ },
+ "recipe": {
+ "sha256": "0x4lssjkj3fk9fw603f0sggvcj25iw0zbzsm5c949lhl4a3wvc9c",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150427.1132",
+ "deps": []
+ },
+ "org-grep": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "emacsorphanage",
+ "repo": "org-grep",
+ "sha256": "10jwqzs431mnwz717qdmcn0v8raklw41sbxbnkb36yrgznk8c09c",
+ "rev": "5bdd04c0f53b8a3d656f36ea17bba3df7f0cb684"
+ },
+ "recipe": {
+ "sha256": "0kpgizy0zxnlmyh0prwdll62ri2c1l4sb0yrkl7yw17cr4gxmkkz",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151202.629",
+ "deps": [
+ "cl-lib"
+ ]
+ },
+ "minimal-theme": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "ikame",
+ "repo": "minimal-theme",
+ "sha256": "1iy1z2kwnbzxhz5r4gsy4zm0l3xbwy314dqxliprbl8n2m9w0lmz",
+ "rev": "2cc688c1705eeb77fe1deeea35bfce378081f238"
+ },
+ "recipe": {
+ "sha256": "0l4xj5q06h5fk634d6v3idm0zniq8grz4rjm6qzi7b4jr9sc60gm",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140409.1801",
+ "deps": []
+ },
+ "lispy": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "abo-abo",
+ "repo": "lispy",
+ "sha256": "134694ngr01nb8qihyclwc2cd93ipkwjbkmwdflsbi99gv9bkyxj",
+ "rev": "864a4efcc686601855823f0af750fa25f4dc2e8a"
+ },
+ "recipe": {
+ "sha256": "12qk2gpwzz7chfz7x3wds39r4iiipvcw2rjqncir46b6zzlb1q0g",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151218.555",
+ "deps": [
+ "ace-window",
+ "emacs",
+ "iedit",
+ "swiper"
+ ]
+ },
+ "bpe": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "yuutayamada",
+ "repo": "bpe",
+ "sha256": "0chmarbpqingdma54d6chbr6v6jg8lapbw56cpvcpbl04fz980r0",
+ "rev": "7b5b25f83506e6c9f4075d3803fa32404943a189"
+ },
+ "recipe": {
+ "sha256": "08zfqcgs7i2ram2qpy8vrzksx5722aahr66vdi4d9bcxm03s19fm",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20141228.1605",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "sphinx-frontend": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "kostafey",
+ "repo": "sphinx-frontend",
+ "sha256": "1mfp4777ppg7zg7zqj755zpfk9lmcq73hxv055ig66pz30m7x5rw",
+ "rev": "a46e81ce65fd24c03acab9311b162cad21343744"
+ },
+ "recipe": {
+ "sha256": "0hdn6zjnhzyka0lzdxqfzbj3lrj767ij406zha9zw8ibbkk7cmag",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151122.412",
+ "deps": []
+ },
+ "request-deferred": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "tkf",
+ "repo": "emacs-request",
+ "sha256": "0dja4g43zfjbxqvz2cgivgq5sfm6fz1563qgrp4yxknl7bdggb92",
+ "rev": "adf7de452f9914406bfb693541f1d280093c4efd"
+ },
+ "recipe": {
+ "sha256": "1dcxqnzmvddk61dzmfx8vjbzd8m44lscr3pjdp3r7211zhwfk40n",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20130526.1215",
+ "deps": [
+ "deferred",
+ "request"
+ ]
+ },
+ "railscasts-theme": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "mikenichols",
+ "repo": "railscasts-theme",
+ "sha256": "021x1l5kzsbm0qj5a3bngxa7ickm4lbwsdz81a2ks9pi1ivmw205",
+ "rev": "1340c3f6c2717761cab95617cf8dcbd962b1095b"
+ },
+ "recipe": {
+ "sha256": "1z5m8ccx2k18gbzqvg0051mp2myy2qncf4xvv47k80f83pk2hw6r",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150219.925",
+ "deps": []
+ },
+ "second-sel": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/second-sel.el",
+ "sha256": "0ar60sqzlyrhvlg0mxfbc8c824lqglq07gf8lccjabnpwilz3ksd"
+ },
+ "recipe": {
+ "sha256": "1nzy5ms5qf5big507kg3z5m6d6zgnsv2fswn359r2j59cval3fvr",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150104.1846",
+ "deps": []
+ },
+ "on-parens": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "willghatch",
+ "repo": "emacs-on-parens",
+ "sha256": "1616bdvrf1bawcqgj7balbxaw26waw81gxiw7yspnvpyb009j66y",
+ "rev": "16a145bf73550d5000ffbc2725c541a8458d0d3c"
+ },
+ "recipe": {
+ "sha256": "19kyzpkgfl0ipbcgnl8fbfbapnfdxr8w9i7prfkm6rjp6amxyqab",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150702.1706",
+ "deps": [
+ "dash",
+ "emacs",
+ "evil",
+ "smartparens"
+ ]
+ },
+ "ace-flyspell": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "cute-jumper",
+ "repo": "ace-flyspell",
+ "sha256": "1msj0dbzfan0jax5wh5rmv4l7cp5zhrp5wy5k1n9s7xdgz2dprzj",
+ "rev": "76c255d91c86b57a07cc7660450e37107d73505f"
+ },
+ "recipe": {
+ "sha256": "0f24qrpcvyg7h6ylyggn4zrbydci537iigshac1d8yywsr0j47gd",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150523.1315",
+ "deps": [
+ "ace-jump-mode"
+ ]
+ },
+ "list-unicode-display": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "purcell",
+ "repo": "list-unicode-display",
+ "sha256": "05nn4db8s8h4mn3fxhwsa111ayvlq1raf6bifh7jciyw7a2c3aww",
+ "rev": "59770cf3572bd36c3e9ba044846dc420c0dca09b"
+ },
+ "recipe": {
+ "sha256": "01x9i5k5vhjscmkx0l6r27w1cdp9n6xk1pdjf98z3y88dnsmyfha",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150219.301",
+ "deps": [
+ "cl-lib"
+ ]
+ },
+ "import-popwin": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "syohex",
+ "repo": "emacs-import-popwin",
+ "sha256": "0ycsdwwfb27g85aby4jix1aj41a4vq6bf541iwla0xh3wsyxb01w",
+ "rev": "34c3b34ffcadafea71600acb8f4e5ba385e6da19"
+ },
+ "recipe": {
+ "sha256": "0vkw6y09m68bvvn1wzah4gzm69z099xnqhn359xfns2ljm74bvgy",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150716.433",
+ "deps": [
+ "cl-lib",
+ "popwin"
+ ]
+ },
+ "company-tern": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "proofit404",
+ "repo": "company-tern",
+ "sha256": "1mybg3izz93kf5a6xhalz9rfbjmazgqrhpw9mjdcqh4zd6avw00c",
+ "rev": "bd358af7c1492391ea39d35672ac12f8587ade21"
+ },
+ "recipe": {
+ "sha256": "17pw4jx3f1hymj6sc0ri18jz9ngggj4a41kxx14fnmmm8adqn6wh",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150525.416",
+ "deps": [
+ "cl-lib",
+ "company",
+ "dash",
+ "dash-functional",
+ "s",
+ "tern"
+ ]
+ },
+ "lit-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "HectorAE",
+ "repo": "lit-mode",
+ "sha256": "0mr0king5dj20vdycpszxnfs9ch808fhcz3q7svxfngj3d3671wd",
+ "rev": "c61c403afc8333a5649c5421ab1a6341dc1c7d92"
+ },
+ "recipe": {
+ "sha256": "05rf7ki060nqnvircn0dkpdrg7xbh7phb8bqgsab89ycc7l9vv59",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20141123.1136",
+ "deps": []
+ },
+ "w32-browser": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/w32-browser.el",
+ "sha256": "1cpy3c0aj265wda9bz6b88i73mr9xi8gm1cp0q72ikhz43kszihx"
+ },
+ "recipe": {
+ "sha256": "14vc2cipwlwwc0b5ld4x0zvydkg8nbjmp0z2x6ca0nmxw8sfsnc6",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150104.1905",
+ "deps": []
+ },
+ "miniedit": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "emacsorphanage",
+ "repo": "miniedit",
+ "sha256": "1850z96gly0jnr50472idqz1drzqarr0n23bbasslrc501xkg0bq",
+ "rev": "e12bf659c3eb92dd8a4cb77642dc0865c54667a3"
+ },
+ "recipe": {
+ "sha256": "10s407q7igdi2hsaaahbw8vckalrl7z3s6l9cflf51q16xh2ih87",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20100419.1245",
+ "deps": []
+ },
+ "magit-gh-pulls": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "sigma",
+ "repo": "magit-gh-pulls",
+ "sha256": "03m4gr86lm8rs3zn6hdirlgfixf1w033iyhsg9dwlhvmfpfghxb5",
+ "rev": "728819217c697b4eed996eb14261a8c7c3388df7"
+ },
+ "recipe": {
+ "sha256": "0qn9vjxi33pya9s8v3g95scmhwrn2yf5pjm7d24frq766wigjv8d",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151212.1243",
+ "deps": [
+ "emacs",
+ "gh",
+ "magit",
+ "pcache",
+ "s"
+ ]
+ },
+ "pcre2el": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "joddie",
+ "repo": "pcre2el",
+ "sha256": "0ymbximchjfllrglkwv4lwb2sqprvva77vfbjb6n6kzni0ix70s3",
+ "rev": "57ee828d07953329fd85ff85d6a4f27a0ce512a1"
+ },
+ "recipe": {
+ "sha256": "1l72hv9843qk5p8gi9ibr15wczm804j3ws2v1x7nx4dr7pc5c7l3",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151213.434",
+ "deps": [
+ "cl-lib",
+ "emacs"
+ ]
+ },
+ "highlight-current-line": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/highlight-current-line.el",
+ "sha256": "1aki7a7nnj9n7vh19k4fr0v7cqbwkrpc6b3f3yv95vcqj8a4y34c"
+ },
+ "recipe": {
+ "sha256": "01bga6is3frzlzfajpvpgz224vhl0jnc2bl2ipvlygdcmv4h8973",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20051013.1256",
+ "deps": []
+ },
+ "znc": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "sshirokov",
+ "repo": "ZNC.el",
+ "sha256": "1xsxmvbh3xm3zh9yc6q28h48nar6pwyd51xw04b1x7amwkp8qdnp",
+ "rev": "94c8e4cdcfb51b75d5f95cb51ce21c6274325e19"
+ },
+ "recipe": {
+ "sha256": "1z2kzbapgh55wwr5jp7v1wz5kpz4l7n3k94mkh3s068xag9xs6zz",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140722.1621",
+ "deps": [
+ "cl-lib",
+ "erc"
+ ]
+ },
+ "window+": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/window+.el",
+ "sha256": "1mq8nrcypfm8na1qg0dykp6r1mfraix2jp1xc0lkx4wn620mp9cz"
+ },
+ "recipe": {
+ "sha256": "0fhzb0ay9g9qgcaxpb2qaw15dh0lfmv3x4akyipi3zx11446d06j",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150104.1911",
+ "deps": []
+ },
+ "dired-open": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "Fuco1",
+ "repo": "dired-hacks",
+ "sha256": "15jri9cj5jgr3ff423izd8idd7djay238c9pa3ccy05djl9z2hdx",
+ "rev": "6647825dbca4269afa76302e345d6bd15b222e42"
+ },
+ "recipe": {
+ "sha256": "0a4ksz2jkva4gvhprywjc1fzrbf95xdk8gn25nv1h1c1ckhr91qx",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150819.1148",
+ "deps": [
+ "dash",
+ "dired-hacks-utils"
+ ]
+ },
+ "firestarter": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "wasamasa",
+ "repo": "firestarter",
+ "sha256": "0s8rml5xbskvnjpi8qp7vqflxhh5yis6zr6ay2bxmd2chjlhli55",
+ "rev": "4b7428477980e12578ebbbb121115696b352d6b2"
+ },
+ "recipe": {
+ "sha256": "1cpx664hyrdnpb1jps1x6lm7idwlfjblkfygj48cjz9pzd6ld5mp",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151213.815",
+ "deps": []
+ },
+ "adoc-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "sensorflo",
+ "repo": "adoc-mode",
+ "sha256": "01fn73vyhdcy84s60r2jjy9a0xm3zwagpzi6b4qlankbvswypask",
+ "rev": "168ffa3f8efc3a635cc8f9422b7117a3a99af804"
+ },
+ "recipe": {
+ "sha256": "0wgagcsh0fkb51fy17ilrs20z2vzdpmz97vpwijcfy2b9rypxq15",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151119.1114",
+ "deps": [
+ "markup-faces"
+ ]
+ },
+ "racer": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "racer-rust",
+ "repo": "emacs-racer",
+ "sha256": "10nj92fm9lmamqyri84lsdv71wbrb2nfi0gfwnq9mg54pyv0r2si",
+ "rev": "637e01ba74c7ffda3c37d3bff13d870a1899fecd"
+ },
+ "recipe": {
+ "sha256": "1091y5pisbf73i6zg5d7yny2d5yckkjg0z6fpjpmz5qjs3xcm9wi",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151016.1916",
+ "deps": [
+ "dash",
+ "emacs",
+ "rust-mode",
+ "s"
+ ]
+ },
+ "hamlet-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "lightquake",
+ "repo": "hamlet-mode",
+ "sha256": "1njrpb1s2v9skyfbgb28clrxyvyp8i4b8kwa68ynvq3vjb4fnws6",
+ "rev": "7362b955e556a3d007fa06945a27e5b99349527d"
+ },
+ "recipe": {
+ "sha256": "0ils4w8ry1inlfj4931ypibj3n60xq6ah74hig62y4vrs4d47gyx",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20131208.124",
+ "deps": [
+ "cl-lib",
+ "dash",
+ "s"
+ ]
+ },
+ "simplezen": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "magnars",
+ "repo": "simplezen.el",
+ "sha256": "0108q2b5h73rjxg9k2kmc8z6la9kgqdnz9z1x7rn61v3vbxlzqvn",
+ "rev": "119fdf2c6890a0c56045ae72cf4fce0071a81481"
+ },
+ "recipe": {
+ "sha256": "13f2anhfsxmx1vdd209gxkhpywsi3nn6pazhc6bkswmn27yiig7j",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20130421.500",
+ "deps": [
+ "dash",
+ "s"
+ ]
+ },
+ "geiser": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "jaor",
+ "repo": "geiser",
+ "sha256": "0b5rs1w0gcci0b8047n0s2m02khjhs9qsp0yn0jwrg4i46jn0vll",
+ "rev": "d9f6fa2e7458905aa601805352d7a7d9e1037570"
+ },
+ "recipe": {
+ "sha256": "067rrjvyn5sz60w9h7qn542d9iycm2q4ryvx3n6xlard0dky5596",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151213.2122",
+ "deps": []
+ },
+ "tup-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "ejmr",
+ "repo": "tup-mode",
+ "sha256": "0y1b9zvwbw3vp41siyzj04bis939fgz3j27hc5ljjzy92kd39nzm",
+ "rev": "bcc100c6485f1c81fdcd1215dfc6c41a81c215c8"
+ },
+ "recipe": {
+ "sha256": "0pzpn1ljfcc2dl9fg7jc8lmjwz2baays4axjqk1qsbj0kqbc8j0l",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140410.1114",
+ "deps": []
+ },
+ "voca-builder": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "yitang",
+ "repo": "voca-builder",
+ "sha256": "183pvfp5nnqpgdmfxm84qrnid0lijgk79l5lhwzmnznzkrb7bgxw",
+ "rev": "cd74c13e005e33ab125d43233b1267a8819b0abb"
+ },
+ "recipe": {
+ "sha256": "0mbw87mpbb8rw7xzhmg6yjla2c80x9820kw4q00x00ny5rbhm76y",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150625.1333",
+ "deps": []
+ },
+ "replace+": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/replace+.el",
+ "sha256": "0hma5mb2r33yfdlwb1ls1gjnqps00sri6q0hkksngvz67hka9mx4"
+ },
+ "recipe": {
+ "sha256": "1imsgr3v8g2p2mnkzp92ga3nvckr758pblmlha8gh8mb80089krn",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150723.833",
+ "deps": []
+ },
+ "pager-default-keybindings": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "nflath",
+ "repo": "pager-default-keybindings",
+ "sha256": "11msqs8v9wn8sj45dw1fl0ldi3sw33v0xclynbxgmawyabfq3bqm",
+ "rev": "dbbd49c2ac5906d1dabf9e9c832bfebc1ab405b3"
+ },
+ "recipe": {
+ "sha256": "0vqb3s1fxkl1fxxspq89344s55sfcplz26z0pbh347l1681h3pci",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20130719.1557",
+ "deps": [
+ "pager"
+ ]
+ },
+ "zotelo": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "vitoshka",
+ "repo": "zotelo",
+ "sha256": "16fr5s8i9ykq5j7ikf6qfd2px2dxc1gcff5wipif8h758691rliv",
+ "rev": "91c8309da1f293341ba86f29fa0a28dee5cabd93"
+ },
+ "recipe": {
+ "sha256": "0ai516lqj9yw7ymvfm4n5inv53sp6mg90wy56lr1laflizwxzg8z",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151105.541",
+ "deps": [
+ "cl-lib"
+ ]
+ },
+ "material-theme": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "cpaulik",
+ "repo": "emacs-material-theme",
+ "sha256": "1vpqkbjqdy6x4icpn312yl0ppnpj0m2anc9jld2kvz8wbpgqmlwl",
+ "rev": "68a2e4d9f09dc3a45c765edb271c3460af885de0"
+ },
+ "recipe": {
+ "sha256": "1d259avldc5fq121xrqv53h8s4f4bp6b89nz2rvjhygz7f8hargq",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151125.225",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "helm-dash": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "areina",
+ "repo": "helm-dash",
+ "sha256": "0s503q56acv70i5qahrdgk3nhvdpb3wa22a8jh1kvb7lykaw74ai",
+ "rev": "a0f5d6539da873cd0c51d8ef714930c970a66aa0"
+ },
+ "recipe": {
+ "sha256": "1cnxssj2ilszq94v5cc4ixblar1nlilv9askqjp9gfnkj2z1n9cy",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151203.1347",
+ "deps": [
+ "cl-lib",
+ "helm"
+ ]
+ },
+ "vcomp": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "tarsius",
+ "repo": "vcomp",
+ "sha256": "0fzz26c1pdaz3i58ndhzd2520mhny487daqs21yajxi9x2m00zrl",
+ "rev": "092ef48a78e950c0576269d889be6caf9f6e61c5"
+ },
+ "recipe": {
+ "sha256": "02cj2nlyxvgvl2rjfgacljvcsnfm9crmmkhcm2pznj9xw10y8pq0",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140906.1708",
+ "deps": []
+ },
+ "togetherly": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "zk-phi",
+ "repo": "togetherly",
+ "sha256": "1falf86mm2206szkkwiwa5yk65y12asv84j1pdbcy6n8y6hha796",
+ "rev": "9d655661984f7d62e9d6e0e9d47ae7ca8c4f43c7"
+ },
+ "recipe": {
+ "sha256": "01ks160dfmgh05lx0lmyg020hba8nw49mj51dp1afcsmx4dkis2f",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150820.338",
+ "deps": [
+ "cl-lib"
+ ]
+ },
+ "jsx-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "jsx",
+ "repo": "jsx-mode.el",
+ "sha256": "1g648r0wrd8m5ggl5jrplmj7jmr68bh2ykyii5wv30zfba97r1sh",
+ "rev": "47213429c09259126cddb5742482cfc444c70d50"
+ },
+ "recipe": {
+ "sha256": "1lnjnyn8qf3biqr92z443z6b58dly7glksp1g986vgqzdprq3n1b",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20130908.1224",
+ "deps": []
+ },
+ "literate-starter-kit": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "eschulte",
+ "repo": "emacs24-starter-kit",
+ "sha256": "1v37bii372w2g3pl09n5dcrk6y7glhpg8qiv17zsk9jy3ps2xm1b",
+ "rev": "6dce1d01781966c14558aa553cfc85008c06e115"
+ },
+ "recipe": {
+ "sha256": "1n2njf007fmrmsb8zrgxbz1cpxmr5nsp8w41yxa934iqc7qygkjy",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150730.1354",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "searchq": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "boyw165",
+ "repo": "searchq",
+ "sha256": "0zs08vxmjb3y4dnfq6djnrhmkgyhhwd5zylrjisrd4y7f089fyh4",
+ "rev": "dd510d55ad66a82c6ef022cfe7c4a73ad5365f82"
+ },
+ "recipe": {
+ "sha256": "0flsc07v887pm62mslrv7zqnhl62l6348nkm77mizm1592q3kjgr",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150829.711",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "x-dict": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "emacsmirror",
+ "repo": "x-dict",
+ "sha256": "0i7bgbhk4lvdkdjh6z4xs69mbdi49985j82cjikzyyskjcqd2klq",
+ "rev": "920b2430bff9fb8c4bb7944aa358622545c00cee"
+ },
+ "recipe": {
+ "sha256": "1w51xhiaxk50wlch262dxs2ybjvjj8qzx01xlgiimvggb8h5arlc",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20091203.1223",
+ "deps": []
+ },
+ "tool-bar+": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/tool-bar+.el",
+ "sha256": "1ml95y7275yd2jn4zf96rg0pwxsv8vnwv52mvr9j0j9mqkw1d0d9"
+ },
+ "recipe": {
+ "sha256": "07nsas600w5kxx7yzg52ax9avry8kq429mqlrs38jg5ycf3b1l6d",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150104.1902",
+ "deps": []
+ },
+ "python-info": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "Wilfred",
+ "repo": "python-info",
+ "sha256": "079xvdaw06wvjnma6572j3p8c7h206agpi9c1as3iw8r1qf5pv7z",
+ "rev": "39996472d78420986e62ae9d16bf62a4a26aab60"
+ },
+ "recipe": {
+ "sha256": "0kvpz1r2si94rs1iajn1ffmx7a5bgyjnzri36ajdgd5gcgh41dhy",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20141106.1551",
+ "deps": []
+ },
+ "mo-git-blame": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "mbunkus",
+ "repo": "mo-git-blame",
+ "sha256": "1ydv6z0nns3cc3bxb1r7052dck66y4v201ms2bzichmd351qhv6q",
+ "rev": "a0b9ca186d96ef02a5c0ab5d1c29b7a71e78af68"
+ },
+ "recipe": {
+ "sha256": "1dp9pxhggappb70m5hyp8sxlnh06y996adabq7x6qvm745mk6f0x",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151127.215",
+ "deps": []
+ },
+ "auto-async-byte-compile": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/auto-async-byte-compile.el",
+ "sha256": "1c8nm4sz9a67q8w0b1jahg5ldy185zws7nilj9yv3miklg07zq17"
+ },
+ "recipe": {
+ "sha256": "108jhrdx67chbdd4h824072i2wrn90zdh2hw5vqd4a5svhhf28jj",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151029.916",
+ "deps": []
+ },
+ "gradle-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "jacobono",
+ "repo": "emacs-gradle-mode",
+ "sha256": "0xs2278gamzg0710bm1fkhjh1p75m2l1jcl98ldhyjhvaf9d0ysc",
+ "rev": "e4d665d5784ecda7ddfba015f07c69be3cfc45f2"
+ },
+ "recipe": {
+ "sha256": "0lx9qi93wmiy9pxjxqp68scbcb4bx88b6jiqk3y8jg5cajizh24g",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150313.1405",
+ "deps": [
+ "s"
+ ]
+ },
+ "code-library": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "lujun9972",
+ "repo": "code-library",
+ "sha256": "0mcf0xyh4p6pk2hf1f554vy4amd0qcimspgnncff2a0qc2bsg5sy",
+ "rev": "6004c12b199f0a78bc6c11adaa5091a90bc6926b"
+ },
+ "recipe": {
+ "sha256": "0gi8lz2q0vis4nyziykq15jp3m3vykfwycbk6amhf1ybkn9k3ywj",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151216.1011",
+ "deps": [
+ "gist"
+ ]
+ },
+ "redo+": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/redo+.el",
+ "sha256": "1jc4n60spzssa57i3jwrqwy20f741hb271vmmx49riycx1ybx3d3"
+ },
+ "recipe": {
+ "sha256": "1alfs7k5mydgvzsjmdifcizqgrqjrk2kbh3mabai7nlrwi47w9n2",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20131117.551",
+ "deps": []
+ },
+ "cycle-themes": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "toroidal-code",
+ "repo": "cycle-themes.el",
+ "sha256": "125s6vwbb9zpx6h3vrxnn7nr8pb45vhxd70ba2r3f87dlxah93am",
+ "rev": "6e125d11fdbc6b78fc9f219eb2609a5e29815898"
+ },
+ "recipe": {
+ "sha256": "1whp9q26sgyf59wygbrvdf9gc94bn4dmhr2f2qivpajx550fjfbc",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150402.2209",
+ "deps": [
+ "cl-lib"
+ ]
+ },
+ "ess-R-data-view": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "myuhe",
+ "repo": "ess-R-data-view.el",
+ "sha256": "1ya2ay52gkrd31pmw45ban8kkxgnzhhwkzkypwdhjfccq3ys835x",
+ "rev": "d6e98d3ae1e2a2ea39a56eebcdb73e99d29562e9"
+ },
+ "recipe": {
+ "sha256": "0r2fzwayf3yb7fqk6f31x4xfqiiczwik8qw4rrvkqx2h3s1kz7i0",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20130509.658",
+ "deps": [
+ "ctable",
+ "ess",
+ "popup"
+ ]
+ },
+ "string-inflection": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "akicho8",
+ "repo": "string-inflection",
+ "sha256": "06qs8v2pai3pyg0spmarssmrq06xg9q60wjj46s5xxichlw9pgcf",
+ "rev": "147990de9d07d8e603ade92a23ef27a71e52b850"
+ },
+ "recipe": {
+ "sha256": "1vrjcg1fa5adw16s4v9dq0fid0gfazxk15z9cawz0kmnpyzz3fg2",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150805.456",
+ "deps": []
+ },
+ "keyfreq": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "dacap",
+ "repo": "keyfreq",
+ "sha256": "18qiw2324gx5w12pqka9njsysxym8dpglk7dzadg0k1wji73nn6l",
+ "rev": "06cb50b2796688cc76eeb86d48c9826abbee6383"
+ },
+ "recipe": {
+ "sha256": "1rw6hzmw7h5ngvndy7aa41pq911y2hr9kqc9w4gdd5v2p4ln1qh7",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150924.2205",
+ "deps": []
+ },
+ "sourcetalk": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "malroc",
+ "repo": "sourcetalk_emacs",
+ "sha256": "0j4qm1y7rhb95k1zbl3c60a46l9rchzslzq36mayyw61s6yysjnv",
+ "rev": "aced89fa8776e6d5e42dad4a863e159959f08de6"
+ },
+ "recipe": {
+ "sha256": "0qaf2q784xgl1s3m88jpwdzghpi4f3nybga3lnr1w7sb7b3yvj3z",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140823.939",
+ "deps": [
+ "request"
+ ]
+ },
+ "darkmine-theme": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "pierre-lecocq",
+ "repo": "darkmine-theme",
+ "sha256": "0ajxlrnz1228w8ldgraw6a4s605isbr67p8s382jvia2zf821fmp",
+ "rev": "8cd5ff16bede4c8e1d063bc46fc1089a36a05bd3"
+ },
+ "recipe": {
+ "sha256": "06vzldyqlmfd11g8dqrqh5x244ikfa20qwpsmbgsiry3041k8iw5",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151216.832",
+ "deps": []
+ },
+ "archive-region": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/archive-region.el",
+ "sha256": "1mhj6x0n2ya3xd7gykmkcf70ji5g8qd8xawz764ykdlcribpsq52"
+ },
+ "recipe": {
+ "sha256": "03x2fqhx4w0c7xd8x8zlnyzdwyay6r2yxf4jzgkcg87q7rqjk9nd",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140201.1745",
+ "deps": []
+ },
+ "path-headerline-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "7696122",
+ "repo": "path-headerline-mode",
+ "sha256": "1ffnkw8djs8kvfjd1crnaqram1vl4w3g1zhsqp74ds0mccsd6830",
+ "rev": "b5b2725c6a8b1cb592fc242b7dbbd54b4dff2e69"
+ },
+ "recipe": {
+ "sha256": "0dwr8iyq62ad5xkh7r4kpywpypdq1wljsdzwqbq9zdr79yfqx337",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140423.832",
+ "deps": []
+ },
+ "pointback": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "emacsorphanage",
+ "repo": "pointback",
+ "sha256": "016cjy5pnnqccjqb0njqc9jq6kf6p165nlki83b8c0sj75yxghav",
+ "rev": "e3a02c1784d81b5a1d2477338d049af581ed19f8"
+ },
+ "recipe": {
+ "sha256": "198q511hixvzc13b3ih89xs9g47rdvbiixn5baqakpmpx3a12hz4",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20100210.952",
+ "deps": []
+ },
+ "vc-osc": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "aspiers",
+ "repo": "vc-osc",
+ "sha256": "0whzfzg0m03wbmqsxml8hislnbfvawcniq83hj66lbrnbivxsqj4",
+ "rev": "fb01a35107be50ebb126c3573e0374e5e7d78331"
+ },
+ "recipe": {
+ "sha256": "0rp33945xk5d986brganqnn55psmlkj6glbimxakhgv9a1r85sxz",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20120910.411",
+ "deps": []
+ },
+ "kaesar": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "mhayashi1120",
+ "repo": "Emacs-kaesar",
+ "sha256": "1maab8iaf2wcjj02ibl21jlfzmi9gmcl167cgdlwj50wkig74s23",
+ "rev": "11ab63b8e6f1c4ebc5a2e54474095754a39104e5"
+ },
+ "recipe": {
+ "sha256": "0zhi1dv1ay1azh7afq4x6bdg91clwpsr13nrzy7539yrn9sglj5l",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150220.505",
+ "deps": [
+ "cl-lib"
+ ]
+ },
+ "image-dired+": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "mhayashi1120",
+ "repo": "Emacs-image-diredx",
+ "sha256": "1n2ya9s0ld257a8iryjd0dz0z2zs1xhzfiwsdkq4l4azwxl54m29",
+ "rev": "b68094625d963056ad64e0e44af0e2266b2eadc7"
+ },
+ "recipe": {
+ "sha256": "0hhwqfn490n7p12n7ij4xbjh15gfvicmn21fvwbnrmfqc343pcdy",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150430.44",
+ "deps": [
+ "cl-lib"
+ ]
+ },
+ "anything-sage": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "stakemori",
+ "repo": "anything-sage",
+ "sha256": "08xr6fkk1r4r5jqh349d4dfal9nbs2a8y2fp8zn3zlrj2cd0g80k",
+ "rev": "370b4248935dd4527127954788a028399644f578"
+ },
+ "recipe": {
+ "sha256": "1878vj8hzrwfyd2yvxcm0f1vm9m0ndwnj0pcq7j8zm9lxj0w48p3",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20141005.613",
+ "deps": [
+ "anything",
+ "cl-lib",
+ "sage-shell-mode"
+ ]
+ },
+ "ignoramus": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "rolandwalker",
+ "repo": "ignoramus",
+ "sha256": "161algqrrjbc1ja08416q5wzz34rrg6shr2sim7vba0j3svyggnf",
+ "rev": "cab192aa621d1087f2d574b65fffd295c5efb919"
+ },
+ "recipe": {
+ "sha256": "1czqdmlrds1l5afi8ldg7nrxcwav86538z2w1npad3dz8xk67da9",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150216.1542",
+ "deps": []
+ },
+ "stock-ticker": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "hagleitn",
+ "repo": "stock-ticker",
+ "sha256": "191sg32z1iagyxmbn49i1lpfihld9g9741cw2kj830s4vag4kinx",
+ "rev": "f2e564142c9de84232839a5b01979cf95b04d6a9"
+ },
+ "recipe": {
+ "sha256": "1slcjk2avybr4v9s7gglizmaxbb3yqg6s6gdbg12m3vvj3b72lfi",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150204.452",
+ "deps": [
+ "request",
+ "s"
+ ]
+ },
+ "telephone-line": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "dbordak",
+ "repo": "telephone-line",
+ "sha256": "0mg870s60by22ripxhqrgxjx16506n4llj9nnxlqgr4mdsi77cf5",
+ "rev": "0715ee7d156086098b375f3d93de2f50e76f3d75"
+ },
+ "recipe": {
+ "sha256": "0dyh9h1yk9y0217b6rxsm7m372n910vpfgw5w23lkkrwa8x8qpx3",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151116.642",
+ "deps": [
+ "cl-lib",
+ "eieio",
+ "emacs",
+ "s",
+ "seq"
+ ]
+ },
+ "ac-php": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "xcwen",
+ "repo": "ac-php",
+ "sha256": "1rpp6njgqpi7sq4iyh65glhnbfw414w7srz90whadhkz5pzawr7z",
+ "rev": "1f606698934a7d60d0d60f6f15240a2bf78c8b9f"
+ },
+ "recipe": {
+ "sha256": "0p9qq8nszp5jb71s35cxnmcxp50b62y2jv1ha7vvqfz5p8miallk",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151209.2128",
+ "deps": [
+ "auto-complete",
+ "company",
+ "dash",
+ "emacs",
+ "f",
+ "php-mode",
+ "popup",
+ "s",
+ "xcscope",
+ "yasnippet"
+ ]
+ },
+ "helm-ghq": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "masutaka",
+ "repo": "emacs-helm-ghq",
+ "sha256": "0amdm0jcg5dxjfiid7q0llr2hffp02l0b0n5yhix8razvi7bhy2z",
+ "rev": "15621d1b2cd37c2ff0f73666c38acf7aae46bbc4"
+ },
+ "recipe": {
+ "sha256": "14f3cbsj7jhlhrp561d8pasllnx1cmi7jk6v2fja7ghzj76dnvq6",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151115.512",
+ "deps": [
+ "helm"
+ ]
+ },
+ "haskell-tab-indent": {
+ "fetch": {
+ "tag": "fetchgit",
+ "url": "https://git.spwhitton.name/haskell-tab-indent",
+ "sha256": "7e41c910d6901638b9dfb697206659f5441e26e0558f9227c4ba7c6f2f47d841",
+ "rev": "150f52176242ba3bc4f58179cd2dbee4d89580f4"
+ },
+ "recipe": {
+ "sha256": "0vdfmy56w5yi202nbd28v1bzj97v1wxnfnb5z3dh9687p2abgnr7",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151205.1359",
+ "deps": []
+ },
+ "math-symbol-lists": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "vspinu",
+ "repo": "math-symbol-lists",
+ "sha256": "186gb83y3g1q7d0sdrxqz22nr62qq6fy7m74qwirlsf7vnnm4gpx",
+ "rev": "56319989e7ac6bd625b46e8a28f8005077b5957b"
+ },
+ "recipe": {
+ "sha256": "01j11k29acj0b1pcapmgi2d2s3p50bkms21i2qcj0cbqgz8h6s27",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151215.1243",
+ "deps": []
+ },
+ "ox-rst": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "masayuko",
+ "repo": "ox-rst",
+ "sha256": "1js4n8iwimc86fp2adzhbhy4ixss1yqngjd8gq7pxgpgmnhd66x3",
+ "rev": "2bd53fa5b3af67afbf45041d7f54b3c5b71b1f10"
+ },
+ "recipe": {
+ "sha256": "1vyj6frrl7328n2x7vc3qwv3ssdhi8bp6ja5h2q4bqalc6bl1pq0",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151115.143",
+ "deps": [
+ "emacs",
+ "org"
+ ]
+ },
+ "multicolumn": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "Lindydancer",
+ "repo": "multicolumn",
+ "sha256": "1ispa0wxpkydm0cyj4scyyacfrbilrip5v8bsrcqfc6qs597z8rf",
+ "rev": "c7a3afecd470859b2e60aa7c554d6e4d436df7fa"
+ },
+ "recipe": {
+ "sha256": "1ylnc3s4ixvnqn7g2p6nzz8x29ggqc703waci430f1rp1lsd3q09",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150202.1651",
+ "deps": []
+ },
+ "css-eldoc": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "zenozeng",
+ "repo": "css-eldoc",
+ "sha256": "1mgc6bd0dzrp1dq1yj8m2qxjnpysd8ppdk2yp96d3zd07zllw4rx",
+ "rev": "c558ac4c470742c98a37290e6b409db28183df30"
+ },
+ "recipe": {
+ "sha256": "1f079q3ccrr4drk2hvn4xs4vbrd3hg87xqbk3r9mmjvkagd1v7rf",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150124.2123",
+ "deps": []
+ },
+ "helm-gtags": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "syohex",
+ "repo": "emacs-helm-gtags",
+ "sha256": "0gd158ymj0rpm3qmz17ky4lfhvw15cnq0xvhg6q1imjjay2md62q",
+ "rev": "9131a1439860198d51a9dfa6955c586da4bb60bd"
+ },
+ "recipe": {
+ "sha256": "0snx0b8b4yc507q3i4fzvrd68xgzqxly8kn5cwp26ik6cv840y29",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151205.820",
+ "deps": [
+ "cl-lib",
+ "helm"
+ ]
+ },
+ "chinese-pyim": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "tumashu",
+ "repo": "chinese-pyim",
+ "sha256": "0sw9iajxy6lmpr8d2g6409b84psa1xr5pikrb3i5qbbwpvz6q3w4",
+ "rev": "6b80f86305dbd1c09b12017d9189356fb98df2c6"
+ },
+ "recipe": {
+ "sha256": "0zdx5zhgj1ly89pl48vigjzd8g74fxnxcd9bxrqykcn7y5qvim8l",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151215.1812",
+ "deps": [
+ "cl-lib",
+ "pos-tip"
+ ]
+ },
+ "zencoding-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "rooney",
+ "repo": "zencoding",
+ "sha256": "1y3wj15kfbgskl29glmba6lzq43rcm141p4i5s180aqcw7ydp5vr",
+ "rev": "58e42af182c98cb9941d27cd042d227fbf4e146c"
+ },
+ "recipe": {
+ "sha256": "1fclad1dyngyg9ncfkcqfxybvy8482i2bd409cgxi9y4h1wc7ws7",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140213.222",
+ "deps": []
+ },
+ "company-cabal": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "iquiw",
+ "repo": "company-cabal",
+ "sha256": "0ll9dxzsgrpy4psz3dqhzny990lfccn63swcyfvl8mnqgwbrq8k0",
+ "rev": "f458de88cad16ed48a605e8347e56433e73dcef8"
+ },
+ "recipe": {
+ "sha256": "0pbjidj88c9qri6xw8023yqwnczad5ig224cbsz6vsmdla2nlxra",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151216.920",
+ "deps": [
+ "cl-lib",
+ "company",
+ "emacs"
+ ]
+ },
+ "borland-blue-theme": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "fourier",
+ "repo": "borland-blue-theme",
+ "sha256": "1s7inys0191z90kwzlr4khrwin1qyj3jsci7240fifk2w8vpa69r",
+ "rev": "4b77caf6f40e2ffb4f37cb6e2c526bddb50c405f"
+ },
+ "recipe": {
+ "sha256": "1sc8qngm40bwdym8k1dgbahg48i73c00zxd99kqqwm9fnd6nm7qx",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151206.1238",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "idle-highlight-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "nonsequitur",
+ "repo": "idle-highlight-mode",
+ "sha256": "0x4w1ksrw7dicl84zpf4d4scg672dyan9g95jkn6zvri0lr8xciv",
+ "rev": "c466f2a9e291f9da1167dc879577b2e1a7880482"
+ },
+ "recipe": {
+ "sha256": "1i5ky61bq0dpk71yasfpjhsrv29mmp9nly9f5xxin7gz3x0f36fc",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20120920.1148",
+ "deps": []
+ },
+ "tc": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "kozo2",
+ "repo": "tc",
+ "sha256": "1xpkrlfqb0np9zyxk41f3pxfkw98ii4q0xh8whq4llv5bmfxynzk",
+ "rev": "6aa9d27c475be8d009adf9cd417f2cdf348a91e8"
+ },
+ "recipe": {
+ "sha256": "13qdnfslnik4f97lz9bxayyhgcp1knh5gaqy00ps863j3vpzjb9s",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150113.2126",
+ "deps": []
+ },
+ "java-imports": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "dakrone",
+ "repo": "emacs-java-imports",
+ "sha256": "0canb3yp29n4bb31852hg8fbmwi1rw8r02ngd5f60mfpdrz2jqm6",
+ "rev": "90d1b813a88b93bea8733be3babac3ec238b54d1"
+ },
+ "recipe": {
+ "sha256": "1waz6skyrm1n8wpc0pwa652l11wz8qz1m89mqxk27k3lwyd84n98",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151217.1821",
+ "deps": [
+ "pcache",
+ "s"
+ ]
+ },
+ "mandoku": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "mandoku",
+ "repo": "mandoku",
+ "sha256": "0dbm53ihva3qsrcr1ancc6ky55j3j2i6qgqlipndv29aksxx3mlf",
+ "rev": "d8027f67b4a65f59101ce80a6b6308c01d37a186"
+ },
+ "recipe": {
+ "sha256": "1pg7ir3y6yk92kfs5agbxapcxf7gy60m353rjv8g3kfkx5zyh3mv",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151130.900",
+ "deps": [
+ "git",
+ "github-clone",
+ "magit",
+ "org"
+ ]
+ },
+ "bibretrieve": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "pzorin",
+ "repo": "bibretrieve",
+ "sha256": "0rwy4k06nd9a31hpyqs0fxp45dpddbvbhwcw1gzx4f73qmgawq9b",
+ "rev": "aff34c6e1a074ac4fd574d8e66fd9e0760585419"
+ },
+ "recipe": {
+ "sha256": "1mf884c6adx7rq5c2z5wrnjpb6znljy30mscxskwqiyfs8c62mii",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20131013.1332",
+ "deps": [
+ "auctex",
+ "emacs"
+ ]
+ },
+ "private-diary": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "cacology",
+ "repo": "private-diary",
+ "sha256": "02l86flh3pyvd8va3dkckf4whr8lab1iybgdb9k6dqsc6j46dcfh",
+ "rev": "9d2589e46a51ce256ded0542b9826f520ccfcb1a"
+ },
+ "recipe": {
+ "sha256": "0dgnf375c00nlkp66kbkzsf469063l03b9miiplbhd63zshlv1i1",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151216.1057",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "cryptsy-public-api": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "sodaware",
+ "repo": "cryptsy-public-api.el",
+ "sha256": "0ry0087g1br3397js7a9iy6k2x6p0dgqlggxx9gaqhms7pmpq14b",
+ "rev": "59bdf2425dccc27cc1598868a1a810885508cff5"
+ },
+ "recipe": {
+ "sha256": "1v78rm44af3vgsml5f6kpwvnb4ks6n49br2fhjgh6nc7g3jmz97n",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20141008.728",
+ "deps": [
+ "json"
+ ]
+ },
+ "highlight-blocks": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "Fanael",
+ "repo": "highlight-blocks",
+ "sha256": "0c65jk00j88qxfki2g88hy9g6n92rzskwcn1fbmwcw3qgaz4b6w5",
+ "rev": "9c4240a5d16008db430d1a81c76dad474d3deb0c"
+ },
+ "recipe": {
+ "sha256": "1a32iv5kgf6g6ygbs559w156dh578k45m860czazfx0d6ap3k5m1",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151201.1015",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "simple-httpd": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "skeeto",
+ "repo": "emacs-http-server",
+ "sha256": "0jn46fk0ljqs40kz6ngp0sk6hg1334835r2rmagx4qm0mdaqy7p8",
+ "rev": "4b7a6bc6a6df6b932f8c9e9aded9103397c0c18f"
+ },
+ "recipe": {
+ "sha256": "18dharsdiwfkmhd9ibz9f47yfq9c2d78i886pi6gsjh8iwcpzx59",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150430.1955",
+ "deps": [
+ "cl-lib"
+ ]
+ },
+ "lavender-theme": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "emacsfodder",
+ "repo": "emacs-lavender-theme",
+ "sha256": "1mg923rs2dk104bcr461dif3mg42r081ii8ipnnr588w7il0xh7k",
+ "rev": "d9e4d7838167a0e07fb5d04877a7b34c4b4cc1ee"
+ },
+ "recipe": {
+ "sha256": "1x7mk3dpk44fkzll6xmh2dw270cgb3a9qs3h8bmiq2dw0wrcwcd1",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20141116.102",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "actionscript-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "austinhaas",
+ "repo": "actionscript-mode",
+ "sha256": "1rxx2j7kkzjdsk06zgisiydg8dc18vqll4wl6q9mfhrg2y12lq94",
+ "rev": "f7dd1d77322b49d259919d58ffcdf64073ba6c09"
+ },
+ "recipe": {
+ "sha256": "1dkiay9jmizvslji5kzab4dxm1dq0jm8ps7sjq6710g7a5aqdvwq",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140605.1328",
+ "deps": []
+ },
+ "electric-spacing": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "xwl",
+ "repo": "electric-spacing",
+ "sha256": "0q1pb01h48wdbjgi04a6ck2jn7yfh92wpq1vka5pg54wv2k9b5fn",
+ "rev": "78e4ccbb0a924a3062fa16c9b24823bb79bb1f3e"
+ },
+ "recipe": {
+ "sha256": "0fcsz9wmibqp6ci0pa5r4gzlrsyj5klajxpgfksa0nfj3dc94cvg",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151209.936",
+ "deps": []
+ },
+ "fakir": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "nicferrier",
+ "repo": "emacs-fakir",
+ "sha256": "1w5apzbzr1jd983b0rzsy9ldb0z0zcq6mpyb5r8czl5wd4vvj69h",
+ "rev": "1fca406ad7de80fece6319ff75d4230b648534b0"
+ },
+ "recipe": {
+ "sha256": "07bicglgpm6qkcsxwj6rswhx4hgh27rfg8s1cki7g8qcvk2f7b25",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140729.1152",
+ "deps": [
+ "dash",
+ "kv",
+ "noflet"
+ ]
+ },
+ "z3-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "zv",
+ "repo": "z3-mode",
+ "sha256": "1k7m3xk5ksbr2s3ypz5yqafz9sfav1m0qk2jz1xyi3fdaw2j0w2z",
+ "rev": "163dc01d59e9880b4dc188d4e1ad84d6c0c852e1"
+ },
+ "recipe": {
+ "sha256": "183lzhgjj480ca2939za3rlnsbfn24mgi501n66h5wim950v7vgd",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151120.1655",
+ "deps": [
+ "emacs",
+ "flycheck"
+ ]
+ },
+ "latex-pretty-symbols": {
+ "fetch": {
+ "tag": "fetchhg",
+ "url": "https://bitbucket.com/mortiferus/latex-pretty-symbols.el",
+ "sha256": "0h9hncf2ghfkd3i3342ajj1niykhfr0aais3j6sjg1vkm16xbr3b",
+ "rev": "ef4ea64c09ea"
+ },
+ "recipe": {
+ "sha256": "1f2s2f64bmsx89a3crm4skhdi4pq9w18z9skxw3i3ydaj15s8jgl",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151112.444",
+ "deps": []
+ },
+ "sos": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "omouse",
+ "repo": "emacs-sos",
+ "sha256": "16x039imyf4p5d4rn92nlqcsvb5vlvdgq1m5g856b9dzwa89x733",
+ "rev": "96b7d951a5f0a8ae401c0813745fc1aca0cb816c"
+ },
+ "recipe": {
+ "sha256": "1gkd0plx7152s3dj8a9lwlwh8bgs1m006s80l10agclx6aay8rvb",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20141214.2203",
+ "deps": [
+ "org"
+ ]
+ },
+ "nasm-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "skeeto",
+ "repo": "nasm-mode",
+ "sha256": "19v1qp4rzqvyzrk5zaxdjhki8cjl4fg6lr4ai3vi06yf62ds9mcs",
+ "rev": "d95a12d3caaf1decf4d3bd39ac8559098e7227aa"
+ },
+ "recipe": {
+ "sha256": "1626yf9mmqlsw8w01vzqsyb5ipa56259d4kl6w871k7rvhxwff17",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151109.1858",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "markup-faces": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "sensorflo",
+ "repo": "markup-faces",
+ "sha256": "1w6i1m7xdr9cijnmdj35cl99r12vl83qws0qlfhrgvisilshnr27",
+ "rev": "98a807ed82473eb41c6a201ed7ef816d6bcd67b0"
+ },
+ "recipe": {
+ "sha256": "12z92j9f0mpn7w2qkiwg54wh743q3inx56q3f8qcpfzyks546grq",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20141110.217",
+ "deps": []
+ },
+ "state": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "thisirs",
+ "repo": "state",
+ "sha256": "1930cfpvik6b7xqpbwf92cnnqcn1icmi0v0b75hxv9jxiibqavap",
+ "rev": "6b7ae04cba5d055c1a143a4fdef9a0429fd38049"
+ },
+ "recipe": {
+ "sha256": "19y3n8wnbpgbpz4jxy2p7hjqxykg09arjp7s5v22yz7il3gn48l2",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151103.447",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "angry-police-captain": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "rolando2424",
+ "repo": "angry-police-captain-el",
+ "sha256": "1m0c7ns7aiycg86cgglir8bkw730fslyg1n15m9ki0da4cnmm97a",
+ "rev": "d11931c5cb63368dcc4a48797962428cca6d3e9d"
+ },
+ "recipe": {
+ "sha256": "1cshhd4bkgbkg0n6m8gz53z47z4nq0hcriz2qh3v7m4cqgkw1m9r",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20120829.752",
+ "deps": []
+ },
+ "better-registers": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/better-registers.el",
+ "sha256": "05dlhhvd1m9q642gqqj6klif13shbinqi6bi72fldidi1z6wcqlh"
+ },
+ "recipe": {
+ "sha256": "01i0qjrwsc5way2h9z3pmsgccsbdifsq1dh6zhka4h6qfgrmn3bx",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140813.319",
+ "deps": []
+ },
+ "bison-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "Wilfred",
+ "repo": "bison-mode",
+ "sha256": "0iccafawm9ah62f7qq1k77kjpafhcpjcaiqh5xjig1wxnpc43ck7",
+ "rev": "bb48d82f296bbe9f8b4a5651fab6610525fdbfcf"
+ },
+ "recipe": {
+ "sha256": "097gimlzmyrsfnl76cbzyyi9dm0d2y3f9107672h56ncri35mh66",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20141119.243",
+ "deps": []
+ },
+ "wgrep": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "mhayashi1120",
+ "repo": "Emacs-wgrep",
+ "sha256": "075z0glain0dp56d0cp468y5y88wn82ab26aapsrdzq8hmlshwn4",
+ "rev": "7ef26c51feaef8a5ec0929737130ab8ba326983c"
+ },
+ "recipe": {
+ "sha256": "09xs420lvbsmz5z28rf6f1iwa0ixkk0w24qbj6zhl9hidh4mv9y4",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20141016.1856",
+ "deps": []
+ },
+ "pg": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "cbbrowne",
+ "repo": "pg.el",
+ "sha256": "1zh7v4nnpzvbi8yj1ynlqlawk5bmlxi6s80b5f2y7hkdqb5q26k0",
+ "rev": "4f6516ec3946d95dcef49abb6703cc89ecb5183d"
+ },
+ "recipe": {
+ "sha256": "0n0187ndvwza1nis9a12h584qdqkwqfzhdw21kz5d1i6c43g7gji",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20130731.1642",
+ "deps": []
+ },
+ "calfw": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "kiwanami",
+ "repo": "emacs-calfw",
+ "sha256": "1rv6slk3a7ca2q16isjlkmgxbxmbqx4lx2ip7z33fvnq10r5h60n",
+ "rev": "50e0e0261568f84f31fe7f87c9f863e21d30132f"
+ },
+ "recipe": {
+ "sha256": "1lyb0jzpx19mx50d8xjv9sx201518vkvskxbglykaqpjm9ik2ai8",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150923.2149",
+ "deps": [
+ "google-maps"
+ ]
+ },
+ "tabbar-ruler": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "mattfidler",
+ "repo": "tabbar-ruler.el",
+ "sha256": "0vvbzzw5l9j2gf2a8ajzf87x80ifm4npfpamgsi85s90j4ac4n5q",
+ "rev": "5854ef040a1c45e1ce7dfebea6ed7953ce6bd2b9"
+ },
+ "recipe": {
+ "sha256": "10dwjj6r74g9rzdd650wa1wxhqc0q6dmff4j0qbbhmjsxvsr3y0d",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150914.1951",
+ "deps": [
+ "tabbar"
+ ]
+ },
+ "gruber-darker-theme": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "rexim",
+ "repo": "gruber-darker-theme",
+ "sha256": "12klcl22npffx363bsx3sbndkbnz564yi38pk6iscps8gccyxjkm",
+ "rev": "25d52be23017f5a79d5eba53e767eab9d751819e"
+ },
+ "recipe": {
+ "sha256": "0vn4msixb77xj6p5mlfchjyyjhzah0lcmp0z82s8849zd194fxqi",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151210.126",
+ "deps": []
+ },
+ "orgbox": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "yasuhito",
+ "repo": "orgbox",
+ "sha256": "0hwmr67nky9xp5xlrkp54nw6b72d29lmna28dnbgqs2i5rccbk55",
+ "rev": "72373b09768cc2200d143af38e25a0c082e8375d"
+ },
+ "recipe": {
+ "sha256": "12wfqlpjh9nr7zgqs4h8kmfsk825n68qcbn8z2fw2mpshg3nj7l8",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140528.2026",
+ "deps": [
+ "cl-lib",
+ "org"
+ ]
+ },
+ "kolon-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "samvtran",
+ "repo": "kolon-mode",
+ "sha256": "0yr4yxwxgxp5pm9f8gaqlikxp26inv01inq0ya42dzam5yphkafw",
+ "rev": "5af0955e280ae991862189ebecd3937c5fc8fb9f"
+ },
+ "recipe": {
+ "sha256": "0wcg8ph3mk4zcmzqpvl2w6rfgvrfvhmgwb14y8agh9b7v5d9xwj3",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140122.534",
+ "deps": []
+ },
+ "mew": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "kazu-yamamoto",
+ "repo": "Mew",
+ "sha256": "1rkipcv53p7zra3gbjc77ywyxn8d1kx2gniyfqq16d2p2jw0lbzb",
+ "rev": "ff9c41b981fb6050121a3831825d0349bffeb9ce"
+ },
+ "recipe": {
+ "sha256": "0423xxn3cw6jmsd7vrw30hx9phga5chxzi6x7cvpswg1mhcyn9fk",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150814.154",
+ "deps": []
+ },
+ "nand2tetris-assembler": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "CestDiego",
+ "repo": "nand2tetris.el",
+ "sha256": "003zgkpzz9q0bkkw6psks0vbfikzikfm42myqk14xn7330vgcxz7",
+ "rev": "0297cd8d76cad072cb64318ffacdc65d8a1ad948"
+ },
+ "recipe": {
+ "sha256": "1761kgrflipxba8894cnx90ks7f3ba4nj6ci515zzxcx9s45mfyy",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151027.1636",
+ "deps": [
+ "names",
+ "nand2tetris"
+ ]
+ },
+ "pytest": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "ionrock",
+ "repo": "pytest-el",
+ "sha256": "1nlybqvy64lc0c65j9wbk4lx932lz0b8hxw8zm1vgmqppqcyn0p5",
+ "rev": "71bd43c4eb7254d05104ec1bcca7851d7a203da3"
+ },
+ "recipe": {
+ "sha256": "0ssib65wa20h8r6156f392l481vns5fcax6w70hcawmn84nficdh",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151104.2325",
+ "deps": [
+ "s"
+ ]
+ },
+ "portage-navi": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "kiwanami",
+ "repo": "emacs-portage-navi",
+ "sha256": "1pm4x74pw67m2izr9dir201dn5g9icgk6h2j8rqvasgx8v8krv3i",
+ "rev": "8016c3e99fe6cef101d479a3d69185796b22ca2f"
+ },
+ "recipe": {
+ "sha256": "1wjkh8xj5120v9fz1nrpkd6x4f22ni8h2lfkd82df7kjz6bzdfwg",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20141208.755",
+ "deps": [
+ "concurrent",
+ "ctable"
+ ]
+ },
+ "mouse-slider-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "skeeto",
+ "repo": "mouse-slider-mode",
+ "sha256": "05pzplb3gmlnlvn2azbxdlf4vrkvk8fc9dkgi2nq4shysnh4c9v7",
+ "rev": "a8d6489fe2a3c2769b421f93f3609f402c9b92f7"
+ },
+ "recipe": {
+ "sha256": "0aqxjm78k7i8c59w6mw9wsfw3rail1pg40ac1dbcjkm62fjbh5hy",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150910.1600",
+ "deps": [
+ "cl-lib",
+ "emacs"
+ ]
+ },
+ "helm-circe": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "lesharris",
+ "repo": "helm-circe",
+ "sha256": "1iqjc15pz5qr8zjxaxz1b2vys2689ri76jacmipxvgjk0y7vc5f0",
+ "rev": "0b7ecf5380971ee7b6291fca6a2805c320638238"
+ },
+ "recipe": {
+ "sha256": "12jfzg03573lih2aapvv5h2mi3pwqc9nrmv538ivjywix5117k3v",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150317.44",
+ "deps": [
+ "circe",
+ "cl-lib",
+ "emacs",
+ "helm"
+ ]
+ },
+ "ruby-hash-syntax": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "purcell",
+ "repo": "ruby-hash-syntax",
+ "sha256": "0knl8zrd4pplnzk5z19cf9rqdfr3ymzfssrwp6jhndjzjdwvc2bv",
+ "rev": "d73a498143a3a8d6d3a7720104f2f14e70b2e2ae"
+ },
+ "recipe": {
+ "sha256": "0bvwyagfh7mn457iibrpv1ay75089gp8pg608gbm24m0ix82xvb5",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20141010.1039",
+ "deps": []
+ },
+ "skewer-reload-stylesheets": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "NateEag",
+ "repo": "skewer-reload-stylesheets",
+ "sha256": "1q0qc4jc83k7dfhq2y06zy0fg38kvp219gb3icysdhs88zi2v9s3",
+ "rev": "a22ed760a5515e43a05aeb82811dc571ba3d6060"
+ },
+ "recipe": {
+ "sha256": "1rxn0ha2yhvyc195alg31nk1sjghnbha33xrqwc9z3j71w211frm",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150111.623",
+ "deps": [
+ "skewer-mode"
+ ]
+ },
+ "nodejs-repl": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "abicky",
+ "repo": "nodejs-repl.el",
+ "sha256": "1qvs73nimqzhcjgw77vaipqbmnvailc1q6w8rb5vc9c425xsi7an",
+ "rev": "3c51428ccda7b1c4b5cd4a51f9034e6ca3a053f8"
+ },
+ "recipe": {
+ "sha256": "0rvhhrsw87kfrwdhm8glq6b3nr0v90ivm7fcc0da4yc2jmcyk907",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151207.714",
+ "deps": []
+ },
+ "ido-completing-read+": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "DarwinAwardWinner",
+ "repo": "ido-ubiquitous",
+ "sha256": "1m9wyl4lm2sy6ax7wg4wh9nw5vq8z26z7kb9mq3p01z9v1vzyzil",
+ "rev": "3bf3c707753969b2c3b534bfe3d09dbd297dfaae"
+ },
+ "recipe": {
+ "sha256": "034j1q47d57ia5bwbf1w66gw6c7aqbhscpy3dg2a71lwjzfmshwh",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151129.1726",
+ "deps": [
+ "cl-lib",
+ "emacs"
+ ]
+ },
+ "package-filter": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "milkypostman",
+ "repo": "package-filter",
+ "sha256": "0i7f8ambcrhyqq15xwlk31jjdcii2hr37y45va8m5w6n9mkpz8c6",
+ "rev": "ba3be37e0ef3972b2d8db7c2f2cb68c460699f12"
+ },
+ "recipe": {
+ "sha256": "0am73zch2fy1hfjwzk8kg0j3lgbcz3hzxjrdf0j0a9w0myp0mmjm",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140105.1626",
+ "deps": []
+ },
+ "sekka": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "kiyoka",
+ "repo": "sekka",
+ "sha256": "1as3llcs7jgcw9pafz4mbfml1cqd1fw8yl64bb4467nmhq2p18p7",
+ "rev": "2768b2c16dd15dcd35fcfd123c4d56f2ffd1b362"
+ },
+ "recipe": {
+ "sha256": "1jj4ly9p7m3xvb31nfn171lbpm9y70y8cbf8p24w0fhv665dx0cp",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150708.659",
+ "deps": [
+ "cl-lib",
+ "concurrent",
+ "popup"
+ ]
+ },
+ "auto-complete-exuberant-ctags": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "k1LoW",
+ "repo": "auto-complete-exuberant-ctags",
+ "sha256": "1fqgyg986fg1dzac5wa97bx82mfddqb6qrfnpr3zksmw3vgykxr0",
+ "rev": "ff6121ff8b71beb5aa606d28fd389c484ed49765"
+ },
+ "recipe": {
+ "sha256": "1i2s3ycc8jafkzdsz3kbvx1hh95ydi5s6rq6n0wzw1kyy3km35gd",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140320.224",
+ "deps": [
+ "auto-complete"
+ ]
+ },
+ "rcirc-notify": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "nicferrier",
+ "repo": "rcirc-notify",
+ "sha256": "1k4knsrca626pikgaalqbqwy7im4wz1vrmzzhdrdb4lhdz6sq3q3",
+ "rev": "841a7b5a6cdb0c11a812df924d2c6a7d364fd455"
+ },
+ "recipe": {
+ "sha256": "0mwhzkbzhpq4jws05p7qp0kbay8kcblb9xikznm0i8drpdyc617v",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150219.1604",
+ "deps": []
+ },
+ "full-ack": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "nschum",
+ "repo": "full-ack",
+ "sha256": "0bjny4ryrs788myhiaf3ir99vadf2v4swa5gkz9i36a7j6wzpgk5",
+ "rev": "761d846e105b150f8e6d13d7a8983f0248313a45"
+ },
+ "recipe": {
+ "sha256": "09ikhyhpvkcl6yl6pa4abnw6i7yfsx5jkmzypib94w7khikvb309",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140223.1132",
+ "deps": []
+ },
+ "elogcat": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "youngker",
+ "repo": "elogcat.el",
+ "sha256": "1jcr8bxffvnfs0ym6zkgs79hd6a0m81r4x4jr3v5l9zwxw04sy15",
+ "rev": "4f311b7a07565b0d060334bc68edb36f2bff703f"
+ },
+ "recipe": {
+ "sha256": "0sqdqlpg4firswr742nrb6b8sz3bpijf6pbxvandq3ddpm0rx9ia",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151120.1841",
+ "deps": [
+ "dash",
+ "s"
+ ]
+ },
+ "helm-nixos-options": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "travisbhartwell",
+ "repo": "nix-emacs",
+ "sha256": "0iq1j703kj3dy1di8m488kds8i6klpavwwb88ysn5pv2nwdi6i4w",
+ "rev": "2bd8a5fe792dd6a219934f5295d6116877e45f6c"
+ },
+ "recipe": {
+ "sha256": "1nsi4hfw53iwn29fp33dkri1c6w8kdyn4sa0yn2fi6144ilmq933",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151013.1809",
+ "deps": [
+ "helm",
+ "nixos-options"
+ ]
+ },
+ "magit-annex": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "magit",
+ "repo": "magit-annex",
+ "sha256": "1h1i8712w0pn6bhc5lpps7ri7bf6f3vy23i6qld13hdgvimgisd9",
+ "rev": "154345a5192f3581af105022541911398a566cce"
+ },
+ "recipe": {
+ "sha256": "1ri58s1ly416ksmb7mql6vnmx7hq59lmhi7qijknjarw7qs3bqys",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151213.38",
+ "deps": [
+ "cl-lib",
+ "magit"
+ ]
+ },
+ "matrix-client": {
+ "fetch": {
+ "tag": "fetchgit",
+ "url": "git://fort.kickass.systems/personal/rrix/pub/matrix.el",
+ "sha256": "0516772e4aae604359bee659d101fb62b73cc9016cbbe0b749c77402954ec341",
+ "rev": "de09c69d2d5ca604839239fe49b10a2ed5ac2809"
+ },
+ "recipe": {
+ "sha256": "09mgxk0xngw8j46vz6f5nwkb01iq96bf9m51w2q61wxivypnsyr6",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151201.1443",
+ "deps": [
+ "json",
+ "request"
+ ]
+ },
+ "sync-recentf": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "ffevotte",
+ "repo": "sync-recentf",
+ "sha256": "00lx6081h1nzwga5jg4cik4h667vfkn128yvnhkd0vw7b5g4ji5x",
+ "rev": "530254b1f1b569ce958dadad2620c67c31835d5c"
+ },
+ "recipe": {
+ "sha256": "17aji2vcw6zfd823anzwj8pcgyxamxr87bnni085jvlz0vx6gh9c",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151005.526",
+ "deps": []
+ },
+ "helm-hatena-bookmark": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "masutaka",
+ "repo": "emacs-helm-hatena-bookmark",
+ "sha256": "0254jcy6cb7m63lnkp5s97hyzr13xh1a1xykp96iirkgjfcg5xds",
+ "rev": "497d33632f195354eaa24670db0804c846b7261b"
+ },
+ "recipe": {
+ "sha256": "14091zrp4vj7752rb5s3pkyvrrsdl7iaj3q9ys8rjmbsjwcv30id",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151115.826",
+ "deps": [
+ "helm"
+ ]
+ },
+ "helm-emms": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "emacs-helm",
+ "repo": "helm-emms",
+ "sha256": "0330s07b41nw9q32xhjdl7yw83p8ikj6b2qkir3y0jyx16gk10dl",
+ "rev": "ed3da37e86ea5dabc15da708335b1e439ae0777d"
+ },
+ "recipe": {
+ "sha256": "1vq7cxnacmhyczsa4s5h1nnzc08m66harfnxsqxyrdsnggv9hbf5",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151001.1528",
+ "deps": [
+ "cl-lib",
+ "emacs",
+ "emms",
+ "helm"
+ ]
+ },
+ "xquery-tool": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "paddymcall",
+ "repo": "xquery-tool.el",
+ "sha256": "06mcz6ppr1cc5dfbxqbxhzwzmgpi8m3wbncckq5qi9xq5wvbah1d",
+ "rev": "af60aba324819ff6692f89f1c85aac59b820bf18"
+ },
+ "recipe": {
+ "sha256": "069injmvv9zzcbqbms94qx5wjj740jnik6sf3b4xjhln7z1yskp0",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151218.907",
+ "deps": []
+ },
+ "gruvbox-theme": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "Greduan",
+ "repo": "emacs-theme-gruvbox",
+ "sha256": "1i9qjv39w6kvk7r829gagp4sbc1w0hp0qgnqxya1jac56h6ylhky",
+ "rev": "7cc236f7e357d3e53914f46d98a29588d2e7de62"
+ },
+ "recipe": {
+ "sha256": "042mnwlmixygk2mf24ygk7rkv1rfavc5a36hs9x8b68jnf3khj32",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151217.934",
+ "deps": []
+ },
+ "java-snippets": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "nekop",
+ "repo": "yasnippet-java-mode",
+ "sha256": "09pa1hmk0dyh7vw0lb9awyrvdarakgaxn66gag5fzbg5vgdfz32i",
+ "rev": "701e84d91d6e8bf53c0088687ee385c1954792d8"
+ },
+ "recipe": {
+ "sha256": "0bsmp6sc3khdadkmwqy8khz8kzqijcsv70gimm2cs1kwnbyj6pfp",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140728.36",
+ "deps": [
+ "yasnippet"
+ ]
+ },
+ "emacsql-psql": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "skeeto",
+ "repo": "emacsql",
+ "sha256": "0ld5qpl7b3iksgxcfysznf88wj019l5271kdz4nalqi4kchf5xad",
+ "rev": "74bd11bc0998d7019a05eecc0486fee09c84a93b"
+ },
+ "recipe": {
+ "sha256": "1aa1g9jyjmz6w0lmi2cf67926ad3xvs0qsg7lrccnllr9k0flly3",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151004.915",
+ "deps": [
+ "cl-lib",
+ "emacs",
+ "emacsql",
+ "pg"
+ ]
+ },
+ "jazz-theme": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "donderom",
+ "repo": "jazz-theme",
+ "sha256": "00havgs6xc44plnr3vbs13xxiwygr93izm6nx4y98zhcv389ajb0",
+ "rev": "b9f66600fe33d25a230ed26a69f3abaaca03b453"
+ },
+ "recipe": {
+ "sha256": "0ad8kvrmd3gyb8wfghcl4r3kwzplk5gxlw3p23wsbx6c2xq6xr7g",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150910.1044",
+ "deps": []
+ },
+ "yaml-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "yoshiki",
+ "repo": "yaml-mode",
+ "sha256": "1yy7f7prg2v17mzj6g0rvdkvrs96cjqzdz8xbs4zl4nbmj3lmay5",
+ "rev": "6ddd55205224c2f2c306699e021cedbaeecfaaf2"
+ },
+ "recipe": {
+ "sha256": "0afp83xcr8h153cayyaszwkgpap0iyk351dlykmv6bv9d2m774mc",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151218.554",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "point-stack": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "mattharrison",
+ "repo": "point-stack",
+ "sha256": "1p1j2kfwj7gzir7q5ls34k8764kwbnb6d0dhlw4zb4kvwlidp6c1",
+ "rev": "2d2a5e90988792cf49ba4c5a839ef6a1400f5a24"
+ },
+ "recipe": {
+ "sha256": "17z9mc49x4092axs7lq6b6z7yrrhkl8bdx5f8gq6qy5lampgyzch",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140102.1423",
+ "deps": []
+ },
+ "ncl-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "yyr",
+ "repo": "ncl-mode",
+ "sha256": "0gbv5fv401z58ycbqlivqamf5kp3x6krhi36q7q0m4gvy448xz0n",
+ "rev": "01559734504d2712606ac30916252d788ea73124"
+ },
+ "recipe": {
+ "sha256": "0hmd606xgapzbc79px9l1q6pphrhdzip495yprvg20xsdpmjlfw9",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150525.1129",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "go-direx": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "syohex",
+ "repo": "emacs-go-direx",
+ "sha256": "09rxz40bkr0l75v3lmf8lcwqsgjiv5c8zjmwzy2d4syj4qv69c5y",
+ "rev": "8f2206469328ee932c7f1892f5e1fb02dec98432"
+ },
+ "recipe": {
+ "sha256": "0dq5d7fsld4hww8fl68c18qp6fl3781dqqwd98cg68bihw2wwni7",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150315.2043",
+ "deps": [
+ "cl-lib",
+ "direx"
+ ]
+ },
+ "doremi-cmd": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/doremi-cmd.el",
+ "sha256": "1wmfkviyr5mp15aqh6qhmi7ykgcii1h85wxmsm7bxg9v2lzyckk2"
+ },
+ "recipe": {
+ "sha256": "1qzspirn1abqps0dn5z8w6ymffc6b02dyki5hr8v74wfs8fhzx05",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150104.1552",
+ "deps": [
+ "doremi"
+ ]
+ },
+ "shampoo": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "dmatveev",
+ "repo": "shampoo-emacs",
+ "sha256": "15a8gs4lrqxn0jyfw16rc6vm7z1i10pzzlnp30x6nly9a7xra47x",
+ "rev": "bc193c39636c30182159c5c91c37a9a4cb50fedf"
+ },
+ "recipe": {
+ "sha256": "01ssgw4cnnx8d86g3r1d5hqcib4qyhmpqvcvx47xs7zh0jscps61",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20131230.419",
+ "deps": []
+ },
+ "dash-at-point": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "stanaka",
+ "repo": "dash-at-point",
+ "sha256": "0zd50sr51mmvndjb9qfc3sn502nhc939rhd454jbkmlrzqsxvphj",
+ "rev": "ed872b4fcbe02ef1a5bac0337afe19a7a747f34c"
+ },
+ "recipe": {
+ "sha256": "0x4nq42nbh2qgbg111lgbknc7w7m7lxd14mp9s8dcrpwsaxz960m",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140626.235",
+ "deps": []
+ },
+ "window-purpose": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "bmag",
+ "repo": "emacs-purpose",
+ "sha256": "1hfn3x08h426kw0m1qyrjy8kp6nm56d1h5zlfiwj22kfc560gb4v",
+ "rev": "d8b9399c8bbdb6e843cd62b7adb658fea6cf7e75"
+ },
+ "recipe": {
+ "sha256": "1ib5ia7armghvmcw8qywcil4nxzwwakmfsp7ybawb0xr53h1w96d",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151114.440",
+ "deps": [
+ "cl-lib",
+ "emacs",
+ "imenu-list",
+ "let-alist"
+ ]
+ },
+ "boxquote": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "davep",
+ "repo": "boxquote.el",
+ "sha256": "0235l4f1cxj7nysfnay4fz52mg0c13pzqxbhw65vdpfzz1gl1p73",
+ "rev": "4c49b2046647ed187920c885e175ed388f4833dc"
+ },
+ "recipe": {
+ "sha256": "0s6cxb8y1y8w9vxxhj1izs8d0gzk4z2zm0cm9gkw1h7k2kyggx6s",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20081011.1526",
+ "deps": []
+ },
+ "sticky": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/sticky.el",
+ "sha256": "18izyia1j3w2c07qhkp9h6rnvw35m5k1brrrjhm51fpdv2xj65fy"
+ },
+ "recipe": {
+ "sha256": "1xjkdwphq3m4jrazsfnzrrcrqikfdxzph3jdzkpbzk3grd4af96w",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20101129.2052",
+ "deps": []
+ },
+ "ein": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "millejoh",
+ "repo": "emacs-ipython-notebook",
+ "sha256": "055hyvdcnbbzxs66v06d5flylhsz1qnmff758736f84cyxm76ayy",
+ "rev": "3aa290ed91832ba28a99c5f4b53ef40459eea539"
+ },
+ "recipe": {
+ "sha256": "1nksj1cpf4d9brr3rb80bgp2x05qdq9xmlp8mwbic1s27mw80bpp",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150914.1316",
+ "deps": [
+ "request",
+ "websocket"
+ ]
+ },
+ "scratches": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "cheunghy",
+ "repo": "scratches",
+ "sha256": "10hmy0p4pkrzvvyisk4rjc6hqqyk2sir1rszqgmkhrdywl010vlc",
+ "rev": "9441afe6396ca38f08029123fab5d87429cbf315"
+ },
+ "recipe": {
+ "sha256": "0409v1wi10q48rrh8iib6dw9icmswfrpjx9x7xcma994z080d2fy",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151005.2316",
+ "deps": [
+ "dash",
+ "f"
+ ]
+ },
+ "magic-filetype": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "zonuexe",
+ "repo": "magic-filetype.el",
+ "sha256": "1q5bjk9dzq8my804kd6i185522mxdkwrh2lhc2nvjbj4idx7rgll",
+ "rev": "e9fbed35f389be24198b1a86b5c2440750732a6e"
+ },
+ "recipe": {
+ "sha256": "0gcys45cqn5ghppkn0rmyvfybprlfz1x6hqr21yv93mf79h75zhg",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151029.1057",
+ "deps": [
+ "emacs",
+ "s"
+ ]
+ },
+ "helm-j-cheatsheet": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "abo-abo",
+ "repo": "helm-j-cheatsheet",
+ "sha256": "0f2psp7p82sa2fip282w152zc1rjd3l0sna1g7rgwi9x29gcsh0v",
+ "rev": "70560fd2fb880eccba3b1927d0fa5e870e0734e4"
+ },
+ "recipe": {
+ "sha256": "0lppzk60vl3ps9fqnrh020awiy5w46gwlb6d91pr889x24ryphmm",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20131228.641",
+ "deps": [
+ "helm"
+ ]
+ },
+ "py-yapf": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "paetzke",
+ "repo": "py-yapf.el",
+ "sha256": "03hki4v61340x0xp47lckxabz51abcazcahmr6wfn9n4bvfqjr9x",
+ "rev": "766e57448639ff95eeb018f6d8bdf09170094218"
+ },
+ "recipe": {
+ "sha256": "1381x0ffpllxwgkr2d8xxbv1nd4k475m1aff8l5qijw7d1fqga2f",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150422.953",
+ "deps": []
+ },
+ "paper-theme": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "cadadr",
+ "repo": "paper-theme",
+ "sha256": "0mv8biyv3ydgy3hhr30p57348g93swdwnf0vmxnrbpjprk6a4w4i",
+ "rev": "5ddb180beac8a1890cafacdd41e8373ca1999182"
+ },
+ "recipe": {
+ "sha256": "04diqm2c9fm29zyms3hplkzb4kb7b2kyrxdsy0jxyjj5kabypd50",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151025.1000",
+ "deps": [
+ "emacs",
+ "hexrgb"
+ ]
+ },
+ "noctilux-theme": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "sjrmanning",
+ "repo": "noctilux-theme",
+ "sha256": "1a1pp3sd5g4wkhywb5jfchcdpjsjb0iyhk2sxvd0gpc4kk4zh6xs",
+ "rev": "5f21c8523ddb99c4e5bc727d59ddf6bf6f50d626"
+ },
+ "recipe": {
+ "sha256": "15ymyv3rq0n31d8h0ry0l4w4r5a8as0q63ajm9wb6yrxxjl1imfp",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150723.947",
+ "deps": []
+ },
+ "emms-mark-ext": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "vapniks",
+ "repo": "emms-mark-ext",
+ "sha256": "03a7sn8pl0pnr05rmrrbw4hjyi8vpjqbvkvh0fqnij913a6qc64l",
+ "rev": "ec68129e3e9e469e5bf160c6a1b7030e322f3541"
+ },
+ "recipe": {
+ "sha256": "13h6hy8y0as0xfc1cg8balw63as81fzar32q9h4zhnndl3hc1081",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20130528.2227",
+ "deps": [
+ "emms"
+ ]
+ },
+ "hexrgb": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/hexrgb.el",
+ "sha256": "04maddrgvijimxc8i942h0f7448snqlgdsj3yc03izh6bimvkhk5"
+ },
+ "recipe": {
+ "sha256": "0mzqslrrf7sc262syj3ja7b7rnbg80dwf2p9bzxdrzx6b8vvsx06",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150708.2036",
+ "deps": []
+ },
+ "finalize": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "skeeto",
+ "repo": "elisp-finalize",
+ "sha256": "0f76cgh97z0rbbg2bp217nqmxfimzkvw85k9mx8bj78i9s2cdmwa",
+ "rev": "9ac589cf487f5d37163dc9e7ca8c52800710805e"
+ },
+ "recipe": {
+ "sha256": "1n0w4kdzc4hv4pprv13lr88gh46slpxdvsc162nqm5mrqp9giqqq",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140127.1246",
+ "deps": [
+ "cl-lib",
+ "eieio",
+ "emacs"
+ ]
+ },
+ "mpg123": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "emacsmirror",
+ "repo": "mpg123",
+ "sha256": "09731mwm23b6ic53366lnxy2p7dfd245yh75gaf6ijfa22jks7gb",
+ "rev": "ed2307843ca54ebf0ca5e5d2e79b41e79527c45c"
+ },
+ "recipe": {
+ "sha256": "184ip9pvv4zkfxnrzxbfajjadc9f4dz4psn33f9x3sfh7s1y4nw8",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151214.1350",
+ "deps": []
+ },
+ "paredit-everywhere": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "purcell",
+ "repo": "paredit-everywhere",
+ "sha256": "1jkpb67h96sm3fnga9hrg3kwhlp3czdv66v49a9szq174zpsnrgv",
+ "rev": "79ecbfc15d2cb338f277f3da50d8e757f07151e9"
+ },
+ "recipe": {
+ "sha256": "0gbkwk8mrbjr2l8pz3q4y6j8q4m12zmzl31c88ngs1k5d86wav36",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150821.2344",
+ "deps": [
+ "paredit"
+ ]
+ },
+ "jinja2-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "paradoxxxzero",
+ "repo": "jinja2-mode",
+ "sha256": "0l26wcy496k6xk7q5sf905xir0p73ziy6c44is77854lv3y0z381",
+ "rev": "cfaa7bbe7bb290cc500440124ce89686f3e26f86"
+ },
+ "recipe": {
+ "sha256": "0480fh719r4v7xdwyf4jlg1k36y54i5zrv7gxlhfm66pil75zafx",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20141128.407",
+ "deps": []
+ },
+ "org-caldav": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "dengste",
+ "repo": "org-caldav",
+ "sha256": "0lq2rx6wgz0aymwhw597xs2pabinhk3jpnnhjwq0jk8ggp3afqaz",
+ "rev": "8aff005f431e5f677950b73f710fdf968ff4ac65"
+ },
+ "recipe": {
+ "sha256": "0166y04gxrwnynm4jshm2kqk5jbvl5g5078dxvw18nicrgq3y4r8",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150131.352",
+ "deps": [
+ "org"
+ ]
+ },
+ "eval-in-repl": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "kaz-yos",
+ "repo": "eval-in-repl",
+ "sha256": "0qfi02n30yizalgvd5l7cbqrajn98037y694cqkycph9vvkrpsb5",
+ "rev": "c2c677d39cfad572fe487661ac9e8a70fb88749f"
+ },
+ "recipe": {
+ "sha256": "10h5vy9wdiqf9dgk1d1bsvp93y8sfcxghzg8zbhhn7m5cqg2wh63",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151123.528",
+ "deps": [
+ "dash",
+ "paredit"
+ ]
+ },
+ "gherkin-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "candera",
+ "repo": "gherkin-mode",
+ "sha256": "0lcbyw6yrl6c8py5v2hqghcbsf9cbiplzil90al4lwqps7rw09a8",
+ "rev": "d84a2977a536f2f8bf4836aebc33a4e86925673d"
+ },
+ "recipe": {
+ "sha256": "0dhrsz24hn0sdf22wpmzbkn66g4540vdkl03pc27kv21gwa9ixxv",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140107.1004",
+ "deps": []
+ },
+ "helm-perldoc": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "syohex",
+ "repo": "emacs-helm-perldoc",
+ "sha256": "13wnagmgicl2mi4iksqckrjbaiz05j9ykbmvj26jy8zcbll5imfs",
+ "rev": "a7347e0a4f1a1832060b3a7a1a3f3d2ed4f92f33"
+ },
+ "recipe": {
+ "sha256": "0b0cl2xj5w1r71zrjhnqhrzsnz1296jv21qx5adzslra6lk55q2r",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151031.2227",
+ "deps": [
+ "cl-lib",
+ "deferred",
+ "helm-core"
+ ]
+ },
+ "relative-buffers": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "proofit404",
+ "repo": "relative-buffers",
+ "sha256": "023fwcqyy5gg234m772vpws751pharjwn3b0433i2sszna2z6xrf",
+ "rev": "7e37e118cc231c8581891bef0e4b5bb775920070"
+ },
+ "recipe": {
+ "sha256": "131182yb0pr0d6jibqd8aag4w8hywdyi87ldp77b95gw4bqhr96i",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150115.1301",
+ "deps": [
+ "cl-lib",
+ "dash",
+ "f",
+ "s"
+ ]
+ },
+ "helm-grepint": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "kopoli",
+ "repo": "helm-grepint",
+ "sha256": "07bmk4wbn07rg8h8rdhah285hsaaqkx5n84g87lpb7y5ba3ivlk5",
+ "rev": "0327f64121751065a85c76527dda2c037c8fb0d8"
+ },
+ "recipe": {
+ "sha256": "00wr3wk41sbpamxbjkqlby49g8y5z9n79p51sg7ginban4qy91gf",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151030.1137",
+ "deps": [
+ "emacs",
+ "helm"
+ ]
+ },
+ "emms-info-mediainfo": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "fgallina",
+ "repo": "emms-info-mediainfo",
+ "sha256": "07qbbs2i05bqndr4dxb84z50wav8ffbc56f6saw6pdx6n0sw6n6n",
+ "rev": "bce16eae9eacd38719fea62a9755225a888da59d"
+ },
+ "recipe": {
+ "sha256": "17x8vvfhx739hcj9j1nh6j4r6zqnwa5zq9zpi9b6lxc8979k3m4w",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20131223.700",
+ "deps": [
+ "emms"
+ ]
+ },
+ "javap-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "hiredman",
+ "repo": "javap-mode",
+ "sha256": "070r4mg4v937n4h2bmzdbn3vsmmq7ijz69nankqs761jxv5gcwlg",
+ "rev": "864c1130e204b2072e1d19cd027b6fce8ebe6629"
+ },
+ "recipe": {
+ "sha256": "19p39l4nwgxm52yimy4j6l43845cpk8g5qdrldlwfxd7dvay09ay",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20120223.1608",
+ "deps": []
+ },
+ "ttrss": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "pedros",
+ "repo": "ttrss.el",
+ "sha256": "0a8f9p1im6k7mnp2bq733rfx2x246gfwpvi5ccym1y5lakx37fil",
+ "rev": "e90d8f7ccaf235053057bd91d3a2113582604e24"
+ },
+ "recipe": {
+ "sha256": "08921cssvwpq33w87v08dafi2rz2rl1b3bhbhijn4bwjqgxi9w7z",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20130409.1249",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "term-run": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "10sr",
+ "repo": "term-run-el",
+ "sha256": "0m3h89carkbgr043d0l573igf9qrdhv5nxnxq5j9x4xc0j7sbnzc",
+ "rev": "4e47afc1babb87f2c3ebd1f71c7f456c323a7ffb"
+ },
+ "recipe": {
+ "sha256": "1bx3s68rgr9slsw9k01gfg7sxd4z7sarg4pi2ivril7108mhg2cs",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150601.206",
+ "deps": []
+ },
+ "anx-api": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "rmloveland",
+ "repo": "emacs-appnexus-api",
+ "sha256": "0fzxzar8m9qznfxv3wr7vfj9y2110wf6mm5cj55k3sd5djdjhmf1",
+ "rev": "b2411ebc966ac32c3ffc61bc22bf183834df0fa0"
+ },
+ "recipe": {
+ "sha256": "1vzg3wsqyfb9rsfxrpz8k2gazjlz2nwnf4gnn1dypsjspjnzcb8r",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140208.914",
+ "deps": []
+ },
+ "smooth-scrolling": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "aspiers",
+ "repo": "smooth-scrolling",
+ "sha256": "05kf3hb3nb32jzw50a2z9vlf3f0pj40klzxvqj4fxlci777imsvk",
+ "rev": "0d9b228f952c53ad456f98e2c761dda70ed72174"
+ },
+ "recipe": {
+ "sha256": "0zy2xsmr05l2narslfgril36d7qfb55f52qm2ki6fy1r18lfiyc6",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20131219.2239",
+ "deps": []
+ },
+ "helm-cmd-t": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "lewang",
+ "repo": "helm-cmd-t",
+ "sha256": "10cp21v8vwgp8hv2rkdn9x8v2n8wqbphgslb561rlwc2rfpvzqvs",
+ "rev": "8749f0b2b8527423cd146fa2d5c0e7a9e159eefb"
+ },
+ "recipe": {
+ "sha256": "04fmhravd3ld4n1n820wlnr1jvmk7c7cdazd15gazixrlz6fm4fk",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150823.1357",
+ "deps": []
+ },
+ "flymake-python-pyflakes": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "purcell",
+ "repo": "flymake-python-pyflakes",
+ "sha256": "1aijapvpw4skfhfmz09v5kpaxay6b0bp77bbjkrvgyizsqdd39vp",
+ "rev": "f09ec573d7580a69f8bd49778c26da9ab6d5ec5a"
+ },
+ "recipe": {
+ "sha256": "0asbjxv03zkbcjayanv13qzbv4z7b6fi0z1j6yv7fl6q9mgvm497",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20131127.206",
+ "deps": [
+ "flymake-easy"
+ ]
+ },
+ "misc-fns": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/misc-fns.el",
+ "sha256": "1c46iwa6i08wsa0syrm0gxhyndrqlkmqpdj61rss7hbbf1066v86"
+ },
+ "recipe": {
+ "sha256": "1spjbkcac33lyfsgkd6z186a3432x9nw3akmx194gaap2863xcam",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150403.1121",
+ "deps": []
+ },
+ "flycheck-cask": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "flycheck",
+ "repo": "flycheck-cask",
+ "sha256": "0klnhq0zfn5zbkwl7y9kja7x49n1w6r1qbphk7a7v9svgm3h9s7n",
+ "rev": "f2cebedacaa96ef30262fbb67068d1df489ff238"
+ },
+ "recipe": {
+ "sha256": "1lq559nyhkpnagncj68h84i3cq85vhdikr534kj018n2zcilsyw7",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150920.653",
+ "deps": [
+ "dash",
+ "emacs",
+ "flycheck"
+ ]
+ },
+ "fzf": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "bling",
+ "repo": "fzf.el",
+ "sha256": "0prbz2np6maqjpfkqhsrv4lcdlhxpiw0jbv0m73w4f1wcy3f0jqk",
+ "rev": "30bb2f0f82ff413f268bb5e7fb02d3586ba7783f"
+ },
+ "recipe": {
+ "sha256": "0jjzm1gq85fx1gmj6nqaijnjws9bm8hmk40ws3x7fmsp41qq5py0",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151129.833",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "el-get": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "dimitri",
+ "repo": "el-get",
+ "sha256": "0ppcja9mhjm0ymln72nigilkl0jj9mwxclw3v5djdcfq0xp1mc77",
+ "rev": "56d72507c1af03d1c719dcac62a0c365857cc10e"
+ },
+ "recipe": {
+ "sha256": "1438v2sw5n67q404c93y2py226v469nagqwp4w9l6yyy40h4myhz",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151117.1015",
+ "deps": []
+ },
+ "markdown-mode+": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "milkypostman",
+ "repo": "markdown-mode-plus",
+ "sha256": "1adl36fj506kgfw40gpagzsd7aypfdvy60141raggd5844i6y96r",
+ "rev": "f35e63284c5caed19b29501730e134018a78e441"
+ },
+ "recipe": {
+ "sha256": "1535kcj9nmcgmk2448jxc0jmnqy7f50cw2ngffjq5w8bfhgf7q00",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20120829.710",
+ "deps": [
+ "markdown-mode"
+ ]
+ },
+ "feature-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "michaelklishin",
+ "repo": "cucumber.el",
+ "sha256": "18b27xfajhd0vi7dcaky7pi7vmnlmdb88gkx3hwangj78d24as5d",
+ "rev": "40886bc4cc5b1e855d6bb78505ebc651593d409d"
+ },
+ "recipe": {
+ "sha256": "0ryinmpqb3c91qcna6gbijcmqv3skxdc947dlr5s1w623z9nxgqg",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20141121.1230",
+ "deps": []
+ },
+ "dired-details+": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/dired-details+.el",
+ "sha256": "119x9mclyhxfp2zr5rmh5jxl2h2wb82phbm8kvlkxa4kcwaiw04y"
+ },
+ "recipe": {
+ "sha256": "1gzr3z4nyzip299z08mignhigxr7drak7rv9z6gmdjrika9a29lx",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150104.1550",
+ "deps": [
+ "dired-details"
+ ]
+ },
+ "mouse3": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/mouse3.el",
+ "sha256": "1jxqvhfjsnjdp0c0zndj7p77vxfscs4z4s7csrd8gi9cli8pmgwi"
+ },
+ "recipe": {
+ "sha256": "1rppn55axjpqwqm2lq4dvwi3z7xkd5jkyqi1x8jqgcsfc9w6m777",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150402.1829",
+ "deps": []
+ },
+ "unkillable-scratch": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "EricCrosson",
+ "repo": "unkillable-scratch",
+ "sha256": "0xpaifmrvq5bbzpjhbzbxaac8kymmvqgg7lb2q1s7b5qf47fhqac",
+ "rev": "55a196d0c7001bfc8cf9c6cc532a5dc94e95baf8"
+ },
+ "recipe": {
+ "sha256": "0ghbpa9pf7k6vd2mjxkpqg2qfl4sd40ir6mrk1rxr1rv8s0afkf7",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150328.118",
+ "deps": []
+ },
+ "edit-server-htmlize": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "frobtech",
+ "repo": "edit-server-htmlize",
+ "sha256": "174xq45xc632zrb916aw7q4bch96pbi6zgy3dk77qla3ky9cfpl3",
+ "rev": "e7f8dadfabe869c77ca241cd6fbd4c52bd908392"
+ },
+ "recipe": {
+ "sha256": "007lv3698a88wxan7kplz2117azxxpzzgshin9c1aabg059hszlj",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20130329.1748",
+ "deps": [
+ "edit-server"
+ ]
+ },
+ "multi-line": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "IvanMalison",
+ "repo": "multi-line",
+ "sha256": "13rp6kbabjy9dy0x4696065yyaxlgmfnwcqq9vcw2jhbb2gl9gs5",
+ "rev": "a46b34340a3dd1cba42ee0f41d6b599500f06233"
+ },
+ "recipe": {
+ "sha256": "1aadmijnjr029s1qq4gk8xyl9m8xb5x5774b8i3jyfixyjqvhvwp",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151206.1813",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "crm-custom": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "DarwinAwardWinner",
+ "repo": "crm-custom",
+ "sha256": "1fhjz2x9jpz53g9j83kznhy2nhfap3jaf6i69k62243kcw31qyz0",
+ "rev": "fbcf8bf3c87f56cb872d840dd79b6727b886e90d"
+ },
+ "recipe": {
+ "sha256": "14w15skxr44p9ilhpswlgdbqfw8jghxi69l37yk4m449m7g9694c",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140816.1148",
+ "deps": []
+ },
+ "soundcloud": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "tthieman",
+ "repo": "soundcloud.el",
+ "sha256": "1m8wcm6y80gq5rrm4brd3f20kmk54s6ph26j4lz4cmilxk6gj56v",
+ "rev": "f998d4276ea90258909c698f6a5a51fccb667c08"
+ },
+ "recipe": {
+ "sha256": "1jl9sk372j4162av9kfcbqp0cc5wpm86nkqg8rskfgmsi4ncp4ph",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150501.2226",
+ "deps": [
+ "deferred",
+ "emms",
+ "json",
+ "request",
+ "request-deferred",
+ "string-utils"
+ ]
+ },
+ "ace-link": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "abo-abo",
+ "repo": "ace-link",
+ "sha256": "0wy7p5vsrdndlsvdm4zjnxmfrrdfkcmwkav1c4g0rbpz8jn881c8",
+ "rev": "b03a91df61f8885c33c8c6812e656a86918572f0"
+ },
+ "recipe": {
+ "sha256": "1jl805r2s3wa0xyhss1q28rcy6y2fngf0yfcrcd9wf8kamhpajk5",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151019.1035",
+ "deps": [
+ "avy"
+ ]
+ },
+ "anaphora": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "rolandwalker",
+ "repo": "anaphora",
+ "sha256": "1ym43y0wqifkzpkm7ayf8cq2wz8pc2wgg9zvdyi0cn9lr9mwpbav",
+ "rev": "ed99ad4502e6fccde76050496984c6454676a410"
+ },
+ "recipe": {
+ "sha256": "1wb7fb3pc4gxvpjlm6gjbyx0rbhjiwd93qwc4vfw6p865ikl19y2",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140728.1736",
+ "deps": []
+ },
+ "wc-mode": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/wc-mode.el",
+ "sha256": "15wz0c0rsn02zl6yr8mpwzy2hvp2146krhdbjpq63l75w4i98w4d"
+ },
+ "recipe": {
+ "sha256": "0n9hc22rp18dxx33l2l1xla78m5zjybgh3mmsp91fbdiq92b446s",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150116.2302",
+ "deps": []
+ },
+ "csv-nav": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/csv-nav.el",
+ "sha256": "15rfg3326xcs3zj3siy9rn7yff101vfch1srskdi2650c3l3krva"
+ },
+ "recipe": {
+ "sha256": "0626vsm2f5zc2wi5pyx4xrwcr4ai8w9a3l7gi9883smvayr619sj",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20130407.1320",
+ "deps": []
+ },
+ "tiny": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "abo-abo",
+ "repo": "tiny",
+ "sha256": "0mmz8b0fzffybc2jws9fif982zfx0l6kn1l4qxc67mf9nafbdca3",
+ "rev": "d775201a6e14aae03dda032132aa288ca93bddc4"
+ },
+ "recipe": {
+ "sha256": "183qczyb6c8zmdgmsjsj4hddmvnzzq4c7syslm861xcyxia94icy",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151208.405",
+ "deps": []
+ },
+ "grass-mode": {
+ "fetch": {
+ "tag": "fetchhg",
+ "url": "https://bitbucket.com/tws/grass-mode.el",
+ "sha256": "0djv2ps2ahw9b1b5i45hgy7l7cch7cgh7rzq601c0r6vi7gm2ac5",
+ "rev": "aa8cc5eff764"
+ },
+ "recipe": {
+ "sha256": "1lq6bk4bwgcy4ra3d9rlca3fk87ydg7xnnqcqjg0pw4m9xnr3f7v",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151030.1120",
+ "deps": [
+ "cl-lib",
+ "dash"
+ ]
+ },
+ "fish-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "wwwjfy",
+ "repo": "emacs-fish",
+ "sha256": "0gh82k9kadhriijf1csl9dk7gwa7iz7jmdklxfymihlkssskdgaq",
+ "rev": "683af1c17c9dfe947166ae4a73fe97a4920d7973"
+ },
+ "recipe": {
+ "sha256": "0l6k06bs0qdhj3h8vf5fv8c3rbhiqfwszrpb0v2cgnb6xhwzmq14",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151105.334",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "ercn": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "leathekd",
+ "repo": "ercn",
+ "sha256": "0xw3d9fz4kmn1myrsy44ki4bgg0aclv41wldl6r9nhvkrnri41cv",
+ "rev": "79a4df5609046ae2e2e3375998287be6dda80615"
+ },
+ "recipe": {
+ "sha256": "0yvis02bypw6v1zv7i326y8s6j0id558n0bdri52hr5pw85imnlp",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150523.1003",
+ "deps": []
+ },
+ "roy-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "folone",
+ "repo": "roy-mode",
+ "sha256": "04jbnm9is2cis75h40znqzjvyjq27ncr2vfank6zglzi4fhxsl0r",
+ "rev": "0416f561edbc6b4a29fced8be84d2527a9613d65"
+ },
+ "recipe": {
+ "sha256": "0ch0hamvw4gsqs2pap0h6w4cj6n73jqa75if0ymh73hk5i3acm8g",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20121208.558",
+ "deps": []
+ },
+ "clojars": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "joshuamiller",
+ "repo": "clojars.el",
+ "sha256": "1r189c0xm6vh05k0y715i5ldj1pxzvwkxqbq0n85m489mjnf2wv6",
+ "rev": "b500b243c92d4311c4041ff3ecbb6a1dbbf8090f"
+ },
+ "recipe": {
+ "sha256": "1skvd29347hwapgdqznbzwfcp2nf077qkdzknxc8ylmqa32yf5w1",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151215.1433",
+ "deps": [
+ "cl-lib",
+ "request"
+ ]
+ },
+ "jump": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "eschulte",
+ "repo": "jump.el",
+ "sha256": "0061hcmj63g13bvacwkmcb5iggwnk27dvb04fz4hihqis6jg01c5",
+ "rev": "56cec33dd98231a95faa26dd4c0612885d923f78"
+ },
+ "recipe": {
+ "sha256": "18g0fa9g8m9jscsm6pn7jwdq94l4aj0dfhrv2hqapq1q1x537364",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151009.329",
+ "deps": [
+ "findr",
+ "inflections"
+ ]
+ },
+ "list-packages-ext": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "laynor",
+ "repo": "list-packages-ext",
+ "sha256": "02l7q5376ydz6a8i9x74bsx5bbxz8xkasmv1lzvf79d3jbg28l1s",
+ "rev": "b4dd644e4369c9aa66f5bb8895ea49ebbfd0a27a"
+ },
+ "recipe": {
+ "sha256": "15m4888fm5xv697y7jspghg1ra49fyrny4y2x7h8ivcbslvpglvk",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151115.1116",
+ "deps": [
+ "ht",
+ "persistent-soft",
+ "s"
+ ]
+ },
+ "ert-junit": {
+ "fetch": {
+ "tag": "fetchgit",
+ "url": "https://bitbucket.org/olanilsson/ert-junit",
+ "sha256": "eedfdd6753c32d16baa341e6d20abee8713921d8eb850d16782cde55bdbeec46",
+ "rev": "c303c04da7a3ba4d2c46b00b79b67ff7ec57cc6d"
+ },
+ "recipe": {
+ "sha256": "0bv22mhh1ahbjwi6s1csxkh11dmy0srabkddjd33l4havykxlg6g",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140830.1721",
+ "deps": [
+ "ert"
+ ]
+ },
+ "railgun": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "mbriggs",
+ "repo": "railgun.el",
+ "sha256": "00x09vjd3jz5f73qkf5v1y402zn8vl8dsyfwlq9z646p18ba7gyh",
+ "rev": "66aaa1b091baef53a69d0d7425f48d184b865fb8"
+ },
+ "recipe": {
+ "sha256": "1a3fplfipk1nv3py1sy0p2adf3w1h4api01h2j5rjlq2jw06kyr0",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20121017.57",
+ "deps": []
+ },
+ "clj-refactor": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "clojure-emacs",
+ "repo": "clj-refactor.el",
+ "sha256": "1xvhypskaap9rlvza34ad8bry1g3zr53wf8a3zbxj024lbw37ay2",
+ "rev": "3b11a7d8cfa23ec4887ccc093574c239f57900d7"
+ },
+ "recipe": {
+ "sha256": "1qvds6dylazvrzz1ji2z2ldw72pa2nxqacb9d04gasmkqc32ipvz",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151210.400",
+ "deps": [
+ "cider",
+ "dash",
+ "edn",
+ "emacs",
+ "hydra",
+ "inflections",
+ "multiple-cursors",
+ "paredit",
+ "s",
+ "yasnippet"
+ ]
+ },
+ "org-autolist": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "calvinwyoung",
+ "repo": "org-autolist",
+ "sha256": "0j6fqgzvbmvvdh0dgwsxq004wxys2zwnq9wa3idm087ynp2a2ani",
+ "rev": "da332fadcd9be4c5eb21c5e98c392b89743750b2"
+ },
+ "recipe": {
+ "sha256": "1jvspxhxlvd7h1srk9dbk1v5dykmf8jsjaqicpll7ial6i0qgikj",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150922.905",
+ "deps": []
+ },
+ "nameframe-projectile": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "john2x",
+ "repo": "nameframe",
+ "sha256": "07zgwyrss23yb8plnhhwmh0khdvfp539891sj1z1vs50jcllcpw5",
+ "rev": "96acff56b30f9d1145aeaf7a4c53c9a2c823ee8e"
+ },
+ "recipe": {
+ "sha256": "11z64wy8mnnrjmgfs2sjbv3mh136aki8r5f89myx861nfx18hc3k",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151018.407",
+ "deps": [
+ "nameframe",
+ "projectile"
+ ]
+ },
+ "helm-bind-key": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "myuhe",
+ "repo": "helm-bind-key.el",
+ "sha256": "1wmcy7q4ys2sf8ya5l4n7a6bq5m9d6m19amjfwkmkh4ajkwl041y",
+ "rev": "9da6ad8b7530e72fb4ac67be8c6a482898dddc25"
+ },
+ "recipe": {
+ "sha256": "1yfj6mmxc165in1i85ccanssch6bg19ib1fcm7sa4i4hv0mgwaid",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20141108.2315",
+ "deps": [
+ "bind-key",
+ "helm"
+ ]
+ },
+ "evil-escape": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "syl20bnr",
+ "repo": "evil-escape",
+ "sha256": "1dl201jx7kfmkhd7ism6wlmlnbgfg1qn17faryz7kc5v2mms69b4",
+ "rev": "32a6c6c31eaa5678205ce658baaab7eb5ca9c9e3"
+ },
+ "recipe": {
+ "sha256": "0rlwnnshcvsb5kn7db5qy39s89qmqlllvg2z8cnxyri8bsssks4k",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151214.1311",
+ "deps": [
+ "cl-lib",
+ "emacs",
+ "evil"
+ ]
+ },
+ "camcorder": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "Malabarba",
+ "repo": "camcorder.el",
+ "sha256": "1fxmk9ykvxkd0ldmldqnwdn5grzzzigla7zsw1yqqmlfwd48ggf8",
+ "rev": "bfef46deae617825089fb06591e5c25c82a2d4be"
+ },
+ "recipe": {
+ "sha256": "1kbnpz3kn8ycpy8nlp8bsnnd1k1h7m02h7w5f7raw97sk4cnpvbi",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151208.1012",
+ "deps": [
+ "cl-lib",
+ "emacs",
+ "names"
+ ]
+ },
+ "make-color": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "alezost",
+ "repo": "make-color.el",
+ "sha256": "1ky3scyjb69wi76xg6a8qx4ja6lr6mk530bv5gmhj7fxbq8b3x5c",
+ "rev": "a1b34e95ccd3ebee4fba1489ab613d0b3078026d"
+ },
+ "recipe": {
+ "sha256": "0mrv8b67lpid5m8rfbhcik76bvnjlw4xmcrd2c2iinyl02y07r5k",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140625.650",
+ "deps": []
+ },
+ "nand2tetris": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "CestDiego",
+ "repo": "nand2tetris.el",
+ "sha256": "003zgkpzz9q0bkkw6psks0vbfikzikfm42myqk14xn7330vgcxz7",
+ "rev": "0297cd8d76cad072cb64318ffacdc65d8a1ad948"
+ },
+ "recipe": {
+ "sha256": "1zg9xx7mj8334m2v2zqqfkr5vkj4dzqbj8y13qk6xhzb7qkppyqd",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151027.1651",
+ "deps": [
+ "names"
+ ]
+ },
+ "german-holidays": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "rudolfochrist",
+ "repo": "german-holidays",
+ "sha256": "0344w4sbd6wlgl13j163v0hzjw9nwhvpr5s7658xsdd90wp4i701",
+ "rev": "8388b3bf5b5c38f9b9fcc9216ca26ef0640c6edc"
+ },
+ "recipe": {
+ "sha256": "0fgrxdgyl6va6axjc5l4sp90pyqaz5zha1g73xyhbxblshm5dwxn",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151102.943",
+ "deps": []
+ },
+ "traad": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "abingham",
+ "repo": "traad",
+ "sha256": "06pvsa6m8h9j6mrq10dm6zj5jqibcm1xf3s1wkh7l6sr6hziz8rz",
+ "rev": "022cda646ec9b7102c73899e6305bfdfc0402ba5"
+ },
+ "recipe": {
+ "sha256": "1ca965pjglbbi56m1s0hl8zxhbkaxa6ms51vvidzldvmzp8n7mw5",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150106.815",
+ "deps": [
+ "deferred",
+ "popup",
+ "python-environment",
+ "request",
+ "request-deferred"
+ ]
+ },
+ "save-sexp": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "tarsius",
+ "repo": "save-sexp",
+ "sha256": "0jdsndq9nqqqfn821qy66y5x3yvmxca9zfk9j9q4a9sbbychqc9c",
+ "rev": "31bd739269e14df70f9519417370ba69a53e540d"
+ },
+ "recipe": {
+ "sha256": "12jx47picdpw668q75qsp9gncrnxnlk1slhzvxsk5pvkdwh26h66",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150731.1046",
+ "deps": []
+ },
+ "fringe-helper": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "nschum",
+ "repo": "fringe-helper.el",
+ "sha256": "0ra9rc53l1gvkqank8apasl3r7wz2yfjrcvmfk3wpxhh24ppxv9d",
+ "rev": "ef4a9c023bae18ec1ddd7265f1f2d6d2e775efdd"
+ },
+ "recipe": {
+ "sha256": "1vki5jd8jfrlrjcfd12gisgk12y20q3943i2qjgg4qvcj9k28cbv",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140620.1609",
+ "deps": []
+ },
+ "bufshow": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "pjones",
+ "repo": "bufshow",
+ "sha256": "1plh77xzpbhgmjdagm5rhqx6nkhc0g39ir0b6s5yh003wmx6r1hh",
+ "rev": "afabb87e07da7f035ca0ca85ed95e3936ea64547"
+ },
+ "recipe": {
+ "sha256": "027cd0jzb8yxm66q1bhyi75f2m9f2pq3aswgav1d18na3ybwg65h",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20130711.1239",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "esh-help": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "tom-tan",
+ "repo": "esh-help",
+ "sha256": "1yfvdx763xxhxf2r6kjjjyafaxrj1lpgrz1sgbhzkyj6nspmm9ms",
+ "rev": "3dc15f2f6086d4e4da977468fda67229a859c927"
+ },
+ "recipe": {
+ "sha256": "1k925wmn8jy9rxxsxxawasxq6r4yzwl116digdx314gd3i04sh3w",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140107.422",
+ "deps": [
+ "dash"
+ ]
+ },
+ "plsql": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/plsql.el",
+ "sha256": "1v0wvy9fd1qq3aq83x5jv3953n0n51x7y2r2ql11j0h8xasy42p1"
+ },
+ "recipe": {
+ "sha256": "1jvppmfdll34b8dav5dvbabfxiapv92p7lciblj59a707bbdb7l1",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20121115.443",
+ "deps": []
+ },
+ "ebal": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "mrkkrp",
+ "repo": "ebal",
+ "sha256": "0l2nhf6m6m01y2gw1fkn3zsjvmm1w02qj9zp4nmhgdl0qkllhdz5",
+ "rev": "ef0a288d9b6e557532d772c146ff02aa82771f13"
+ },
+ "recipe": {
+ "sha256": "1kqnlp5n1aig1qbqdq9q50wgqkzd1l6h9wi1gv43cif8qa1kxhwg",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151211.15",
+ "deps": [
+ "emacs",
+ "f",
+ "ido-completing-read+"
+ ]
+ },
+ "coffee-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "defunkt",
+ "repo": "coffee-mode",
+ "sha256": "1axp9hixp4vgaqjd3ii9xwb32jhb964zclmpg3zpsl4rp8b9bdz5",
+ "rev": "d19075264dc1f662e2282ca42ce70be0eae61b2a"
+ },
+ "recipe": {
+ "sha256": "1px50hs0x30psa5ljndpcc22c0qwcaxslpjf28cfgxinawnp74g1",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151210.828",
+ "deps": [
+ "cl-lib",
+ "emacs"
+ ]
+ },
+ "usage-memo": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/usage-memo.el",
+ "sha256": "00g1zj5fjykdi6gh2wkswpwx132xa6jmwfnrgfg5r96zwb8pib4i"
+ },
+ "recipe": {
+ "sha256": "05n50adjnavl7ag24wfjwlnbv5x55qlhmplgsm8j57gjig01nd95",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20110722.1051",
+ "deps": []
+ },
+ "smartparens": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "Fuco1",
+ "repo": "smartparens",
+ "sha256": "1zs6jxl7a9hwap78w81s2h62jicikn1lyj0yxiiz0gll428p3rnj",
+ "rev": "951c2e2b78901232da1feaf8f402a699d6193bf3"
+ },
+ "recipe": {
+ "sha256": "025nfrfw0992024i219jzm4phwf29smc5hib45s6h1s67942mqh6",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151213.1707",
+ "deps": [
+ "cl-lib",
+ "dash"
+ ]
+ },
+ "grunt": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "gempesaw",
+ "repo": "grunt.el",
+ "sha256": "1js849s8b9x0n6ak2qwv90lk6zr71mgkk9f0xccdhikz4c8vxk0r",
+ "rev": "42bcab2990a27e0f8cf22eee87089c95eb9fae29"
+ },
+ "recipe": {
+ "sha256": "1qdzqcrff9x97kyy0d4j636d5i751qja10liw8i0lf4lk6n0lywz",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151110.1029",
+ "deps": [
+ "ansi-color",
+ "dash",
+ "emacs"
+ ]
+ },
+ "buffer-utils": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "rolandwalker",
+ "repo": "buffer-utils",
+ "sha256": "1mnf0dgr6g58k0jyia7985jsinrla04vm5sjl2iajwphbhadjk8p",
+ "rev": "685b13457e3a2085b7584e41365d2aa0779a1b6f"
+ },
+ "recipe": {
+ "sha256": "0cfipdn4fc4fvz513mwiaihvbdi05mza3z5z1379wlljw6r539z2",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140512.900",
+ "deps": []
+ },
+ "elscreen-persist": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "robario",
+ "repo": "elscreen-persist",
+ "sha256": "06g7fl2c7cvwsrgi462wf6j13ny56y6zvgkizz9f256xjjq77ymf",
+ "rev": "652b4c738f92c518ead69343ebfcf66bc2a0254c"
+ },
+ "recipe": {
+ "sha256": "1rjfvpsx0y5l9b76wa1ilj5lx39jd0m78nb1a4bqn81z0rkfpl4k",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151218.126",
+ "deps": [
+ "elscreen",
+ "revive"
+ ]
+ },
+ "scheme-here": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "judevc",
+ "repo": "scheme-here",
+ "sha256": "09cvrphrnbj8avnlqqv6scjz17cn6zm6mzghjn3vxfr4hql66rir",
+ "rev": "430ba017cc530865218de23a8f7985095a58343f"
+ },
+ "recipe": {
+ "sha256": "137qqfnla3hjm6qcnzpsgrw173px0k5dwq9apns5cdryxx3ahcvv",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20141028.218",
+ "deps": []
+ },
+ "dictcc": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "cqql",
+ "repo": "dictcc.el",
+ "sha256": "0jv4r9l8n7k2m85f4nnj6igsav4hmaq41gi1mp662mgmgfpaf0wl",
+ "rev": "5cc898de535536380e1031b67421bd2a00cdd689"
+ },
+ "recipe": {
+ "sha256": "0x1y742hb3dm7xmh5810dlqki38kybw68rmg9adcchm2rn86jqlm",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150731.455",
+ "deps": [
+ "cl-lib",
+ "dash",
+ "emacs",
+ "helm",
+ "s"
+ ]
+ },
+ "ido-clever-match": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "Bogdanp",
+ "repo": "ido-clever-match",
+ "sha256": "14nmldahr0pj2x4vkzpnpx0bsxafmiihgjylk5j5linqvy8q6wk6",
+ "rev": "f173473e99c8b0756f12e4cc8f67e68fa59eadd3"
+ },
+ "recipe": {
+ "sha256": "081i6cjvqyfpgj0nvzc94zrl2v3l6nv6mhfda4zf7c8qqbvx1m8m",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151011.1226",
+ "deps": [
+ "cl-lib",
+ "emacs"
+ ]
+ },
+ "pyenv-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "proofit404",
+ "repo": "pyenv-mode",
+ "sha256": "0017xk95293sc37127hg9bbbh5glq34sdc1b6bx6ykzny6g49fd3",
+ "rev": "93ddeb2c0fabc224496cdf5ff688243a208376c4"
+ },
+ "recipe": {
+ "sha256": "00yqrk92knv9gq1m9xcg78gavv70jsjlwzkllzxl63iva9qrch59",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151105.441",
+ "deps": [
+ "pythonic"
+ ]
+ },
+ "iplayer": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "csrhodes",
+ "repo": "iplayer-el",
+ "sha256": "043dnij48zdyg081sa7y64lm35z7zvrv8gcymv3l3a98r1yhy3v6",
+ "rev": "48b664e36e1a8e37eeb3eee80b91ff7126ed449a"
+ },
+ "recipe": {
+ "sha256": "0wnxvdlnvlmspqsaqx0ldw8j03qjckkqzvx3cbpc2yfs55pm3p7r",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150101.455",
+ "deps": []
+ },
+ "ruby-tools": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "rejeep",
+ "repo": "ruby-tools",
+ "sha256": "0jd9acycpbdd90hallrl0k5055rypp502qv4c6i286p7f9is4kvq",
+ "rev": "6b97066b58a4f82eb2ecea6434a0a7e981aa4c18"
+ },
+ "recipe": {
+ "sha256": "1zs2vzcrw11xyj2a7lgqzw4slcha20206jvjbxkm68d57rffpk8y",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151209.1015",
+ "deps": []
+ },
+ "multi-term": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/multi-term.el",
+ "sha256": "062c52xd469jdmsq4fvdhsmgfjrlanv0bb1w5vglz7bsn68d2bim"
+ },
+ "recipe": {
+ "sha256": "1va4ihngwv5qvwps3m9jj0150gbrmq3zllnyq1hbx5ap8hjrhvdx",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150220.720",
+ "deps": []
+ },
+ "hardcore-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "magnars",
+ "repo": "hardcore-mode.el",
+ "sha256": "124k803pgxc7fz325yy6jcyam69f5fk9kdwfgmnwwca9ablq4cfb",
+ "rev": "b1dda19692b4a7a58a689e81784a9b35be39e70d"
+ },
+ "recipe": {
+ "sha256": "1bgi1acpw4z7i03d0i8mrd2hpjn6hyvkdsk0ks9q380yp9mqmiwd",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151114.101",
+ "deps": []
+ },
+ "e2wm-R": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "myuhe",
+ "repo": "e2wm-R.el",
+ "sha256": "0xjgdd6xgxy1rfiah95w7wzjriqqf4hi87lma8v4f59g312zrhwy",
+ "rev": "4bcf8c38d4ec38bb575d553a5d4a247d1777bf7b"
+ },
+ "recipe": {
+ "sha256": "09v4fz178lch4d6m801ipclfxm2qrap5601aysnzyvc2apvyr3sh",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20130506.8",
+ "deps": [
+ "e2wm",
+ "ess",
+ "inlineR"
+ ]
+ },
+ "bibtex-utils": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "plantarum",
+ "repo": "bibtex-utils",
+ "sha256": "1qf45s53vcbd90v2d2brynv3xmp8sy9w9jp611cf0dzfl1k7x8p8",
+ "rev": "1695db9f4f9198bb27f219bd4da7d34a9ae58069"
+ },
+ "recipe": {
+ "sha256": "13llsyyvy0xc9s51cqqc1rz13m3qdqh8jw07gwywfbixlma59z8l",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150924.847",
+ "deps": []
+ },
+ "fold-this": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "magnars",
+ "repo": "fold-this.el",
+ "sha256": "1cbabpyp66nl5j8yhyj2jih4mhaljxvjh9ij05clai71z4598ahn",
+ "rev": "90b41d7b588ab1c3295bf69f7dd87bf31b543a6a"
+ },
+ "recipe": {
+ "sha256": "1iri4a6ixw3q7qr803cj2ik7rvmww1b6ybj5q2pvkf1v25r8655d",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150601.542",
+ "deps": []
+ },
+ "mowedline": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "retroj",
+ "repo": "mowedline",
+ "sha256": "179mc70x3dvj0cz6yyhs00ndh0xvk71gmiscln9y0f1ngxr5h338",
+ "rev": "058d5fad71c9895ab36cf83b3f0a0b722054cb19"
+ },
+ "recipe": {
+ "sha256": "0c2hvvwa7s5iyz517jaskshdcq9zs15zr6xsvrcb3biahrh4bmfb",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150601.1209",
+ "deps": []
+ },
+ "keychain-environment": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "tarsius",
+ "repo": "keychain-environment",
+ "sha256": "0xm7vybqgglacm0xz6fa7ipfvsx14qqws629gi9i16maxn3by9ci",
+ "rev": "c4c87cf3b3f13c1d73efe8fccf5f2c68ebe04abe"
+ },
+ "recipe": {
+ "sha256": "1w77cg00bwx68h0d6k6r1fzwdwz97q12ch2hmpzjnblqs0i4sv8v",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150416.1458",
+ "deps": []
+ },
+ "parent-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "Fanael",
+ "repo": "parent-mode",
+ "sha256": "0i5bc7lyyrx6swqlrp9l5x72yzwi53qn6ldrfs99gh08b3yvsnni",
+ "rev": "db692cf08deff2f0e973e6e86e26662b44813d1b"
+ },
+ "recipe": {
+ "sha256": "1ndn6m6aasmk9yrml9xqj8141100nw7qi1bhnlsss3v8b6njwwig",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150824.1800",
+ "deps": []
+ },
+ "frame-tag": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "liangzan",
+ "repo": "frame-tag.el",
+ "sha256": "1vvkdgj8warl40kqmd0408q46dxy9qp2sclq4q92b6falry9qy30",
+ "rev": "7018490dbc3c39f2c959e38c448001d1864bfa17"
+ },
+ "recipe": {
+ "sha256": "1n13xcc3ny9j9h1h4vslpjl6k9mqksr73kgmqrmkq301p8zps94q",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151121.118",
+ "deps": [
+ "cl-lib"
+ ]
+ },
+ "midje-test-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "bpoweski",
+ "repo": "midje-test-mode",
+ "sha256": "0f3iq4ghi4ig2by1smfciavr2f0lx6vhvajykxdfs0afn006w4cs",
+ "rev": "46fc081865d48f30b950f21a597eadd59a802fc9"
+ },
+ "recipe": {
+ "sha256": "0i5j9bnrncxar8hpy3d0566d0y5s4ywakskf27d3kxfyrwqi4l4f",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20131208.1114",
+ "deps": [
+ "cider",
+ "clojure-mode"
+ ]
+ },
+ "git-gutter": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "syohex",
+ "repo": "emacs-git-gutter",
+ "sha256": "1721h4i185wj9nxkb19cnbwk5fwsajaqr54qq9xb669mm4pjn3ra",
+ "rev": "febe69d909beb407d07dfc1b273ae7b7719fdd7c"
+ },
+ "recipe": {
+ "sha256": "12yjl9hsd72dwzl42hdcmjfdbxyi356jcq0kz8k7jvcsn57z4p2k",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151210.203",
+ "deps": [
+ "cl-lib",
+ "emacs"
+ ]
+ },
+ "flycheck-flow": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "lbolla",
+ "repo": "emacs-flycheck-flow",
+ "sha256": "0lk7da7axn9fm0kzlzx10ir014rsdsycffi8jcy4biqllw6yi4dx",
+ "rev": "6a6307a3998531279feab742321192cfc0c6e90a"
+ },
+ "recipe": {
+ "sha256": "0p4vvk09vjgk98dwzr2qzldvij3v6af56pradssi6sm3shbqhkk3",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151218.604",
+ "deps": [
+ "flycheck"
+ ]
+ },
+ "highlight-cl": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/highlight-cl.el",
+ "sha256": "0r3kzs2fsi3kl5gqmsv75dc7lgfl4imrrqhg09ij6kq1ri8gjxjw"
+ },
+ "recipe": {
+ "sha256": "164h3c3rzriahb7v5hk2pw4i0gk2vk5ak722bai6x4zx4l1xp20w",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20091012.1230",
+ "deps": []
+ },
+ "stylus-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "brianc",
+ "repo": "jade-mode",
+ "sha256": "1q6wpjb7vhsy92li6fag34pwyil4zvcchbvfjml612aaykiys506",
+ "rev": "0d0bbf60730d0e33c6362e1fceeaf0e133b1ceeb"
+ },
+ "recipe": {
+ "sha256": "152k74q6qn2xa38v2zyd5y7ya5n26nvai5v7z5fmq7jrcndp27r5",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150313.1012",
+ "deps": [
+ "sws-mode"
+ ]
+ },
+ "peg": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "ellerh",
+ "repo": "peg.el",
+ "sha256": "0kjz7ch4bn0m4v9zgqyqcrsasnqc5c5drv2hp22j7rnbb7ny0q3n",
+ "rev": "081efeca91d790c7fbc90871ac22c40935f4833b"
+ },
+ "recipe": {
+ "sha256": "0nxy9xn99myz0p36m4jflfj48qxhhn1sspbfx8d90030xg3cc2gm",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150708.141",
+ "deps": []
+ },
+ "cask": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "cask",
+ "repo": "cask",
+ "sha256": "0zky8d9kdrcfh4vh8v6wbzs80nixr1xnnyjgg1zdingyklrxl79y",
+ "rev": "acd19283ff2da1c37c30015bcd83b012b33cf3c5"
+ },
+ "recipe": {
+ "sha256": "11nr6my3vlb1xiyai7qwii3nszda2mnkhkjlbh3d0699h0yw7dk5",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151123.728",
+ "deps": [
+ "cl-lib",
+ "dash",
+ "epl",
+ "f",
+ "package-build",
+ "s",
+ "shut-up"
+ ]
+ },
+ "pcmpl-homebrew": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "kaihaosw",
+ "repo": "pcmpl-homebrew",
+ "sha256": "17i5j5005dhzgwzds5jj1a7d31xvbshjc139vawwz2xip5aynji4",
+ "rev": "a2b9026a1b3c8206d0eca90c491c0397fb275f94"
+ },
+ "recipe": {
+ "sha256": "1gckzcwpg4am1ryjy08aic98mbafb64wkfmnm98d64kiwbpaacly",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150506.2052",
+ "deps": []
+ },
+ "ace-jump-helm-line": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "cute-jumper",
+ "repo": "ace-jump-helm-line",
+ "sha256": "0yfhny921krpl9j8x7xflj8jzbrj8fkabc8373b8q5hyz20d332k",
+ "rev": "8400dbdd93d0442493f74f4030b09bbfac2d5700"
+ },
+ "recipe": {
+ "sha256": "04q8wh6jskvbiq6y2xsp2ir23vgz5zw09rm127sgiqrmn0jc61b9",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151113.1300",
+ "deps": [
+ "avy",
+ "helm"
+ ]
+ },
+ "keyword-search": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "keyword-search",
+ "repo": "keyword-search",
+ "sha256": "0zw4klp9ifb6yylr9yab3p3vjv18as6clpg2i3w4r2xah9chxgqq",
+ "rev": "1a01e3d5a43e48701cfab0332876284f5d3a1bba"
+ },
+ "recipe": {
+ "sha256": "0wvci1v8pblfbdslfzpi46c149y8pi49kza9jf33jzhj357lp5qa",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150911.432",
+ "deps": []
+ },
+ "puml-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "skuro",
+ "repo": "puml-mode",
+ "sha256": "15c2p5ffvkp80v6fvxa3bgrk8mj18famngqkz2dammxnbppvnvvz",
+ "rev": "9d3b5e326d1e68f87711c2ccb0920e2f5db5550b"
+ },
+ "recipe": {
+ "sha256": "131ghjq6lsbhbx5hdg36swnkqijdb9bx6zg73hg0nw8qk0z742vn",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151212.1023",
+ "deps": []
+ },
+ "gnus-summary-ext": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "vapniks",
+ "repo": "gnus-summary-ext",
+ "sha256": "1dzb3h5swvmwwy7x1lhz79cq2kpmamk35jb4dwmmxz6j248kmv6b",
+ "rev": "6be01a82819dc73b0650d726e17d0adb44b72c2b"
+ },
+ "recipe": {
+ "sha256": "0svyz8fy4k9ba6gpdymf4cf8zjjpgm71y48vlybxbv507xjm17qf",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150119.2033",
+ "deps": []
+ },
+ "bbdb-ext": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "vapniks",
+ "repo": "bbdb-ext",
+ "sha256": "09fdw5byqcjpnh3qjngp171695y6zpkgl2hyvrxha1mpcx7v1lr4",
+ "rev": "ae5ad8f0de8c1f11739310909d963b8fc6c368dc"
+ },
+ "recipe": {
+ "sha256": "0fnxcvzdyh0602rdfz3lz3vmvza4s0syz1vn2fgsn2lg3afqq7li",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20130513.1352",
+ "deps": [
+ "bbdb"
+ ]
+ },
+ "ac-html-csswatcher": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "osv",
+ "repo": "ac-html-csswatcher",
+ "sha256": "0swbw62zh5rjjf73pvmp8brrrmk6bp061k793z4z83v7ic0cicrr",
+ "rev": "b0f3e7e1a3fe49e88b6eb6432377232fc715f221"
+ },
+ "recipe": {
+ "sha256": "0jb9dnm2lxadrxssf0rjqw8yvvskcq4hys8c21shjyj3gkvwbfqn",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151208.1513",
+ "deps": [
+ "web-completion-data"
+ ]
+ },
+ "viewer": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/viewer.el",
+ "sha256": "0lns0ic3zjz1km02674d9hxgnp6wlhk168wyr6h4vhpr8a71x9mb"
+ },
+ "recipe": {
+ "sha256": "0aqwkymq5f0qfgs1hmcg1jb1rd0vcnlqwiyjrjjkfff2xlbpagqf",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20141021.1338",
+ "deps": []
+ },
+ "gmail2bbdb": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "redguardtoo",
+ "repo": "gmail2bbdb",
+ "sha256": "01hhanijqlh741f9wh6xn88qvghwqnfj5j0rvys5mghssfspqs3z",
+ "rev": "f0e23a1262bb683285b381b1d142478ba345af1a"
+ },
+ "recipe": {
+ "sha256": "03jhrk4vpjim3ybzjxy7s9r1cgjysj9vlc4criz5k0w7vqz3r28j",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150909.2039",
+ "deps": []
+ },
+ "wolfram-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "kawabata",
+ "repo": "wolfram-mode",
+ "sha256": "1xna0cjgi9m87pws2h0cza67qbpdhjmdi5h4wv6v4g14nr26hi3w",
+ "rev": "72cb36975816a9a7b677269e19b9ff431f597ed7"
+ },
+ "recipe": {
+ "sha256": "1bq95lamzz45macpklnq1kxw9ak4x4f41kx16f472dn650ff0zlf",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140118.957",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "flymake-easy": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "purcell",
+ "repo": "flymake-easy",
+ "sha256": "1mylcsklnv3q27q1gvf7wrila39rmxab1ypmvjh5p56d91y6pszc",
+ "rev": "de41ea49503f71f997e5c359a2ad08df696c0147"
+ },
+ "recipe": {
+ "sha256": "19p6s9fllgvs35v167xf624k5dn16l9fnvaqcj9ks162gl9vymn7",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140818.255",
+ "deps": []
+ },
+ "sane-term": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "adamrt",
+ "repo": "sane-term",
+ "sha256": "1r6b6n2bzjznjfimgcm0vnmln4sbyasm4icmdgbpzahdmbkfzq3w",
+ "rev": "1d0c1410050cb50034c9e065dfde3e7ec5bc31b7"
+ },
+ "recipe": {
+ "sha256": "0iz63b62x5jrz7c23i850634k4bk73kg1h4wj1ravx3wlgvzs8y8",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150917.1802",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "org-repo-todo": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "waymondo",
+ "repo": "org-repo-todo",
+ "sha256": "03c88jzwvl95dl39703mknkvnk3cmw4gss5c1y2k9py2rgh6bpr9",
+ "rev": "904a26089d87db59a40421d6f857b189e70dfbe3"
+ },
+ "recipe": {
+ "sha256": "0l5ns1hs3i4dhrpmvzl34zc9zysgjkfa7j8apbda59n9jdvml5v1",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20141204.1541",
+ "deps": []
+ },
+ "anything": {
+ "fetch": {
+ "tag": "fetchgit",
+ "url": "http://repo.or.cz/r/anything-config.git",
+ "sha256": "e90ded84609e59a4cef22bfd9d9a543ec6b677b78ab44fb4eb6cbae9eb248669",
+ "rev": "2d7e0450e13ab04b20f4dff08f32936e78677e58"
+ },
+ "recipe": {
+ "sha256": "13pmks0bsby57v3vp6jcvvzwb771d4qq62djgvrw4ykxqzkcb8fj",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151018.2103",
+ "deps": []
+ },
+ "headlong": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "abo-abo",
+ "repo": "headlong",
+ "sha256": "06hq6p6a4fzprbj4r885vsvzddlvx0wxqk5kik06v5bm7hjmnyrq",
+ "rev": "f6830f87f236eee88263cb6976125f72422abe72"
+ },
+ "recipe": {
+ "sha256": "042ybplkqjb30qf5cpbw5d91j1rdc71b789v277h036bri7hgxz6",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150417.1026",
+ "deps": []
+ },
+ "robe": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "dgutov",
+ "repo": "robe",
+ "sha256": "1fckb18x9ikm6dlwwdfg9q4wyjjwdqy3r1w2ic01xb0dbyls41gw",
+ "rev": "c5a0ae6f68c699ec3cdbb73a3e01e76f62d75f48"
+ },
+ "recipe": {
+ "sha256": "19py2lwi7maya90kh1mgwqb16j72f7gm05dwla6xrzq1aks18wrk",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151119.1658",
+ "deps": [
+ "inf-ruby"
+ ]
+ },
+ "espresso-theme": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "dgutov",
+ "repo": "espresso-theme",
+ "sha256": "0ir7j4dgy0fq9ybixaqs52kiqk73p9v6prgqzjs8nyicjrpmnpyq",
+ "rev": "c3a524e873f33923fe511791197a66dea5156687"
+ },
+ "recipe": {
+ "sha256": "1bsff8fnq5z0f6cwg6wprz8qi3ivsqxpxx6v6fxfammn74qqyvb5",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20130301.148",
+ "deps": []
+ },
+ "ob-axiom": {
+ "fetch": {
+ "tag": "fetchhg",
+ "url": "https://bitbucket.com/pdo/axiom-environment",
+ "sha256": "1vk7jjbf8wp183c4nagkgxvzcyrdlr53avzsxl111rm5rsxbvdli",
+ "rev": "d7ea57a27527"
+ },
+ "recipe": {
+ "sha256": "12cmzhgzk8314y6nvzdjwidalccz6h440lil83c1h4lz4ddlwmf6",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150804.1700",
+ "deps": [
+ "axiom-environment",
+ "emacs"
+ ]
+ },
+ "git-auto-commit-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "ryuslash",
+ "repo": "git-auto-commit-mode",
+ "sha256": "0psmr7749nzxln4b500sl3vrf24x3qijp12ir0i5z4x25k72hrlh",
+ "rev": "075e5f9ded66c2035581a7b216896556cc586814"
+ },
+ "recipe": {
+ "sha256": "0nf4n63xnzcsizjk1yl8qvqj9wjdqy57kvn6r736xvsxwzd44xgl",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150404.951",
+ "deps": []
+ },
+ "company-go": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "nsf",
+ "repo": "gocode",
+ "sha256": "0p3abkqllgy1b5l08wgxjywvvbcjiyjdf00azh1r1nyc81m4krni",
+ "rev": "2b99fc4d372b017483b7596c4577bf5f15479772"
+ },
+ "recipe": {
+ "sha256": "0padz12mb6zv3jlprvnj9s5vyp2hx68cqb5v3z974zfg5ws9sy4c",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151211.1224",
+ "deps": [
+ "company",
+ "go-mode"
+ ]
+ },
+ "light-soap-theme": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "mswift42",
+ "repo": "light-soap-theme",
+ "sha256": "04dik8z2mg6qr4d3fkd26kg29b4c5crvbnc1lfsrzyrik7ipvsi8",
+ "rev": "76a787bd40c6b567ae68ced7f5d9f9f10725e00d"
+ },
+ "recipe": {
+ "sha256": "09p4w51d5szhi81a6a3l0r4zd4ixkrkzxldr938bcmj0qmj62iyk",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150607.945",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "google-translate": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "atykhonov",
+ "repo": "google-translate",
+ "sha256": "0j2x7xvc556bq63c85j4dn8aggz2xfilx4x7hf99p7w6px0pzp29",
+ "rev": "e3f3981895d829a05f6f92d4db065c4b46076ff7"
+ },
+ "recipe": {
+ "sha256": "1crgzdd32mk6hrawdypg496dwh51wzwfb5wqw4a2j5l8y958xf47",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151016.1420",
+ "deps": []
+ },
+ "kfg": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "abingham",
+ "repo": "kfg",
+ "sha256": "0xq835xzywks4b4kaz5i0pp759i23kibs5gkvvxasw0dncqh7j5c",
+ "rev": "d2c9dd26618fb2f7bf1e7b6eae193b1cceba3c97"
+ },
+ "recipe": {
+ "sha256": "0vvvxl6a4ac27igwmsgzpf0whf9h2pjl9d89fd9fizad6gi8x1fs",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140909.38",
+ "deps": [
+ "f"
+ ]
+ },
+ "batch-mode": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/batch-mode.el",
+ "sha256": "1aa611jrzw4svmxvw1ghgh53x4nry0sl7mxmp4kxiaybqqvz6a1p"
+ },
+ "recipe": {
+ "sha256": "1p0rh5r8w00jag64sbjy8xb9g6lqhm2fz476v201kbrj9ggp643x",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140807.1550",
+ "deps": []
+ },
+ "puppet-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "lunaryorn",
+ "repo": "puppet-mode",
+ "sha256": "11mkf9gvjz63szdvhwlqnd6j2r9ij2fh8l6zkf7hl2zlwyyivcmp",
+ "rev": "268ec790603a4121f62822ca6c26e9038a1b0375"
+ },
+ "recipe": {
+ "sha256": "1s2hap6fs6rg5q80dmzhaf4qqaf5sglhs8p896i3i5hq51w0ciyc",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150730.1408",
+ "deps": [
+ "emacs",
+ "pkg-info"
+ ]
+ },
+ "region-state": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "xuchunyang",
+ "repo": "region-state.el",
+ "sha256": "0gsh0x1rqxvzrszdyna9d8b8w22mqnd9yqcwzay2prc6rpl26g1f",
+ "rev": "07ffb7d9ada2fcd204f3447f078c265d25f36f60"
+ },
+ "recipe": {
+ "sha256": "1iq2x1w8lqjjiwjja7r3qki6drvydnk171k9fj9g6rk7wslknz8x",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151128.438",
+ "deps": []
+ },
+ "heroku-theme": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "jonathanchu",
+ "repo": "heroku-theme",
+ "sha256": "15hk0v6ck076mahsz4spq75jcnv587fx4d3w50c7bdh423fl0xvx",
+ "rev": "8083643fe92ec3a1c3eb82f1b8dc2236c9c9691d"
+ },
+ "recipe": {
+ "sha256": "0mchh9y3pqwamry6105qrv1bp1qg1g0jmz7rzc5svz9giynypwf9",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150522.2119",
+ "deps": []
+ },
+ "commify": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "ddoherty03",
+ "repo": "commify",
+ "sha256": "04bma9sdn7h8fjz62wlcwayzhr7lvzhidh48wc5rk195zlbgagwa",
+ "rev": "921467f666c05ccec9cf3bc0a8168eade20bcb6a"
+ },
+ "recipe": {
+ "sha256": "1jc6iqa4hna3277hx13scfcqzkr43yv6gndbxv7qf4ydi01ysd0m",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151110.338",
+ "deps": [
+ "s"
+ ]
+ },
+ "fillcode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "snarfed",
+ "repo": "fillcode",
+ "sha256": "1x9wmxbcmd6qgdyzrl978nczfqrgyk6xz3rnh5hffbapy1v1rw47",
+ "rev": "ae5f6c6de81a7681c8f883e7fce36fd0f2b3c1e8"
+ },
+ "recipe": {
+ "sha256": "0bfsw55vjhx88jpy6npnzfwinvggivbvkk7fa3iwzq19005fkag2",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150812.1141",
+ "deps": []
+ },
+ "gs-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "yyr",
+ "repo": "emacs-grads",
+ "sha256": "1d89gxyzv0z0nk7v1aa4qa0xfms2g2dsrr07cw0d99xsnyxfky31",
+ "rev": "1a13051db21b999c7682a015b33a03096ff9d891"
+ },
+ "recipe": {
+ "sha256": "02ldd92fv1k28nygl34i8gv0b0i1v5qd7nl1l17cf5f3akdwc6iq",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151202.406",
+ "deps": []
+ },
+ "mip-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "gaudecker",
+ "repo": "mip-mode",
+ "sha256": "12k9ii4090dn03xvgqisl4zl4qi33054zxyfkqzzpa9wv72h4knc",
+ "rev": "7c88c383b4c7ed0a4c1dc397735f365c1fcb461c"
+ },
+ "recipe": {
+ "sha256": "1wx5zg4kimd29vqipbzm4vjphn0mldri12g6b18kc290nhgj22ar",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151127.17",
+ "deps": []
+ },
+ "marmalade-client": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "nicferrier",
+ "repo": "emacs-marmalade-upload",
+ "sha256": "017k109nfif5mzkj547py8pdnzlr4sxb74yqqsl944znflq67blr",
+ "rev": "f315dea57e4fbebd9ee0668c0bafd4c45c7b754a"
+ },
+ "recipe": {
+ "sha256": "0llwqwwxrf7qdkpdb03ij0iinll0vc9qr557zyr3bn5zb4fad1sq",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20141231.1407",
+ "deps": [
+ "gh",
+ "kv",
+ "web"
+ ]
+ },
+ "live-code-talks": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "david-christiansen",
+ "repo": "live-code-talks",
+ "sha256": "1j0qa96vlsqybhp0082a466qb1hd2b0621306brl9pfl5srf5jsj",
+ "rev": "fece58108939a53104f88d348298c9e122f25b75"
+ },
+ "recipe": {
+ "sha256": "173mjmxanva13vk2f3a06s4dy62x271kynsa7pbhdg4fd72hdjma",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150115.1623",
+ "deps": [
+ "cl-lib",
+ "emacs",
+ "narrowed-page-navigation"
+ ]
+ },
+ "smooth-scroll": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "k-talo",
+ "repo": "smooth-scroll.el",
+ "sha256": "1kkg7qhb2lmwr4siiazqny9w2z9nk799lzl5i159lfivlxcgixmk",
+ "rev": "02320f28abb5cae28b3a18f6b9ce93129bdbfc45"
+ },
+ "recipe": {
+ "sha256": "1b0mjpd4dqgk7ij37145ry2jqbn1msf8rrvymn7zyckbccg83zsf",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20130321.2314",
+ "deps": []
+ },
+ "helm-c-moccur": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "myuhe",
+ "repo": "helm-c-moccur.el",
+ "sha256": "1silsbancag21x167q68q9fi15h4fxpv4f7dcxy4b0di9l08mc46",
+ "rev": "a0f70c8bc750b1e0a5f417a70c9ca192eb7a1e83"
+ },
+ "recipe": {
+ "sha256": "1i6a4jqjy9amlhdbj5d26wzagndfgszha09vs5qf4760vjl7kn4b",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150213.2142",
+ "deps": [
+ "color-moccur",
+ "helm"
+ ]
+ },
+ "unicode-fonts": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "rolandwalker",
+ "repo": "unicode-fonts",
+ "sha256": "0fbwncna6gxlynq9196djpkjhayzk8kxlsxg0gasdgqx1nyxl0mk",
+ "rev": "a36597d83e0248bd0e6b2c1d5fb95bff72add527"
+ },
+ "recipe": {
+ "sha256": "0plipwb30qqay8691qzqdyg6smpbs9dsxxi49psb8sq0xnxl84q3",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150826.1732",
+ "deps": [
+ "font-utils",
+ "list-utils",
+ "pcache",
+ "persistent-soft",
+ "ucs-utils"
+ ]
+ },
+ "eww-lnum": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "m00natic",
+ "repo": "eww-lnum",
+ "sha256": "1i6zf17rwa390c33cbspz81dz86vwlphyhjjsia4gp205nfk3s20",
+ "rev": "4b0ecec769919ecb05ca4fb15ec51911ba589929"
+ },
+ "recipe": {
+ "sha256": "1y745z4wa90snizq2g0amdwwgjafd6hkrayn93ca50f1wghdbk79",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150102.912",
+ "deps": []
+ },
+ "mbe": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "ijp",
+ "repo": "mbe.el",
+ "sha256": "1zywygdgnp2zr8fxqhl0cbrgbl43931k936b9imhqi96p6622pb6",
+ "rev": "bb10aa8f26bb7e9b1d5746934c94edb00402940c"
+ },
+ "recipe": {
+ "sha256": "0h18mbcjy8nh4gl12kg2v8x6ps320yk7sbgq5alqnx2shp80kri3",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151126.534",
+ "deps": [
+ "cl-lib",
+ "emacs"
+ ]
+ },
+ "relative-line-numbers": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "Fanael",
+ "repo": "relative-line-numbers",
+ "sha256": "1r8fhs7d2vkrbv15ic2bm79i9a8swbc38vk566vnxkhl3rfd5a0a",
+ "rev": "64157db08b0c2f5fada3209fc8d3e4b4c7429978"
+ },
+ "recipe": {
+ "sha256": "0mj1w5a4ax8hwz41vn02bacxlnifd14hvf3p288ljvwchvlf0hn3",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151006.1646",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "electric-case": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "zk-phi",
+ "repo": "electric-case",
+ "sha256": "0s4y1319sr4xc0k6h2zhzzxsx2kc3pc2m6saah18y4kip0hjyhr8",
+ "rev": "bac64e772107e3dc721a9819f63b9ebdc28a81f7"
+ },
+ "recipe": {
+ "sha256": "11mab7799kxs3w47srmds5prmwh6ldxzial9kqbqy33vybpkprmd",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150417.612",
+ "deps": []
+ },
+ "python-mode": {
+ "fetch": {
+ "tag": "fetchFromGitLab",
+ "owner": "python-mode-devs",
+ "repo": "python-mode",
+ "sha256": "1204804m31kfsb0vlfm6ndvxs16maqpghw96s8wmvyg16s8vnczj",
+ "rev": "c6dd413218221a0b7c85d12b6733229fac8f7788"
+ },
+ "recipe": {
+ "sha256": "1m7c6c97xpr5mrbyzhcl2cy7ykdz5yjj90mrakd4lknnsbcq205k",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151219.555",
+ "deps": []
+ },
+ "ob-sml": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "swannodette",
+ "repo": "ob-sml",
+ "sha256": "0gymna48igcixrapjmg842pnlsshhw8zplxwyyn0x2yrma9fjyyg",
+ "rev": "958165c92b6cff6cada5c85c8ae5887806b8451b"
+ },
+ "recipe": {
+ "sha256": "04qvzhwjr8ipvq3znnhn0wbl4pbb1rwxi90iidavzk3phbkpaskn",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20130829.1343",
+ "deps": [
+ "sml-mode"
+ ]
+ },
+ "mu4e-alert": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "iqbalansari",
+ "repo": "mu4e-alert",
+ "sha256": "0n2dxvy5m3mflal3157v22v1zi3c13pryqqgn312c7jwc5cqi19c",
+ "rev": "7ae95b309f8092ae639aeaba1d89c516f61a56c5"
+ },
+ "recipe": {
+ "sha256": "15nwj09iyrvjsc9lrxla6qa0s8izcllxghw5gx3ffncfcrx2l8qm",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151214.1227",
+ "deps": [
+ "alert",
+ "emacs",
+ "s"
+ ]
+ },
+ "preseed-generic-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "suntong001",
+ "repo": "preseed-generic-mode",
+ "sha256": "1dyi9nc2q43jf87xiz9xw42irrbla2vyixifdiibh6nm9misnfj0",
+ "rev": "19bce980d41607bef8af4b1901343abfca0f0855"
+ },
+ "recipe": {
+ "sha256": "0c0zs07lspwczbcba56fai0rshjzx9zd3jqxgj9nwjf9xlcr8m3j",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150119.1441",
+ "deps": []
+ },
+ "erc-colorize": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "thisirs",
+ "repo": "erc-colorize",
+ "sha256": "0knr45va4xi5dgv7iyzdv93zrw4rapzahj7ryi3ik32jacx2cpl2",
+ "rev": "0fdc12d222f36f352ee17da0d4fcbf77be5bf865"
+ },
+ "recipe": {
+ "sha256": "1m941q7ql3yb71s71783nvz822bwhn1krmin18fvh0fbsbbnck2a",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150725.909",
+ "deps": []
+ },
+ "django-snippets": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "myfreeweb",
+ "repo": "django-mode",
+ "sha256": "0dw0m77w7kdwxxh53b4k15jjkpfl5vha17hw9dn29ap77pf820va",
+ "rev": "3d82a62a7faeb2c124ac4c109e075f581c175508"
+ },
+ "recipe": {
+ "sha256": "1qs9fw104kidbr5zbxc1q71yy033nq3wxh98vvzk4z4fppnd29sw",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20131229.1011",
+ "deps": [
+ "yasnippet"
+ ]
+ },
+ "ham-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "Malabarba",
+ "repo": "ham-mode",
+ "sha256": "0d3xmagl18pas19zbpg27j0lmdiry23df48z4vkjsrcllqg25v5g",
+ "rev": "3a141986a21c2aa6eefb428983352abb8b7907d2"
+ },
+ "recipe": {
+ "sha256": "000qrdby7d6zmp5066vs4gjlc9ik0ybrgcwzcbfgxb16w1g9xpmz",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150811.806",
+ "deps": [
+ "html-to-markdown",
+ "markdown-mode"
+ ]
+ },
+ "toggle": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "zenspider",
+ "repo": "elisp",
+ "sha256": "109il2s5ynfam510yli4xmi5zgw7xhr5gv096li24idqdp0gpf9n",
+ "rev": "ec4ef9dc2d018053bed7fb44837b4c66f1a14c36"
+ },
+ "recipe": {
+ "sha256": "08lk8h2dk5s8k93j5vmxdlgg453pif8wbcx2w3xkjlh43dw1vdfq",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151210.1727",
+ "deps": []
+ },
+ "slime-theme": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "emacsfodder",
+ "repo": "emacs-slime-theme",
+ "sha256": "13rm9pmshgssmydhpirri38s38z3kvkhqama40qdzqq96dsxlnjx",
+ "rev": "441288a5791d24e79ada2698888653ef3cf2ac6f"
+ },
+ "recipe": {
+ "sha256": "1b709cplxip48a6qjdnzcn5qcgsy0jq1m05d7vc8p5ywgr1f9a00",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20141116.102",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "modeline-posn": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/modeline-posn.el",
+ "sha256": "1c0pkk4jnpqs3r46yjh9srwy3ql6pkjv55m85w49kxvcflmipl9i"
+ },
+ "recipe": {
+ "sha256": "0dngfcbcdh22fl6nd47dhg9z9iivj67six67zjr9j1cbngp10dwk",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150228.1213",
+ "deps": []
+ },
+ "e2wm-direx": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "aki2o",
+ "repo": "e2wm-direx",
+ "sha256": "09i7d2rc9zd4s3nqrhd3ggs1ykdpxf0pyhxixxw2xy0q6nbswjia",
+ "rev": "f319625b56c44e601af7c17fc6dbb88e5d70ebae"
+ },
+ "recipe": {
+ "sha256": "0nv8aciq0swxi9ahwc2pvk9c7i3rmlp7vrzqcan58ml0i3nm17wg",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140815.1813",
+ "deps": [
+ "direx",
+ "e2wm"
+ ]
+ },
+ "macros+": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/macros+.el",
+ "sha256": "1nf8hgaig26plb7dbn81gw7q4dmnr5gh90lcm82aml8h8z5ab78q"
+ },
+ "recipe": {
+ "sha256": "0aihszxsjnc93pbbkmkr1iwzvii3jw8yh1f6dpnjykgvb328pvqi",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150104.1820",
+ "deps": []
+ },
+ "ruby-electric": {
+ "fetch": {
+ "tag": "fetchsvn",
+ "url": "http://svn.ruby-lang.org/repos/ruby/trunk/misc/",
+ "sha256": "0gl8wcnm7pidvd8zy3w5lzxqj0qxs9d932350ncgnmxwfsfzkdk7",
+ "rev": "53195"
+ },
+ "recipe": {
+ "sha256": "04j04dsknzb7xc8v6alawgcbymdfmh27xnpr98yc8b05nzafw056",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150424.952",
+ "deps": []
+ },
+ "rcirc-alert": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "csantosb",
+ "repo": "rcirc-alert",
+ "sha256": "0xdyrp0zs2v2glpfwlajmj97wygwi0y492zbp6rp3caa5bj3j4z2",
+ "rev": "0adf8ff9c47023fec578f678424be62b0f49057f"
+ },
+ "recipe": {
+ "sha256": "0lyd3gz1sflp93xb7xbvk1gh69w468ync1p144avyh2pybl40q4a",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20141127.447",
+ "deps": []
+ },
+ "multi-web-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "fgallina",
+ "repo": "multi-web-mode",
+ "sha256": "0mc4kkgwnwfk27wwc21nw5ly7qcsl7y5bd8wf2y8r6pxhvwran4n",
+ "rev": "ad1c8d1c870334052d244c7ae3636cb7b9357b7c"
+ },
+ "recipe": {
+ "sha256": "0vi4yvahr10aqpcz4127c8pcqpr5srwc1yhgipnbnm86qnh34ql5",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20130823.2254",
+ "deps": []
+ },
+ "ctags": {
+ "fetch": {
+ "tag": "fetchhg",
+ "url": "https://bitbucket.com/semente/ctags.el",
+ "sha256": "1xgrb4ivgz7gmingfafmclqqflxdvkarmfkqqv1zjk6yrjhlcvwf",
+ "rev": "afb16c5b2530"
+ },
+ "recipe": {
+ "sha256": "11fp8l99rj4fmi0vd3hkffgpfhk1l82ggglzb74jr3qfzv3dcn6y",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20110911.504",
+ "deps": []
+ },
+ "history": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "boyw165",
+ "repo": "history",
+ "sha256": "1dmrg39g0faqqkgrpcbybjbb91vcpkwawxsplckkj92y59zanq3x",
+ "rev": "4bb475513f98ec07db55212a504b6167dae3a646"
+ },
+ "recipe": {
+ "sha256": "0s8pcz53bk1w4h5847204vb6j838vr8za66ni1b2y4pas76zjr5g",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150409.1934",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "auto-dictionary": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "nschum",
+ "repo": "auto-dictionary-mode",
+ "sha256": "0rfjx0x2an28821shgb4v5djza4kwn5nnrsl2cvh3px4wrvw3izp",
+ "rev": "b364e08009fe0062cf0927d8a0582fad5a12b8e7"
+ },
+ "recipe": {
+ "sha256": "1va485a8lxvb3507kr83cr6wpssxnf8y4l42mamn9daa8sjx3q16",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150410.1110",
+ "deps": []
+ },
+ "defproject": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "kotfic",
+ "repo": "defproject",
+ "sha256": "07jzr571q02l0lg5d40rnmzg16hmybi1nkjgslmvlx46z3c4xvyr",
+ "rev": "674d48a5e34cb4bba76faa38ee901322ec649086"
+ },
+ "recipe": {
+ "sha256": "1gld2fkssrjh4smpp54017549d6aw3n1zisp5s4kkb6cmszwj5gm",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151201.1619",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "project-persist": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "rdallasgray",
+ "repo": "project-persist",
+ "sha256": "1fvjap0bsyw5q92q50wk8c81yv4g8nqb6jdlnarf80glwk50avrs",
+ "rev": "8da45c80b23b1d7499eac11a258fd7382312a304"
+ },
+ "recipe": {
+ "sha256": "0csjwj0qaw0hz2qrj8kxgxlixh2hi3aqib98vm19sr3f1b8qab24",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150519.1524",
+ "deps": []
+ },
+ "popup-kill-ring": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "waymondo",
+ "repo": "popup-kill-ring",
+ "sha256": "1zdwlmk3vr0mq0dxrnkqjncalnbmvpxc0lma2sv3a4czl8yv0inn",
+ "rev": "5773dfadc104a906c088a3ec62e8cdd3e01e57fa"
+ },
+ "recipe": {
+ "sha256": "1jfw669xi2983jj3hiw5lyhc0rc0318qrmqx03f7m4ylg70dgxip",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20131020.1354",
+ "deps": [
+ "popup",
+ "pos-tip"
+ ]
+ },
+ "popup": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "auto-complete",
+ "repo": "popup-el",
+ "sha256": "18yhvcnp669xrwgxdjm1vrnv7f6lgg1i42vpkxnmj0fy8bzndqf1",
+ "rev": "68b71de41baa22be9c12b13d1efbf619a29ceadc"
+ },
+ "recipe": {
+ "sha256": "151g00h9rkid76qf6c53n8bncsfaikmhj8fqcb3r3a6mbngcd5k2",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151125.742",
+ "deps": [
+ "cl-lib"
+ ]
+ },
+ "evil-commentary": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "linktohack",
+ "repo": "evil-commentary",
+ "sha256": "1qiym8f56a18j5swrxx5is48nz7z76531k8cw2c7czr6611l8l5a",
+ "rev": "122880a6721fcf16479f406c78c6e490a25efab0"
+ },
+ "recipe": {
+ "sha256": "151iiimmkpn58pl9zn40qssfahbrqy83axyl9dcd6kx2ywv5gcxz",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151210.527",
+ "deps": [
+ "evil"
+ ]
+ },
+ "mozc-im": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "d5884",
+ "repo": "mozc-im",
+ "sha256": "03j5fy2xw204807wi7ivwcqlgkh1f7msshh5yrk6c7qdpp08062r",
+ "rev": "eaba71ee15d0822631e2023e2ee244e98782cb2d"
+ },
+ "recipe": {
+ "sha256": "1gqzmm712npj36qfi506zgl0ycd6k7l5m46c7zz2z2lb6jpssw10",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150419.649",
+ "deps": [
+ "mozc"
+ ]
+ },
+ "shut-up": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "cask",
+ "repo": "shut-up",
+ "sha256": "00c11s664hwj1l1hw7qshygy3wb6wbd0hn6qqnyq1xr0r87nnhjs",
+ "rev": "a4fd18f37e20ae991c0dbba821b2c8e6f1679c39"
+ },
+ "recipe": {
+ "sha256": "1bcqrnnafnimfcg1s7vrgq4cb4rxi5sgpd92jj7xywvkalr3kh26",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150423.722",
+ "deps": [
+ "cl-lib",
+ "emacs"
+ ]
+ },
+ "orglink": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "tarsius",
+ "repo": "orglink",
+ "sha256": "12y395ld36jnlbcrfycnvr4g723w6vahfv9iqf1wr6m94ka9pz3d",
+ "rev": "8ba8c54395cd1818c4d58d5cd24712405f9810e0"
+ },
+ "recipe": {
+ "sha256": "0ldrvvqs3hlazj0dch162gsbnbxcg6fgrxid8p7w9gj19vbcl52b",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151106.1206",
+ "deps": [
+ "dash",
+ "org"
+ ]
+ },
+ "flymake-shell": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "purcell",
+ "repo": "flymake-shell",
+ "sha256": "0c2lz1p91yhprmlbmp0756d96yiy0w92zf0c9vlp0i9abvd0cvkc",
+ "rev": "ec097bd77db5523a04ceb15a128e01689d36fb90"
+ },
+ "recipe": {
+ "sha256": "13ff4r0k29yqgx8ybxz7hh50cjsadcjb7pd0075s9xcrzia5x63i",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20121104.1300",
+ "deps": [
+ "flymake-easy"
+ ]
+ },
+ "uimage": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "lujun9972",
+ "repo": "uimage",
+ "sha256": "19qvn1vzal5k86pqn6a4ins869qmp2i586qqbl97z84szn8mn7j3",
+ "rev": "29ca0f4b9f27a8d1649931cc2ce5a3c0eb655413"
+ },
+ "recipe": {
+ "sha256": "0i6qpk6v4pmpk3zswygdy0dd7rxy8kl7qn8a1xanpi4aqg7wlbmd",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151012.804",
+ "deps": []
+ },
+ "shakespeare-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "CodyReichert",
+ "repo": "shakespeare-mode",
+ "sha256": "0vkxl3w4y4yacs1s4v0gwggvzrss8g74d3dgk8h3gphl4dlgx496",
+ "rev": "4bff63eeac2b7ec1220f17e8bbcddbea4c11cb02"
+ },
+ "recipe": {
+ "sha256": "1i9fr9l3x7pwph654hqd8s74swy5gmn3wzs85a2ibmpcjq8mz9rd",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150708.912",
+ "deps": []
+ },
+ "gregorio-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "cajetanus",
+ "repo": "gregorio-mode.el",
+ "sha256": "1670pxgmqflzw5d02mzsmqjf3gp0c4wf25z0crmaamyfmwdz9pag",
+ "rev": "5b618a8d05cc073bd8e6f1e4e56eceb4de60eab3"
+ },
+ "recipe": {
+ "sha256": "0f226l67bqqc6m8wb97m7lkxvwrfbw74b1riasirca1anzjl8jfx",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151026.920",
+ "deps": []
+ },
+ "ponylang-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "abingham",
+ "repo": "ponylang-mode",
+ "sha256": "14rczhgpkm93cada7hqqf31mxx9f34ih43mjq52zkkcbr7smm09d",
+ "rev": "9ee25b542dda6f1b776d3d9b8f34fbfa2ccb8cbc"
+ },
+ "recipe": {
+ "sha256": "06fy4aiflsynnybbrahfcmg0swxrfnwn48gr8ly3sqfpc037h2f3",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151029.450",
+ "deps": [
+ "dash"
+ ]
+ },
+ "e2ansi": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "Lindydancer",
+ "repo": "e2ansi",
+ "sha256": "0d18kdpw4zfbq4bkqh19cf42xlinxqa71lr2d994phaxqxqq195w",
+ "rev": "bd047d3d6ad02a0679582d5786afe9aee656da90"
+ },
+ "recipe": {
+ "sha256": "0ns1sldipx5kyqpi0bw79kdmhi1ry5glwxfzfx8r01hbbkf0cc94",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150220.1713",
+ "deps": []
+ },
+ "sunny-day-theme": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "mswift42",
+ "repo": "sunny-day-theme",
+ "sha256": "0mhyhkjjwszwl5wzkys9pgvgx9sps9r46k1s1hpzzf4s3vi015mc",
+ "rev": "420e0a6eb33fcc9b75c2c9e88ab60a975d782a00"
+ },
+ "recipe": {
+ "sha256": "1wsfnmmbzzyggzip66vr38yyzy27blxp91wx97bafj7jpg5cyhzw",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140413.1625",
+ "deps": []
+ },
+ "rdf-prefix": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "simenheg",
+ "repo": "rdf-prefix",
+ "sha256": "0r95fzi0x8r18x7r574mp503qaiqyicrq78zlggyz6qihi95pmqj",
+ "rev": "1ab1464172c7563a7dbf1224572e4ffbfc6608e6"
+ },
+ "recipe": {
+ "sha256": "1vxgn5f2kws17ndfdv1vj5p9ks3rp6sikzpc258j07bhsfpjz5qm",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151205.816",
+ "deps": []
+ },
+ "bs-ext": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/bs-ext.el",
+ "sha256": "1yslzlx54n17330sf6b2pynz01y6ifnkhipz4hggn1i55bz8hvrw"
+ },
+ "recipe": {
+ "sha256": "0dddligqr71qdakgfkx0r45k9py85qlym7y5f204bxppyw5jmwb6",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20130824.659",
+ "deps": []
+ },
+ "edit-at-point": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "enoson",
+ "repo": "edit-at-point.el",
+ "sha256": "0crwdgng377sy1zbq7kqkz24v697mlzgdsvkdp1m8r7ympikkj6w",
+ "rev": "3b800c11685102e1eab62ec71c5fc1589ebb81a7"
+ },
+ "recipe": {
+ "sha256": "0sn5a644zm165li44yffcpcai8bhl3yfvqcljghlwaa0w45sc9im",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150716.824",
+ "deps": []
+ },
+ "centered-window-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "ikame",
+ "repo": "centered-window-mode",
+ "sha256": "09jrcyc1dk2cdfi7ajk8xh2c9jw0f712j6gyvpaklvijakhvgsg7",
+ "rev": "3107c8942d06e9fea180d9340828ee58ad5cb2fd"
+ },
+ "recipe": {
+ "sha256": "0f5qwv4f8gn5nxsqn57bbb3y0w5whjvhv3pls88d5n68lkd1k4si",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140730.447",
+ "deps": []
+ },
+ "helm-migemo": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "emacs-jp",
+ "repo": "helm-migemo",
+ "sha256": "0gzlprf5js4y3vzkf7si2xc7ai5j97b5cqrs002hyjj5ij4f2vix",
+ "rev": "66c6a19d07c6a385daefd2090d0709d26b608b4e"
+ },
+ "recipe": {
+ "sha256": "1cjvb1lm1fsg5ky63fvrphwl5a7r7xf6qzb4mvl06ikj8hv2h33x",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151009.2256",
+ "deps": [
+ "cl-lib",
+ "emacs",
+ "helm-core",
+ "migemo"
+ ]
+ },
+ "gather": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "mhayashi1120",
+ "repo": "Emacs-gather",
+ "sha256": "0j0dg7nl9kmanayvw0712x5c5x9h48qmqdsyi0pijvgmv8l5slg5",
+ "rev": "50809fbc22d70a1c724c2dd99ac5a1f818ffeb6b"
+ },
+ "recipe": {
+ "sha256": "1f0cqqp1a7w8g1pfvzxxb0hjrxq4m79a4n85dncqj2xhjxrkm0xk",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20141230.738",
+ "deps": []
+ },
+ "test-simple": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "rocky",
+ "repo": "emacs-test-simple",
+ "sha256": "0h2g02r1spj8vbwgvjn3dddyj89j1qcqzdf2kdggvyyisssj81s3",
+ "rev": "95e58b52ff36ed7c0c50e84dcf5458cb71c380dc"
+ },
+ "recipe": {
+ "sha256": "1l6y77fqd0l0mh2my23psi66v5ya6pbr2hgvcbsaqjnpmfm90w3g",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151110.2143",
+ "deps": []
+ },
+ "auto-dim-other-buffers": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "mina86",
+ "repo": "auto-dim-other-buffers.el",
+ "sha256": "1j3ygbask2vsrh6ia6y86348lg6vl68gsraryxn25mr0c2b41811",
+ "rev": "8b909cb210a9e4482bcc43858cf8d15da4ecd1d2"
+ },
+ "recipe": {
+ "sha256": "0n9d23sfcmkjfqlm80vrgf856wy08ak4n4rk0z7vadq07yj46zxh",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140619.1102",
+ "deps": []
+ },
+ "projectile-rails": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "asok",
+ "repo": "projectile-rails",
+ "sha256": "0hh2hwyhdb1k7ba8vy1ys2i8qvf7sxw8a3v24m3b2cmrg3hz3hcb",
+ "rev": "cc1698f6ba4c54b1d19e73ea7fb3276234a285c5"
+ },
+ "recipe": {
+ "sha256": "0fgvignqdqh0ma91z9385782l89mvwfn77rp1gmy8cbkwi3b7fkq",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151126.1145",
+ "deps": [
+ "emacs",
+ "f",
+ "inf-ruby",
+ "inflections",
+ "projectile",
+ "rake"
+ ]
+ },
+ "furl": {
+ "fetch": {
+ "tag": "fetchhg",
+ "url": "https://code.google.com/p/furl-el/",
+ "sha256": "109z1d0zrya1s9wy28nz5ynpg4zl7i1p6q1n57m1b1kkhhckjcv5",
+ "rev": "9a96eeea0046"
+ },
+ "recipe": {
+ "sha256": "15njmanpj3qb8ic3k4sbrngqnsg85lvlj32dmii3y9bpgvis3k6f",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20110112.1907",
+ "deps": []
+ },
+ "change-inner": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "magnars",
+ "repo": "change-inner.el",
+ "sha256": "1m9sq93bwajbld3lnlzkjbsby5zlm9sxjzqynryyvsb9zr1d0a9z",
+ "rev": "52c543a4b9808c0d15b565fcdf646c9779de33e8"
+ },
+ "recipe": {
+ "sha256": "0r693056wykg4bs7inbfzfniyawmb91igk6kjjpq3njk0v84y1sj",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150707.1044",
+ "deps": [
+ "expand-region"
+ ]
+ },
+ "flymake-yaml": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "yasuyk",
+ "repo": "flymake-yaml",
+ "sha256": "0mdam39a85csi9b90wak9j3zkd25lj6x54affwkg3fym8yphmplm",
+ "rev": "24cb5b744a1796e554e6dbfc6eeb237d06a00b10"
+ },
+ "recipe": {
+ "sha256": "17wghm797np4hlidf3wwb47w4klwc6qyk6ry1z05psl3nykws1g7",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20130423.1048",
+ "deps": [
+ "flymake-easy"
+ ]
+ },
+ "tabulated-list": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "sigma",
+ "repo": "tabulated-list.el",
+ "sha256": "0861shx0yicl3cyik6bsjlc0bm8q4h2krxmsrw7irmnwj4ng8g7g",
+ "rev": "b547d9b728935102d1c418bc0e978c221c37f6ab"
+ },
+ "recipe": {
+ "sha256": "1gp523w11f0aa8mbrb8z6ykqmy6ihvnfs00ff906gdmjx5kk16sr",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20120406.1551",
+ "deps": []
+ },
+ "hippie-expand-slime": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "purcell",
+ "repo": "hippie-expand-slime",
+ "sha256": "1l76r8hzhaapx76f6spm5jmjbrrm5zf79cpd5024xw3hpj1jbkjp",
+ "rev": "432de36799fffc920e5bff7a4691f3c67236e59c"
+ },
+ "recipe": {
+ "sha256": "0kxyv1lpkg33qgfv1jfqx03640py7525bcnc9dk98w6y6y92zf4m",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20130907.332",
+ "deps": []
+ },
+ "pgdevenv": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "dimitri",
+ "repo": "pgdevenv-el",
+ "sha256": "0c9d4c24ic67y07y74bv5b7vc56b6l0lbh2fbzm870r1dl5zbzcj",
+ "rev": "7f1d5bc734750aca98cf67a9491cdbd5615fd132"
+ },
+ "recipe": {
+ "sha256": "0za35sdwwav81wpk4jjqh56icaswwxxyg3bqqp0qiz24llb5ln1w",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150105.1636",
+ "deps": []
+ },
+ "httpcode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "rspivak",
+ "repo": "httpcode.el",
+ "sha256": "02jz8qwxl69zhwvpmlqc15znr8x4f30paqszmm7xrrrz5x1c1rn4",
+ "rev": "a45e735082b09477cd704a99294d336cdbeb12ba"
+ },
+ "recipe": {
+ "sha256": "05k1al1j119x6zf03p7jn2r9qql33859583nbf85k41bhicknpgh",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20121001.2245",
+ "deps": []
+ },
+ "keyset": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "HKey",
+ "repo": "keyset",
+ "sha256": "1i17hm00ba7kf23cgb15hmxn0dgwmf00a5awqn5p76kfzf1ashpy",
+ "rev": "727661420ce4b2c67c2dc6188d2822c22761904a"
+ },
+ "recipe": {
+ "sha256": "1kfw0pfb6qm2ji1v0kb8xgz8q2yd2k9kxmaz5vxcdixdlax3xiqg",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150219.2330",
+ "deps": [
+ "cl-lib",
+ "dash"
+ ]
+ },
+ "editorconfig-fnmatch": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "editorconfig",
+ "repo": "editorconfig-emacs",
+ "sha256": "0af6r0qn6gy3ww5cf3cvvbwyqpvx5xv08gxkjsj92z9h2x5rfz7f",
+ "rev": "301d67b26098d048ff7235c0878252e80becc7e0"
+ },
+ "recipe": {
+ "sha256": "0ji243vrw527jc3alsgmqi9rdnslxyq48zzx33rbpkqcjssm11iv",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151208.1035",
+ "deps": [
+ "cl-lib"
+ ]
+ },
+ "plantuml-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "wildsoul",
+ "repo": "plantuml-mode",
+ "sha256": "0jvs051ncpv7pwx2kr14fm1wqakabwc031xcv7lba0mx7shxzqdg",
+ "rev": "4bc4cdf7974c8b8956b848ef69f1a2b5767597aa"
+ },
+ "recipe": {
+ "sha256": "0fg313mx9jz92lf9lr5apvma9ixfz02dvyzw1phsgzawi7hai264",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20131031.1832",
+ "deps": [
+ "auto-complete"
+ ]
+ },
+ "anything-git-files": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "tarao",
+ "repo": "anything-git-files-el",
+ "sha256": "0gj0p7420wx5c186kdccjb9icn656sg5b0zwnwy3fjvhsbbvrb2r",
+ "rev": "efeec4f8001e2a95f36a9c31181bb30f7561015c"
+ },
+ "recipe": {
+ "sha256": "13giasg8lh5968plva449ki9nc3478a63700f8c0yghnwjb77asw",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20130609.443",
+ "deps": [
+ "anything"
+ ]
+ },
+ "smart-compile": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/smart-compile.el",
+ "sha256": "0sm4nxynwhwypzw008fz56axai9lrphjczwzfdy7da3akan18rbd"
+ },
+ "recipe": {
+ "sha256": "0vgxqyzl7jw2j96rmjw75b5lmjwrvzajrdvfyabss4xmv96dy2r3",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150519.1147",
+ "deps": []
+ },
+ "git-gutter-fringe+": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "nonsequitur",
+ "repo": "git-gutter-fringe-plus",
+ "sha256": "1rsj193zpblndki4khjjlwl2njxb329d42l75ki55msxifqrn4fi",
+ "rev": "7a2f49d2455a3a872e90e5f7dd4e6b27f1d96cfc"
+ },
+ "recipe": {
+ "sha256": "1zkjb8p08cq2nqskn79rjszlhp9mrblplgamgi66yskz8qb1bgcc",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140729.603",
+ "deps": [
+ "fringe-helper",
+ "git-gutter+"
+ ]
+ },
+ "encourage-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "halbtuerke",
+ "repo": "encourage-mode.el",
+ "sha256": "0k5ns40s5nskn0zialwq96qll1v5k50lfa5xh8hxbpcamsfym6h8",
+ "rev": "99edacf2d94d168d3da0609860dc7253db7c9815"
+ },
+ "recipe": {
+ "sha256": "0fwn6w7s61c08z0d8z3awclqrhszia9is30gm2kx4hwr9dhhwh63",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151128.305",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "milkode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "ongaeshi",
+ "repo": "emacs-milkode",
+ "sha256": "1qg64mxsm2cswk52mlj7sx7k6gfnrsdwnf68i7cachri0i8aq4ap",
+ "rev": "ba97e2aeefa1d9d0b3835bf08edd0de248b0c513"
+ },
+ "recipe": {
+ "sha256": "07v6xgalx7vcw5sghckwvz584746cba05ql8flv8n556glm7hibh",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140927.29",
+ "deps": []
+ },
+ "palette": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/palette.el",
+ "sha256": "13k1l2cs45fiwd0zayjfzxxrx1pqds3mkxrflmxy8y0piwx6mr1w"
+ },
+ "recipe": {
+ "sha256": "1v6dsph18rqfbvda2c25mqgdwap2a4zrg6qqq57n205zprpcwxc0",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150509.1607",
+ "deps": [
+ "hexrgb"
+ ]
+ },
+ "egg": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "byplayer",
+ "repo": "egg",
+ "sha256": "1ryb7smvf66hk307yazkjn9bqzbwzbyyb5db200fq6j2zdjwsmaj",
+ "rev": "499894195528203cfcf309228bf7578dd8cd5698"
+ },
+ "recipe": {
+ "sha256": "144g1fvs2cmn3px0a98nvxl5cz70kx30v936k5ppyi8gvbj0md5i",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150208.2015",
+ "deps": []
+ },
+ "aok": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/aok.el",
+ "sha256": "10vdmxzifxx3fkpyg76ngnj79k3d2pq0f322rd8ssc66alxhkz3g"
+ },
+ "recipe": {
+ "sha256": "1nkkbfwqp5r44wjwl902gm0xc8p3d2qj5mk1cchilr2rib52zd46",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20130824.627",
+ "deps": []
+ },
+ "quack": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "emacsmirror",
+ "repo": "quack",
+ "sha256": "0q7krn16dja0ifnc8h587lh5nilwbixxgsh5179clx5l57naix62",
+ "rev": "ce00cb151dde121e156c9543949d088d5ddafdbb"
+ },
+ "recipe": {
+ "sha256": "1l7jw8sx2llbzp3sg5755qdhhyq8jdaggxzzn7icjxxrmj1ji6ii",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20130126.1823",
+ "deps": []
+ },
+ "jaword": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "zk-phi",
+ "repo": "jaword",
+ "sha256": "1430xwd86fdlv1gzkdlp9a0x3w4blbplw24z0m7y8b0j9rhl4fka",
+ "rev": "a96bc63a08f616cc23dcc43d565e1f22a94aa9f3"
+ },
+ "recipe": {
+ "sha256": "05pzh99zfl8n3p6lxdd9abr52m24hqcb105458i1cy0ra840bf4d",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150325.918",
+ "deps": [
+ "tinysegmenter"
+ ]
+ },
+ "greymatters-theme": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "mswift42",
+ "repo": "greymatters-theme",
+ "sha256": "14c09m9p6556rrf0qfad4zsv7qxa5flamzg6fa83cxh0qfg7wjbp",
+ "rev": "a7220a8c6cf18ccae2b76946b6f01188a7c9d5d1"
+ },
+ "recipe": {
+ "sha256": "10cxajyws5rwk62i4vk26c1ih0dq490kcfx7gijw38q3b5r1l8nr",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150621.623",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "ample-zen-theme": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "mjwall",
+ "repo": "ample-zen",
+ "sha256": "18z9jl5d19a132k6g1dvwqfbbdh5cx66b2qxlcjsfiqxlxglc2sa",
+ "rev": "b277bb7abd4b6624e8d59f02474b79af50a007bd"
+ },
+ "recipe": {
+ "sha256": "0xygk80mh05qssrbfj4h6k50pg557dyj6kzc2pdlmnr5r4gnzdn3",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150119.1554",
+ "deps": []
+ },
+ "at": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "skeeto",
+ "repo": "at-el",
+ "sha256": "0rnnvr8x1czphbinby2z2dga7ikwgd13d7zhgmp3ggamzyaz6nf1",
+ "rev": "114dfe3761bf0c9dd89f794106c3a6a436ed06cc"
+ },
+ "recipe": {
+ "sha256": "0w91qx955z67w2yh8kf86b58bb3b6s6490mmbky8467knf2q83qz",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140707.720",
+ "deps": [
+ "emacs",
+ "queue"
+ ]
+ },
+ "osx-clipboard": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "joddie",
+ "repo": "osx-clipboard-mode",
+ "sha256": "1ykn48src7qhx9cmpjkaqsz7h36p75kkq1h9wlcpv5fhaky2d4n4",
+ "rev": "e46dd31327a3f92f77b013b4c9b1e5fdd0e5c73d"
+ },
+ "recipe": {
+ "sha256": "0gjgr451v6rlyarz96v6h8kfbvkk7npvhgvkgwdi0bjighrhlv4f",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20141012.217",
+ "deps": []
+ },
+ "ac-c-headers": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "zk-phi",
+ "repo": "ac-c-headers",
+ "sha256": "1z6rj15p5gjv0jwnnck8789n9csf1pwxfvsz37graihgfy2khj0y",
+ "rev": "de13a1d35b311e6601556d8ef163de102057deea"
+ },
+ "recipe": {
+ "sha256": "1cq5rz2w79bj185va7y13x7bciihrpsvyxwk6msmcxb4g86s9phv",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151021.334",
+ "deps": [
+ "auto-complete"
+ ]
+ },
+ "tern": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "marijnh",
+ "repo": "tern",
+ "sha256": "07b96yjv8jns8d18mciqchpfbhcd8w0lgy3p4msl24rk4hmv56z7",
+ "rev": "f585fe7d6f4da28770fdd3dc7ddf88a39ad9b105"
+ },
+ "recipe": {
+ "sha256": "06bgwizn9dcd8hsvimjvb28j0mpxg7rrv9knhv5kkdapa6gggxif",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151123.853",
+ "deps": [
+ "cl-lib",
+ "emacs",
+ "json"
+ ]
+ },
+ "helm-swoop": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "ShingoFukuyama",
+ "repo": "helm-swoop",
+ "sha256": "1dixg0yik08ad9qwcfis9vkg1h7zwqsisfr1zlgzabpzzm822mmd",
+ "rev": "d953ad605c989c40da5bc0fcb2953104ea7210e6"
+ },
+ "recipe": {
+ "sha256": "1fqbhj75hcmy7c2vdd0m7fk3m34njmv5s6k1i9y94djpbd13i3d8",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151022.1950",
+ "deps": [
+ "emacs",
+ "helm"
+ ]
+ },
+ "skeletor": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "chrisbarrett",
+ "repo": "skeletor.el",
+ "sha256": "1f2yrm7kac98gfwbzlszcimnmp9cjv4k0aj8yidh7r0jn1xv45f8",
+ "rev": "253b89e199d0251e3eeb6b268fe60a3337fdf5bb"
+ },
+ "recipe": {
+ "sha256": "1vfvg5l12dzksr24dxwc6ngawsqzpxjs97drw48qav9dy1vyl10v",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151212.10",
+ "deps": [
+ "cl-lib",
+ "dash",
+ "emacs",
+ "f",
+ "let-alist",
+ "s"
+ ]
+ },
+ "css-comb": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "channikhabra",
+ "repo": "css-comb.el",
+ "sha256": "0ljhar80kk7k54jz1xiq4r0w6s1wkacl7qz9wkvvbzhjb0z049hq",
+ "rev": "980251dc5d3ce0e607498f8a793f6d67a77d9cda"
+ },
+ "recipe": {
+ "sha256": "1axwrvbc3xl1ixhh72bii3hhbi9d96y6i1my1rpvwqyd6f7wb2cf",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150502.1528",
+ "deps": []
+ },
+ "counsel": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "abo-abo",
+ "repo": "swiper",
+ "sha256": "021rl53d7qmrkg0l3z19khfznj60bf45907dz1ypgbk6blakbk8q",
+ "rev": "8306be11c84a23e0ab3bcdd36cab1e5c16df8fbe"
+ },
+ "recipe": {
+ "sha256": "0y8cb2q4mqvzan5n8ws5pjpm7bkjcghg5q19mzc3gqrq9vrvyzi6",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151207.519",
+ "deps": [
+ "emacs",
+ "swiper"
+ ]
+ },
+ "visual-fill-column": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "joostkremers",
+ "repo": "visual-fill-column",
+ "sha256": "126qm63ik1n1agvcp4mgk1gr7dnnyjif8zbw0l336q74d5cy6h6w",
+ "rev": "043485d16a645c8c6df5d82bc77b8fc155a818aa"
+ },
+ "recipe": {
+ "sha256": "19y0pwaybjal2rc7migdbnafpi4dfbxvrzgfqr8dlvd9q68v08y5",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151121.1751",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "google-c-style": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "google",
+ "repo": "styleguide",
+ "sha256": "16dm5kllj64aibwp6gq4gywz4dwqhx4x9wznwn2wl9gmvkfgkmd6",
+ "rev": "e1333014b5ffec70af81ace136c830856d13683e"
+ },
+ "recipe": {
+ "sha256": "10gsbg880jbvxs4291vi2ww30ird2f313lbgcb11lswivmhrmd1r",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140929.1318",
+ "deps": []
+ },
+ "android-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "remvee",
+ "repo": "android-mode",
+ "sha256": "1ms338qq17nwivpq8c1xsnld5k532rfhgvfxx1zg3l8wrjh235d2",
+ "rev": "80629ff38e4c2f72ba1dbebd4a0abadb94d8a231"
+ },
+ "recipe": {
+ "sha256": "1nqrvq411yg4b9xb5cvc7ai7lfalwc2rfhclzprvymc4vxh6k4cc",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150106.744",
+ "deps": []
+ },
+ "efire": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "capitaomorte",
+ "repo": "efire",
+ "sha256": "1c2iyv392ap35nss4j901h33d3lx9lmq5v43flf2rid1766pam6v",
+ "rev": "91a644662afb352475efad0b377713656f131e5c"
+ },
+ "recipe": {
+ "sha256": "1c8vdc58i0k7vvanwhckfc31226d3rb5xq77lh9ydgnd4i97gq2w",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151009.1531",
+ "deps": [
+ "circe"
+ ]
+ },
+ "highlight-escape-sequences": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "dgutov",
+ "repo": "highlight-escape-sequences",
+ "sha256": "14sf81bwah9q5mjhh1aiicq4b280kfqa7m34mpnwkig3l8xy7ryg",
+ "rev": "083954e5c39b2cc10cfc12192099e76e2b84b072"
+ },
+ "recipe": {
+ "sha256": "0938b29cqapid9v9q4w2jwh8kdb0p70qwzy9xm2nxaairm7436d6",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150729.2110",
+ "deps": []
+ },
+ "hl-indent": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "ikirill",
+ "repo": "hl-indent",
+ "sha256": "17apqs7yqd89mv5283kmwp7byaaimj7j0vis0z1d89jlmp8i6zbc",
+ "rev": "e749f726ce589e04bb508160e7b290b61fb64d75"
+ },
+ "recipe": {
+ "sha256": "1z42kcwcyinjay65mv042ijh4xfaaiyri368g0sjw0fflsg0ikcr",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20141227.1530",
+ "deps": [
+ "cl-lib",
+ "emacs"
+ ]
+ },
+ "undercover": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "sviridov",
+ "repo": "undercover.el",
+ "sha256": "1qm6fzgmrdzhkajd60l4l890dlbxll96x41kx36wm97h4gz7aiyw",
+ "rev": "7b38281c21a0ed9f7260d58aca6b4b2471672cfd"
+ },
+ "recipe": {
+ "sha256": "1s30c3i6y4r3mgrrs3lda3rrwmy9ff11ihdmshyziv9v5879sdjf",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150817.1210",
+ "deps": [
+ "dash",
+ "emacs",
+ "shut-up"
+ ]
+ },
+ "dklrt": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "davidkeegan",
+ "repo": "dklrt",
+ "sha256": "063nnln5m42qf190vr2z0ibacyn7n0xkxm3v5vaa4gxdvdwzhshs",
+ "rev": "5d6c99f8018335256ab934b4c1049708ae2d48ba"
+ },
+ "recipe": {
+ "sha256": "11ss5x9sxgxp1wx2r1m0vsp5z5qm8m4ww20ybr6bqjw0a1gax561",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20131110.741",
+ "deps": [
+ "dkmisc",
+ "emacs",
+ "ledger-mode"
+ ]
+ },
+ "clojure-quick-repls": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "symfrog",
+ "repo": "clojure-quick-repls",
+ "sha256": "1vgahik2q2sn6vqm9wg5b9jc74mkbc1md8pl69apz4cg397kjkzr",
+ "rev": "b543c6c35bb1bacb278f92a6e0f4d2128c0c3db9"
+ },
+ "recipe": {
+ "sha256": "10glzyd4y3918pwp048pc1y7y7fa34fkqckn1nbys841dbssmay0",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150814.236",
+ "deps": [
+ "cider",
+ "dash"
+ ]
+ },
+ "rase": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "m00natic",
+ "repo": "rase",
+ "sha256": "1i16361klpdsxphcjdpxqswab3ing69j1wb9nygws7ghil85h0bx",
+ "rev": "59b5f7e8102570b65040e8d55781c7ea28de7338"
+ },
+ "recipe": {
+ "sha256": "1g7v2z7l4csl5by64hc3zg4kgrkvv81iq30mfqq4nvy1jc0xa6j0",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20120928.1545",
+ "deps": []
+ },
+ "js2-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "mooz",
+ "repo": "js2-mode",
+ "sha256": "17bpfi6ppmbx1q23qa89jnwnh465s54gl1vp4djy9arqir76hwsc",
+ "rev": "73c0348bf964c956aa5a9f2aeb0415bb9a65198c"
+ },
+ "recipe": {
+ "sha256": "0f9cj3n55qnlifxwk1yp8n1kfd319jf7qysnkk28xpvglzw24yjv",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151130.605",
+ "deps": [
+ "cl-lib",
+ "emacs"
+ ]
+ },
+ "yabin": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "d5884",
+ "repo": "yabin",
+ "sha256": "0f6pvwzhncycw8gnjy24h6q1qglfgvdjfs5dzqx9s43j3yg63lzm",
+ "rev": "db8c404507560ef9147fcce2b94cd706fbfa03b5"
+ },
+ "recipe": {
+ "sha256": "1kmpm2rbb43c9cgp44qwd24d90mj48k3gyiir3vb6zf6k3syrc17",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140205.2151",
+ "deps": []
+ },
+ "symon-lingr": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "zk-phi",
+ "repo": "symon-lingr",
+ "sha256": "030bglxnvrkf1f9grbhd8n11j4c6sxpabpjdr1ryx522v01fvx8j",
+ "rev": "056d1a473e36992ff5881e5ce6fdc331cead975f"
+ },
+ "recipe": {
+ "sha256": "0kyhmw25cn10b4jv2yx7bvp8zkwcswiidpk4amyaisw25820gkv1",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150719.842",
+ "deps": [
+ "cl-lib",
+ "symon"
+ ]
+ },
+ "zones": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/zones.el",
+ "sha256": "0fr6lbx62qa8acqa4s4wrg0nlga2pm3vy04j17wyhcxdjszan4yd"
+ },
+ "recipe": {
+ "sha256": "08sl7i7cy22nd1jijc5l7lp75k9z83gfr8q41n72l0vxrpdasc9w",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150908.1438",
+ "deps": []
+ },
+ "window-end-visible": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "rolandwalker",
+ "repo": "window-end-visible",
+ "sha256": "0g69r64gyz4p3k6n8l0i1837mszycbrp23acnp0iy0y3mg67x3pn",
+ "rev": "525500fb2ebc08f3f9ea493972e5f2e1d79f89ef"
+ },
+ "recipe": {
+ "sha256": "1p78n7yysj18404cdc6vahfrzwn5pixyfnja8ch48rj4fm4jbxwq",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140508.1541",
+ "deps": []
+ },
+ "dic-lookup-w3m": {
+ "fetch": {
+ "tag": "fetchsvn",
+ "url": "http://svn.sourceforge.jp/svnroot/dic-lookup-w3m/",
+ "sha256": "0lg6i9vw6xsnaamfjczz0cr41vlv1bs03h8c8y2jxpdkgaab31nc",
+ "rev": "79"
+ },
+ "recipe": {
+ "sha256": "0myv7sns9ajyr7fzn6kd8a64pfapjdksgby5ilh9mr99imm8dcfv",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151209.1748",
+ "deps": [
+ "stem",
+ "w3m"
+ ]
+ },
+ "spacegray-theme": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "bruce",
+ "repo": "emacs-spacegray-theme",
+ "sha256": "1a8jp7m9zarvljg5d9c8ydir3qcmwx05c3frs696p9nwvapf6lsb",
+ "rev": "7f70ee36297e5ccf9bc90b1f81472024f5a7a749"
+ },
+ "recipe": {
+ "sha256": "0khiddpsywpv9qvynpfdmybd80lbrhm68j3py6ranxlv7p79j9dx",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150719.1431",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "multi-compile": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "ReanGD",
+ "repo": "emacs-multi-compile",
+ "sha256": "004c4fbf5rrxvs01imv43lwvw5k9ndk02mk29q0w45s230gfca8x",
+ "rev": "61a4a7b35cd78773305150f533f51587367378db"
+ },
+ "recipe": {
+ "sha256": "16fv0hpwcjw1771zlbgznph0fix9fbm6yqj2rcz1f9l26iih6apz",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151111.1640",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "scratch-log": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "mori-dev",
+ "repo": "scratch-log",
+ "sha256": "030mcq0cmamizvra8jh2x76f71g5apiavwb10c28j62rl0r5bisk",
+ "rev": "1168f7f16d36ca0f4ddf2bb98881f8db62cc5dc0"
+ },
+ "recipe": {
+ "sha256": "1yp3p0dzhmqrd0krqii3x79k4zc3p59148cijhk6my4n1xqnhs69",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20141115.143",
+ "deps": []
+ },
+ "clmemo": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "ataka",
+ "repo": "clmemo",
+ "sha256": "0za8j7pwcmvjm2ls62z9f8sjryzzsmms4slikzixc0rxyiqnqyd1",
+ "rev": "553d62f80b6c3e0f281e09d377d490795bdcaabf"
+ },
+ "recipe": {
+ "sha256": "03qa79ip0gqinj1kk898lcvixk98hf6gknz0yc2fnqcrm642k2vs",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150220.747",
+ "deps": []
+ },
+ "rbenv": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "senny",
+ "repo": "rbenv.el",
+ "sha256": "0yd0rs6fnc6lsfi7pivw5sivh698055r8ifj9vrxb82dcx2y6v2h",
+ "rev": "2ea1a5bdc1266caef1dd77700f2c8f42429b03f1"
+ },
+ "recipe": {
+ "sha256": "09nw7sz6rdgs7hdw517qwgzgyrdmxb16sgldfkifk41rhiyqhr65",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20141120.149",
+ "deps": []
+ },
+ "org-agenda-property": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "Malabarba",
+ "repo": "org-agenda-property",
+ "sha256": "15xgkm5p30qfghyhkjivh5n4770794qf4pza462vb0xl5v6kffbm",
+ "rev": "3b469f3e93de0036547f3631cd0366d53f7584c8"
+ },
+ "recipe": {
+ "sha256": "0zsjzjw52asl609q7a2s4jcsm478p4cxzhnd3azyr9ypxydjf6qk",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140626.1616",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "standoff-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "lueck",
+ "repo": "standoff-mode",
+ "sha256": "1fn97aw91g02hgz5c9dvnxh4zdd9wrdhs44s0gnj570za1m4cbiv",
+ "rev": "09b4b2dfeadf0b9c2f3e2897be5e9b728c07b9b6"
+ },
+ "recipe": {
+ "sha256": "127bzpm1cz103f1pb860yqrh7mr0rdaivrm9p6ssd01kchl9nskp",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150628.1842",
+ "deps": []
+ },
+ "phi-rectangle": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "zk-phi",
+ "repo": "phi-rectangle",
+ "sha256": "0d2c579rg8wdfmn94nzaix9332jch4wlr939jszls330s38d0iv4",
+ "rev": "0c12716afc71d803d1f39417469521dc465762d9"
+ },
+ "recipe": {
+ "sha256": "08yw04wmbgbbr60i638m0rspfwn3cp47ky5ssgjcgcmmdgg9yfvy",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151208.54",
+ "deps": []
+ },
+ "dart-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "nex3",
+ "repo": "dart-mode",
+ "sha256": "1pd7a76znzypwi0khssdlas5kcma8r865d68jmr3n6xvwdmy8dlc",
+ "rev": "1b7562262c83de94a5118ffc55b495dae8aa7367"
+ },
+ "recipe": {
+ "sha256": "0wxfh8v716dhrmx1klhpnsrlsj66llk8brmwryjg2h7c391sb5ff",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150721.1854",
+ "deps": [
+ "cl-lib",
+ "dash",
+ "flycheck"
+ ]
+ },
+ "peek-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "erikriverson",
+ "repo": "peek-mode",
+ "sha256": "11nv6pll0zj9dkgzlzgav39a6x3sfi7kvfhwm96fa3iy4v8bixrb",
+ "rev": "55a7dd011375330c7d57322257a5167516702c71"
+ },
+ "recipe": {
+ "sha256": "07wcnh3jmp2gi9xhd3d8i2n0pr2g9kav497nnz94i85awhzf8fi4",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20130620.1446",
+ "deps": [
+ "elnode"
+ ]
+ },
+ "disk": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/disk.el",
+ "sha256": "1c0pgqvl1z2f5hprszln53pn2v2pqy110r3wx3g84v71w6378bbv"
+ },
+ "recipe": {
+ "sha256": "0bij9gr4zv6jmc6dwsy3lb06vsxvmyzl8xrm8wzasxisk1qd2l6n",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20081128.906",
+ "deps": []
+ },
+ "refheap": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "Raynes",
+ "repo": "refheap.el",
+ "sha256": "08kzi2jcfqnlanqzvbk5gq1if7k8qc9gmz5bmvd2mvmx6z436398",
+ "rev": "d41f8efb8e913b29035f545914859e3f18287492"
+ },
+ "recipe": {
+ "sha256": "0pzark1db9k2pavd5sn89a28gd9j5jlkx3wkhwfzln3y5c1wnvdk",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140902.1602",
+ "deps": [
+ "json"
+ ]
+ },
+ "navorski": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "roman",
+ "repo": "navorski.el",
+ "sha256": "0g7rmvfm0ldv0d2x7f8k761mgmi47siyspfi1ns40ijhkpc15x8l",
+ "rev": "698c1c62da70164aebe9a7a5d034778fbc30ea5b"
+ },
+ "recipe": {
+ "sha256": "0dnzpsm0ya8rbcik5wp378hc9k7gjb3gwmkqqj889c38q5cdwsx7",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20141203.1224",
+ "deps": [
+ "dash",
+ "multi-term",
+ "s"
+ ]
+ },
+ "info+": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/info+.el",
+ "sha256": "1c95876j5ya0na5rf7dlxchhawl85k25bjxh02kqcsrdirc1q86g"
+ },
+ "recipe": {
+ "sha256": "0flpmi8dsaalg14xd86xcr087j51899sm8ghsa150ag4g4acfggr",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150914.1636",
+ "deps": []
+ },
+ "manage-minor-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "ShingoFukuyama",
+ "repo": "manage-minor-mode",
+ "sha256": "10wl7kc76dyijrmdlcl5cx821jg7clsj35r22955mbbgh7zl1x07",
+ "rev": "1bed33b0752380b548b822fe72e6858c5fe70c8e"
+ },
+ "recipe": {
+ "sha256": "11jdj8kd401q0y8bbyyn72f27f51bckqid10dnh64z8w7hv59cw6",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140310.1100",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "yasnippet": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "capitaomorte",
+ "repo": "yasnippet",
+ "sha256": "1pdyrs0cv688s39vqd20dgnvlddd8x1gj7lzzlpwr47fz8zxfm9i",
+ "rev": "71f0142edae6196535bfc27b79f317dc7a12ea1d"
+ },
+ "recipe": {
+ "sha256": "1j6hcpzxljz1axh0xfbwr4ysbixkwgxawsvsgicls8r8kl2xvjvf",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151212.2333",
+ "deps": []
+ },
+ "erc-crypt": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "atomontage",
+ "repo": "erc-crypt",
+ "sha256": "1hzp42x6f73wsjr5n01i3dzsfrl5pym2l53rzlca11prcccvklfr",
+ "rev": "5d548bab298a27ca5886392c129b14d0e93067be"
+ },
+ "recipe": {
+ "sha256": "1mzzqcxjnll4d9r9n5z80zfb3ywkd8jx6b49g02vwf1iak9h7hv3",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151030.1257",
+ "deps": []
+ },
+ "log4e": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "aki2o",
+ "repo": "log4e",
+ "sha256": "1l28n7a0v2zkknc70i1wn6qb5i21dkhfizzk8wcj28v44cgzk022",
+ "rev": "6592682ab7de0e3d1915aa4d3c53e083be79fbeb"
+ },
+ "recipe": {
+ "sha256": "1klj59dv8k4r0hily489dp12ra5hq1jnsdc0wcakh6zirmakhs34",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150105.705",
+ "deps": []
+ },
+ "graphviz-dot-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "ppareit",
+ "repo": "graphviz-dot-mode",
+ "sha256": "12r6a3hikzqcdbplmraa4p4w136c006yamylxfjf8580v15xngrf",
+ "rev": "ca0f15158c3bbd516549532be1dd35bc51462c84"
+ },
+ "recipe": {
+ "sha256": "04rkynsrsk6w4sxn1pc0b9b6pij1p7yraywbrk7qvv05fv69kri2",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151127.821",
+ "deps": []
+ },
+ "pcomplete-extension": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "thierryvolpiatto",
+ "repo": "pcomplete-extension",
+ "sha256": "0h0p4c08z0dqxmg55fzch1d2f38rywfk1j0an2f4sc94lj7ckbm6",
+ "rev": "839740c90de857e18db2f578d6660951522faab5"
+ },
+ "recipe": {
+ "sha256": "0m0c9ir44p21rj93fkisvpvi08936717ljmzsr4qdf69b3i54cwc",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140604.1147",
+ "deps": [
+ "cl-lib",
+ "emacs"
+ ]
+ },
+ "melpa-upstream-visit": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "laynor",
+ "repo": "melpa-upstream-visit",
+ "sha256": "12cp56ppmwpdgf5afx7hd2qb8d1qq8z27191fbbf5zqw8cq5zkpd",
+ "rev": "7310c74fdead3c0f86ad6eff76cf989e63f70f66"
+ },
+ "recipe": {
+ "sha256": "0j4afy9ipzr7pwkij8ab207mabd7srganlyyif9h1hvclj9svdmf",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20130720.533",
+ "deps": [
+ "s"
+ ]
+ },
+ "php+-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "echosa",
+ "repo": "phpplus-mode",
+ "sha256": "0f1n0jcla157ngqshq5n8iws216ar63ynjd6743cbdrzj0v030wg",
+ "rev": "e66950502e7c9a9cd39c9a619ad66fc54c12aafa"
+ },
+ "recipe": {
+ "sha256": "1ibcsky6la3l7gawpgx814w1acjf73b68i6wbb4p6saxhwg6adik",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20121129.1452",
+ "deps": []
+ },
+ "col-highlight": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/col-highlight.el",
+ "sha256": "1gs30lb038f01czrr1d95ngwvc53pd6sfq2vhcspq8d12062lx6n"
+ },
+ "recipe": {
+ "sha256": "1kycjdlrg7a5x37b0pzqhg56yn7kaisryrk303qx1084kwq9464i",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150104.1534",
+ "deps": [
+ "vline"
+ ]
+ },
+ "paxedit": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "promethial",
+ "repo": "paxedit",
+ "sha256": "1bjv3ny1bicqk6kwy9g607kj6wc3r8kdf8yfj1jynmf5xa4wwdnw",
+ "rev": "7a69ff07d97955fb5412ba1d5259810609e3bca0"
+ },
+ "recipe": {
+ "sha256": "06ymilr0zrwfpyzql7dcpg48lhkx73f2jlaw3caxgsjaz7x3n4ic",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150405.1808",
+ "deps": [
+ "cl-lib",
+ "paredit"
+ ]
+ },
+ "e2wm": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "kiwanami",
+ "repo": "emacs-window-manager",
+ "sha256": "1lx0c7s810x6prf7x1lnx412gll8nn8gqpmi56n319n406cxhnhw",
+ "rev": "71543ce4502bdb09c888e24b3a80e47786785b88"
+ },
+ "recipe": {
+ "sha256": "0dp360jr3fgxqywkp7g88cp02g37kw2hdsc0f70hjak9n3sy03la",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150608.1923",
+ "deps": [
+ "window-layout"
+ ]
+ },
+ "helm-emmet": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "yasuyk",
+ "repo": "helm-emmet",
+ "sha256": "0c3mn5w98phsv7gsljyp5vxxmr2w6n3nczh5zm4hcpwsra3wh1v9",
+ "rev": "b4e0618773d9fdfbf0ed03d24a53d26285c51b91"
+ },
+ "recipe": {
+ "sha256": "1dkn9qa3dv2im11lm19wfh5jwwwp42sv7jc0p6qg35rhzwdpfg03",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20131014.129",
+ "deps": [
+ "emmet-mode",
+ "helm"
+ ]
+ },
+ "xmlgen": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "philjackson",
+ "repo": "xmlgen",
+ "sha256": "1nk50iwb6az01r1s2l9wwdqrz3k4ywr00q0zmd9vvi3y9v4cjah0",
+ "rev": "d27294a4174888fe452015cb98dedd2a4bdc1e92"
+ },
+ "recipe": {
+ "sha256": "1mvnjqb9zxf9ml605w10v4cbbajwv9if93apr4xrh79l00scj383",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20130219.419",
+ "deps": []
+ },
+ "drupal-spell": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "arnested",
+ "repo": "drupal-spell",
+ "sha256": "156cscpavrp695lp8pgjg5jnq3b8n9c2h8qg8w89dd4vfkc3iikd",
+ "rev": "a69f5e3b62c4c0da74ce26c1d00d5b8f7395e4ae"
+ },
+ "recipe": {
+ "sha256": "117rr2bfnc99g3qsr127grxwaqp54cxjaj3nl2nr6z78nja0fij3",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20130520.1155",
+ "deps": []
+ },
+ "helm-chronos": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "dxknight",
+ "repo": "helm-chronos",
+ "sha256": "1dmj4f8pris1i7wvfplp4dbnyfm403l6rplxfrfi0cd9afg7m68i",
+ "rev": "a14fc3d65dd96ce6616234b3f7b8b08b4c1817ef"
+ },
+ "recipe": {
+ "sha256": "1a65b680741cx4cyyizyl2c3bss36x3j2m9sh9hjc87xrzarg0s3",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150528.1536",
+ "deps": [
+ "chronos",
+ "helm"
+ ]
+ },
+ "expand-line": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "cheunghy",
+ "repo": "expand-line",
+ "sha256": "0wz4h5hrr5ci0w8pynd2nr1b2zl5hl4pa8gc16mcabik5927rf7z",
+ "rev": "75a5d0241f35dd0748ab8ecb4ff16891535be372"
+ },
+ "recipe": {
+ "sha256": "07nfgp6jlrb9wxqy835j79i4g88714zndidkda84z16qn2y901a9",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151005.2107",
+ "deps": []
+ },
+ "org-ac": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "aki2o",
+ "repo": "org-ac",
+ "sha256": "1xckin2d6s40kgr2293g72ipc57f8gp6y63303kmqcv3qm8q13ca",
+ "rev": "9cbbda79e2fe964ded3f39cf7a2e74f1be3d6b9a"
+ },
+ "recipe": {
+ "sha256": "059jr3v3558cgw626zbqfwmwwv5f4637ai26h7b6psqh0x9sf3mr",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140302.613",
+ "deps": [
+ "auto-complete-pcmp",
+ "log4e",
+ "yaxception"
+ ]
+ },
+ "omnisharp": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "OmniSharp",
+ "repo": "omnisharp-emacs",
+ "sha256": "1iq8yzjv7wb0jfi3lqqyx4n7whvb7xf8ls0q0w7pgsrsslrxbwcm",
+ "rev": "725796278fa8a391e244f2e50676dd6d6b67585d"
+ },
+ "recipe": {
+ "sha256": "0dwya22y92k7x2s223az1g8hmrpfmk1sgwbr9z47raaa8kd52iad",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151210.1314",
+ "deps": [
+ "auto-complete",
+ "cl-lib",
+ "csharp-mode",
+ "dash",
+ "flycheck",
+ "json",
+ "popup",
+ "s"
+ ]
+ },
+ "project-local-variables": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/project-local-variables.el",
+ "sha256": "1bb5b6hxg3gvwf0sqwkd97nnipsmr60py0rnsfhgvizn4cj3khhw"
+ },
+ "recipe": {
+ "sha256": "0mrf7p420rmjm8ydwc5blpxr6299pdg3sy3jwz2zz0420gkp0ihl",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20080502.1152",
+ "deps": []
+ },
+ "company-racer": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "emacs-pe",
+ "repo": "company-racer",
+ "sha256": "1lk3fqsgbi6mg4hrpc9gy4hbfp9snyj4yvc0zh8iqqw5nx12dab4",
+ "rev": "c31f7cab8c2f9c376ff0bd48e56dbc30a32e4b00"
+ },
+ "recipe": {
+ "sha256": "0zc8dzvsjz5qsrwhv7x9f7djzvb9awacc3pgjirsv8f8sp7p3am4",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150628.2133",
+ "deps": [
+ "cl-lib",
+ "company",
+ "deferred",
+ "emacs"
+ ]
+ },
+ "lang-refactor-perl": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "jplindstrom",
+ "repo": "emacs-lang-refactor-perl",
+ "sha256": "135k7inkvdz51j7al3nndaamrkyn989vlv1mxcp8lwx8cgq0rqfj",
+ "rev": "691bd69639de6b7af357e3b7143563ececd9c497"
+ },
+ "recipe": {
+ "sha256": "02fv25d76rvxqzxs48j4lkrifdhqayyb1in05ryyz2pk9x5hbax9",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20131122.1527",
+ "deps": []
+ },
+ "top-mode": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/top-mode.el",
+ "sha256": "0a5rl1cgznycqwx4r48mh69lgm8ixbnlfzbqdyvclgm8fldbannn"
+ },
+ "recipe": {
+ "sha256": "0hrjlbiz827v9yf4086wlghw64rhvvlsbzv8lzs6pprdwbpr9pdx",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20130605.1239",
+ "deps": []
+ },
+ "gnuplot-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "mkmcc",
+ "repo": "gnuplot-mode",
+ "sha256": "1pss9a60dh6i277pkp8j5g1v5h7qlh11w2fki50qcp0zglyw1kaq",
+ "rev": "296ff8d263513cdfb8e85b06e2441c751565b793"
+ },
+ "recipe": {
+ "sha256": "1avpik06cmi4h6v6039c64b4zw1r1nsg3nrryl254gl881pysfxg",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151123.139",
+ "deps": []
+ },
+ "show-css": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "smmcg",
+ "repo": "showcss-mode",
+ "sha256": "0n38dbyw039lpdxzbhngndqfhcfgsx570bpflrb5wdh2mq5w57md",
+ "rev": "1b8c330644c06e6d99ec5da8a9722c918b2ea039"
+ },
+ "recipe": {
+ "sha256": "1b3n8h39m85inxsqvzwgb9fqnqn2sgib91hrisn1gpgfyjydzkr7",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140816.1208",
+ "deps": [
+ "dom"
+ ]
+ },
+ "picolisp-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "flexibeast",
+ "repo": "picolisp-mode",
+ "sha256": "0p91ysyjksbravnw3l78mshay6swgb5k1zi5bbppppk8zkmdp115",
+ "rev": "1a537b14090813f46cbba54636d40365e1a8067e"
+ },
+ "recipe": {
+ "sha256": "1n56knbapyfs8n23arzlz27y0q4846r64krwlwh8agfqkcdw9dp5",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150516.355",
+ "deps": []
+ },
+ "highlight-numbers": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "Fanael",
+ "repo": "highlight-numbers",
+ "sha256": "0ffhc5s0h34064bix4qyiiyx30m4hpv0phmxwcrwiyvanj9ggfai",
+ "rev": "e1245b27a732ec43c1562f825533fe147759d24e"
+ },
+ "recipe": {
+ "sha256": "1bywrjv9ybr65mwkrxggb52jdqn16z8acgs5vqm0faq43an8i5yv",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150531.807",
+ "deps": [
+ "emacs",
+ "parent-mode"
+ ]
+ },
+ "flash-region": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "Fuco1",
+ "repo": "flash-region",
+ "sha256": "0z77lm6jv2w5z551pwarcx6xg9kx8fgms9dlskngfvnzbqkldj1f",
+ "rev": "261b3597b23cdd40e5c14262a5687bcc6c1d0901"
+ },
+ "recipe": {
+ "sha256": "1rgg7j34ka0nj1yjl688asim07bbz4aavh67kly6dzzwndr0nw8c",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20130923.1317",
+ "deps": []
+ },
+ "org-toodledo": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "myuhe",
+ "repo": "org-toodledo",
+ "sha256": "014337wimvzy0rxh2p2c647ly215zcyhgym2hcljkdriv15cafna",
+ "rev": "2c91a92bd07ae4a546771b018a6faa0e06399968"
+ },
+ "recipe": {
+ "sha256": "0c7qr0jsc4iyrwkc22xp9nmk6984v7q1k0rvpd62m07lb5gvbiq3",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150301.513",
+ "deps": [
+ "cl-lib",
+ "emacs",
+ "request-deferred"
+ ]
+ },
+ "occur-context-resize": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "dgtized",
+ "repo": "occur-context-resize.el",
+ "sha256": "1y67mfkmzjdwnah6knc1v9rxcvnzi3dxw9f5gaz4layy7ir61b8f",
+ "rev": "e64898124528244134bd125aaa39e396406b01e8"
+ },
+ "recipe": {
+ "sha256": "0sp5v4rwqgqdj26gdkrmjvkmbp4g6jq4lrn2c3zm8s2gq0s3l6ri",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140826.1449",
+ "deps": []
+ },
+ "evil-surround": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "timcharper",
+ "repo": "evil-surround",
+ "sha256": "15vy2l6q0zm50wknw4fnz2v3j81p77y4ya7clk66lia3qdca4z9v",
+ "rev": "9f1ab3c302d585c3489f0429b904e7e6e3204e94"
+ },
+ "recipe": {
+ "sha256": "1bcjxw0yrk2bqj5ihl5r2c4id0m9wbnj7fpd0wwmw9444xvwp8ag",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151210.1418",
+ "deps": []
+ },
+ "dts-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "bgamari",
+ "repo": "dts-mode",
+ "sha256": "0cafvhbpfqd8ajqg2757fs64kryrl2ckvbp5abldb4y8fa14pb9l",
+ "rev": "6ec1443ead16105234765f9b48df9b4aca562e61"
+ },
+ "recipe": {
+ "sha256": "1k8cbiayajbzwkm0s0kyin0qpq9yhymidz0srs4hbvsnb6hvp234",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150403.1804",
+ "deps": []
+ },
+ "js2-highlight-vars": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "unhammer",
+ "repo": "js2-highlight-vars.el",
+ "sha256": "1gad5a18m3jfhnklsj0ka3p2wbihh1yvpcn7mwlmm7cjjxcaly9g",
+ "rev": "5857999e6a376810816a0bee71f6d235ffe8911d"
+ },
+ "recipe": {
+ "sha256": "07bq393g2jy8ydvaqyqn6vdyfvyminvgi239yvwzg5g9a1xjc475",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150914.308",
+ "deps": [
+ "js2-mode"
+ ]
+ },
+ "processing-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "ptrv",
+ "repo": "processing2-emacs",
+ "sha256": "1smw786dcjvdn2j6bwqn2rfzhw039rrhxiv7vlrgzm0fyy2v1q6h",
+ "rev": "a57415e523c9c3faeef02fa62a2b749270c4cc33"
+ },
+ "recipe": {
+ "sha256": "184yg9z14ighz9djg53ji5dgnb98dnxkkwx55m8f0f879x31i89m",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150217.632",
+ "deps": []
+ },
+ "csharp-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "josteink",
+ "repo": "csharp-mode",
+ "sha256": "1xnfn7ag9xm1980h8hssac9n3ng6rf7ffqb67vjbjw14gb7vxd0l",
+ "rev": "a553430c3f55b12db3af3da14dd0a1b45e3277fb"
+ },
+ "recipe": {
+ "sha256": "17j84qrprq492dsn103dji8mvh29mbdlqlpsszbgfdgnpvfr1rv0",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151217.21",
+ "deps": []
+ },
+ "evil-avy": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "louy2",
+ "repo": "evil-avy",
+ "sha256": "1q6znbnshk45mdglx519qlbfhb7g47qsm245i93ka4djsjy55j9l",
+ "rev": "2dd955cc3ecaa7ddeb67b295298abdc6d16dd3a5"
+ },
+ "recipe": {
+ "sha256": "1hc96dd78yxgr8cs9sk9y1i5h1qnyk110vlb3wnlxv1hwn92qvrd",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150908.248",
+ "deps": [
+ "avy",
+ "cl-lib",
+ "emacs",
+ "evil"
+ ]
+ },
+ "evil-mc": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "gabesoft",
+ "repo": "evil-mc",
+ "sha256": "0w5z644hx5h9rscq13aqgmbr4mlx2dx3p1q7qhc0jkffhmckk09k",
+ "rev": "a56f83460a6a90dc504f5935b0ab105810a41179"
+ },
+ "recipe": {
+ "sha256": "0cq4xg6svb5gz4ra607wy768as2igla4h1xcrfnxldknk476fqqs",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151128.2032",
+ "deps": [
+ "cl-lib",
+ "emacs",
+ "evil"
+ ]
+ },
+ "bbdb-csv-import": {
+ "fetch": {
+ "tag": "fetchFromGitLab",
+ "owner": "iankelling",
+ "repo": "bbdb-csv-import",
+ "sha256": "1h9vi9wb3dzzjrw5zfypk60afzzshxa3qmnbc24ypby5dr7qy91l",
+ "rev": "7739d10ebe1787a72aa74085e9baedd0f4988b00"
+ },
+ "recipe": {
+ "sha256": "0r7pc2ypd1ydqrnvcqmsg69rm047by7k0zhm563538ra82597wnm",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140802.642",
+ "deps": [
+ "bbdb",
+ "dash",
+ "pcsv"
+ ]
+ },
+ "all-ext": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/all-ext.el",
+ "sha256": "10j70bwa28xpmqwigvls76jg6vz0iky88lmkq4pk35bg3rz09r4m"
+ },
+ "recipe": {
+ "sha256": "1zi266cm5hpfhnnnzbsm4s1w0lsy4sj5z8d020y0cg57yn2v62dv",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20130824.706",
+ "deps": [
+ "all"
+ ]
+ },
+ "cherry-blossom-theme": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "inlinestyle",
+ "repo": "emacs-cherry-blossom-theme",
+ "sha256": "0m97xr6lddy2jdmd4bl4kbp2568p4n110yfa9k7fqc20ihq8jkyd",
+ "rev": "eea7653e00f35973857ee23b27bc2fae5e753e50"
+ },
+ "recipe": {
+ "sha256": "1i3kafj3m7iij5mr0vhg45zdnkl9pg9ndrq0b0i3k3mw7d5siq7w",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150621.2242",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "wanderlust": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "wanderlust",
+ "repo": "wanderlust",
+ "sha256": "1181fhazm2r9j9w3yc6cjm0j0lwgv94pz15qsdmg31z43w55l0qk",
+ "rev": "912c443a912e037d898941397b747d3325aa01b3"
+ },
+ "recipe": {
+ "sha256": "0lq7fvqc0isv49lcm7ql6prc3hpcj5cx4kf8f4gcnfv5k8159cq9",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151118.1727",
+ "deps": [
+ "semi"
+ ]
+ },
+ "private": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "cheunghy",
+ "repo": "private",
+ "sha256": "0zng64f5vwnpkf9fk59yv1ndc646q608a6awr1y9qk0mhzbfzhqm",
+ "rev": "9266d01c095895cc3ee9de95bc20511e88353755"
+ },
+ "recipe": {
+ "sha256": "1glpcwcyndyn683q9mg99hr0h3l8pz7rrhbnfak01v826d5cnk9g",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150121.1957",
+ "deps": [
+ "aes"
+ ]
+ },
+ "jquery-doc": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "ananthakumaran",
+ "repo": "jquery-doc.el",
+ "sha256": "0gh2bgmsbi9lby89ssvl49kpz07jqrfnyg47g6b9xmf5rw42s1z9",
+ "rev": "24032284919b942ec27707d929bdd8bf48420062"
+ },
+ "recipe": {
+ "sha256": "0pyg90izdrb9mvpbz9nx21mp8m3svqjnz1jr8i7wqgfjxsxdklxj",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150812.258",
+ "deps": []
+ },
+ "mallard-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "jhradilek",
+ "repo": "emacs-mallard-mode",
+ "sha256": "18x3cssfn81k8hg4frj7dhzphg784321z51wbbvn3bjhq7s6j3a2",
+ "rev": "c48170c1ace4959abcc5fb1df0d4cb149cff44c1"
+ },
+ "recipe": {
+ "sha256": "0y2ikjgy107kb85pz50vv7ywslqgbrrkcfsrd8gsk1jky4qn8izd",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20131203.2225",
+ "deps": []
+ },
+ "i2b2-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "danlamanna",
+ "repo": "i2b2-mode",
+ "sha256": "17k41rah17l9kf7bvlm83x71nzz4aizgn7254cl5sb59mdhcm8pm",
+ "rev": "db10efcfc8bed369a516bbf7526ede41f98cb95a"
+ },
+ "recipe": {
+ "sha256": "172qnprmfliic3rszzg3g7q015i3dchd23skrbdikg0kxj5c57lf",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140709.2004",
+ "deps": []
+ },
+ "ess-R-object-popup": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "myuhe",
+ "repo": "ess-R-object-popup.el",
+ "sha256": "0q8pbaa6wahli6fh0kng5zmnypsxi1fr2bzs2mfk3h8vf4nikpv0",
+ "rev": "7e1f601bfba72de0fda44d9c82f96028ecbb9948"
+ },
+ "recipe": {
+ "sha256": "1dxwgahfki6d6ywh85ifk3kq6f2a1114kkd8xcv4lcpzqykp93zj",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20130302.536",
+ "deps": [
+ "ess",
+ "popup"
+ ]
+ },
+ "solarized-theme": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "bbatsov",
+ "repo": "solarized-emacs",
+ "sha256": "1xws08ppzh5mz7s0j0pv393zk0hr10vdcb5hya5kfscq8wvkf4p1",
+ "rev": "7a43652689de5188198c77715e2dbc111de760bf"
+ },
+ "recipe": {
+ "sha256": "15d8k32sj8i11806byvf7r57rivz391ljr0zb4dx8n8vjjkyja12",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151211.735",
+ "deps": [
+ "cl-lib",
+ "dash"
+ ]
+ },
+ "tab-group": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "tarao",
+ "repo": "tab-group-el",
+ "sha256": "0lfvgbgvsm61kv5mcjnhnfjcnr7fy1015y0hndkf9xvdlw4hahr4",
+ "rev": "5a290ec2608e4100fb188fd60ecb77affcc3465b"
+ },
+ "recipe": {
+ "sha256": "1i5lxpf3wmqnqj9mzgcn4gp1gjxp737awrzl1dml5wnarbbj4fs9",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140306.850",
+ "deps": []
+ },
+ "pig-snippets": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "motus",
+ "repo": "pig-mode",
+ "sha256": "1yg9n265ljdjlh6a3jrjwyvj3f76wp68x25bl0p8dxrrsyr9kvfx",
+ "rev": "af4200c88a50264b63fa162a02860f3f54c8755b"
+ },
+ "recipe": {
+ "sha256": "1sqi0a2dsqgmabkrncxiyrhibyryyy25d11b15ybhlngd05wqbx2",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20130913.124",
+ "deps": [
+ "yasnippet"
+ ]
+ },
+ "closure-lint-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "r0man",
+ "repo": "closure-lint-mode",
+ "sha256": "0v0wdq0b5jz4x0d7dl3ilgf3aqp2hk375db366ij6gxwd0b9i3na",
+ "rev": "bc3d2fd5c35580bf1b8af43b12484c95a343b4b5"
+ },
+ "recipe": {
+ "sha256": "1xmi1gjgayd5xbm3xx721xv57ns3x56r8ps94zpwyf2znpdchqfy",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20101118.1524",
+ "deps": []
+ },
+ "helm-jstack": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "raghavgautam",
+ "repo": "helm-jstack",
+ "sha256": "0vhqpcv8xi6a6q7n6xxahdzijr1x5s40fvk9nc44q55psbyv627g",
+ "rev": "2064f7215dcf4ccbd6a7b8784223251507746da4"
+ },
+ "recipe": {
+ "sha256": "0giix1rv2jrmdxyg990w90ivl8bvgbbvah6nkpj7gb6vbnm15ldz",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150602.2322",
+ "deps": [
+ "cl-lib",
+ "emacs",
+ "helm"
+ ]
+ },
+ "osx-trash": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "lunaryorn",
+ "repo": "osx-trash.el",
+ "sha256": "1l231168bjqz6lwzs0r9vihxi53d46csrr2gq7g33lg1zm3696ah",
+ "rev": "a8fe326624e27a0e128c68940c7a9efb001ceee6"
+ },
+ "recipe": {
+ "sha256": "1f6pi53mhp2pvrfjm8544lqqj36gzpzxq245lzvv91lvqkxr9ysj",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150723.935",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "org-readme": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "mattfidler",
+ "repo": "org-readme",
+ "sha256": "1q3s12s0ll7jhrnd3adkaxv7ff69ppprv0pyl5f6gy8y51y63k8d",
+ "rev": "4cb9f768d282a2835b4510b6504ff9ede487007d"
+ },
+ "recipe": {
+ "sha256": "1qqbsgspd006gy0kc614w7bg6na0ygmflvqkmw47899pbgj81hxh",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151204.617",
+ "deps": [
+ "cl-lib",
+ "header2",
+ "http-post-simple",
+ "lib-requires",
+ "yaoddmuse"
+ ]
+ },
+ "org2jekyll": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "ardumont",
+ "repo": "org2jekyll",
+ "sha256": "064kw64w9snm0lbshxn8d6yd9xvyislhg37fmhq1w7vy8lm61xvf",
+ "rev": "a12173b9507b3ef54dfebb5751503ba1ee93c6aa"
+ },
+ "recipe": {
+ "sha256": "1j9d6xf5nsakifxwd4zmjc29lbj46ffn3z109k2y2yhz7q3r9hzv",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150906.847",
+ "deps": [
+ "dash-functional",
+ "deferred",
+ "s"
+ ]
+ },
+ "pastels-on-dark-theme": {
+ "fetch": {
+ "tag": "fetchgit",
+ "url": "https://gist.github.com/1974259.git",
+ "sha256": "c53b4f2c7449bf74648c091f249c33da3ddd8f621474a8901745b4e985cb26ab",
+ "rev": "854839a0b4bf8c3f6a7d947926bf41d690547002"
+ },
+ "recipe": {
+ "sha256": "0zdr29793gg229r47yjb3plagxc9pszqyy4sx81ffp3rpdf0nlbh",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20120304.1222",
+ "deps": []
+ },
+ "bing-dict": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "cute-jumper",
+ "repo": "bing-dict.el",
+ "sha256": "0yjywdzrbp821d4krv1jxnpwpb156j020mzvmv4pkkd0l1ivzk7m",
+ "rev": "4d8713c0134b3b44cb7607802bb06a7be9a9a202"
+ },
+ "recipe": {
+ "sha256": "0s5pd08rcnvmgi1hw17xbzvswlv0yni6h2h2gccrjmf6izi8whh1",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151216.1954",
+ "deps": []
+ },
+ "django-manage": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "gopar",
+ "repo": "django-manage",
+ "sha256": "15i25zh54b2fqji0qmkg502051ymccih6pgqnzq02c43dpnsqhqv",
+ "rev": "91ce758c830f06b33b7d04cc66dd5ec131bd4398"
+ },
+ "recipe": {
+ "sha256": "0j95g7fps28xhlrikkg61xgpbpf52xb56swmns2qdib6x1xzd6rh",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151025.130",
+ "deps": [
+ "hydra"
+ ]
+ },
+ "ctable": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "kiwanami",
+ "repo": "emacs-ctable",
+ "sha256": "07vasdlai49qs0nsmq2cz1kcq1adqyarv8199imgwwcbh4vn7dqb",
+ "rev": "cd673a09a80ce4e9e102ffe2e3d7e6bfb9d652b0"
+ },
+ "recipe": {
+ "sha256": "040qmlgfvjc1f908n52m5ll2fizbrhjzbd0kgrsw37bvm3029rx1",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140304.1859",
+ "deps": []
+ },
+ "elscreen": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "knu",
+ "repo": "elscreen",
+ "sha256": "055kam18k4ni1zw3310cpsvdnrp62d579r30lq67ig2lq3yxzc1m",
+ "rev": "249653a4a4b47c9b6306c2c29fa3753bc7342e61"
+ },
+ "recipe": {
+ "sha256": "1mlqbw14ilk6d3ba38kfw50pnlhb9f6sm5hy9dw58gp59siark5s",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151025.2000",
+ "deps": []
+ },
+ "highlight-indent-guides": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "DarthFennec",
+ "repo": "highlight-indent-guides",
+ "sha256": "10m1cr5plzsxbq08lck4c2w0whcdrnl9h2qm4bbr9srhnpry7fxj",
+ "rev": "4473af2bbeb80d50681a64b66f5891262cf52346"
+ },
+ "recipe": {
+ "sha256": "00ghp677qgb5clxhdjarfl8ab3mbp6v7yfsldm9bn0s14lyaq5pm",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151112.1427",
+ "deps": []
+ },
+ "ivs-edit": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "kawabata",
+ "repo": "ivs-edit",
+ "sha256": "1926pyfsbr6j7cn3diq8ibs0db94rgsf0aifvbqrqp4grs85pkva",
+ "rev": "c496e85f93f6f00e723d9df0ea0703f6c672826b"
+ },
+ "recipe": {
+ "sha256": "0gzhvzrfk17j2vwlg82f5ifk4dcfc1yv7barcij38ckran8cqmb2",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140720.546",
+ "deps": [
+ "cl-lib",
+ "dash",
+ "emacs"
+ ]
+ },
+ "typing": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/typing.el",
+ "sha256": "0mgvpdp3vlvjy32d163h2mzsf9j2ij2f542sdr3rsy8l80n6nx31"
+ },
+ "recipe": {
+ "sha256": "0b72lbzji105wzvsi58l6pjc08qcwrm5ddf42irdxi956081pzp3",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20121026.1618",
+ "deps": []
+ },
+ "pcmpl-git": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "leoliu",
+ "repo": "pcmpl-git-el",
+ "sha256": "03ckgbp38fmsmh9wxjqpw97p2vkaqq7l63yg3lc6xczjqj12m5dk",
+ "rev": "2db904452b7367a9bf84a926e886945fc9128fad"
+ },
+ "recipe": {
+ "sha256": "12y9pg1g4i1ghnjvgfdpa6p84h4bcqrr23y9bazwl9n6aj20cmxk",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140218.2004",
+ "deps": []
+ },
+ "leuven-theme": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "fniessen",
+ "repo": "emacs-leuven-theme",
+ "sha256": "18nyb8bb16br2qpif33gz51sqzl3afh9mavzxrcqi40bgmfzpj0n",
+ "rev": "aeea1054e55a4b9f8318bc95cf97c51b04387fa0"
+ },
+ "recipe": {
+ "sha256": "0pm5majr9cmj6g4zr7vb55ypk9fmfbvxx78mgmgignknbasq9g9a",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151105.952",
+ "deps": []
+ },
+ "snippet": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "pkazmier",
+ "repo": "snippet.el",
+ "sha256": "1nyrfbjrg74wrqlh8229rf7ym07k2a0wscjm0kbg3sam9ryc546y",
+ "rev": "11d00dd803874b93836f2010b08bd2c97b0f3c63"
+ },
+ "recipe": {
+ "sha256": "1lgpw69k5a82y70j7nximdj0bl5nzr4jhjr5fkx1cvz8hhvgdz6j",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20130210.1715",
+ "deps": []
+ },
+ "ess": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "emacs-ess",
+ "repo": "ESS",
+ "sha256": "1j2i8n34kn6lkz70fc4c0sk0sxv348a61asc3wbz55a2hvys8z0a",
+ "rev": "837454b76475a4eb3256e288fe4149a927faefa9"
+ },
+ "recipe": {
+ "sha256": "02kz4fjxr0vrj5mg13cq758nzykizq4dmsijraxv46snvh337v5i",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151217.744",
+ "deps": [
+ "julia-mode"
+ ]
+ },
+ "ocp-indent": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "OCamlPro",
+ "repo": "ocp-indent",
+ "sha256": "0r44bh9nd2f6r9vz4xzv6mri91lc4276znaj29l974q0f7i3b3ad",
+ "rev": "2d79c735ddff135ba29309af9f9e8a976a94e312"
+ },
+ "recipe": {
+ "sha256": "0wc4z9dsnnyr24n3vg1npvc3rm53av8bpbvrl8kldxxdiwgnbkjw",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150914.332",
+ "deps": []
+ },
+ "uuid": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "nicferrier",
+ "repo": "emacs-uuid",
+ "sha256": "0r74gw8gcbrr62rvj4anz0c3n6kwi1xpb42d3pkzlh4igblhi5zj",
+ "rev": "1519bfeb0e31602b840bc8dd35d7c7e732c159fe"
+ },
+ "recipe": {
+ "sha256": "13xjnawir9i83j2abxxkl12gz3wapgbk56cps3qyfgql02bfk2rw",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20120910.351",
+ "deps": []
+ },
+ "launch": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "sfllaw",
+ "repo": "emacs-launch",
+ "sha256": "0ciycsqzyj6ld60c7sfqjq59ln3jvk3w9vy606kqzpcvj01ihmv1",
+ "rev": "e7c3b573fc05fe4d3d322389079909311542e799"
+ },
+ "recipe": {
+ "sha256": "043gwz583pa1wv84fl634p1v86lcsldsw7qkjbm6y678q5mms0m6",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20130619.1704",
+ "deps": []
+ },
+ "hoa-pp-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "hoaproject",
+ "repo": "Contributions-Emacs-Pp",
+ "sha256": "0g2r4d0ivbadqw1k8jsv0jwv8krpfahsg0qmzyi909p2yfddqk1l",
+ "rev": "925b79930a3f4377b0fb2a36b3c6d5566d4b9a8e"
+ },
+ "recipe": {
+ "sha256": "01ijfn0hd645j6j88rids5dsanmzwmky37slf50yqffnv69jwvla",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151027.236",
+ "deps": [
+ "emacs",
+ "names"
+ ]
+ },
+ "eldoc-extension": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/eldoc-extension.el",
+ "sha256": "13ncpp3hrwk0h030c5nnm2zfiingilr5b876jsf2wxmylg57nbch"
+ },
+ "recipe": {
+ "sha256": "0azkdx4ncjhb7qyhyg1a5pxgqqf2z1wq9iz802j0nxxnjzh9ny24",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140306.845",
+ "deps": []
+ },
+ "2048-game": {
+ "fetch": {
+ "tag": "fetchhg",
+ "url": "https://bitbucket.com/zck/2048.el",
+ "sha256": "1p9qn9n8mfb4z62h1s94mlg0vshpzafbhsxgzvx78sqlf6bfc80l",
+ "rev": "ea6c3bce8ac1"
+ },
+ "recipe": {
+ "sha256": "0z7x9bnyi3qlq7l0fskb61i6yr9gm7w7wplqd28wz8p1j5yw8aa0",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151026.1433",
+ "deps": []
+ },
+ "mag-menu": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "chumpage",
+ "repo": "mag-menu",
+ "sha256": "1flamyk7z3r723cczqra0f4yabc6kmgwjaw2bvs3kisppqmmz72g",
+ "rev": "9b9277021cd09fb1dba64b1d2a00705d20914bd6"
+ },
+ "recipe": {
+ "sha256": "1r1yisjnqxl9llpf91rwqp4q47jc4qp32xnkl8wzsgr0r2qf5yk2",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150505.1350",
+ "deps": [
+ "splitter"
+ ]
+ },
+ "seethru": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "Benaiah",
+ "repo": "seethru",
+ "sha256": "0qd462qbqdx53xh3ddf76chiljxf6s43r28v2ix85gsig7nm5pgr",
+ "rev": "d87e231f99313bea75b1e69e48c0f32968c82060"
+ },
+ "recipe": {
+ "sha256": "1lcwslkki9s15xr2dmh2iic4ax8ia0j20hjnjmkv612wv04b806v",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150218.1229",
+ "deps": [
+ "shadchen"
+ ]
+ },
+ "helm-w32-launcher": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "Fanael",
+ "repo": "helm-w32-launcher",
+ "sha256": "0xlz9rxx7y9pkrzvxmv42vgys5iwx75zv9g50k8ihwc08z80dhcq",
+ "rev": "3e59ad62b89dd21d334af0203d445a83eb25dc5b"
+ },
+ "recipe": {
+ "sha256": "0bzn2vhspn6lla815qxwsl9gwfyiwgwmnysr6rjpyacmi17d73ri",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20141223.1414",
+ "deps": [
+ "cl-lib",
+ "emacs",
+ "helm"
+ ]
+ },
+ "org-iv": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "kuangdash",
+ "repo": "org-iv",
+ "sha256": "1n7l70pl9x6mh7dyyiihg4zi1advzlaq2x7vivhas1i2120884i6",
+ "rev": "c45e5ab30183f7b1934f636758750ee2f8a05346"
+ },
+ "recipe": {
+ "sha256": "1akhabp6mdw1h7zms6ahlfvwizl07fwsizwxpdzi4viggfccsfwx",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151213.914",
+ "deps": [
+ "cl-lib",
+ "impatient-mode",
+ "org"
+ ]
+ },
+ "ac-ispell": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "syohex",
+ "repo": "emacs-ac-ispell",
+ "sha256": "1cq73bdv3lkn8v3nx6aznygqaac9s5i7pvirl8wz9ib31hsgwpbk",
+ "rev": "22bace7387e9012002a6a444922f75f9913077b0"
+ },
+ "recipe": {
+ "sha256": "1vsy2qjh60n5lavivpqhhcpg5pk8zz2r0wy1sb65capn841zdi67",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151031.2126",
+ "deps": [
+ "auto-complete",
+ "cl-lib"
+ ]
+ },
+ "buffer-buttons": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "rpav",
+ "repo": "buffer-buttons",
+ "sha256": "1p5a29bpjqr1gs6sb6rr7y0j06nlva23wxkwfskap25zvjpgwbvq",
+ "rev": "2feb8494fa7863b98256bc85da670d74a3a8a975"
+ },
+ "recipe": {
+ "sha256": "1p0ydbrff9197sann3s0d7hpav7r9g461w4llncafmy31w7m1dn6",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150106.839",
+ "deps": []
+ },
+ "alect-themes": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "alezost",
+ "repo": "alect-themes",
+ "sha256": "0hvf7ydd2p3dfk5hqjqcbaajhgihkyvlwvqcr97a8jknznk7hfzp",
+ "rev": "05d7515d936bbf48ad3fa961220f076d2e5d2312"
+ },
+ "recipe": {
+ "sha256": "04fq65qnxlvl5nc2q037c6yb4nf422dfw2913gv6zfh9rdmxsks8",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150920.1324",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "evil-exchange": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "Dewdrops",
+ "repo": "evil-exchange",
+ "sha256": "1d9hxyplvjmv3hhgkp5snyssmddmca38r5v58bhba9gvk61lfcg9",
+ "rev": "22d9b6ce1b979c0560b32637d0c2b28bf4082d2b"
+ },
+ "recipe": {
+ "sha256": "1mvw7w23yfbfmhzj6wimslbryb0gppryw24ac0wh4fzl9rdcma4r",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20141128.43",
+ "deps": [
+ "cl-lib",
+ "evil"
+ ]
+ },
+ "markup": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "leoc",
+ "repo": "markup.el",
+ "sha256": "1i95b15mvkkki2iq8hysdr7jr1d5nix9jjkh7jz0alvaybqlsnqi",
+ "rev": "5ff4874ce897db146f5fd2b3d32147a0d404e1e5"
+ },
+ "recipe": {
+ "sha256": "0yw4b42nc2n7nanqvj596hwjf0p4qc7x6g2d9g5cwi7975iak8pf",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20130207.1509",
+ "deps": []
+ },
+ "jira": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/jira.el",
+ "sha256": "18b6hdqk59gnqh4ibq8lj59kbsg5gbyfb7vfcvpgmxjikpl3cgkz"
+ },
+ "recipe": {
+ "sha256": "0cf5zgkxagvka5v6scgyxqx4mz1n7lxbynn3gl2a4s9s64jycsy6",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20131210.1222",
+ "deps": []
+ },
+ "dired-k": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "syohex",
+ "repo": "emacs-dired-k",
+ "sha256": "13xpbbdd190lklz8jmj8nw8qm414kpkij9wrd7a9ws9j1jzj8x6s",
+ "rev": "4c5ae87f0198eaa4789a1fe85e9ef7cf5a8633e7"
+ },
+ "recipe": {
+ "sha256": "0lghdmy9qcjykscfxvfrz8cpp87qc0vfd03vw8nfpvwcs2sd28i8",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151107.2036",
+ "deps": [
+ "cl-lib",
+ "emacs"
+ ]
+ },
+ "stack-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "commercialhaskell",
+ "repo": "stack-ide",
+ "sha256": "0m26b44gdxbpz6v0f27rx1x9frph19ykfvnr6716fnrm074d53ah",
+ "rev": "c1e8416b2beb86c7f50109255d28379ca0b17735"
+ },
+ "recipe": {
+ "sha256": "0s0m2lj40php7bc2i3fy9ikd5rmx4v7zbxfkp9vadmlc5s7w25gf",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150923.1023",
+ "deps": [
+ "cl-lib",
+ "flycheck",
+ "haskell-mode"
+ ]
+ },
+ "pcmpl-args": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "JonWaltman",
+ "repo": "pcmpl-args.el",
+ "sha256": "0pwx1nbgciy28rivvrgka46zihmag9ljrs40bvscgd9rkragm4zy",
+ "rev": "2ba03b3125ada8037585e545b88bd85b79da5c37"
+ },
+ "recipe": {
+ "sha256": "0sry4zvr8xmzyygf2m5dms52srkd1apj3i7a3aj23qa8jvndx8vr",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20120912.24",
+ "deps": []
+ },
+ "eprime-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "AndrewHynes",
+ "repo": "eprime-mode",
+ "sha256": "1wwg46xdb488wxvglwvsy08vznrnmdmmbcvm9vb60dy3gqjmz7cw",
+ "rev": "17a481af26496be91c07139a9bfc05cfe722506f"
+ },
+ "recipe": {
+ "sha256": "0vswjcs24f3mdyw6ai7p21ab8pdn327lr2d6css0a5nrg539cn2g",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140513.1316",
+ "deps": []
+ },
+ "legalese": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/legalese.el",
+ "sha256": "0vjf2f5kpmgnw7904jsv2wnn6dcv654v7h1v917wmj72sy941xml"
+ },
+ "recipe": {
+ "sha256": "0xsf3w5h4g7wigrv5kbys7lf9lfv2cab5ch320p74l3l3r2lj9wz",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20100119.1548",
+ "deps": []
+ },
+ "tco": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "Wilfred",
+ "repo": "tco.el",
+ "sha256": "1krway6iw62dlr4ak3kj9llqh48xjf3d84nlincap7gkrw886l4q",
+ "rev": "d2224bd291e25724b06d8589d4d62d74ed32db24"
+ },
+ "recipe": {
+ "sha256": "0hfrzwjlgynk3mydrpmic9mckak37r22fdglrfas6zdihgrg152f",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140412.812",
+ "deps": [
+ "dash",
+ "emacs"
+ ]
+ },
+ "autobookmarks": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "Fuco1",
+ "repo": "autobookmarks",
+ "sha256": "01q3k8i8vrs7pcr507kh48np0bc6smanh0ald1hv9h4dylkq89k7",
+ "rev": "cec3a2ac60a382ee61996c17bd962bc5a2e45c4b"
+ },
+ "recipe": {
+ "sha256": "11zhg3y9fb5mq67fwsnjrql9mnwkp3hwib7fpllb3yyf2yywc8zp",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151120.1645",
+ "deps": [
+ "cl-lib",
+ "dash"
+ ]
+ },
+ "hayoo": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "benma",
+ "repo": "hayoo.el",
+ "sha256": "0pjxyhh8a02i54a9jsqr8p1mcqfl6k9b8gv9lnzb242gy4518y3l",
+ "rev": "3ca2fb0c4d5f337d0410c21b2702dd147014e984"
+ },
+ "recipe": {
+ "sha256": "1rqvnv5nxlsyvsa5my1wpfm82sw21s7kfbg80vrjmxh0mwlyv4p9",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140831.721",
+ "deps": [
+ "emacs",
+ "json"
+ ]
+ },
+ "dedukti-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "rafoo",
+ "repo": "dedukti-mode",
+ "sha256": "1haixiy94r50rfza64dypb7fi256231pf06g6p2il9kyscqg0zz2",
+ "rev": "7d9f459c87c84f1067eb87542da4549de5e38650"
+ },
+ "recipe": {
+ "sha256": "17adfmrhfks5f45ddr6ygjq870ac50vfzc5872ycv414zg0w4sa9",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150820.908",
+ "deps": []
+ },
+ "project-persist-drawer": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "rdallasgray",
+ "repo": "project-persist-drawer",
+ "sha256": "1nq320ph8fs9a197ji4mnw2xa24dld0r1nka476yvkg4azmcc9x8",
+ "rev": "35bbe132a4fab6a0fec15ce6c0fd2fe6a4aa9626"
+ },
+ "recipe": {
+ "sha256": "1jv2y2hcqakyvfibclzm7g4diw0bvsv3a8fa43yf19wb64jm8hdb",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151108.622",
+ "deps": [
+ "project-persist"
+ ]
+ },
+ "dos": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/dos.el",
+ "sha256": "0sfmcd1rq6wih9q7d9vkcfrw6gf7309mm7491jx091ij8m4p8ypp"
+ },
+ "recipe": {
+ "sha256": "0cpijbqpci96s0d6rwqz5bbi9b0zkan1bg8vdgib1f87r7g980nc",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140808.1635",
+ "deps": []
+ },
+ "pianobar": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "agrif",
+ "repo": "pianobar.el",
+ "sha256": "053jqzl0sp3dnl4919vi30xqrdcpi9jsqx5hndj1bprf7926w11d",
+ "rev": "9193e3888a8097dbe7ee58e4658cc6ec2a76b160"
+ },
+ "recipe": {
+ "sha256": "16vsf2cig9qjbh9s58zb5byjmyghxbsxpzpm5hyyrv251jap1jjn",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20120128.1501",
+ "deps": []
+ },
+ "image-archive": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "mhayashi1120",
+ "repo": "Emacs-image-archive",
+ "sha256": "0hacg0549vpgx7yyyc748i44zw5y825w1v7nb440wx7sdxp855nb",
+ "rev": "ff33f64d09432a8f5bf1714d4cf750c01626fe98"
+ },
+ "recipe": {
+ "sha256": "0x0lv5dr1gc9bnr3dn26bc9s1ccq2rp8c4a1licbi929f0jyxxfp",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150219.18",
+ "deps": [
+ "cl-lib",
+ "emacs"
+ ]
+ },
+ "nummm-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "agpchil",
+ "repo": "nummm-mode",
+ "sha256": "1i0yymsx8kin28bkrgwkk9ngsmjh0gh5j4hb0k03bq4fy799f2xx",
+ "rev": "81951e12032274543c5f7a585b29bd93961e94e4"
+ },
+ "recipe": {
+ "sha256": "10khhc6q0zjzrhsv4fgfdbs7qcwi1bgkwq4yqzidqcdndsailyh0",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20131117.414",
+ "deps": []
+ },
+ "el-spice": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "vedang",
+ "repo": "el-spice",
+ "sha256": "1sba405h1sy5vxg4ki631p4979gyaqv8wnwbgca5jp2pm8l3viri",
+ "rev": "65d9ec84b581a5867eebbc58de93958e992ca80d"
+ },
+ "recipe": {
+ "sha256": "0i0l3y9w1q9pf5zhvmsq4h427imix67jgcfwq21b6j82dzg5l4hg",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140805.1338",
+ "deps": [
+ "thingatpt+"
+ ]
+ },
+ "package-utils": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "Silex",
+ "repo": "package-utils",
+ "sha256": "138l07qmxj4fkvf43f1hdn4skadxb50c023bc5101l3njzmf74wa",
+ "rev": "4a56f411f98fd455556a3f1d6c16a577a22057a2"
+ },
+ "recipe": {
+ "sha256": "02hgh7wg68ysfhw5hckrpshzv4vm1vnm395d34x6vpgl4ccx7v9r",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150126.606",
+ "deps": [
+ "epl"
+ ]
+ },
+ "julia-shell": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "dennisog",
+ "repo": "julia-shell-mode",
+ "sha256": "0r4ajn3f1c8n0r831ihvzwyzy94aiv0ijqrwhpq0s85cqvzr7pq8",
+ "rev": "3e25a6b2e942dc323512f2530f48cbc8794cfd48"
+ },
+ "recipe": {
+ "sha256": "0182irlvk6nn71zk4j8xjgcqp4bxi7a2dbj44frrssy6018cd410",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151104.1252",
+ "deps": [
+ "julia-mode"
+ ]
+ },
+ "cycbuf": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "martinp26",
+ "repo": "cycbuf",
+ "sha256": "1d5i8sm1xrsp4v4myidfyb40hm3wp7hgva7dizg9gbb7prmn1p5w",
+ "rev": "1079b41c3eb27d65b66d4399959bb6253f84858e"
+ },
+ "recipe": {
+ "sha256": "0gyj48h5wgjawqq3j4hgk5a8d23nffmhd1q53kg7b9vfsda51hbw",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20131203.1437",
+ "deps": []
+ },
+ "ruby-additional": {
+ "fetch": {
+ "tag": "fetchsvn",
+ "url": "http://svn.ruby-lang.org/repos/ruby/trunk/misc/",
+ "sha256": "0gl8wcnm7pidvd8zy3w5lzxqj0qxs9d932350ncgnmxwfsfzkdk7",
+ "rev": "53195"
+ },
+ "recipe": {
+ "sha256": "0h0cxik8lp8g81bvp06mddikkk5bjdlch2wffcvsvi01is408w4w",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150306.1959",
+ "deps": [
+ "emacs",
+ "ruby-mode"
+ ]
+ },
+ "open-junk-file": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/open-junk-file.el",
+ "sha256": "1vjmgayksdgg54b46aqmvhd7a9arjx9p3jyrjs2z9262f6r288lj"
+ },
+ "recipe": {
+ "sha256": "0ybycprs5di9niai4hbmfq4xdacfgrzf1mwq1aj1hi53phl8l4di",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20130131.120",
+ "deps": []
+ },
+ "git-commit-insert-issue": {
+ "fetch": {
+ "tag": "fetchFromGitLab",
+ "owner": "emacs-stuff",
+ "repo": "git-commit-insert-issue",
+ "sha256": "0axy8r0cs8mdsxvs57p7gqyp4lpr5a2d49947j8ri7xmxp77jwp1",
+ "rev": "1bdfd1960bc279ca830e034a6708b25493b3f460"
+ },
+ "recipe": {
+ "sha256": "0mhpszm2y178dxgjv3kh2n744hg2kd60h16zbgmjf4f8228xw8j3",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151204.619",
+ "deps": [
+ "github-issues",
+ "helm",
+ "projectile",
+ "s"
+ ]
+ },
+ "seeing-is-believing": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "jcinnamond",
+ "repo": "seeing-is-believing",
+ "sha256": "19p3zp4cj7ik2gwzc5k6klqc4b8jc2hvm80yhczc5b7k223gp2bv",
+ "rev": "a698443529ea26fba3fd0748fe10439be7721e96"
+ },
+ "recipe": {
+ "sha256": "05aja5xycb3kpmxyi234l50h98f5m1fil6ll4f2xkpxwv31ba5rb",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151010.1229",
+ "deps": []
+ },
+ "cdnjs": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "yasuyk",
+ "repo": "cdnjs.el",
+ "sha256": "0aspci0zg8waa3l234l0f8fjfzm67z2gydfdwwpxksz49sm2s1jk",
+ "rev": "eac2b4d150907aeb2d568327d04775578c82887f"
+ },
+ "recipe": {
+ "sha256": "1clm86n643z1prxrlxlg59jg43l9wwm34x5d88bj6yvix8g6wkb7",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140217.1512",
+ "deps": [
+ "cl-lib",
+ "dash",
+ "deferred",
+ "f",
+ "pkg-info"
+ ]
+ },
+ "pdb-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "sixpi",
+ "repo": "pdb-mode",
+ "sha256": "1xkkyz7y08jr71rzdacb9v7gk95qsxlsshkdsxq8jp70irq51099",
+ "rev": "855fb18ebb73b5df30c8d7677c2bcd0f361b138a"
+ },
+ "recipe": {
+ "sha256": "1ihkxd15kx5m5xb9yxwz8wqbmyk9iaskry9szzdz1j4gjlczb6hy",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150128.1151",
+ "deps": []
+ },
+ "interval-list": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "Fuco1",
+ "repo": "interval-list",
+ "sha256": "1zv6m24ryls9hvla3hf8wzp6r7fzbxa1lzr1mb0wz0s292l38wjz",
+ "rev": "38af7ecf0a493ad8f487074938a2a115f3531177"
+ },
+ "recipe": {
+ "sha256": "0926z3lxkmpxalpq7hj355cjzbgpdiw7z4s8xdrpa1pi818d35zf",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150327.1218",
+ "deps": [
+ "cl-lib",
+ "dash",
+ "emacs"
+ ]
+ },
+ "beginend": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "DamienCassou",
+ "repo": "beginend",
+ "sha256": "1hyiz7iwnzbg1616q0w7fndllbnx4m98kakgxn04bsqib5fqk78p",
+ "rev": "c5bfdc3bb77a8c019aa4433cf12d3c45690c27bd"
+ },
+ "recipe": {
+ "sha256": "1y81kr9q0zrsr3c3s14rm6l86y5wf1a0kia6d98112fy4fwdm7kq",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150607.1201",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "org-if": {
+ "fetch": {
+ "tag": "fetchFromGitLab",
+ "owner": "elzair",
+ "repo": "org-if",
+ "sha256": "1iyqv34b7q2k73srshcnpvfzcadq47w4rzkqp6m1d3ajk8x2vypq",
+ "rev": "fab602cc1bbee7a4e99c0083e129219d3f9ed2e8"
+ },
+ "recipe": {
+ "sha256": "0h0jdyawz2j4mp33w85z8q77l37qid8palvw5n4z379qa0wr5h96",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150920.1013",
+ "deps": []
+ },
+ "recursive-narrow": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "nflath",
+ "repo": "recursive-narrow",
+ "sha256": "1mj7lyadzn3bwig3f9zariq5z4fg6liqnjvfd34yx88xc52nwf33",
+ "rev": "bc0cab88234ca92640d4b8da0d83e132c1897922"
+ },
+ "recipe": {
+ "sha256": "1bx8l8wjxrkv949c73dp93knbn1iwnblcm8iw822mq2mgbgwsa7f",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140902.1227",
+ "deps": []
+ },
+ "tidy": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/tidy.el",
+ "sha256": "0psci55a3angwv45z9i8wz8jw634rxg1xawkrb57m878zcxxddwa"
+ },
+ "recipe": {
+ "sha256": "09xb2k3k99hp3m725f31s6hlaxgl4fsaa1dylahxvdfddhbh290m",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20111222.1156",
+ "deps": []
+ },
+ "shift-text": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "sabof",
+ "repo": "shift-text",
+ "sha256": "13zsws8gq9a8nfk4yzlvfsvqjh9zbnanmw68rcna93yc5nc634nr",
+ "rev": "1be9cbf994000022172ceb746fe1d597f57ea8ba"
+ },
+ "recipe": {
+ "sha256": "1v9zk7ycc8k1qk1cfs2y1knygl686msmlilqy5a7mh0w0z9f3a2i",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20130831.1155",
+ "deps": [
+ "cl-lib",
+ "es-lib"
+ ]
+ },
+ "vimgolf": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "timvisher",
+ "repo": "vimgolf",
+ "sha256": "1i407ilhmk2qrk66ygbvizq964bdk502x7lvrzs4wxwfr5y8ciyj",
+ "rev": "289bef87963b660c0cf6ea1f648ac2440c609c88"
+ },
+ "recipe": {
+ "sha256": "1hvw2pfa5a984hm6wd33bf6zz6hmlprc6qs3g789dfx91qm890vn",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140814.1648",
+ "deps": []
+ },
+ "palimpsest": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "danielsz",
+ "repo": "Palimpsest",
+ "sha256": "1kbja107smdjqv82p84jx13jk1410c9vms89p1iy1jvn7s8g9fiq",
+ "rev": "69fe61494bfd24305bf7e387fa716474918eafa2"
+ },
+ "recipe": {
+ "sha256": "18kklfdlcg982pdrslh0xqa42h28f91bdm7q2zn890d6dcivp6bk",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20130731.1021",
+ "deps": []
+ },
+ "ac-geiser": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "xiaohanyu",
+ "repo": "ac-geiser",
+ "sha256": "02ifz25rq64z0ifxs52aqdz0iz4mi6xvj88hcn3aakkmsj749vvn",
+ "rev": "0e2e36532336f27e3dc3b01fff55ad1a4329817d"
+ },
+ "recipe": {
+ "sha256": "0v558qz1mp8b1bgk8kgdk5sx5mpd353mw77n5b0pw4b2ikzpz2mx",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20130929.147",
+ "deps": [
+ "auto-complete",
+ "geiser"
+ ]
+ },
+ "git-dwim": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/git-dwim.el",
+ "sha256": "074k1r8rkvyhhwnqy4gnyd7shidxgc25l1xq4hmnwjn13nsyqfnv"
+ },
+ "recipe": {
+ "sha256": "0vdd2cksiqbnxplqbpb16bcmp137fj3p9a7pa0622wx8vd5p0rkr",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20130130.1550",
+ "deps": []
+ },
+ "hound": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "ryoung786",
+ "repo": "hound.el",
+ "sha256": "1gm5nczq5lsxqkfb38ajffg65zwxkfqvqhk33bwnnd00rpa1ix6j",
+ "rev": "26fb047ff4e4c1fe5b66423cb29a7394b9ace665"
+ },
+ "recipe": {
+ "sha256": "0qri6bddd3c4sqvaqvmqw6xg46vwlfi1by3gc9i3izpq4xl1cr1v",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150217.1149",
+ "deps": [
+ "cl-lib",
+ "web"
+ ]
+ },
+ "tuareg": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "ocaml",
+ "repo": "tuareg",
+ "sha256": "1650j84yvvwci0b8zy40dsdp75ad5f4d9pvkf9kzd47dkafjsyca",
+ "rev": "bc94358eda8b6b1484e9daa83ac884fc0f5427d2"
+ },
+ "recipe": {
+ "sha256": "0wx723dmjlpm86xdabl9n8p22zbbxpapyfn6ifz0b0pvhh49ip7q",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151118.851",
+ "deps": [
+ "caml"
+ ]
+ },
+ "twilight-anti-bright-theme": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "jimeh",
+ "repo": "twilight-anti-bright-theme",
+ "sha256": "1bj2mpiklqcangjzbnz5wz7klsfvp0x397lidvf42awn7s2aax0n",
+ "rev": "c3a7b4177416031284da73f53b4dddaa27570bd7"
+ },
+ "recipe": {
+ "sha256": "1qfybk5akaxdahmjffqaw712v8d7kk4jqkj3hzp96kys2zv1r6f9",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140810.234",
+ "deps": []
+ },
+ "benchmark-init": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "dholm",
+ "repo": "benchmark-init-el",
+ "sha256": "058mic9jkwiqvmp3k9sfd6gb70ysdphnb1iynlszhixbrz5w7zs2",
+ "rev": "8e4c32f32ec869fe521fb4d3c0a69406830b4178"
+ },
+ "recipe": {
+ "sha256": "0dknch4b1j7ff1079z2fhqng7kp4903b3v7mhj15b5vzspbp3wal",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150905.438",
+ "deps": []
+ },
+ "octicons": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "syohex",
+ "repo": "emacs-octicons",
+ "sha256": "0dp7dhmgrq078rjhpm1cr993qjqz7qgy2z4sn73qw6j55va7d9kw",
+ "rev": "229286a6166dba8ddabc8c4d338798c6cd3cf67d"
+ },
+ "recipe": {
+ "sha256": "02f37bvnc5qvkvfbyx5wp54nz71bqm747mq1p5361sx091lllkxk",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151031.2240",
+ "deps": [
+ "cl-lib"
+ ]
+ },
+ "loc-changes": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "rocky",
+ "repo": "emacs-loc-changes",
+ "sha256": "0i0ainawjvfl3qix329hx01x7rxyfin2xgpjk7y5dgmh4p3xhv94",
+ "rev": "58000738accf2f80ea2bf210f7dea5914adb14ee"
+ },
+ "recipe": {
+ "sha256": "1akgij61b2ixpkchrriabwvx68cg4v5r5w9ncjrjh91hskjprfxh",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150302.1048",
+ "deps": []
+ },
+ "go-stacktracer": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "samertm",
+ "repo": "go-stacktracer.el",
+ "sha256": "0n5nsyfwx2pdlwx6bl35wrfyady5dwraimv92f58mhc344ajd70y",
+ "rev": "a2ac6d801b389f80ca4e2fcc1ab44513a9e55976"
+ },
+ "recipe": {
+ "sha256": "1laz2ggqydnyr7b36ggb7sphlib79dhp7nszw42wssmv212v94cy",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150430.1642",
+ "deps": []
+ },
+ "initsplit": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "dabrahams",
+ "repo": "initsplit",
+ "sha256": "031i0fihcisizip069rdv28nkzvq9krd9sj0lmyq1bj2d8729316",
+ "rev": "ec1d659a8121e874bcc87a2a5e5c3f68f24e5f68"
+ },
+ "recipe": {
+ "sha256": "0n9dk3x62vgxfn39jkmdg8wxsik0xqkprifgvqzyvn8xcx1blyyq",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20141219.1829",
+ "deps": []
+ },
+ "downplay-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "tobias",
+ "repo": "downplay-mode",
+ "sha256": "0s7swvfd7h8r0n3cjmkps6ary9vwg61jylfm4qrkp3idsz6is548",
+ "rev": "4a2c3addc73c8ca3816345c3c11c08af265baedb"
+ },
+ "recipe": {
+ "sha256": "1v6nga101ljzza8qj3lkmkzzl0vvzj4lsh1m69698s8prnczxr9b",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151125.1409",
+ "deps": []
+ },
+ "stupid-indent-mode": {
+ "fetch": {
+ "tag": "fetchgit",
+ "url": "https://gist.github.com/5487564.git",
+ "sha256": "242b90e4c403fbcadd40777cd98899c96aab78b84dea88dfa97583b734c9876b",
+ "rev": "e26ff5a2c4a582c6c1940bbcd204cfeed8e65222"
+ },
+ "recipe": {
+ "sha256": "12y8qxxs04qzy09m734qg0857g4612qdswx2bh9jk7dp886fpd7p",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20130816.1554",
+ "deps": []
+ },
+ "math-symbols": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "kawabata",
+ "repo": "math-symbols",
+ "sha256": "1chyxi096krjbi9zgbrnrkvwgmn4wygnia9m57m0jh4arlbm28la",
+ "rev": "666b1f00d9e106cf2a3a7d58c2262fe9a1404764"
+ },
+ "recipe": {
+ "sha256": "0sx9cgyk56npjd6z78y9cldbvjl5ipl7k1nc1sylg1iggkbwxnqx",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151121.1842",
+ "deps": [
+ "helm"
+ ]
+ },
+ "ruby-compilation": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "eschulte",
+ "repo": "rinari",
+ "sha256": "1kg83z10jw4ik0aapv9cjqlvqy31rln2am8vh3f77zh61qha37hx",
+ "rev": "be07b0f42aefa24c5d36c441d1f3f72e64fffaa4"
+ },
+ "recipe": {
+ "sha256": "1x1vpkjpx95sfcjhkx4cafypj0nkbd1i0mzxx3lmcrsmg8iv0rjc",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150709.140",
+ "deps": [
+ "inf-ruby"
+ ]
+ },
+ "flycheck-google-cpplint": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "flycheck",
+ "repo": "flycheck-google-cpplint",
+ "sha256": "0fykawnq9ch1vj76rsimwbmn2xxdamsnvbj4ahqaqhq7adb2wyrq",
+ "rev": "dc23300757c6762c018d536a5831aef2486f7a17"
+ },
+ "recipe": {
+ "sha256": "0llrvg6mhcsj5aascsndhbv99122zj32agxk1w6s8xn8ksk2i90b",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140806.1125",
+ "deps": [
+ "flycheck"
+ ]
+ },
+ "thing-cmds": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/thing-cmds.el",
+ "sha256": "0216gckb727hhzf230a3m3n9blyaa21djxcc77r4lf7g2h9g0b5m"
+ },
+ "recipe": {
+ "sha256": "133bm2cw9ar6m2amj0rrq4wbj9c3zl61gaprx0vlasxj2cyxs7yw",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150630.1632",
+ "deps": [
+ "hide-comnt"
+ ]
+ },
+ "rebox2": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "lewang",
+ "repo": "rebox2",
+ "sha256": "1xh9nxqfg9abcl41ni69rnwjfgyfr0pbl55dzyxsbh6sb36r3h8z",
+ "rev": "00634eca420cc48657b81e40e599ff8548083985"
+ },
+ "recipe": {
+ "sha256": "06ra50afjqac9ck1s9gaxy0sqxcb612wzd28s4q4imicqpgfxzjw",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20121113.700",
+ "deps": []
+ },
+ "alchemist": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "tonini",
+ "repo": "alchemist.el",
+ "sha256": "1waspq1apxk4l6m9wshhjp44nj1sci1xvk9pah9gy977j74ng0yl",
+ "rev": "2d9c2079c95a0dea0d564576e64dee2e758eea97"
+ },
+ "recipe": {
+ "sha256": "18jxw0zb7y34qbm4bcpfpb2656f0h9grmrbfskgp4ra4q5q3n369",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151210.49",
+ "deps": [
+ "company",
+ "dash",
+ "elixir-mode",
+ "emacs",
+ "pkg-info"
+ ]
+ },
+ "eopengrok": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "youngker",
+ "repo": "eopengrok.el",
+ "sha256": "1yzb7c0pl2hqzr34cp5ryym5k3ab9026kd3njmrlqykcqcjygm7k",
+ "rev": "1e471ee40145e73316ad5a965a44b46edbae68a3"
+ },
+ "recipe": {
+ "sha256": "0756x78113286hwk1i1m5s8xq04gh7zxb4fkmw58lg2ssff8q6av",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151118.109",
+ "deps": [
+ "cl-lib",
+ "dash",
+ "magit",
+ "s"
+ ]
+ },
+ "pretty-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "akatov",
+ "repo": "pretty-mode",
+ "sha256": "0ccqym98c6zdyrparj5n97bpp9rspxb3z5lqfcrjypp0kn04z1ss",
+ "rev": "3e0b88d3db20f89fda2cdce3f54371728dcfd05b"
+ },
+ "recipe": {
+ "sha256": "1zxi4nj7vnchiiz1ndx17b719a1wipiqniykzn4pa1w7dsnqg21f",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20141207.1352",
+ "deps": []
+ },
+ "function-args": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "abo-abo",
+ "repo": "function-args",
+ "sha256": "0m7fcw0cswypiwi5abg6vhw7a3agx9vhp10flbbbji6lblb0fya8",
+ "rev": "25e447d8a8930a8c515077de57a7693c6a642514"
+ },
+ "recipe": {
+ "sha256": "13yfscr993pll5yg019v9dwy71g123a166w114n2m78h0rbnzdak",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151022.751",
+ "deps": [
+ "swiper"
+ ]
+ },
+ "dayone": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "mori-dev",
+ "repo": "emacs-dayone",
+ "sha256": "084alwm2kvq1ilfyrqqfni1xbihx3dzrihykl98vv8ldqvw8kn95",
+ "rev": "046771dcb58f6cd9d21a67b3627075d739d3ed4d"
+ },
+ "recipe": {
+ "sha256": "0hi09dj00h6g5r84jxglwkgbijhfxknx4mq5gcl5jzjis5affk8l",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20131117.455",
+ "deps": [
+ "ht",
+ "mustache",
+ "uuid"
+ ]
+ },
+ "splitjoin": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "syohex",
+ "repo": "emacs-splitjoin",
+ "sha256": "1qdy9nc2h7mwxh7zg2p1x7yg96hxkwxqimjp6zb1119jx0s8grjc",
+ "rev": "e2945ee269e6e90f0243d6f2a33e067bb0a2873c"
+ },
+ "recipe": {
+ "sha256": "0l1x98fvvia8qx8g125h4d76slv0xnb3h1zxiq9xb5qh7a1h069l",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150505.932",
+ "deps": [
+ "cl-lib"
+ ]
+ },
+ "url-shortener": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "yuyang0",
+ "repo": "url-shortener",
+ "sha256": "118c23dsfgkhwhv65dx3wbg2dn7qyrd80d78cykl732c68d6wvi0",
+ "rev": "2ce3fedbdc44f778f28a5a08f06958bc5dccae88"
+ },
+ "recipe": {
+ "sha256": "12r01dyk55bs01jk0ab9f24lfvm63h8kvix223pii5y9890dr6ys",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150806.113",
+ "deps": []
+ },
+ "frame-restore": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "lunaryorn",
+ "repo": "frame-restore.el",
+ "sha256": "0n6jhm1198c8slvdymsfjif0dfx3wlf8q4mm0yvpiln46shhwldx",
+ "rev": "6346cf157d5e1b487a16839d998258b7e693cbc8"
+ },
+ "recipe": {
+ "sha256": "0b321iyf57nkrm6xv8d1aydivrdapdgng35zcnrg298ws2naysvm",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140811.1609",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "fortune-cookie": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "andschwa",
+ "repo": "fortune-cookie",
+ "sha256": "1kk04hl2y2svrs07w4pq9f4g7vs9qzy2qpw9prvi1gravmnfrzc4",
+ "rev": "9bf0d29358989e1aee61c472bd5204b9bdf46465"
+ },
+ "recipe": {
+ "sha256": "0xg0zk7hnyhnbhqpxnzrgqs5yz0sy6wb0n9982qc0pa6jqnl9z78",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151111.35",
+ "deps": []
+ },
+ "link": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "myrkr",
+ "repo": "dictionary-el",
+ "sha256": "0gz03hji6mcrzvxd74qim63g159sc8ggb6hq3x42x5l01g980fbm",
+ "rev": "a23b8f4a422d0de69a006ed010eff5795319db98"
+ },
+ "recipe": {
+ "sha256": "17jpsg3f2954b740vyj37ikygrg5gmp0bjhbid8bh8vbz7xx9zy8",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140717.2229",
+ "deps": []
+ },
+ "bind-map": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "justbur",
+ "repo": "emacs-bind-map",
+ "sha256": "18i2lq89pay4s58xvybmk7bs9haq5vx217wi25fzxgam6nwnzkhy",
+ "rev": "d47be94d236c819b5ca47d66551d23a0ee17ac33"
+ },
+ "recipe": {
+ "sha256": "1jzkp010b4vs1bdhccf5igmymfxab4vxs1pccpk9n5n5a4xaa358",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151217.1029",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "jumplist": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "ganmacs",
+ "repo": "jumplist",
+ "sha256": "0ykzvy8034mchq6ffyi7vqnwyrj6gnqqgn39ki81pv97qh8hh8yl",
+ "rev": "c482d137d95bc5e1bcd790cdbde25b7f729b2502"
+ },
+ "recipe": {
+ "sha256": "06xjg1q8b2fwfhfmdkb76bw2id8pgqc61fmwlgri5746jgdmd7nf",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151119.2145",
+ "deps": [
+ "cl-lib"
+ ]
+ },
+ "narrow-indirect": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/narrow-indirect.el",
+ "sha256": "1j50f3kzgrvxf4iznjjwsi4smp7gdp09irz7x3ppv4w2c8apc6j8"
+ },
+ "recipe": {
+ "sha256": "10aq4gssayh3adw8yz2lza1xbypyffi8r03lsc0kiis6gd9ibiyj",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150104.1833",
+ "deps": []
+ },
+ "button-lock": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "rolandwalker",
+ "repo": "button-lock",
+ "sha256": "06qjvybf65ffrcnhhbqs333lg51fawaxnva3jvdg7zbrsv4m9acl",
+ "rev": "f9082feb329432fcf2ac49a95e64bed9fda24d58"
+ },
+ "recipe": {
+ "sha256": "1arrdmb3nm570hgs18y9sz3z9v0wlkr3vwa2zgfnc15lmf0y34mp",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150223.754",
+ "deps": []
+ },
+ "readline-complete": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "monsanto",
+ "repo": "readline-complete.el",
+ "sha256": "1j5b5xapflwzh8a297gva0l12ralwa9vl5z3bb75c9ksjkhi4nm6",
+ "rev": "30c020c37b2741160cc37e656e13c85d826a0ebf"
+ },
+ "recipe": {
+ "sha256": "1qymk5ypv6ljk8x49z4jcifz7c2dqcg5181f4hqh67g1byvj2277",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150708.937",
+ "deps": []
+ },
+ "fill-column-indicator": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "alpaker",
+ "repo": "Fill-Column-Indicator",
+ "sha256": "0gbqspqn4y7f2fwqq8210b6k5q22c0zr7b4ws8qgz9swav8g3vrq",
+ "rev": "0e755319451dd9c6c99c2a2ef82c890ba93343b6"
+ },
+ "recipe": {
+ "sha256": "0w8cmijv7ihij9yyncz6lixb6awzzl7n9qpjj2bks1d5rx46blma",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151030.1433",
+ "deps": []
+ },
+ "mallard-snippets": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "jhradilek",
+ "repo": "emacs-mallard-snippets",
+ "sha256": "0qk7i47nmyp4llwp6x0i1i5dk82ck26iyz1sjvvlihaw8a5akny2",
+ "rev": "70c5293f10722f2ace73bdf74d9a18f95b040edc"
+ },
+ "recipe": {
+ "sha256": "0437qd7q9i32pmhxaz3vi2dnfpj4nddmzgnqpwsgl28slhjw2hv8",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20131023.1351",
+ "deps": [
+ "mallard-mode",
+ "yasnippet"
+ ]
+ },
+ "ido-gnus": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "vapniks",
+ "repo": "ido-gnus",
+ "sha256": "0ifdwd5vnjv2iyb5bnz8pij35lc0ymmyx8j8zhpkbgjigz8f05ip",
+ "rev": "f5fe3f6aa8086f675ba216abace9e3d5f2e3a089"
+ },
+ "recipe": {
+ "sha256": "14ijb8q4s846984h102h72ij713v5bj3k2vfdvr94gw1f0iya2yg",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140216.1046",
+ "deps": [
+ "gnus"
+ ]
+ },
+ "farmhouse-theme": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "mattly",
+ "repo": "emacs-farmhouse-theme",
+ "sha256": "08lgfa2k42qpcs4999b77ycsg76zb56qbcxbsvmg0pcwjwa1ambz",
+ "rev": "a09e7cd5b12542d27474aad7e118c8ede3edbea1"
+ },
+ "recipe": {
+ "sha256": "0hbqdrw6x25b331qhbg3yaaa45c2b896wknsjm0a1kg142klq229",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150506.2327",
+ "deps": []
+ },
+ "serverspec": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "k1LoW",
+ "repo": "emacs-serverspec",
+ "sha256": "1h58q41wixjlapia1ggf83jxcllq7492k55mc0fq7hbx3hw1q1y2",
+ "rev": "b6dfe82af9869438de5e5d860ced196641f372c0"
+ },
+ "recipe": {
+ "sha256": "001d57yd0wmz4d7qmhnanac8g29wls0sqw194003hrgirakg82id",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150623.655",
+ "deps": [
+ "dash",
+ "f",
+ "helm",
+ "s"
+ ]
+ },
+ "prognth": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "Fuco1",
+ "repo": "prognth",
+ "sha256": "1szxsbk470fg3jp70r20va9hnnf4jj0mb7kxdkn6rd7ky6w34lwm",
+ "rev": "2f1ca4d34b1fd581163e1df122c85418137e8e62"
+ },
+ "recipe": {
+ "sha256": "0hr5a3s0ij4hvn424v885z7pcs62yqm9mamw5b096hgjxgjf6ylm",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20130920.1259",
+ "deps": []
+ },
+ "butler": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "AshtonKem",
+ "repo": "Butler",
+ "sha256": "0pp604r2gzzdpfajw920607pklwflk842difdyl4hy9w87fgc0jg",
+ "rev": "8ceb35737107572455cca9a61ff46b3ff78f1016"
+ },
+ "recipe": {
+ "sha256": "1jv74l9jy55qpwf5np9nlj6a1wqsm3xirm7wm89d1h2mbsfcr0mq",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150811.1908",
+ "deps": [
+ "deferred",
+ "emacs",
+ "json"
+ ]
+ },
+ "iflipb": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "jrosdahl",
+ "repo": "iflipb",
+ "sha256": "18rlyjsn9w0zbs0c002s84qzark3rrcmjn9vq4nap7i6zpaq8hki",
+ "rev": "2e0d1719abeec7982341761ee5dabb01574e6862"
+ },
+ "recipe": {
+ "sha256": "1nfrrxgi9nlhn477z8ay7jxycpcghhhmmg9dagdhrlrr20fx697d",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20141123.1516",
+ "deps": []
+ },
+ "ido-complete-space-or-hyphen": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "doitian",
+ "repo": "ido-complete-space-or-hyphen",
+ "sha256": "1aih8n10lcrw0bdgvlrkxzhkpxpmphw07cvbp6zd27ia25037fzw",
+ "rev": "3fe1fe1e1a743f8deb8f4025977647afecd58f14"
+ },
+ "recipe": {
+ "sha256": "1wk0cq5gjnprmpyvhh80ksz3fash42hckvmx8m95crbzjg9j0gbc",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20130228.408",
+ "deps": []
+ },
+ "bbdb-android": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "tumashu",
+ "repo": "bbdb-android",
+ "sha256": "0m80k87dahzdpfa4snbl4p9zm5d5anc8s91535mwzsnfbr98qmhm",
+ "rev": "60641acf8b90e34b70f783b3d6e7789a4272f2b4"
+ },
+ "recipe": {
+ "sha256": "0v3njygqkcrwjkf7jrqmza6bwk2jp3956cx1qvf9ph7dfxsq7rn3",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150706.24",
+ "deps": [
+ "bbdb-vcard"
+ ]
+ },
+ "sift": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "nlamirault",
+ "repo": "sift.el",
+ "sha256": "0v4glcpxp812554dggimv6srccwg7031iys4j7c0b97cm279jyhi",
+ "rev": "a757745492124e5a021a4cc7e62d5349c21213c6"
+ },
+ "recipe": {
+ "sha256": "13y6nmc317hljch3x8f80jg5sb57imm7w9kdn7ybw59g55zxzz8q",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151114.1123",
+ "deps": []
+ },
+ "moz": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "bard",
+ "repo": "mozrepl",
+ "sha256": "1g06i3d8xv8ja6nfww4k60l3467xr1s9xsk7i6dbicq0lf8559h9",
+ "rev": "57f278849e4246a992e731e188b221a2574fc81e"
+ },
+ "recipe": {
+ "sha256": "0ar2xgsi7csjj6fgiamrjwjc58j942dm32j3f3lz21yn2c4pnyxi",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150805.1206",
+ "deps": []
+ },
+ "baidu-life": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "lujun9972",
+ "repo": "el-baidu-life",
+ "sha256": "00skx1aywzvnqqsm41n2mwry5i6ifib8kzq5klymbrc7qfnbb55f",
+ "rev": "4cb251d44e97da54306af9d99444d9b8525f043e"
+ },
+ "recipe": {
+ "sha256": "0rib50hja33qk8dmw5i62gaxhx7mscj2y0n25jmnds7k88ms8z19",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151210.615",
+ "deps": [
+ "cl-lib"
+ ]
+ },
+ "use-package-chords": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "waymondo",
+ "repo": "use-package-chords",
+ "sha256": "100py4x10nd8w0l87lc7wpa8nmg7yg6pwxln0wcyal7vpwycmhjz",
+ "rev": "e5f7a43fd0a63a4a0bf7dabc2c223f615ea71eca"
+ },
+ "recipe": {
+ "sha256": "18av8gkz3nzyqigyd88ajvylsz2nswsfywxrk2w8d0ykc3p37ass",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151001.1528",
+ "deps": [
+ "bind-chord",
+ "bind-key",
+ "use-package"
+ ]
+ },
+ "jekyll-modes": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "fred-o",
+ "repo": "jekyll-modes",
+ "sha256": "0rx72rid7922mhw21j85kxmx0fhpkmkv9jvxmj9izy01xnjbk00c",
+ "rev": "7cb10b50fd2883e3f7b10fdfd98f19f2f0b2381c"
+ },
+ "recipe": {
+ "sha256": "1305f1yg1mamyw3bkzrk5q3q58ihs8f5k9vjknsww5xvrzz3r1si",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20141117.714",
+ "deps": [
+ "polymode"
+ ]
+ },
+ "timer-revert": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "yyr",
+ "repo": "timer-revert",
+ "sha256": "1hidvbd1xzz9m0fc55wac1mpv4dpcf8qnw1myh3646bfvivj9c2q",
+ "rev": "615c91dec8b440d2b9b7c725dd733d7432564e45"
+ },
+ "recipe": {
+ "sha256": "0lvm2irfx9rb5psm1lf53fv2jjx745n1c172xmyqip5xwgmf6msy",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150122.1432",
+ "deps": []
+ },
+ "igv": {
+ "fetch": {
+ "tag": "fetchgit",
+ "url": "https://bitbucket.org/sbarbit/eigv",
+ "sha256": "cefc95ead9e5d425d3763f8d63afa10dea416493cafd7144f4d3cdeee0d0fa86",
+ "rev": "47ac6ceede252f451348a2c696398c0cb5279555"
+ },
+ "recipe": {
+ "sha256": "01igm3cb0lncmcyy72mjf93byh42k2hvscqhg8r7iljbxm58460z",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20141210.627",
+ "deps": []
+ },
+ "helm-mt": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "dfdeshom",
+ "repo": "helm-mt",
+ "sha256": "09rb8aq7fnf661w3liwbkkaczjph3dzvg26slm9cwcnl7pqnvagl",
+ "rev": "39a7d58050942f6afc15b1078f1e397ec4c8cd5c"
+ },
+ "recipe": {
+ "sha256": "04hx8cg8wmm2w8g942nc9mvm12ammmjnx4k61ljrq76smd8s3x2a",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151104.2320",
+ "deps": [
+ "cl-lib",
+ "emacs",
+ "helm",
+ "multi-term"
+ ]
+ },
+ "web-server": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "eschulte",
+ "repo": "emacs-web-server",
+ "sha256": "0mbhyk7sgisx0l0xiz2xgy4jfbgwazlnxjvajsh4nysyig5rys05",
+ "rev": "469cd3bc117bfb8da0c03a2a2fb185e80c81d068"
+ },
+ "recipe": {
+ "sha256": "1f0iyvwq1kq3zfxx2v596cmah7jfk2a04g2rjllbgxxnzwms29z3",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140905.1906",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "bpr": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "ilya-babanov",
+ "repo": "emacs-bpr",
+ "sha256": "01bh371c0ln0qw1wixw28gdyjk4v8griw464d671r26wsxjdiwqy",
+ "rev": "1c8ffe083df2bb1e8a9aa44c9ed450f631081ae4"
+ },
+ "recipe": {
+ "sha256": "0rjxn40n4s4xdq51bq0w3455g9pli2pvcf1gnbr96zawbngrw6x2",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151206.1415",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "thumb-through": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "apgwoz",
+ "repo": "thumb-through",
+ "sha256": "0nypcryqwwsdawqxi7hgsv6fp28zqslj9phw7zscqqxzc3svaywn",
+ "rev": "08d8fb720f93c6172653e035191a8fa9c3305e63"
+ },
+ "recipe": {
+ "sha256": "1krn7zn2y8p51m8dxai5nbrwbdviz6zrjzz0kykya9cqz4n9dhln",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20120118.2334",
+ "deps": []
+ },
+ "darcula-theme": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "fommil",
+ "repo": "darcula-theme-emacs",
+ "sha256": "100aycjy47md09aw0wlp846py93zrvw6wafcmmha1vbc8p5v5nms",
+ "rev": "05dea7041483e2ac9f0839cba01f7bf218a2d87e"
+ },
+ "recipe": {
+ "sha256": "13d21gwzv66ibn0gs56ff3sn76sa2mkjvjmpd2ncxq3mcgxajnjg",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150629.435",
+ "deps": []
+ },
+ "cm-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "joostkremers",
+ "repo": "criticmarkup-emacs",
+ "sha256": "1ii3n9x0xdbbs0bpa6nf7i2jij19czwkm9fpdwkqh390j8r8mn6a",
+ "rev": "61b1557bad3cf7dfd0fc4c9eb4a7af0d86d605d0"
+ },
+ "recipe": {
+ "sha256": "1rgfpxbnp8wiq9j8aywm2n07rxzkhqljigwynrkyvrnsgxlq2a9x",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20141112.1915",
+ "deps": []
+ },
+ "dynamic-fonts": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "rolandwalker",
+ "repo": "dynamic-fonts",
+ "sha256": "150dj1g49q9x9zx9wkymq30l5gc8c4mhsq91fm6q0yj6ip7hlfxh",
+ "rev": "ab0c65accbdb59acaed5b263327e22ec019b3e82"
+ },
+ "recipe": {
+ "sha256": "0a210ca41maa755lv1n7hhpxp0f7lfxrxbi0x34icbkfkmijhl6q",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140731.726",
+ "deps": [
+ "font-utils",
+ "pcache",
+ "persistent-soft"
+ ]
+ },
+ "ethan-wspace": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "glasserc",
+ "repo": "ethan-wspace",
+ "sha256": "098mfyw63b23h7jajaik1rfj307sxs82nnwf6b81j550kl2n05y6",
+ "rev": "477444d95adc2cb86c82e498cbaa5fbb1fc293a8"
+ },
+ "recipe": {
+ "sha256": "0k4kqkf5c6ysyhh1vpi9v4220yxm5ir3ippq2gmvvhnk77pg6hws",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151217.2010",
+ "deps": []
+ },
+ "ssh": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "ieure",
+ "repo": "ssh-el",
+ "sha256": "1rdhdkwdhb727rj53xyxk6i00sjr58a48hfig14m12niy1k739vd",
+ "rev": "c17cf5b43df8ac4662a0580f85898e1f078df0d1"
+ },
+ "recipe": {
+ "sha256": "1jywn8wlqzc2mfylp0kbpzxv3kwzak3vxdbjabiawqv1m4bfpk5g",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20120904.1542",
+ "deps": []
+ },
+ "bbdb2erc": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "unhammer",
+ "repo": "bbdb2erc",
+ "sha256": "1zkh7dcas80wwjvigl27wj8sp4b5z6lh3qj7zkziinwamwnxbdbs",
+ "rev": "f39a36351e1e6f1105c9e32970e7502b77b0dbcd"
+ },
+ "recipe": {
+ "sha256": "1nqvlyklcqmdw2p7zf53jwrnz7nd7hl09nm20fbgw2dn0h1z9q30",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20130607.129",
+ "deps": [
+ "bbdb"
+ ]
+ },
+ "whitespace-cleanup-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "purcell",
+ "repo": "whitespace-cleanup-mode",
+ "sha256": "15yhbyyr0ksd9ziinlylyddny2szlj35x2548awj9ijnqqgjd23r",
+ "rev": "14eaf40e0e67539106d3636af440a167105be296"
+ },
+ "recipe": {
+ "sha256": "1fhdjrxxyfx4xsgfjqq9p7vhj98wmqf2r00mv8k27vdaxwsnm5p3",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150603.647",
+ "deps": []
+ },
+ "m-buffer": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "phillord",
+ "repo": "m-buffer-el",
+ "sha256": "07v2mch8qd8s760gxx3c8fdqqsjpqpxacl5nsbiqvpsvccky66b3",
+ "rev": "883e6192e992ae783e51de6cd6b6a7dbaa54dce0"
+ },
+ "recipe": {
+ "sha256": "0l2rayglv48pcwnr1ggmn8c0az0mffgv02ivnzr9jcfs55ki07fc",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151025.1116",
+ "deps": [
+ "dash",
+ "emacs"
+ ]
+ },
+ "yard-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "pd",
+ "repo": "yard-mode.el",
+ "sha256": "06mjjxa0blgxd8dbahgyni3b1rscbwjpxby5abrgfbb0fvs2bnfa",
+ "rev": "aa303f6f1c348cbee1dbab3be2ad04b0aaa590cf"
+ },
+ "recipe": {
+ "sha256": "0jmlcba8qapjwaaliz9gzs99if3wglkhmlpjzcdy3icx18sw8kzx",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140816.1244",
+ "deps": []
+ },
+ "lodgeit": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "ionrock",
+ "repo": "lodgeit-el",
+ "sha256": "1cdnm270kzixa0kpis0xw2ybkw8lqh7kykc7blxkxjrr9yjvbawl",
+ "rev": "ec9b8e5cbb17bcf8ac4bdddd1d361cb60e59384c"
+ },
+ "recipe": {
+ "sha256": "1ax2w5yxscycjz90g4jdbhd64g9sipzxpfjs7gq3na77s5dcjzsq",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150312.849",
+ "deps": []
+ },
+ "distinguished-theme": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "Lokaltog",
+ "repo": "distinguished-theme",
+ "sha256": "03d8zb2is7n2y2z0k6j37cijjc3ndgasxsm9gqyq7drlq9bqwzsm",
+ "rev": "9b1d25ac59465a5016d187ea84b7614c95a29b3b"
+ },
+ "recipe": {
+ "sha256": "0h03aqgijrmisbgqga42zlb5yz4x3jn9jgr29rq8canyhayr3rk4",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151216.1415",
+ "deps": []
+ },
+ "wavefront-obj-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "abend",
+ "repo": "wavefront-obj-mode",
+ "sha256": "0zw8z2r82986likz0b0zy37bywicrvz9dizzw9p52gs1lx0is1fy",
+ "rev": "75eedad052848e82cdd94064764956b906e6d6b2"
+ },
+ "recipe": {
+ "sha256": "0qqismh6g2fvi45q2q52lq0n9nrh95wgamlsy5j4rx4syfgzxbrk",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150501.1316",
+ "deps": []
+ },
+ "pow": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "yukihr",
+ "repo": "emacs-pow",
+ "sha256": "1qizc9vh7lazs66s80avbf4whyrcinav07lpzva27yqb1gkmwap2",
+ "rev": "86f8c1cdea08a875adf9f68995647ffc4fe5b140"
+ },
+ "recipe": {
+ "sha256": "05wc4ylp0xjqbzrm046lcsv4aw2a6s2rfv1ra38bfr0dai6qrsrn",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140420.306",
+ "deps": [
+ "cl-lib",
+ "emacs"
+ ]
+ },
+ "memolist": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "mikanfactory",
+ "repo": "memolist.el",
+ "sha256": "1jd4rjv812iv7kp4wyxdz8sk7j0442m8x2ypk6hiqis0braxnspm",
+ "rev": "60c296e202a71e9dcf1c3936d47b5c4b95c5839f"
+ },
+ "recipe": {
+ "sha256": "1whajbwmz1v01dirv795bhvs27vq9dh0qmj10dk2xia7vhn42mgh",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150804.1221",
+ "deps": [
+ "ag",
+ "markdown-mode"
+ ]
+ },
+ "iasm-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "RAttab",
+ "repo": "iasm-mode",
+ "sha256": "1gl21li9vqfjvls4ffjw8a4bicas2c7hmaa621k3hpllgpy6qdg5",
+ "rev": "6b404ff94bbfe971b3614007c8e5dcd5757c5727"
+ },
+ "recipe": {
+ "sha256": "09xh41ayaha07fi5crk3c6pn17gwm3samsf6h71ldkywvz74kipv",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20131004.1844",
+ "deps": []
+ },
+ "marshal": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "sigma",
+ "repo": "marshal.el",
+ "sha256": "0fwhhzfd6vgpaf5mrw90hvm35j2kzhk9h3gbrwd7y7q08nrmsx9p",
+ "rev": "0ab06a654af0555dc669b5bdf4e0991a78238d6d"
+ },
+ "recipe": {
+ "sha256": "17ikd8f1k42f28d4v5dn83zb44bsx7g336db60q068w6z8d4jbgl",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150916.2057",
+ "deps": [
+ "eieio",
+ "json"
+ ]
+ },
+ "chinese-yasdcv": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "tumashu",
+ "repo": "chinese-yasdcv",
+ "sha256": "14yzmyzkf846yjrwnqrbzmvyhfav39qa5fr8jnb7lyz8rm7y9pnq",
+ "rev": "619e4d701ed995ad2c95f35072c638cfb3933afb"
+ },
+ "recipe": {
+ "sha256": "1y2qywldf8b8b0km1lcf74p0w6rd8gr86qcj7ikwhhbvd19dfglm",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150702.816",
+ "deps": [
+ "chinese-pyim",
+ "cl-lib"
+ ]
+ },
+ "company-nand2tetris": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "CestDiego",
+ "repo": "nand2tetris.el",
+ "sha256": "003zgkpzz9q0bkkw6psks0vbfikzikfm42myqk14xn7330vgcxz7",
+ "rev": "0297cd8d76cad072cb64318ffacdc65d8a1ad948"
+ },
+ "recipe": {
+ "sha256": "1g2i33jjh7kbpzk835kbnqicf0w4cq5rqv934bqzz5kavj9cg886",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151027.1636",
+ "deps": [
+ "cl-lib",
+ "company",
+ "names",
+ "nand2tetris"
+ ]
+ },
+ "zygospore": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "louiskottmann",
+ "repo": "zygospore.el",
+ "sha256": "0v73fgb0gf81vlihiicy32v6x86rr2hv0bxlpw7d3pk4ng1a0l3z",
+ "rev": "1af5ee663f5a7aa08d96a77cacff834dcdf55ea8"
+ },
+ "recipe": {
+ "sha256": "03mmxqbliwd1g73cxd9kqkngdy4jdavcs6j12b4wp27xmhgaj40z",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140703.352",
+ "deps": []
+ },
+ "elisp-depend": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/elisp-depend.el",
+ "sha256": "0khc3gacw27aw9pkfrnla9844lqbspgm0hrz7q0h5nr73d9pnc02"
+ },
+ "recipe": {
+ "sha256": "08zxzvj60v23b7d5q0hvgffm1jxq7lc5y9w22m6nv2fp29yadyiy",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20120426.2023",
+ "deps": []
+ },
+ "eproject": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "jrockway",
+ "repo": "eproject",
+ "sha256": "13ds5z2nvanx8cvxrzi0da6ixx7kw222z6mrlbs8cldqcmzm7xh2",
+ "rev": "fdff000d601eb8bdb165db3dc4925c6797308b78"
+ },
+ "recipe": {
+ "sha256": "0kpg4r57khbyinc73v9kj32b9m3b4nb5014r5fkl5mzzpzmd85b4",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151205.2330",
+ "deps": [
+ "helm"
+ ]
+ },
+ "bonjourmadame": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "pierre-lecocq",
+ "repo": "bonjourmadame",
+ "sha256": "1sapdy92arcgfmci17cvvr408kqw9x4yzjm4x77ndbs6nic8f3f6",
+ "rev": "85b72ddb602434ca7dd171b86acbcfd58baab83b"
+ },
+ "recipe": {
+ "sha256": "0d36yradh37359fjk59s54hxkbh4qcc17sblj2ylcdyw7181iwfn",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150914.508",
+ "deps": []
+ },
+ "vdirel": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "DamienCassou",
+ "repo": "vdirel",
+ "sha256": "034475m2d2vlrlc2l88gdx0ga3krsdh08wkjxwnbb2dfyz3p8r9v",
+ "rev": "aab19692e2c2084a0d5b554a96a64a2e3e2a3d09"
+ },
+ "recipe": {
+ "sha256": "11cc7bw7x5h3bwnlsjyhw6k5fh2fk7wffarrcny562v4cmr013cj",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151216.55",
+ "deps": [
+ "emacs",
+ "helm",
+ "org-vcard",
+ "seq"
+ ]
+ },
+ "scala-mode2": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "hvesalai",
+ "repo": "scala-mode2",
+ "sha256": "1xyfxwrp2hlj49412ypl1mi5pxx6z4aw1hhzkgcwd3bfyyqdrg1k",
+ "rev": "360b5ba27aeca69e72109515b6c40b2f7972cc8f"
+ },
+ "recipe": {
+ "sha256": "1m8przbs4vmcss7bp496vdziy1xxzh4waj36yny7l79ld9rhk6cl",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150618.150",
+ "deps": []
+ },
+ "show-marks": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "vapniks",
+ "repo": "show-marks",
+ "sha256": "15vkk7lnnfwgzkiwpqz1l1qpnz2d10l82m10m0prbw03k1zx22c7",
+ "rev": "97609566582e65eed0d0a854efa5c312f209115d"
+ },
+ "recipe": {
+ "sha256": "1jgxdclj88ca106vcvf1k8zbf7iwamy80c2ad8b3myz0f4zscjzb",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20130805.949",
+ "deps": [
+ "fm"
+ ]
+ },
+ "simple-rtm": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "mbunkus",
+ "repo": "simple-rtm",
+ "sha256": "0dxfgpqjcdwk1yzxjg9nbw7aa56vp7jxxbpyp8j92wd7lwgpk6a5",
+ "rev": "cff3e87bc2d440aa643c9f43bf99972668147231"
+ },
+ "recipe": {
+ "sha256": "1aadzaf73clhyny2qiryg6z84k34yx3ghy6pyl0px9qhqc1ak271",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140926.639",
+ "deps": []
+ },
+ "rigid-tabs": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "wavexx",
+ "repo": "rigid-tabs.el",
+ "sha256": "0p044wg9d4i6f5x7bdshmisgwvw424y16lixac93q6v5bh3xmab5",
+ "rev": "c7c6b726806df7e8cb25a41b213a207850c91cb7"
+ },
+ "recipe": {
+ "sha256": "06n0bcvc3nnp84pcq3lywwga7l92jz8hnkilhbq59kydf5zbjldp",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150807.1056",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "inform7-mode": {
+ "fetch": {
+ "tag": "fetchgit",
+ "url": "https://github.com/fred-o/inform7-mode.git",
+ "sha256": "3c00805529518edba788671fed0c3e56810d1dbec2a0dbd3cb42f42991326ca6",
+ "rev": "42458733947f2fbd44bc78f7264be247a5d8980b"
+ },
+ "recipe": {
+ "sha256": "1kbyl69vwhp1wdivr3ijmj7mghdnjaw7adk8az7bwyzjvpq73171",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20131010.154",
+ "deps": [
+ "sws-mode"
+ ]
+ },
+ "hc-zenburn-theme": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "edran",
+ "repo": "hc-zenburn-emacs",
+ "sha256": "0rgcj47h7a67qkw6696pcm1a4g4ryx8nrz55s69fw86958fp08hk",
+ "rev": "fd0024a5191cdce204d91c8f1db99ba31640f6e9"
+ },
+ "recipe": {
+ "sha256": "0jcddk9ppgcizyyciabj3sgk1pmingl97knf9nmr0mi89h7n2g5y",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150928.1133",
+ "deps": []
+ },
+ "synonymous": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "toroidal-code",
+ "repo": "synonymous.el",
+ "sha256": "02xnfkmpvjicckmp9is42fnavy9pd95s99zmf1wylxdji2hhpjxw",
+ "rev": "9abd08c57f4a35902cd6b3eb5aad8dbb352141f4"
+ },
+ "recipe": {
+ "sha256": "0vawa9qwvv6z1i7vzhkjdl1l9r1yham48yn5y8w8g1xyhxxp6rs5",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150909.1034",
+ "deps": [
+ "cl-lib",
+ "emacs",
+ "request"
+ ]
+ },
+ "theme-changer": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "hadronzoo",
+ "repo": "theme-changer",
+ "sha256": "0njmn5dy773v9kmwclw1m79rh52xnxl8mswcaagni2z3dvlvw4m8",
+ "rev": "c28ea477e8277c03e14657f167695e3c4bf3c11f"
+ },
+ "recipe": {
+ "sha256": "1qbmsghkl5gs728q0gaalc7p8q7nzv3l045jc0jdxxnb7na3gc5w",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20130725.2119",
+ "deps": []
+ },
+ "uncrustify-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "koko1000ban",
+ "repo": "emacs-uncrustify-mode",
+ "sha256": "0366h4jfi0c7yda9wcrz4zxgf2qqdd08b8z2dr8c1rkvkdd67iam",
+ "rev": "73893d000361e95784911e5ec268ad0ab2a1473c"
+ },
+ "recipe": {
+ "sha256": "0amdxdfc8i99zjrw4iqmxzb47h0airs60fwmc32bc8b0ds66c3kd",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20130707.859",
+ "deps": []
+ },
+ "hl-sentence": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "milkypostman",
+ "repo": "hl-sentence",
+ "sha256": "0pjfbm8p077frk475bx8xkygn8r4vdsvnx4rcqbjlpjawj0ndgxs",
+ "rev": "45e3cc525ba636c0f22baa6d0938d9808622bc89"
+ },
+ "recipe": {
+ "sha256": "16sjfs0nnpwzj1cqfna9vhmxgznwwhb2qdmjci25hlgrdxwwyahs",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140802.1120",
+ "deps": []
+ },
+ "mynt-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "crshd",
+ "repo": "mynt-mode",
+ "sha256": "18ml0qz3iipm9w36zvwz77cbbrg885jgvzk6z4a33xcfp524xhma",
+ "rev": "23d4489167bfa899634548cb41ed32fdeb3600c9"
+ },
+ "recipe": {
+ "sha256": "17s0wdwgh2dcpww6h3qszc9dcs7ki00xkyisvsfn4xqajrmmp75b",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150512.1549",
+ "deps": [
+ "virtualenvwrapper"
+ ]
+ },
+ "svg-mode-line-themes": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "sabof",
+ "repo": "svg-mode-line-themes",
+ "sha256": "14h40s0arc2i898r9yysn256z6l8jkrnmqvrdg7p7658c0klz5ic",
+ "rev": "80a0e01839cafbd66899202e7764c33231974259"
+ },
+ "recipe": {
+ "sha256": "12lnszcb9bl32n9wir7vf8xiyyv7njw4xg21aj9x4dasmidyx506",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150425.1506",
+ "deps": [
+ "xmlgen"
+ ]
+ },
+ "tdd-status-mode-line": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "algernon",
+ "repo": "tdd-status-mode-line",
+ "sha256": "01r34h3srli5bglss0zxnblpfbgzd45cvh3bg16i8dyyph9wgqyn",
+ "rev": "cf51cf2e85f190d27424277697c5e3a344d9ef2b"
+ },
+ "recipe": {
+ "sha256": "0z1q1aw14xq72nfx7mmvz7pr2x4960l45z02jva35zxzvb1mvsgq",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20131123.1116",
+ "deps": []
+ },
+ "processing-snippets": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "ptrv",
+ "repo": "processing2-emacs",
+ "sha256": "1smw786dcjvdn2j6bwqn2rfzhw039rrhxiv7vlrgzm0fyy2v1q6h",
+ "rev": "a57415e523c9c3faeef02fa62a2b749270c4cc33"
+ },
+ "recipe": {
+ "sha256": "09vkm9asmjz1in0f63s7bf4amifspsqf5w9pxiy5y0qvmn28fr2r",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140426.928",
+ "deps": [
+ "yasnippet"
+ ]
+ },
+ "namespaces": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "chrisbarrett",
+ "repo": "elisp-namespaces",
+ "sha256": "157hhb253m6a9l5wy6x8w5ar3x0qz1326l7a0npxif6pma0dd140",
+ "rev": "3d02525d9b9a5ae6e7be3adefd880121436e6270"
+ },
+ "recipe": {
+ "sha256": "02pb7762khxpah4q6xg8r7dmlv1kwyzinffi7pcaps6ycj29q2fr",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20130326.1750",
+ "deps": []
+ },
+ "doremi": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/doremi.el",
+ "sha256": "0b50iwyjxnhny9kzbcqxwqwa5fg5xbldm7l4jzcyl3bmcdbg4w7q"
+ },
+ "recipe": {
+ "sha256": "11i4cdxgrspx44p44zz5py89ypji5li6p5w77wy0b07i8a5gq2gb",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150815.938",
+ "deps": []
+ },
+ "clevercss": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "jschaf",
+ "repo": "CleverCSS-Mode",
+ "sha256": "19q6zbnl9fg4cwgi56d7p4qp6y3g0fdyihinpakby49xv2n2k8dx",
+ "rev": "b8a3c0dd674367c62b1a1ffec84d88fe0c0219bc"
+ },
+ "recipe": {
+ "sha256": "189f2l4za1j9ds0bhxrzyp7da9p6svh5dx2vnzf4vql7qhjk3gf0",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20131228.1955",
+ "deps": []
+ },
+ "grizzl": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "d11wtq",
+ "repo": "grizzl",
+ "sha256": "1y2vn7xxzphg1d1isvimygzndybb6z4cfhpbrciswv983lixwcpx",
+ "rev": "93c72e18a0146ee1f43adb28423475094d5e9f4c"
+ },
+ "recipe": {
+ "sha256": "1klds0w9qrsgfppq105qr69c26zi91y575db2hxr6h9vypf2rq24",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150712.30",
+ "deps": [
+ "cl-lib",
+ "emacs"
+ ]
+ },
+ "hyde": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "nibrahim",
+ "repo": "Hyde",
+ "sha256": "14gxbza26ccah8jl0fm7ksvaag0mv3c348bgqjy88dqq2qlwcrav",
+ "rev": "640959dd6837487dd4545809d6cc9ef54283673d"
+ },
+ "recipe": {
+ "sha256": "18kjcxm7qmv9bfh4crw37zgax8khjqs9zkp4lrb490zlad2asbs3",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150615.1225",
+ "deps": []
+ },
+ "on-screen": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "michael-heerdegen",
+ "repo": "on-screen.el",
+ "sha256": "1rksk0j9b27w913bzbq7w2ws75yi66m24ic6ljdhhbrq3z2ic7dy",
+ "rev": "80b00ddef6dffad7086174c2c57f29ef28b69d27"
+ },
+ "recipe": {
+ "sha256": "104jisc2bckzrajxlvj1cfx1drnjj7jhqjblvm89ry32xdnjxmqb",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151108.2308",
+ "deps": [
+ "cl-lib"
+ ]
+ },
+ "html-script-src": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "rejeep",
+ "repo": "html-script-src",
+ "sha256": "0k9ga0qi6h33akip2vrpclfp4zljnbw5ax40lxyxc1813hwkdrmh",
+ "rev": "66460f8ab1b24656e6f3ce5bd50cff6a81be8422"
+ },
+ "recipe": {
+ "sha256": "1pin1x6g68y75pa3vz2i9h5pmhjamh5rd5ladb1z3flcavsls64j",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20120403.1315",
+ "deps": []
+ },
+ "shoulda": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "marcwebbie",
+ "repo": "shoulda.el",
+ "sha256": "19p47a4hwl6h2w5ay09hjhl4kf7cydwqp8s2iyrx2i0k58az8i8i",
+ "rev": "fbe8eb8efc6cfcca1713283a290882cfcdc8725e"
+ },
+ "recipe": {
+ "sha256": "0lmlhx34nwvn636y2wvw3sprhhh6q3mdg7dzgpjj7ybibvhp1lzk",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140616.1333",
+ "deps": [
+ "cl-lib"
+ ]
+ },
+ "wid-edit+": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/wid-edit+.el",
+ "sha256": "080i3gfvhmpmjq9hbjpkvs8pi88s59ia5dvrng0gg5zd8xrwdc6k"
+ },
+ "recipe": {
+ "sha256": "1wwrsk14hc0wrvy7hm94aw6zg50n2smlqwr6frwpi7yp8y394wiv",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150104.1907",
+ "deps": []
+ },
+ "pabbrev": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "phillord",
+ "repo": "pabbrev",
+ "sha256": "0cbsl184szbl486454jkn28zj4p7danp92h0zv8yscrlnyl68p0y",
+ "rev": "d28cf8632d2691dc93afbb28500126242d37961c"
+ },
+ "recipe": {
+ "sha256": "1mbfa40pbzbi00sp155zm43sj6nw221mcayc2rk3ppin9ps95hx3",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150806.645",
+ "deps": []
+ },
+ "tumblesocks": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "gcr",
+ "repo": "tumblesocks",
+ "sha256": "1g7y7czan7mcs5lwc5r6cllgksrj3b9lpn1bj7khwkd1ll391jc2",
+ "rev": "85a6cdc2db3390593fd886c474959b675460b310"
+ },
+ "recipe": {
+ "sha256": "11ky69icsnxwsinv2j3f4c0764wm6i9g9mlvwsdrd6w1lchq1dg9",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140215.1447",
+ "deps": [
+ "htmlize",
+ "markdown-mode",
+ "oauth"
+ ]
+ },
+ "jack-connect": {
+ "fetch": {
+ "tag": "fetchgit",
+ "url": "https://bitbucket.org/sbarbit/jack-connect",
+ "sha256": "7036a0eddf25a2274a6fd1584ff497d2b8078869fa6cc9d61504e6540ff863a8",
+ "rev": "b00658dfe3d5d67431c18ffa693d5a3705067ba0"
+ },
+ "recipe": {
+ "sha256": "1ssl126wihaf8m2f6ms0l5ai6pz5wn348a09k6l0h3jfww032g1q",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20141207.607",
+ "deps": []
+ },
+ "auto-indent-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "mattfidler",
+ "repo": "auto-indent-mode.el",
+ "sha256": "1hlsgsdxpx42kmqkjgy9b9ldz5i4dbi879v87pjd2qbkj8iywb6y",
+ "rev": "1a12448ce3a030ed905226450dfb01bba37f127c"
+ },
+ "recipe": {
+ "sha256": "1nk78p8lqs8cx90asfs8iaqnwwyy8fi5bafaprm9c0nrxz299ibz",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140505.855",
+ "deps": []
+ },
+ "main-line": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "jasonm23",
+ "repo": "emacs-mainline",
+ "sha256": "06sjwl0bk648wnnrmyh6qgnlqmxypjmy0gkfl6kpv01r8vh7x2q5",
+ "rev": "0e88f91e49ef27cb77d74f6a8d8140063549d67f"
+ },
+ "recipe": {
+ "sha256": "0c9c5kmixvhk9il8hsxzf2k14fggb9b9mw59g8q3hgpn5g7kgpkv",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151120.2006",
+ "deps": [
+ "cl-lib"
+ ]
+ },
+ "helm-ls-svn": {
+ "fetch": {
+ "tag": "fetchsvn",
+ "url": "https://svn.macports.org/repository/macports/users/chunyang/helm-ls-svn.el",
+ "sha256": "0b7gah21rkfd43mb89lrwaqrrwq646abh7wi4q74sx796gmpz4dz",
+ "rev": "143722"
+ },
+ "recipe": {
+ "sha256": "08mwzi340akw4ar20by0q981mzmzvf0wz3mn738q4inn2kqgs60d",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150717.239",
+ "deps": [
+ "cl-lib",
+ "emacs",
+ "helm"
+ ]
+ },
+ "pig-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "motus",
+ "repo": "pig-mode",
+ "sha256": "1yg9n265ljdjlh6a3jrjwyvj3f76wp68x25bl0p8dxrrsyr9kvfx",
+ "rev": "af4200c88a50264b63fa162a02860f3f54c8755b"
+ },
+ "recipe": {
+ "sha256": "0gmvc4rrqkn0cx8fk1sxk6phfbpf8dcba3k6i24k3idcx8rxsw3x",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140617.1258",
+ "deps": []
+ },
+ "logstash-conf": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "Wilfred",
+ "repo": "logstash-conf.el",
+ "sha256": "05px3zc3is7k2jmh7mal0al5zx5cqvn1bzmhgqq02pp6lwsx5xqa",
+ "rev": "60a06ad1ceb6699cef849e9f2e8255f7816ca5de"
+ },
+ "recipe": {
+ "sha256": "03i2ilphf3fdjag7m9z5gi23n6ik36qn42mzc22432m4y3c7iksh",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150308.718",
+ "deps": []
+ },
+ "volume": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "dbrock",
+ "repo": "volume-el",
+ "sha256": "0ymibjq6iwab5ia1fglhz4gm5cnbi792018fmrabcqkisj2zsjb7",
+ "rev": "ecc1550b3c8b501d37e0f0116b54b535d15f90f6"
+ },
+ "recipe": {
+ "sha256": "1r01v453bpyh561j8ja36609hy60gc30arvmz4z3c1cybhv8sk1i",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150718.1509",
+ "deps": []
+ },
+ "evil-leader": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "cofi",
+ "repo": "evil-leader",
+ "sha256": "10xrlimsxk09z9cw6rxdz8qvvn1i0vhc1gdicwxri0j10p0hacl3",
+ "rev": "39f7014bcf8b36463e0c7512c638bda4bac6c2cf"
+ },
+ "recipe": {
+ "sha256": "154s2nb170hzksmc87wnzlwg3ic3w3ravgsfvwkyfi2q285vmra6",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140606.743",
+ "deps": [
+ "evil"
+ ]
+ },
+ "niflheim-theme": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "niflheim-theme",
+ "repo": "emacs",
+ "sha256": "147vw3qlsply5h8cjmjzqr5dv9jzf9xlmhjnmcpyb1r7krh1l8xm",
+ "rev": "5265e89164132fbdbc13146a79f0abce78bd0c5e"
+ },
+ "recipe": {
+ "sha256": "1dipxwaar7rghmz7s733v035vrbijcg1dla9f7cld1gkgiq9iq36",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150630.1021",
+ "deps": []
+ },
+ "inf-mongo": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "tobiassvn",
+ "repo": "inf-mongo",
+ "sha256": "14kf3zvms1w8cbixhpgw3m2xxc2r87i57gmx00jwh89282i6kgsi",
+ "rev": "2d910f2143610f12de9c573ee202a322cf579e85"
+ },
+ "recipe": {
+ "sha256": "09hf3jmacsk4hl0rxk35cza8vjl0xfmv19dagb8h8fli97fb65hh",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20131216.428",
+ "deps": []
+ },
+ "highlight": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/highlight.el",
+ "sha256": "01d7khl7d78wz37bz28wjszhdwz81lrq9vm9d4slnj2qg4by6dcy"
+ },
+ "recipe": {
+ "sha256": "0clv4mzy9kllcvc0cgsbx3a9anw68dc2c7vzwbrv13sw5gh9skc0",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151204.1851",
+ "deps": []
+ },
+ "darktooth-theme": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "emacsfodder",
+ "repo": "emacs-theme-darktooth",
+ "sha256": "1p7ih9fmcxnnxkj2mz56xa403m828wyyqvliabf5amklzjlhb3z9",
+ "rev": "ce2d8d5faeb72205bdcb192dfc1e4769e7088fa3"
+ },
+ "recipe": {
+ "sha256": "1vss0mg1vz4wvsal1r0ya8lid2c18ig11ip5v9nc80b5slbixzvs",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151121.1922",
+ "deps": []
+ },
+ "helm-anything": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "rubikitch",
+ "repo": "helm-anything",
+ "sha256": "153zq1q3s3ihjh15wyci9qdic3pin8f1j1gq2qlzyhmy0njlvgjb",
+ "rev": "0ec578922928b7c75cf034d1b7a956b5f36107ea"
+ },
+ "recipe": {
+ "sha256": "0yjlwsiahb7n4q3522d68xrdb8caad9gpnglz5php245yqy3n5vx",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20141126.431",
+ "deps": [
+ "anything",
+ "helm"
+ ]
+ },
+ "window-layout": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "kiwanami",
+ "repo": "emacs-window-layout",
+ "sha256": "08chi9b4bap78n069aavvx3850kabk2jflrgymy4jxv08ybqikdg",
+ "rev": "03ee615fc8fad5be4efec9c3febab8c851271257"
+ },
+ "recipe": {
+ "sha256": "1n4a6z00lxsffirjrmbaaw432w798b9vv34qawgn1k17y9l7gb85",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150717.7",
+ "deps": []
+ },
+ "draft-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "gaudecker",
+ "repo": "draft-mode",
+ "sha256": "1451rdfgnvkc5mgsj4v646gadj14bc2wlh2bq4l44qyfd4737lb4",
+ "rev": "8a59f537d44ef7e8f34a69da1a7d5e0d443d76f7"
+ },
+ "recipe": {
+ "sha256": "1wg9cx39f4dhrykb4zx4fh0x5cfrh5aicwwfh1h3yzpc4zlr7xfh",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140609.956",
+ "deps": []
+ },
+ "edit-list": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "emacsmirror",
+ "repo": "edit-list",
+ "sha256": "0981hy1n50yizc3k06vbxqrpfml817a67kab1hkgkw5v6ymm1hc9",
+ "rev": "f460d3f9e208a4e606fe6ded307f1b011916ca71"
+ },
+ "recipe": {
+ "sha256": "0mi12jfgx06i0yr8k5nk80xryqszjv0xykdnri505862rb90xakv",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20100930.943",
+ "deps": []
+ },
+ "grapnel": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "leathekd",
+ "repo": "grapnel",
+ "sha256": "0nvl8mh7jxailisq31h5bi64s9b74ah1465wiwh18x502swr2s3c",
+ "rev": "fbd0f9a51139973d35e4014855964fa435e8ecaf"
+ },
+ "recipe": {
+ "sha256": "019cdx1wdx8sc2ibqwgp1akgckzxxvrayyp2sv806gha0kn6yf6r",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20131001.1034",
+ "deps": []
+ },
+ "fcopy": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "ataka",
+ "repo": "fcopy",
+ "sha256": "0c56j8ip2fyma9yvwaanz89jyzgi9k11xwwkflzlzc4smnvgfibr",
+ "rev": "e355f6ec889d8ecbdb096019c2dc660b1cec4941"
+ },
+ "recipe": {
+ "sha256": "13337ymf8vlbk8c4jpj6paqi06xdmk39yf72s40kmfrbvgmi8qy1",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150304.803",
+ "deps": []
+ },
+ "litable": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "Fuco1",
+ "repo": "litable",
+ "sha256": "1nbz119ldwjvkm3xd9m0dx820lc177frz5mn585fsd7kqdbkam99",
+ "rev": "9065bade1ba42ad04d9839d58082b73da589dca6"
+ },
+ "recipe": {
+ "sha256": "073yw3ivkl093xxppn5vqyh69jhfc97al505mnyn34fwdj5v8fji",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150908.909",
+ "deps": [
+ "dash"
+ ]
+ },
+ "ducpel": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "alezost",
+ "repo": "ducpel",
+ "sha256": "1ixb78dv66lmqlbv4zl5ysvv1xqafvqh1h5cfdv03jdkqlfk34jz",
+ "rev": "4a1671fc45ab92d44dee85a1a223122d5a43cb32"
+ },
+ "recipe": {
+ "sha256": "1cqrkgg7n9bhjswnpl7yc6w6yjs4gfbliaqsimmf9z43wk2ml4pc",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140419.16",
+ "deps": [
+ "cl-lib"
+ ]
+ },
+ "sclang-extensions": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "chrisbarrett",
+ "repo": "sclang-extensions",
+ "sha256": "0v36zd8lnsbc7jvnhv5pidfxabq2qqmwg1nm2jdxfj6vvcg3vx0x",
+ "rev": "7133494182738cb0ef49f31cc09cfe0d2fab520e"
+ },
+ "recipe": {
+ "sha256": "00nirxawsngvlx7bmf5hqg2wk0l1v5pi09r6phzd0q8gyq3kmbbn",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20131117.1639",
+ "deps": [
+ "auto-complete",
+ "dash",
+ "emacs",
+ "s"
+ ]
+ },
+ "highlight-leading-spaces": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "mrBliss",
+ "repo": "highlight-leading-spaces",
+ "sha256": "1vy6j63jp83ljdqkrqglpys74yfh7p61sd0lqiwczgr5nqyc60rl",
+ "rev": "840db19d863dd97993fd9f893f5be501627b6354"
+ },
+ "recipe": {
+ "sha256": "0h2ww2vqmarghf4zg0wbwn0wgndmkcjy696mc885rwavck2dav4p",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151216.622",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "elfeed": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "skeeto",
+ "repo": "elfeed",
+ "sha256": "1z0i4cb09xq37y77zdans29lsqwk2asc9ix6cca9bf8rdwiq665b",
+ "rev": "8a38a4c81496d40d3b7c45a6df5e41258a52843c"
+ },
+ "recipe": {
+ "sha256": "1psga7fcjk2b8xjg10fndp9l0ib72l5ggf43gxp62i4lxixzv8f9",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151215.1138",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "org-dropbox": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "heikkil",
+ "repo": "org-dropbox",
+ "sha256": "0jjdsng7fm4wbhvd9naqzdfsmkvj1sf1d9rikprg1pd58azv6idx",
+ "rev": "75dab6d6f0438a7a8a18ccf3a5d55f50bf531f6e"
+ },
+ "recipe": {
+ "sha256": "0qfvdz13ncqn7qaz03lwabzsnk62z6wqzlxlvdqv5xyllcy9m6ln",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150113.2309",
+ "deps": [
+ "dash",
+ "emacs",
+ "names"
+ ]
+ },
+ "resize-window": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "dpsutton",
+ "repo": "resize-window",
+ "sha256": "061lc8arwv7wmj98pii8ff6qk0sfhxhdh0f9dak5q8nazcvqgk41",
+ "rev": "0bc23978d1084da5638becf93b66816edc4ece54"
+ },
+ "recipe": {
+ "sha256": "0h1hlj50hc97wxqpnmvg6w3qhdd9nbnb8r8v39ylv87zqjcmlp8l",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151126.2229",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "kite": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "jscheid",
+ "repo": "kite",
+ "sha256": "1cr4i66lws6yhyxmyx5jw6d5x7i75435mafkkych4nfa0mv4vicd",
+ "rev": "7ed74d1147a6ddd152d3da65dc30df3517d53144"
+ },
+ "recipe": {
+ "sha256": "04x92qcvx428l2cvm2nk9px7r8i159k0ra0haq2sjncjr1ajhg9m",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20130201.1338",
+ "deps": [
+ "json",
+ "websocket"
+ ]
+ },
+ "google-maps": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "jd",
+ "repo": "google-maps.el",
+ "sha256": "183igr5lp20zcqi7rc01fk76sfxdhksd74i11v16gdsifdkjimd0",
+ "rev": "90151ab59e693243ca8da660ce7b9ce361ea5126"
+ },
+ "recipe": {
+ "sha256": "0a0wqs3cnlpar2dzdi6h14isw78vgqr2r6psmrzbdl00s4fcyxwx",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20130412.430",
+ "deps": []
+ },
+ "htmlize": {
+ "fetch": {
+ "tag": "fetchgit",
+ "url": "http://fly.srk.fer.hr/~hniksic/emacs/htmlize.git",
+ "sha256": "8afaf87b30628afd8d376965247a6b2791129339ad7238c5529f4b173f908251",
+ "rev": "aa6e2f6dba6fdfa200c7c55efe29ff63380eac8f"
+ },
+ "recipe": {
+ "sha256": "15pym76iwqb1dqkbmkgc1yar450g2xinfl89fyss2ifyi4am1nxp",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20130207.1402",
+ "deps": []
+ },
+ "forecast": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "cadadr",
+ "repo": "forecast.el",
+ "sha256": "1jw888nqmbi9kcd9ycl2fqrmrnqxnmkx72n0b3nf3hp7j956yb21",
+ "rev": "51526906140700f076bd329753abe7ae31b6da90"
+ },
+ "recipe": {
+ "sha256": "0whag2n1120384w304g0w4bqr7svdxxncdhnz4rznfpxlgiw2rsc",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151105.1635",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "perl6-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "hinrik",
+ "repo": "perl6-mode",
+ "sha256": "1ibnax9498jwcmkgm0jnl7q8qlwkgkp8nhp6zz7xr0x1d0dibcas",
+ "rev": "6c97f87fd8556cc0dc7a6754ab2237ea815bf5a4"
+ },
+ "recipe": {
+ "sha256": "0af1djypd8n0n1fq10sl8mrdg27354kg9g87d6xz4q5phvi48cqv",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151014.1718",
+ "deps": [
+ "emacs",
+ "pkg-info"
+ ]
+ },
+ "tox": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "chmouel",
+ "repo": "tox.el",
+ "sha256": "16217i8rjhgaa5kv8iq0s14b42v5rs8m2qlr60a0x6qzy65chq39",
+ "rev": "5c1a7c18cb7f2fd2da2386debf86012e6953e15d"
+ },
+ "recipe": {
+ "sha256": "1z81x8fs5q6r19hpqphsilk8wdwwnfr8w78x5x298x74s9mcsywl",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20141004.1603",
+ "deps": []
+ },
+ "swap-buffers": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "ekazakov",
+ "repo": "swap-buffers",
+ "sha256": "1kn70570r6x0h1xfs1vr8as27pjfanyhml140yms60gdjb4ssf9r",
+ "rev": "46ab31359b70d935add6c6e9533443116dc51103"
+ },
+ "recipe": {
+ "sha256": "0ih5dhnqy3c9nlfz9m2zwy4q4jaam09ykbdqhsxx2hnwjk7p35bw",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150506.1639",
+ "deps": []
+ },
+ "window-jump": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "chumpage",
+ "repo": "chumpy-windows",
+ "sha256": "069aqyqzjp5ljqfzm7lxkh8j8firk7041wc2jwzqha8jn9zpvbxs",
+ "rev": "164be41b588b615864258c502583100d3ccfe13e"
+ },
+ "recipe": {
+ "sha256": "1gmqb7j5fb3q3krgx7arrln5nvyg9vcpph6wlxj6py679wfa3lwr",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150213.1436",
+ "deps": []
+ },
+ "org-screenshot": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "dfeich",
+ "repo": "org-screenshot",
+ "sha256": "0ay68vz1mqr46svy9bwnd2cb9yykad3jwwm1zvvi9w87drx5pj3y",
+ "rev": "90c78dce2846bd1d148181ff896afe0f9fa9bdeb"
+ },
+ "recipe": {
+ "sha256": "012pm38d9v8qmg83vrsp39y6y30il0956rlrcmb5m5nzla84z2c3",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151106.704",
+ "deps": [
+ "org"
+ ]
+ },
+ "init-open-recentf": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "zonuexe",
+ "repo": "init-open-recentf.el",
+ "sha256": "0xk7lyhd9pgahbscqwa2qkh2vgnbs5yz78am3zh930k4ig9lbmjh",
+ "rev": "f7999730ed8b02a9f4b9f884defd40a90772765b"
+ },
+ "recipe": {
+ "sha256": "0xlmfxhxb2car8vfx7krxmxb3d56x0r3zzkj8ds7yqvr65z85x2r",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151106.2223",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "geben": {
+ "fetch": {
+ "tag": "fetchsvn",
+ "url": "http://geben-on-emacs.googlecode.com/svn/trunk/",
+ "sha256": "01kbvmylymm6qww45mbjjxmb8ccdl9c2pxdyqfq3g73vwzrvndk4",
+ "rev": "124"
+ },
+ "recipe": {
+ "sha256": "1hvvy1kp8wrb1qasm42fslgdkg095g4jxgzbnwpa4vp5cq270qbm",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20100330.543",
+ "deps": []
+ },
+ "date-field": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "aki2o",
+ "repo": "emacs-date-field",
+ "sha256": "1lmwnj2fnvijj9qp4rjggl7c4x91vnpb47rqaam6m2wmr5wbrx3w",
+ "rev": "11c9170d1f7b343233f7716d4c0a62be024c1654"
+ },
+ "recipe": {
+ "sha256": "0fmw13sa4ajs1xkrkdpcjpbp0jl9d81cgvwh93myg8yjjn7wbmvk",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20141128.1905",
+ "deps": [
+ "dash",
+ "log4e",
+ "yaxception"
+ ]
+ },
+ "regex-dsl": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "alk",
+ "repo": "elisp-regex-dsl",
+ "sha256": "1d34jd7is979vfgdy56zkd1m15ng3waiabfpak6dv6ak3cdh5fgx",
+ "rev": "ac89ab8b7691a165ef3007cb84417125cfc0632e"
+ },
+ "recipe": {
+ "sha256": "129sapsmvcqqqgcr9xlmxwszsxvsb4nj9g2fxsl4y6r383840jbr",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20100124.428",
+ "deps": []
+ },
+ "lemon-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "mooz",
+ "repo": "lemon-mode",
+ "sha256": "0n6jrm5ilm5wzfrh7yjxn3sr5m10hwdm55b179ild32lh4795zj7",
+ "rev": "155bfced6c9afc8072a0133d3d1baa54c6d67430"
+ },
+ "recipe": {
+ "sha256": "0jdf3556kmv55jh85ljqh2gdx0jl2b8zgvpz9a4kf53xifk3lqz5",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20130216.704",
+ "deps": []
+ },
+ "atom-one-dark-theme": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "jonathanchu",
+ "repo": "atom-one-dark-theme",
+ "sha256": "05cqic5amvm7cmcw9z3x93g7hq9y2l4gpr3i2z5a9fmadqq9zbyy",
+ "rev": "5fe3c1463daa4736435eb0c4716d4bf29f25f0a6"
+ },
+ "recipe": {
+ "sha256": "0wwnkhq7vyysqiqcxc1jsn98155ri4mf4w03k7inl1f8ffpwahvw",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151115.2245",
+ "deps": []
+ },
+ "toggle-window": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "deadghost",
+ "repo": "toggle-window",
+ "sha256": "0f86aij1glmvgpbhmfpi441zy0r37zblb0q3ycgq0dp92x8yny5r",
+ "rev": "e82c60e543933880402ede11e9423e48a17dde53"
+ },
+ "recipe": {
+ "sha256": "1z080jywqj99xiwbvfclr6gjkc6spr3dqjb9kq1g4971vx4w8n9g",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20141207.948",
+ "deps": []
+ },
+ "slamhound": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "technomancy",
+ "repo": "slamhound",
+ "sha256": "108zcb7hdaaq3sxjfr9nrwzqxx71q6aygzik7l3ab854xknkjfad",
+ "rev": "f43dd49b63b2838081735ea1988f70de05389692"
+ },
+ "recipe": {
+ "sha256": "14zlcw0zw86awd6g98l4h2whav9amz4m8ik877d1wsdjf69g7k9x",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140506.1818",
+ "deps": []
+ },
+ "syslog-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "vapniks",
+ "repo": "syslog-mode",
+ "sha256": "1sxpda380c9wnnf5d72lrcqm6dkihf48cgsjcckzf706cc00ksf4",
+ "rev": "c18661b3058f0ec00e6957c955559a762cb0062c"
+ },
+ "recipe": {
+ "sha256": "15kh2v8jsw04vyh2lmh1ndpxli3cwp6yq66hl8mwb1i3g429az19",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140217.1818",
+ "deps": [
+ "hide-lines"
+ ]
+ },
+ "evil-numbers": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "cofi",
+ "repo": "evil-numbers",
+ "sha256": "1aq95hj8x13py0pwsnc6wvd8cc5yv5qin8ym9js42y5966vwj4np",
+ "rev": "6ea1c8c3a9b37bed63d48f1128e9a4910e68187e"
+ },
+ "recipe": {
+ "sha256": "1lpmkklwjdf7ayhv99g9zh3l9hzrwm0hr0ijvbc7yz3n398zn1b2",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140606.751",
+ "deps": []
+ },
+ "switch-window": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "dimitri",
+ "repo": "switch-window",
+ "sha256": "1zpfilcaycj0l2q3zyvpjbwp5j3d9rrkacd5swzlr1n1klvbji48",
+ "rev": "cd4b06121aa5bac4c4b13b63526a99008def5f2b"
+ },
+ "recipe": {
+ "sha256": "02f0zjvlzms66w1ryhk1cbr4rqwklzvgcjfiicj0lcnqqx61m2k2",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150114.415",
+ "deps": []
+ },
+ "zeal-at-point": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "jinzhu",
+ "repo": "zeal-at-point",
+ "sha256": "1csxy186mi59zb3hmv2fngcz4hhg4r9qzqsyjjsn45l8zrb4q7vf",
+ "rev": "f18afeae0a4e0cd339a386255ac65b35deb787bb"
+ },
+ "recipe": {
+ "sha256": "1cz53plk5bax5azm13y7xz530qcfh0scm0cgrkrgwja2wwlxirnw",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151103.2107",
+ "deps": []
+ },
+ "helm-robe": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "syohex",
+ "repo": "emacs-helm-robe",
+ "sha256": "163ljqar3vvbavzc8sk6rnf8awyc2rhh2g117fglswich3c8lnqg",
+ "rev": "7348d0bc0251b51979554ea678b970fd01c0efe9"
+ },
+ "recipe": {
+ "sha256": "1gi4nkm9xvnxv0frmhiiw8dkmnmhfpr9n0b6jpidlvr8xr4s5kyw",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151208.2155",
+ "deps": [
+ "helm"
+ ]
+ },
+ "helm-flx": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "PythonNut",
+ "repo": "helm-flx",
+ "sha256": "02aran1myhm43skv7rjinrjbrayj1ld1s5f604bbqil8swvrq5ba",
+ "rev": "f634e85ee92f6a390da33d1a618a4c353e270762"
+ },
+ "recipe": {
+ "sha256": "03vxr5f5m4s6k6rm0976w8h3s4c3b5mrdqgmkd281hmyh9q3cslq",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151103.1025",
+ "deps": [
+ "emacs",
+ "flx",
+ "helm"
+ ]
+ },
+ "ac-capf": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "syohex",
+ "repo": "emacs-ac-capf",
+ "sha256": "0nyq34yq4jcp3p30ygma3iz1h0q551p33792byj76pa5ps09g1da",
+ "rev": "17571dba0a8f98111f2ab758e9bea285b263781b"
+ },
+ "recipe": {
+ "sha256": "1drgk5iz2wp3rxzd39pj0n4cfmm5z8zqlp50jw5z7ffbbg35qxbm",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151031.2117",
+ "deps": [
+ "auto-complete",
+ "cl-lib"
+ ]
+ },
+ "lice": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "buzztaiki",
+ "repo": "lice-el",
+ "sha256": "0df5v401w9n2d64gxxgb34mb4dm2nxc8jx1cj9ir23cx9dqmxjrq",
+ "rev": "4e34674e188afc29e8f9c1efa84ae16e486dd43c"
+ },
+ "recipe": {
+ "sha256": "1hv2hz3153x0gk7f2js18dbx5pyprfdf2pfxb658fj16vxpp7y6x",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151130.2223",
+ "deps": []
+ },
+ "mark-tools": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "stsquad",
+ "repo": "emacs-mark-tools",
+ "sha256": "0k4zvbs09mkr8vdffv18s55rn9cyxldzav9vw04lm7v296k94ivz",
+ "rev": "a11b61effa90bd0abc876d12573674d36fc17f0c"
+ },
+ "recipe": {
+ "sha256": "1688y7lnzhwdva2ildjabzi10i87klfsgvs947i7gfgxl7jwhisq",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20130614.525",
+ "deps": []
+ },
+ "xah-get-thing": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "xahlee",
+ "repo": "xah-get-thing-or-selection",
+ "sha256": "0abknznp2si80zq5pc0hqr3w3pca2vrv3msm6jz1s8l8zi2hwx72",
+ "rev": "d2dadc54417468cc42da72c4e02fd23e3fd0584a"
+ },
+ "recipe": {
+ "sha256": "0m61bmfgqy19h4ivw655mqj547ga8hrpaswcp48hx00hx8mqzcvg",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150712.1630",
+ "deps": []
+ },
+ "helm-gitignore": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "jupl",
+ "repo": "helm-gitignore",
+ "sha256": "0pd755s5zcg8y1svxj3g8m0znkp6cyx5y6lsj4lxczrk7lynzc3g",
+ "rev": "03aad6edb0ed4471c093230856f26719754e570b"
+ },
+ "recipe": {
+ "sha256": "01l7mx8g1m5qnwz973hzrgds4gywm56jgl4hcdxqvpi1n56md3x6",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150517.2256",
+ "deps": [
+ "cl-lib",
+ "gitignore-mode",
+ "helm",
+ "request"
+ ]
+ },
+ "echo-bell": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/echo-bell.el",
+ "sha256": "11914ca1q8szqyqihfm2q39cway3p6j1fdggr99lk6848dkf5p1v"
+ },
+ "recipe": {
+ "sha256": "0adhdfbcpmdhd9252rh0jik2z3v9bzf0brpzfvcjn5py2x6724ws",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151007.2025",
+ "deps": []
+ },
+ "dkmisc": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "davidkeegan",
+ "repo": "dkmisc",
+ "sha256": "1nz71g8pb19aqjcb4s94hhn6j30cc04q05kmwvcbxpjb11qqrv49",
+ "rev": "fe3d49c6f8322b6f89466361acd97585bdfe0608"
+ },
+ "recipe": {
+ "sha256": "0nnbl272hldcmhyj47r463yvj7b06rjdkpkl5xk0gw9ikyja7w0z",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20131110.515",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "dedicated": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "emacsorphanage",
+ "repo": "dedicated",
+ "sha256": "0pba9s0h37sxyqh733vi6k5raa4cs7aradipf3826inw36jcw414",
+ "rev": "8275fb672f9cc4ba6682ebda0ef91db827e32992"
+ },
+ "recipe": {
+ "sha256": "1ka8n02r3nd2ksbid23g2qd6707c7xsjx7lbbdi6pcmwam5mglw9",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20090428.1431",
+ "deps": []
+ },
+ "pixiv-novel-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "zonuexe",
+ "repo": "pixiv-novel-mode.el",
+ "sha256": "14gn2qd72x3zfqzh2cngxcjpdiibyki1g4d1vdav5v9vcbglgm5d",
+ "rev": "65809cf31816257d8c6c92868af6c30abf7b2043"
+ },
+ "recipe": {
+ "sha256": "0f1rxvf9nrw984122i6dzsgik9axfjv6yscmg203s065n9lz17px",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150110.54",
+ "deps": []
+ },
+ "edit-indirect": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "Fanael",
+ "repo": "edit-indirect",
+ "sha256": "10c84aad1lnr7z9f75k5ylgchykr3srcdmn88hlcx2n2c4jfbkds",
+ "rev": "d1ab87fdfbc2a894a7eaac8b289a5af2d7c835b0"
+ },
+ "recipe": {
+ "sha256": "0q5jjmrvx5kaajllmhaxihsab2kr1vmcsfqrhxdhw3x3nf41s439",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20141213.1205",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "asn1-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "kawabata",
+ "repo": "asn1-mode",
+ "sha256": "0h18x9nh152dnyqjv5b1zjksl8wb75s8zmx3v8vvmwqyy6ql8gcj",
+ "rev": "f8acc7e79306ca416f28ff4dc308d8ec47af51a5"
+ },
+ "recipe": {
+ "sha256": "0iswisb08dqz7jc5ra4wcdhbmglildgyrb547dm5362xmvm9ifmy",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151124.28",
+ "deps": [
+ "emacs",
+ "s"
+ ]
+ },
+ "soundklaus": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "r0man",
+ "repo": "soundklaus.el",
+ "sha256": "1ipg4vvh6vgf0az8p31br1xkb8ndjmd6fybcx11r3c479sg0y6k7",
+ "rev": "830f2b5f4dd4bd110db23a71494b92bb8fe5b058"
+ },
+ "recipe": {
+ "sha256": "0b63sbgwp99ff94dxrqqp2p99j268fjkkzx0g42g726hv80d4fxb",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150102.1521",
+ "deps": [
+ "cl-lib",
+ "dash",
+ "deferred",
+ "emacs",
+ "emms",
+ "pkg-info",
+ "s"
+ ]
+ },
+ "morlock": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "tarsius",
+ "repo": "morlock",
+ "sha256": "1ndgw4799d816pkn2bwja5kmigydpmj9znn8cax4dxsd9fg2hzjy",
+ "rev": "804131c7cff5dafa762c666fd66458111e4ee36f"
+ },
+ "recipe": {
+ "sha256": "0693jr1k8mzd7hwp52azkl62c1g1p5yinarjcmdksfyqblqq5jna",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150815.1034",
+ "deps": []
+ },
+ "helm-fuzzy-find": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "xuchunyang",
+ "repo": "helm-fuzzy-find",
+ "sha256": "1yxnmxq6ppfgwxrk5ryc5xfn82kjf4j65j14hy077gphr0q61q6a",
+ "rev": "daf24bc236dafa4f4be45f1621e11dbc9f304b64"
+ },
+ "recipe": {
+ "sha256": "0lczlrpd5jy2vhy9jl3rjcdyiwr136spqm8k2rj8m9s8wpn0v75i",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150613.549",
+ "deps": [
+ "emacs",
+ "helm"
+ ]
+ },
+ "auto-complete": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "auto-complete",
+ "repo": "auto-complete",
+ "sha256": "1dp7gmrykln29axs1l180abi5ycnn3fzkg7qrlvsnrlkzl43zrji",
+ "rev": "67df105a4210b114e01ec08368b8b6b07f28de77"
+ },
+ "recipe": {
+ "sha256": "1c4ij5bnclg94jdzhkqvq2vxwv6wvs051mbki1ibjm5f2hlacvh3",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151211.427",
+ "deps": [
+ "cl-lib",
+ "popup"
+ ]
+ },
+ "psvn": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "emacsmirror",
+ "repo": "psvn",
+ "sha256": "1jz1g0igpnsjn2r144205bffj10iyp8izm8678mzkhnricxkn0d6",
+ "rev": "23048d302858fc3a52c118652bd83491a4956410"
+ },
+ "recipe": {
+ "sha256": "1wdww25pjla7c8zf04mvgia1ws8cal9rb7z8g3vn2s3gp68py12n",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151103.1242",
+ "deps": []
+ },
+ "go-snippets": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "toumorokoshi",
+ "repo": "go-snippets",
+ "sha256": "0di6xwpl6pi0430q208gliz8dgrzwqnmp997q7xcczbkk8zfwn0n",
+ "rev": "983eb74025030bf6d405f1ed63be3162cc28a528"
+ },
+ "recipe": {
+ "sha256": "1wcbnfzxailv18spxyv4a0nwlqh9l7yf5vxg0qcjcp5ajd2w12kn",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151122.57",
+ "deps": [
+ "yasnippet"
+ ]
+ },
+ "sparql-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "ljos",
+ "repo": "sparql-mode",
+ "sha256": "1gk2ps7fn9z8n6r923qzn518gz9mrj7mb6j726cz8qb585ndjbij",
+ "rev": "303858e7f91829ec720141482c777460e66f310b"
+ },
+ "recipe": {
+ "sha256": "1xicrfmgxpb31lz30qj450w8v7dl4ipjp7b2wz54s4kn88nsfj7d",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151104.1114",
+ "deps": [
+ "cl-lib"
+ ]
+ },
+ "emamux-ruby-test": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "syohex",
+ "repo": "emamux-ruby-test",
+ "sha256": "1idsvilsvlxh72waalhl8vrsmh0vfvz56qcv56fc2c0pb1i90icn",
+ "rev": "23b73c650573b340351a919da3da416acfc2ac84"
+ },
+ "recipe": {
+ "sha256": "1l1hp2dggjlc287qkfyj21w9lri4agh91g5x707qqq8nicdlv3xm",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20130812.1139",
+ "deps": [
+ "emamux",
+ "projectile"
+ ]
+ },
+ "expand-region": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "magnars",
+ "repo": "expand-region.el",
+ "sha256": "0qqqv0pp25xg1zh72i6fsb7l9vi14nd96rx0qdj1f3pdwfidqms1",
+ "rev": "59f67115263676de5345581216640019975c4fda"
+ },
+ "recipe": {
+ "sha256": "1c7f1nqsqdc75h22fxxnyg0m4yxj6l23sirk3c71fqj14paxqnwg",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150902.758",
+ "deps": []
+ },
+ "auto-compile": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "tarsius",
+ "repo": "auto-compile",
+ "sha256": "07vnk8az4lcxncqn01jvks38b4hpdmg43nbby2b39zy50agqnwsg",
+ "rev": "90eddfb63bd2b58be8a3fe9400b67ea45f67bb29"
+ },
+ "recipe": {
+ "sha256": "1cdv41hg71mi5ixxi4kiizyg03xai2gyhk0vz7gw59d9a7482yks",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151107.1608",
+ "deps": [
+ "dash",
+ "emacs",
+ "packed"
+ ]
+ },
+ "ruby-refactor": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "ajvargo",
+ "repo": "ruby-refactor",
+ "sha256": "0dk9vkrjncawf4j4y5dky215m0hgl266d9w6mr7g0rgy6m7wfcyq",
+ "rev": "8be821e89dac15fa402dba211a27b843147e4d17"
+ },
+ "recipe": {
+ "sha256": "0nwinnnhy72h1ihjlnjl8k8z3yf4nl2z7hfv085gwiacr6nn2rby",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151208.1207",
+ "deps": [
+ "ruby-mode"
+ ]
+ },
+ "redpen-paragraph": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "karronoli",
+ "repo": "redpen-paragraph.el",
+ "sha256": "0s38mi9w1dm9fzhd3l8xvq9x33rkb5vvd66jibza50dhn9dmakax",
+ "rev": "dcba4dc48593fedd48e398af50f6cdc60f453a07"
+ },
+ "recipe": {
+ "sha256": "0jr707ik6fhznq0q421l986w85ah0n9b4is91zrgbk1v6miqrhca",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151206.941",
+ "deps": [
+ "cl-lib",
+ "emacs"
+ ]
+ },
+ "tomatinho": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "konr",
+ "repo": "tomatinho",
+ "sha256": "0a3zvhy3jxs88zk4nhdc7lzybz4qji9baw5gm88sxlgcjgn7ip6n",
+ "rev": "7468bbfca79e6ed70ad8fb9517bc05f02fe602c7"
+ },
+ "recipe": {
+ "sha256": "1ad3kr73v75vjrc09mdvb7a3ws834k5y5xha3v0ldah38cl1pmjz",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140120.1740",
+ "deps": []
+ },
+ "r-autoyas": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "mattfidler",
+ "repo": "r-autoyas.el",
+ "sha256": "0dhljmdlg4p832w9s7rp8vznkpjkwpg8k9hj95cn2h76c0afwz3j",
+ "rev": "b4020ee7f5f895e0065b8b26da8a49c51432d530"
+ },
+ "recipe": {
+ "sha256": "18zifadsgbwnga205jvpx61wa2dvjxmxs5v7cjqhny45a524nbv4",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140101.910",
+ "deps": [
+ "ess",
+ "yasnippet"
+ ]
+ },
+ "buffer-stack": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/buffer-stack.el",
+ "sha256": "0d87cl7a4rcd6plbjyf26vaar7imwd18z24xdi4dz734m9zbkg6r"
+ },
+ "recipe": {
+ "sha256": "00vxfd4ki5pqf9n9vbmn1441vn2y14bdr1v05h46hswf13b4hzrn",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20101223.420",
+ "deps": []
+ },
+ "frame-fns": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/frame-fns.el",
+ "sha256": "0vh3k8wjvf78r5gv6sn468a4gxfxf4f63csk54izgyspyv6mj9c7"
+ },
+ "recipe": {
+ "sha256": "1wq8wva9q1hdzkvjk582a3fgig0lpqz9ch1p2jd6p29kb1i15f5p",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150104.1608",
+ "deps": []
+ },
+ "scad-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "openscad",
+ "repo": "openscad",
+ "sha256": "0z1nf0hdm5q3b65y5jsg5f7qmzk2ilw24i3yg4r8dyygk5c40mr6",
+ "rev": "f0a935d8c6b9994da05986313e3c4b7ab05b44be"
+ },
+ "recipe": {
+ "sha256": "04b4y9jks8sslgmkx54fds8fba9xv54z0cfab52dy99v1301ms3k",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150330.2229",
+ "deps": []
+ },
+ "ccc": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "skk-dev",
+ "repo": "ddskk",
+ "sha256": "11qr5ami93rwgvc3pf9370rsxbnawdllsrizm1v53xsi98yfp812",
+ "rev": "83f1acd557d1b5561f6bc5a3abae7ab9ab4ea440"
+ },
+ "recipe": {
+ "sha256": "0fckhmz4svcg059v4acbn13yf3ijs09fxmq1axc1b9bm3xxig2cq",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151205.743",
+ "deps": []
+ },
+ "search-web": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "tomoya",
+ "repo": "search-web.el",
+ "sha256": "08yc67a4ji7z8s0zh500wiscziqsxi92i1d33fjla2mcr8sxxn0i",
+ "rev": "c4ae86ac1acfc572b81f3d78764bd9a54034c331"
+ },
+ "recipe": {
+ "sha256": "0qqx9l8dn1as4gqpq80jfacn6lz0132m91pjzxv0fx6al2iz0m36",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150312.603",
+ "deps": []
+ },
+ "helm-growthforecast": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "daic-h",
+ "repo": "helm-growthforecast",
+ "sha256": "0p0mk44y2z875ra8mzcb6vlf4rbkiq9yank5hdxvg2x2sxsaambk",
+ "rev": "0f94ac090d6c354058ad89a86e5c18385c136d9b"
+ },
+ "recipe": {
+ "sha256": "0716rhs5dam6p8ym83vy19svl6jr49lcfgb29mm3cqi9jcch3ckh",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140119.2144",
+ "deps": [
+ "helm"
+ ]
+ },
+ "id-manager": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "kiwanami",
+ "repo": "emacs-id-manager",
+ "sha256": "0bzbp0vgnzvd1m3lhbcrxmknpi0cjisff6jd49f1nvkdx3p2ks40",
+ "rev": "0d968929bbaff813dd7e098c7f69e0b54434ce09"
+ },
+ "recipe": {
+ "sha256": "13g5fi06hvx0x2wn1d1d8rkfq5n6wbk9g5bhx2b5sar2yw0akmwm",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150605.2239",
+ "deps": []
+ },
+ "clips-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "grettke",
+ "repo": "clips-mode",
+ "sha256": "0i6sj5rs4b9v8aqq9l6wr15080qb101hdxspx6innhijhajgmssd",
+ "rev": "a3ab4a3e958d54a16544ec38fe6338f27df20817"
+ },
+ "recipe": {
+ "sha256": "083wrhjn04rg8vr6j0ziffdbdhbfn63wzl4q7yzpkf8qckh6mxhf",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20131012.1601",
+ "deps": []
+ },
+ "kivy-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "kivy",
+ "repo": "kivy",
+ "sha256": "0mk5z0kxacjdcd64vq8ryg0bdb2230141kfxka7dphjl4q7wdfhi",
+ "rev": "2d1b4664d2e733a46db3cfeb1f2c052fa86e7cf5"
+ },
+ "recipe": {
+ "sha256": "02l230rwivr7rbiqm4vg70458z35f9v9w3mdapcrqd5d07y5mvi1",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140524.757",
+ "deps": []
+ },
+ "mpv": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "kljohann",
+ "repo": "mpv.el",
+ "sha256": "193j90sgn1zgl00mji86wll4djj57vk5arhwbmhhf5b1qx3wpbhm",
+ "rev": "3021c55fa5723a806dde5fb2a630b115e2c53d06"
+ },
+ "recipe": {
+ "sha256": "1vq308ac6jj1h8qa2b2sypisb38hbvwjimqndhpfir06fghkw94l",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150218.318",
+ "deps": [
+ "cl-lib",
+ "emacs",
+ "json",
+ "names",
+ "org"
+ ]
+ },
+ "go-dlv": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "benma",
+ "repo": "go-dlv.el",
+ "sha256": "0wha1h5mnnh3nsiaf5q1drrvk1gj2cn18bapi8ysy5jdpzi4xqsv",
+ "rev": "8d5a0076b3d43e7af61149370e583c0d15cb2dd1"
+ },
+ "recipe": {
+ "sha256": "13mk7mg2xk7v65r1rs6rmvi4g5nvm8jqg3p9nhk62d46i7dzp61i",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151030.259",
+ "deps": [
+ "go-mode"
+ ]
+ },
+ "column-enforce-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "jordonbiondo",
+ "repo": "column-enforce-mode",
+ "sha256": "0ay4wrnyrdp4v3vjxr99hy8fpq6zsyh246c0gbp7bh63l5fx8nwr",
+ "rev": "f43263e50ae83db099d83ea445f93e248a3207a0"
+ },
+ "recipe": {
+ "sha256": "1qh7kwr65spbbnzvq744gkksx50x04zs0nwn5ly60swc05d05lcg",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140902.1149",
+ "deps": []
+ },
+ "busybee-theme": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "mswift42",
+ "repo": "busybee-theme",
+ "sha256": "11z987frzswnsym8g3l0s9wwdly1zn5inl2l558m6kcvfy7g59cx",
+ "rev": "70850d1781ff91c4ce125a31ed451d080f8da643"
+ },
+ "recipe": {
+ "sha256": "0w0z5x2fbnalv404av3mapfkqbfgyk81a1mzvngll8x0pirbyi10",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20130920.1142",
+ "deps": []
+ },
+ "erlang": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "erlang",
+ "repo": "otp",
+ "sha256": "1dl2sxd77miaqbl9plrg6kgql5jg5vz42lj9f85i771g95h2c6nk",
+ "rev": "21d6192389a04024f7a41ced9d0911a9cce6f4e8"
+ },
+ "recipe": {
+ "sha256": "1na5vk01q8bmglwmb37676313mmc5n28c4sip23kpxypkp6wvn3g",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151013.357",
+ "deps": []
+ },
+ "cssh": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "dimitri",
+ "repo": "cssh",
+ "sha256": "1xf2hy077frfz8qf91c0l0qppcjxzr4bsbb622bx6fidqkpa3a1a",
+ "rev": "2fe2754235225a59b63f08b130cfd4352e2e1c3f"
+ },
+ "recipe": {
+ "sha256": "10yvvyzqr06jvijmzis9clb1slzp2mn80yclis8wvrmg4p8djljk",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150810.1209",
+ "deps": []
+ },
+ "apropos-fn+var": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/apropos-fn+var.el",
+ "sha256": "0q1b2x4z0ds4y45gy7sxc68xyai3g8kmqnssnhdina4x20sgm2vf"
+ },
+ "recipe": {
+ "sha256": "1s5gnsipsj7dhc8ca806grg32i6vlwm78hcxhrbs830vx9k84g5x",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150425.1301",
+ "deps": []
+ },
+ "concurrent": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "kiwanami",
+ "repo": "emacs-deferred",
+ "sha256": "0m7y41hqv8mjwyy3v8pmgffqw11gcbyvhmydj1ph0jwxkc68hy14",
+ "rev": "01710a52a1206a0da1374335e6b89ad5aed92160"
+ },
+ "recipe": {
+ "sha256": "09wjw69bqrr3424h0mpb2kr5ixh96syjjsqrcyd7z2lsas5ldpnf",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150309.2252",
+ "deps": [
+ "deferred"
+ ]
+ },
+ "yari": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "hron",
+ "repo": "yari.el",
+ "sha256": "0w9a6j0ndpfwaz1g974vv5jqgbzxw26l19kq51j3ah73063cavpf",
+ "rev": "a2cb9656ee5dfe1fc2ee3854f3079a1c8e85dbe9"
+ },
+ "recipe": {
+ "sha256": "0sch9x899mzwdacg55w5j583k2r4vn71ish7gqpghd7cj13ii66h",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151128.139",
+ "deps": []
+ },
+ "cobra-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "Nekroze",
+ "repo": "cobra-mode",
+ "sha256": "1sx8grp3j7zcma3nb7zj6kijkdqx166vw1qgmm29hvx48bys6vlp",
+ "rev": "acd6e53f6286af5176471d01f25257e5ddb6dd01"
+ },
+ "recipe": {
+ "sha256": "11jscpbclxlq2xqy2nsfa4y575bp8h0kpkp8cfjqb05lm5ybcp89",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140116.1516",
+ "deps": []
+ },
+ "grep+": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/grep+.el",
+ "sha256": "03a4mmhbkwj2bq48525jba6wiczs943lmlhvy5vz8x4hb47rlmc3"
+ },
+ "recipe": {
+ "sha256": "1qj4f6d3l88bdcnq825pylnc76m22x2i15yxdhc2b6rv80df7zsx",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150104.1610",
+ "deps": []
+ },
+ "textile-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "juba",
+ "repo": "textile-mode",
+ "sha256": "1qcd7vdg63q80zwz8ziaznllq1x7micmljm72s6sh3720rb5aiz2",
+ "rev": "db33dc5f994c008ef9f1556801bf8ac62d451f31"
+ },
+ "recipe": {
+ "sha256": "0c1l7ml9b1zipk5fhmhirrh070h0qwwiagdk84i04yvdmmcjw2nf",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151203.253",
+ "deps": []
+ },
+ "xterm-title": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "emacsmirror",
+ "repo": "xterm-title",
+ "sha256": "06cbr7y3wp7j8lnbys57g6md4fdx9xhlnxl73pj7xpfa5i2x9ifl",
+ "rev": "b6ea73d297d191d48bba7dd1e2adc23bbdfa1c3c"
+ },
+ "recipe": {
+ "sha256": "08z8qg9x6vjpybbhxa8x46qnp3951miz1264fivg776y76cg3ck6",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20091203.1223",
+ "deps": []
+ },
+ "helm-zhihu-daily": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "xuchunyang",
+ "repo": "helm-zhihu-daily",
+ "sha256": "11fznbfcv4rac4h50mkax1g66wd2f91f5dw2v4jxjq2f5y4h4w0g",
+ "rev": "c084d2505621dbb71d83ec10550fa0801623cafc"
+ },
+ "recipe": {
+ "sha256": "0hkgail60s9qhxl0pskqxjvfz93iq1qh1kcmcq0x5kq7d08b911r",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151006.319",
+ "deps": [
+ "cl-lib",
+ "emacs",
+ "helm"
+ ]
+ },
+ "vector-utils": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "rolandwalker",
+ "repo": "vector-utils",
+ "sha256": "1wa03gb98x650q798aqshm43kh6gfxaz1rlyrmvka5dxgf48whmf",
+ "rev": "c38ca1c6a23b2b51a6ac36c2c64e50e21cbe9d21"
+ },
+ "recipe": {
+ "sha256": "07armr23pq5pd47lqhir6a59r86c84zikbc51d8vfcaw8y71yr5n",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140508.1541",
+ "deps": []
+ },
+ "darkburn-theme": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "gorauskas",
+ "repo": "darkburn-theme",
+ "sha256": "19vrxfzhi0sqf7frzjx5z02d65r2jp1w2nhhf0527g7baid5hqvf",
+ "rev": "a0151684ae4fa7c364115188422f6c3425d1594c"
+ },
+ "recipe": {
+ "sha256": "18hwdnwmkf640vcyx8d66i424wwazbzjq3k0w0xjmwsn2mpyhm9w",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151003.300",
+ "deps": []
+ },
+ "bongo": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "dbrock",
+ "repo": "bongo",
+ "sha256": "0ghjfrwc2i04rxg3nqc5fg2kgfyjlhk8n2qcz53p9i7ncc3zgpha",
+ "rev": "4cdacc10a530d4edbfdf6c95891f3cf229518e9d"
+ },
+ "recipe": {
+ "sha256": "07i9gw067r2igp6s2g2iakm1ybvw04q6zznna2cfdf08nax64ghv",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151205.1009",
+ "deps": [
+ "cl-lib"
+ ]
+ },
+ "ac-dabbrev": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/ac-dabbrev.el",
+ "sha256": "0q0lbhdng5s5hqa342yyvg02hf2bfbwq513lj1rlaqz4ykvpd7fh"
+ },
+ "recipe": {
+ "sha256": "03lndw7y55bzz4rckl80j0kh66qa82xxxhfakzs1dh1h9f1f0azh",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20130906.18",
+ "deps": []
+ },
+ "caskxy": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "aki2o",
+ "repo": "caskxy",
+ "sha256": "15sq5vrkhb7c5j6ny6wy4bkyl5pggch4l7zw46an29rzni3pffr3",
+ "rev": "dc18dcab7ed526070ab76de071c9c5272e6ac40e"
+ },
+ "recipe": {
+ "sha256": "0x4s3c8m75zxsvqpgfc5xwll0489zzdnngmnq048z9gkgcd7pd2s",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140513.1039",
+ "deps": [
+ "log4e",
+ "yaxception"
+ ]
+ },
+ "aurora-config-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "bdd",
+ "repo": "aurora-config.el",
+ "sha256": "0ns1xhpk1awbj3kv946dv11a99p84dhm54vjk72kslxwx42nia28",
+ "rev": "0a7ca7987c3a0824e25470389c7d25c337a81593"
+ },
+ "recipe": {
+ "sha256": "0yqmpwj1vp0d5w9zw1hbyxzsbvw165dsgk1v1dxizkqwn7b1v7jm",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140520.403",
+ "deps": []
+ },
+ "twittering-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "hayamiz",
+ "repo": "twittering-mode",
+ "sha256": "02c9z229ayqnmlvja5a2fz3vk8914v9v8akin57q8a0gyzn2bli5",
+ "rev": "97197cdd3cc005000dc2599f67c754d74fab5972"
+ },
+ "recipe": {
+ "sha256": "0v9ijxw5jazh2hc0qab48y71za2l9ryff0mpkxhr3f79irlqy0a1",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150906.1203",
+ "deps": []
+ },
+ "rtags": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "Andersbakken",
+ "repo": "rtags",
+ "sha256": "0pdjbjg81xy41ybrmc2aznb2gv3pic5a0l0gn2yg2hzdbrgfyswn",
+ "rev": "c68e490fea320c62da44a06fe216fb073f1ebf89"
+ },
+ "recipe": {
+ "sha256": "16jvbr4nm48p3dj9wmysjaxyz4ajcay19risqrs9fzrifkr21c9p",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151215.147",
+ "deps": []
+ },
+ "totd": {
+ "fetch": {
+ "tag": "fetchFromGitLab",
+ "owner": "egh",
+ "repo": "emacs-totd",
+ "sha256": "188cdgic25wrb4jdgdcj070a0pxsh3m0rd9d2r6i1s1n1nalrs6g",
+ "rev": "ca47b618ea8290776cdb5b0f1c2c335691f69660"
+ },
+ "recipe": {
+ "sha256": "1bp07xl9yh9x6bi6cn8wz11x90jhv1rhxaig540iydjn5b0ny9m0",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150519.940",
+ "deps": [
+ "cl-lib",
+ "s"
+ ]
+ },
+ "skewer-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "skeeto",
+ "repo": "skewer-mode",
+ "sha256": "0yj7r5f751lra9jj7lg90qp66sgnb7fcjw5v9hfna7r13qdn9f20",
+ "rev": "5c76ab1786f2f365eff33fd5f52ce4ec3f9b42a2"
+ },
+ "recipe": {
+ "sha256": "1zp4myi9f7pw6zkgc0xg12585iihn7khcsf20pvqyc0vn4ajdwqm",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150914.1504",
+ "deps": [
+ "emacs",
+ "js2-mode",
+ "simple-httpd"
+ ]
+ },
+ "yesql-ghosts": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "magnars",
+ "repo": "yesql-ghosts",
+ "sha256": "1fyvvkx6pa41bcr9cyh4yclwdzc5bs742s9fxr6wb4a5scq3hg9m",
+ "rev": "8f1faf0137b85a5072d13e1240a463d9a35ce2bb"
+ },
+ "recipe": {
+ "sha256": "1hxzbnfd15f0ifdqjbw9nhxd0z46x705v2bc0xl71nav78fgpswf",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150220.637",
+ "deps": [
+ "cider",
+ "dash",
+ "s"
+ ]
+ },
+ "latex-extra": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "Malabarba",
+ "repo": "latex-extra",
+ "sha256": "06k1x3334hmdfs07s2nsvjs6qq9bk3dz2ij2kq667rc7m11hwa77",
+ "rev": "b4ca0185b7046b1d4e2ef90082f23e9e774d626d"
+ },
+ "recipe": {
+ "sha256": "1w98ngxymafigjpfalybhs12jcf4916wk4nlxflfjcx8ryd9wjcj",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151116.322",
+ "deps": [
+ "auctex",
+ "cl-lib"
+ ]
+ },
+ "minizinc-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "m00nlight",
+ "repo": "minizinc-mode",
+ "sha256": "0808cl5ixvmhd8pa6fc8rn7wbxzvqjgz43mz1pambj89vbkzmw1c",
+ "rev": "98064f098e6871382614fcf3c99520f7a526af0a"
+ },
+ "recipe": {
+ "sha256": "1blb6mbyqvmdvwp477p1ggs3n6rzi9sdfvi0v1wfzmd7k749b10c",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151214.758",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "transpose-frame": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/transpose-frame.el",
+ "sha256": "1f67yksgw9s6j0033hmqzaxx2a93jm11sd5ys7cc3li5gfh680m4"
+ },
+ "recipe": {
+ "sha256": "0bqip7vckic3kfq3d31ifs1zics1djxwj2jadafj6f1agv02sdz5",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151126.826",
+ "deps": []
+ },
+ "travis": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "nlamirault",
+ "repo": "emacs-travis",
+ "sha256": "1jd7xsvs4m55fscp62a9lk59ip4sgifv4kazl55b7543nz1i31bz",
+ "rev": "c8769d3db10ed4604969049e3bd276afa0a0138e"
+ },
+ "recipe": {
+ "sha256": "1km496cq1vni9gy2d3z4c9524q62750ywz745rjz4r7178ip9mix",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150825.638",
+ "deps": [
+ "dash",
+ "pkg-info",
+ "request",
+ "s"
+ ]
+ },
+ "mocha-snippets": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "cowboyd",
+ "repo": "mocha-snippets.el",
+ "sha256": "06c92q1wrj6b8d8k7i10d4gcy5liag3x4f4chh510c4d3wi0f6sp",
+ "rev": "b8d321eda797e8382f0033901694860fe52f19a9"
+ },
+ "recipe": {
+ "sha256": "0dbsdk4jpzxv2sxx0nia9zhd0a0wmkz1qcqmbd15m1909ccdwxds",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150116.1000",
+ "deps": [
+ "yasnippet"
+ ]
+ },
+ "calfw-gcal": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "myuhe",
+ "repo": "calfw-gcal.el",
+ "sha256": "14n5rci4bkbl7037xvkd69gfxnjlgvd2j1xzciqcgz92f06ir3xi",
+ "rev": "14aab20687d6cc9e6c5ddb9e11984c4e14c3d870"
+ },
+ "recipe": {
+ "sha256": "182p56wiycrm2cjzmlqabksyshpk7nga68jf80vjjmaavp5xqsq8",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20120111.400",
+ "deps": []
+ },
+ "project-explorer": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "sabof",
+ "repo": "project-explorer",
+ "sha256": "04l4m3kxbwvyw9xy6cwakrdxxdswrrs7sya8zn6m738aawbr1mcd",
+ "rev": "589a09008706f5f4ef91393dc4306eede0d15ca9"
+ },
+ "recipe": {
+ "sha256": "076lzmyi1n7yrgdgyh9qinq271qk6k64x0msbzarihr3p4psrn8m",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150503.1914",
+ "deps": [
+ "cl-lib",
+ "emacs",
+ "es-lib",
+ "es-windows"
+ ]
+ },
+ "sequential-command": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/sequential-command.el",
+ "sha256": "0vg8rqzzi29swznhra2mnf45czr2vb77dpcxn3j0fi7gynx3wcwk"
+ },
+ "recipe": {
+ "sha256": "03qybacgy5fs3lam73x0rds4f68s173mhbah6rr97272nikd50v1",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151207.1603",
+ "deps": []
+ },
+ "ant": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "apgwoz",
+ "repo": "ant-el",
+ "sha256": "1g4ah0iwqrvvzcxr0ss6il5kign73gzcz1dbc22wdgprlfa4hah7",
+ "rev": "8afe6cd0ee4674911ce6b9381b551ab22c567c49"
+ },
+ "recipe": {
+ "sha256": "03rxn2dh0xj89kl24jd19q7kmrn1hnr2cdl3519bpng298kxwni6",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20131228.107",
+ "deps": []
+ },
+ "ac-helm": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "yasuyk",
+ "repo": "ac-helm",
+ "sha256": "1ycchpiiavxw8n08gra0bsp9pxp6ln8cgjrkz9jjq7i6ixi8f9d6",
+ "rev": "0cde22dac4726d08c27801c926cf40b1165c8a07"
+ },
+ "recipe": {
+ "sha256": "16ajxlhcah5zbvywpc6l4l1arr308gjpgvdx6l1nrv2zvpckhlwq",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140919.1117",
+ "deps": [
+ "auto-complete",
+ "cl-lib",
+ "helm",
+ "popup"
+ ]
+ },
+ "node-resolver": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "meandavejustice",
+ "repo": "node-resolver.el",
+ "sha256": "1cgmq00ackabwcl4h0n2bb8y08wz0ir5rzca2q3sk4asly6d02m7",
+ "rev": "ef9d0486907a746a80b02ffc6208a09c168a9f7c"
+ },
+ "recipe": {
+ "sha256": "1ng4rgm8f745fajqnbjhi2rshvn6icwdpbh5dzpzhim1w9kb3bhh",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140930.1223",
+ "deps": [
+ "cl-lib"
+ ]
+ },
+ "rainbow-delimiters": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "Fanael",
+ "repo": "rainbow-delimiters",
+ "sha256": "0gxc8j5a14bc9mp43cbcz41ipc0z1yvmypg52dnl8hadirry20gd",
+ "rev": "0823d0c67f935a4c36a1c945e93051102963c7fb"
+ },
+ "recipe": {
+ "sha256": "132nslbnszvbgkl0819z811yar3lms1hp5na4ybi9gkmnb7bg4rg",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150320.217",
+ "deps": []
+ },
+ "pp+": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/pp+.el",
+ "sha256": "1997hkxnnhrhkszzxmhabkh8ifb07bzr0w9svx8yynn22j0s5dmh"
+ },
+ "recipe": {
+ "sha256": "1ng5x7dp85y6yqj6q43h08qdnapg2j1ab8rmc47w4w79d1pryniq",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150418.1028",
+ "deps": []
+ },
+ "evil-annoying-arrows": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "endrebak",
+ "repo": "evil-annoying-arrows",
+ "sha256": "05fba10yvxl82g2xl48mxwz7cwjp4pylb7n8a4b08i8f9xasny7f",
+ "rev": "1ec60cea0e67d782e5b8d093d19da6d0d4fd1e7f"
+ },
+ "recipe": {
+ "sha256": "024zz9l43y1kk2hm8l96h1ahril23cj35f0x72jrcfjysid7wpry",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150509.1618",
+ "deps": [
+ "cl-lib"
+ ]
+ },
+ "dired-hacks-utils": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "Fuco1",
+ "repo": "dired-hacks",
+ "sha256": "15jri9cj5jgr3ff423izd8idd7djay238c9pa3ccy05djl9z2hdx",
+ "rev": "6647825dbca4269afa76302e345d6bd15b222e42"
+ },
+ "recipe": {
+ "sha256": "1vgl0wqf7gc2nbiqjn0rkrdlnxfm3wrgspx5b3cixv2n8rqx8kyi",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150819.1148",
+ "deps": [
+ "dash"
+ ]
+ },
+ "twig-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "moljac024",
+ "repo": "twig-mode",
+ "sha256": "0wvmih2y3hy7casxx2y1w8csmzfnfgbb5ivpggr94sc86p6bg8sa",
+ "rev": "2849f273a4855d3314a9c0cc84134f5b28ad5ea6"
+ },
+ "recipe": {
+ "sha256": "1m3xjgmkqg8aj536wcg2f2hf4y6whscbsh7z7448hl4b5qjwii4n",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20130220.1250",
+ "deps": []
+ },
+ "genrnc": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "aki2o",
+ "repo": "emacs-genrnc",
+ "sha256": "08cw1fa25kbhbq2sp1cpn90bz38i9hjfdj93xf6wvki55b52s0nn",
+ "rev": "da75b1966a73ad215ec2ced4522c25f4d0bf1f9a"
+ },
+ "recipe": {
+ "sha256": "1nwbdscl0yh9j1n421can93m6s8j9dkyb3xmpampr6x528g6z0lm",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140612.737",
+ "deps": [
+ "concurrent",
+ "deferred",
+ "log4e",
+ "yaxception"
+ ]
+ },
+ "unicode-progress-reporter": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "rolandwalker",
+ "repo": "unicode-progress-reporter",
+ "sha256": "16jgm70ldsngxldiagjkw3ragypalpiidnf82g5hss9ciybkd3j4",
+ "rev": "5e66724fd7d15743213b082474d798117b194494"
+ },
+ "recipe": {
+ "sha256": "03z7p27470fqy3gd356l9cpp44a35sfrxz94dxmx388rzlygk7y7",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140508.1541",
+ "deps": [
+ "emacs",
+ "list-utils",
+ "pcache",
+ "persistent-soft",
+ "ucs-utils"
+ ]
+ },
+ "faff-theme": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "WJCFerguson",
+ "repo": "emacs-faff-theme",
+ "sha256": "1sc5f867h7i0n2gd9qcydqn1b2pk227l92ad4bf9nnpl3jmdr26v",
+ "rev": "8ec2bee09b386c711b0753ab12ace926d06fca7e"
+ },
+ "recipe": {
+ "sha256": "1dmwbkp94zsddy0brs3mkdjr09n69maw2mrdfhriqcdk56qpwp4g",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151027.717",
+ "deps": []
+ },
+ "fm": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "emacsmirror",
+ "repo": "fm",
+ "sha256": "1fk4zsb4jliwz10sqz5bpqgj1p479mc506dmvy4zq3vqnpbypqvs",
+ "rev": "555bcebdf47ea3b1d9d1e152af7237b9daa62d59"
+ },
+ "recipe": {
+ "sha256": "118d8fbhlv6i2rsyfqdhi841p96j7q4fab5qdg95ip40wq02dg4f",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20130126.1818",
+ "deps": []
+ },
+ "company-anaconda": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "proofit404",
+ "repo": "company-anaconda",
+ "sha256": "1369k2wcf5mgbnxsp6dn9vrml8dzq7lgv3a1918jhgmlxicn4dm1",
+ "rev": "f796fea142cb164a08f9b0968f565e279bd23dd7"
+ },
+ "recipe": {
+ "sha256": "1s7y47ghy7q35qpfqavh4p9wr91i6r579mdbpvv6h5by856yn4gl",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151210.523",
+ "deps": [
+ "anaconda-mode",
+ "cl-lib",
+ "company",
+ "dash",
+ "s"
+ ]
+ },
+ "inlineR": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "myuhe",
+ "repo": "inlineR.el",
+ "sha256": "15nasjknmzy57ilj1gaz3w5sj8b3ijcpgwcd6w2r9xhgcl86m40q",
+ "rev": "29357186beca825e3d0451b700ec09b9ed65e37b"
+ },
+ "recipe": {
+ "sha256": "1fflq2gkpfn3jkv4a6yywzmxsq6qszfid1ri85ass1ppw6scdvzw",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20120520.932",
+ "deps": []
+ },
+ "evil-tutor": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "syl20bnr",
+ "repo": "evil-tutor",
+ "sha256": "00yfq8aflxvp2nnz7smgq0c5wlb7cips5irj8qs6193ixlkpffvx",
+ "rev": "4e124cd3911dc0d1b6817ad2c9e59b4753638f28"
+ },
+ "recipe": {
+ "sha256": "1hvc2w5ykrgh62n4sxqqqcdk5sd7nmh6xzv4mir5vf9y2dgqcvsn",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150103.50",
+ "deps": [
+ "evil"
+ ]
+ },
+ "flycheck-dmd-dub": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "atilaneves",
+ "repo": "flycheck-dmd-dub",
+ "sha256": "0dqkd9h54qmr9cv2gmic010j2h03i80psajrv4wq3c4pvxyqyn2j",
+ "rev": "1acd7e3683ed55ac11f013e325c1cbf19be8ad66"
+ },
+ "recipe": {
+ "sha256": "0pg3sf7h6xqv65yqclhlb7fx1mp2w0m3qk4vji6m438kxy6fhzqm",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151019.822",
+ "deps": [
+ "flycheck"
+ ]
+ },
+ "evil-visualstar": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "bling",
+ "repo": "evil-visualstar",
+ "sha256": "17m4kdz1is4ipnyiv9n3vss49faswbbd6v57df9npzsbn5jyydd0",
+ "rev": "bd9e1b50c03b37c57355d387f291c2ec8ce51eec"
+ },
+ "recipe": {
+ "sha256": "135l9hjfbpn0a6p53picnpydi9qs5vrk2rfn64gxa5ag2apcyycy",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150514.1610",
+ "deps": [
+ "evil"
+ ]
+ },
+ "hlinum": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "tom-tan",
+ "repo": "hlinum-mode",
+ "sha256": "0yw89kxvz53i9rbq3lsbp5xkgfl1986s23vyra5pipakfv85gmq4",
+ "rev": "22218c9883a2de6468bf6ad13864b50b44c93592"
+ },
+ "recipe": {
+ "sha256": "04b6m0njr7yrbcbpkhqz4hmqpfacmyca3lw75dyw3vpjpsj2g0iv",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150621.2133",
+ "deps": [
+ "cl-lib"
+ ]
+ },
+ "rainbow-identifiers": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "Fanael",
+ "repo": "rainbow-identifiers",
+ "sha256": "05i0jpmxzsj2lsj48cafn3v93z37l7k5kaza2ik3yirdpjdibyrh",
+ "rev": "19fbfded1baa98d12335f26f6d7b20e5ae44ce2e"
+ },
+ "recipe": {
+ "sha256": "0lw790ymrgpyh0sxwmzinl2ik5vl5vggbg14cd0cx5yagkw5y3mp",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20141102.926",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "demangle-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "liblit",
+ "repo": "demangle-mode",
+ "sha256": "13jfhc9gavvb9dxmgi3k7ivp5iwh4yw4m11r2s8wpwn6p056bmfl",
+ "rev": "07e62a7f976f6c7366b4b0475bbb5cff881452b8"
+ },
+ "recipe": {
+ "sha256": "0ky0bb6rc99vrdli4lhs656qjndnla9b7inc2ji9l4n1zki5qxzk",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151109.1453",
+ "deps": [
+ "cl-lib",
+ "emacs"
+ ]
+ },
+ "github-clone": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "dgtized",
+ "repo": "github-clone.el",
+ "sha256": "1w1w3rmfj7bj721v0f3bg8hjadipa1z8yf62xpn3ypfr0wa6hnhy",
+ "rev": "36202b802f6d0e4a9da63e5d93d99b6171407e4a"
+ },
+ "recipe": {
+ "sha256": "0ffrm4lmcj3d9kx3g2d5xbiih7hn4frs0prjrvcjq8acvsbc50q9",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151217.230",
+ "deps": [
+ "emacs",
+ "gh",
+ "magit"
+ ]
+ },
+ "shrink-whitespace": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "jcpetkovich",
+ "repo": "shrink-whitespace.el",
+ "sha256": "07zzyfibs2c7w4gpvdh9003frznbg7zdnrx0nv8bvn0b68d3yz0m",
+ "rev": "8d4263d974fbe66417c0bb9edc155ecc2f48e4b7"
+ },
+ "recipe": {
+ "sha256": "12if0000i3rrxcm732layrv2h464wbb4xflbbfc844c83dbx1jmq",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150916.1415",
+ "deps": []
+ },
+ "helm-git-files": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "kenbeese",
+ "repo": "helm-git-files",
+ "sha256": "157b525h0kiaknn12fsw67fg26lzb20apx8sssmvlcicqcd51iaw",
+ "rev": "43193960774069369ac6964bbf7c026900206fa8"
+ },
+ "recipe": {
+ "sha256": "02109r956nc1dmqh4v082vkr9wdixh03xhl7icwkzl7ipr5453s6",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20141212.717",
+ "deps": [
+ "helm"
+ ]
+ },
+ "hi2": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "nilcons",
+ "repo": "hi2",
+ "sha256": "1s08sgbh5v59lqskd0s1dscs6dy7z5mkqqkabs3gd35agbfvbmlf",
+ "rev": "c9d199727b5cdcb9e36a972b38131ce4611fd6c8"
+ },
+ "recipe": {
+ "sha256": "1wxkjg1jnw05lqzggi20jy2jl20d8brvv76vmrf6lnz62g6jv9h2",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20141005.1431",
+ "deps": []
+ },
+ "deferred": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "kiwanami",
+ "repo": "emacs-deferred",
+ "sha256": "0m7y41hqv8mjwyy3v8pmgffqw11gcbyvhmydj1ph0jwxkc68hy14",
+ "rev": "01710a52a1206a0da1374335e6b89ad5aed92160"
+ },
+ "recipe": {
+ "sha256": "0axbvxrdjgxk4d1bd9ar4r5nnacsi8r0d6649x7mnhqk12940mnr",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151007.1857",
+ "deps": []
+ },
+ "eshell-did-you-mean": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "xuchunyang",
+ "repo": "eshell-did-you-mean",
+ "sha256": "0v0wshck5n4hspcv1zk1g2nm6xiigcjp16lx0dc8wzkl6ymljvbg",
+ "rev": "7cb6ef8e2274d0a50a9e114d412307a6543533d5"
+ },
+ "recipe": {
+ "sha256": "1z1wpn3sj1gi5nn0a71wg0i3av0dijnk79dc32zh3qlh500kz8mz",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150915.1452",
+ "deps": [
+ "cl-lib",
+ "emacs"
+ ]
+ },
+ "bind-key": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "jwiegley",
+ "repo": "use-package",
+ "sha256": "14v6wzqn2jhjdbr7nwqilxy9l79m1f2rdrz2c6c6pcla5yjpd1k0",
+ "rev": "77a77c8b03044f0279e00cadd6a6d1a7ae97b016"
+ },
+ "recipe": {
+ "sha256": "1qw2c27016d3yfg0w10is1v72y2jvzhq07ca4h6v17yi94ahj5xm",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150321.413",
+ "deps": []
+ },
+ "urlenc": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "buzztaiki",
+ "repo": "urlenc-el",
+ "sha256": "0xwr0v4f64d7hi5ldig4r5yjn8h3f8by49g5820187lsp7ng2nw4",
+ "rev": "835a6dcb783bbe84714bae87a3464aa0b128bfac"
+ },
+ "recipe": {
+ "sha256": "0n6shh95m11162zsnf62zy1ljswdjznjilxx2dbqyqdrn7qr2dgh",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140116.856",
+ "deps": []
+ },
+ "bbdb-": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "aki2o",
+ "repo": "bbdb-",
+ "sha256": "17nbnkg0zn6p89r27mk9hl6qhv6xscwdsq8iyikdw03svpr16lnp",
+ "rev": "2839e84c894de2513af41053e80a277a1b483d22"
+ },
+ "recipe": {
+ "sha256": "1vzbalcchay4pxl9f1sxg0zclgc095f59dlj15pj0bqq61sbl9jf",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140221.1754",
+ "deps": [
+ "bbdb",
+ "log4e",
+ "yaxception"
+ ]
+ },
+ "ace-pinyin": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "cute-jumper",
+ "repo": "ace-pinyin",
+ "sha256": "00pcdf2nz27f7zbpyrgqr9nh8pd4nhxvsz885b6mq263s0qyykzx",
+ "rev": "d7c8fed8ab6f6fbbbcb95bcd74516c30d05dcdfa"
+ },
+ "recipe": {
+ "sha256": "18gmj71zd0i6yx8ifjxsqz2v81jx0j37f5kxllf31w7fj32ymbkc",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151126.1517",
+ "deps": [
+ "ace-jump-mode",
+ "avy"
+ ]
+ },
+ "vc-auto-commit": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "thisirs",
+ "repo": "vc-auto-commit",
+ "sha256": "081cyicwyx1jdjkk5xp9pgy4xqnawwznkxz2pc570xxf06yx46cs",
+ "rev": "b23ee2727495b89d0a979a7420ce3a313434fdfe"
+ },
+ "recipe": {
+ "sha256": "1xpp7vbld3jgcr249m5h7il919kfg7d5ap3zs64i27axzdhv26zk",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150330.303",
+ "deps": []
+ },
+ "etable": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "Fuco1",
+ "repo": "ETable",
+ "sha256": "1k361bbwd9z17qlycymb1x7scidvgvrh9bdp06rhwfh9j3slrbxy",
+ "rev": "8c9a32a92e7f808874c150c851f1605b2dd83d6e"
+ },
+ "recipe": {
+ "sha256": "0m4h24mmhp680wfhb90im228mrcyxapzyi4kla8xdmss83gc0c32",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150327.1216",
+ "deps": [
+ "dash",
+ "emacs",
+ "interval-list"
+ ]
+ },
+ "gplusify": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "jorgenschaefer",
+ "repo": "gplusify",
+ "sha256": "1l43h008l7n6waclb2km32dy8aj7m5yavm1pkq38p9ppzayfxqq1",
+ "rev": "bd6237ae671db2fbf406dcc6225839dcbd2475b2"
+ },
+ "recipe": {
+ "sha256": "0fgkcvppkq6pba1giddkfxp9z4c8v2cid9nb8a190b3g85wcwycr",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150312.1444",
+ "deps": []
+ },
+ "prop-menu": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "david-christiansen",
+ "repo": "prop-menu-el",
+ "sha256": "18ap2liz5r5a8ja2zz9182fnfm47jnsbyblpq859zks356k37iwc",
+ "rev": "50b102c1c0935fd3e0c465feed7f27d66b21cdf3"
+ },
+ "recipe": {
+ "sha256": "0dhy52fxxpa058mhhx0slw3sly3dlxm9vkax6fd1sap6f6v00p5i",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150728.618",
+ "deps": [
+ "cl-lib",
+ "emacs"
+ ]
+ },
+ "esqlite": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "mhayashi1120",
+ "repo": "Emacs-esqlite",
+ "sha256": "0ag444hfrpdrf3lnaz7l2plj392xgh7a2080421z3g0alc74m8h3",
+ "rev": "fae9826cbc255b0f0686a801288f1441bda5f631"
+ },
+ "recipe": {
+ "sha256": "1dny5qjzl9gaj90ihzbhliwk0n0x7jz333hzf6gaw7wsjmx91wlh",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151206.606",
+ "deps": [
+ "pcsv"
+ ]
+ },
+ "green-phosphor-theme": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "aalpern",
+ "repo": "emacs-color-theme-green-phosphor",
+ "sha256": "0rgv96caigcjffg1983274p4ff1icx1xh5bj7rcd53hai5ag16mp",
+ "rev": "fa42f598626adfdc5450e5c380fa2d5df6110f28"
+ },
+ "recipe": {
+ "sha256": "1p4l75lahmbjcx74ca5jcyc04828vlcahk7gzv5lr7z9mhvq6fbh",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150515.947",
+ "deps": []
+ },
+ "cypher-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "fxbois",
+ "repo": "cypher-mode",
+ "sha256": "0vbcq807jpjssabmyjcdkpp6nnx1288is2c6x79dkrviw2xxw3qf",
+ "rev": "ce8543d7877c736c574a17b49874c9dcdc7a06d6"
+ },
+ "recipe": {
+ "sha256": "174rfbm7yzkznkfjmh9bdnm5fgqv9bjwm85h39317pv1g8c3mgv0",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151110.542",
+ "deps": []
+ },
+ "bbcode-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "ejmr",
+ "repo": "bbcode-mode",
+ "sha256": "17ip24fk13aj9zldn2qsr4naa8anqhm484m1an5l5i9m9awfiyn7",
+ "rev": "b6ff1bfb8041b1435ebfc0a7d8e5e34eeb1b6aae"
+ },
+ "recipe": {
+ "sha256": "0ixxavmilr6na56yc148prbh3nlhcwir6rxqvh332cr8vr9gmp89",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20141103.1541",
+ "deps": []
+ },
+ "ob-kotlin": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "zweifisch",
+ "repo": "ob-kotlin",
+ "sha256": "01cjwg27m0iqndkwwl0v5w8vvk270xvi81za3y5hyrmb7dq6bfy7",
+ "rev": "c494f50184d25e196c009bf5cc105c4931b9464d"
+ },
+ "recipe": {
+ "sha256": "19g4s9dnipg9aa360mp0affmnslm6h7byg595rnaz6rz25a3qdpx",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150312.814",
+ "deps": [
+ "org"
+ ]
+ },
+ "fold-dwim": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "emacsmirror",
+ "repo": "fold-dwim",
+ "sha256": "1yz1wis31asw6xa5maliyd1ck2q02xnnh7dc6swgj9cb4wi7k6i1",
+ "rev": "c46f4bb2ce91b4e307136320e72c28dd50b6cd8b"
+ },
+ "recipe": {
+ "sha256": "0c9yxx45zlhb1h4ldgkjv7bndwlagpyingaaqn9dcsxidrvp3p5x",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140208.1037",
+ "deps": []
+ },
+ "cake-inflector": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "k1LoW",
+ "repo": "emacs-cake-inflector",
+ "sha256": "0xq10jkbk3crdhbh4lab39xhfw6vvcqz3if5q3yy4gzhx7zp94i4",
+ "rev": "a91cecd533930bacf1dc30f5209831f79847abda"
+ },
+ "recipe": {
+ "sha256": "04mrqcm1igb638skaq2b3nr5yzxnck2vwhln61rnh7lkfxq7wbwf",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140415.358",
+ "deps": [
+ "s"
+ ]
+ },
+ "kwin": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "reactormonk",
+ "repo": "kwin-minor-mode",
+ "sha256": "0irbfgip493hyh45msnb7climgfwr8f05nvc97bzaqggnay88scy",
+ "rev": "d4f8f3593598b71ee596e0a87b2c1d6a912a9566"
+ },
+ "recipe": {
+ "sha256": "1pxnyj81py3ygadmyfrqndb0jkk6xlbf0rg3857hsy3ccblzm7ki",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150308.1312",
+ "deps": []
+ },
+ "purescript-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "dysinger",
+ "repo": "purescript-mode",
+ "sha256": "0k2plyvd6842yryzrfadbf4h7a9hrjvkcvixclbca2bkvfik3864",
+ "rev": "1390bf6a2ddd0764a5ee7f5cac4e88980cf44eaf"
+ },
+ "recipe": {
+ "sha256": "00gz752mh7144nsaka5q3q4681jp845kc5vcy2nbfnqp9b24l55m",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150316.2028",
+ "deps": []
+ },
+ "centered-cursor-mode": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/centered-cursor-mode.el",
+ "sha256": "15psyizjz8wf9wfxwwcdmg1bxf8jbv0qy40rskz7si7vxin8hhxl"
+ },
+ "recipe": {
+ "sha256": "0a5mymnkwjvpra8iffxjwa5fq3kq4vc8fw7pr7gmrwq8ml7il5zl",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151001.834",
+ "deps": []
+ },
+ "rectangle-utils": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "thierryvolpiatto",
+ "repo": "rectangle-utils",
+ "sha256": "14ysbjdndsmcc4j3zhc3nfjxhdm9310jx237mrp98ancxdhsh4q9",
+ "rev": "81071e62862c0062b8559eb217e6658878c34a1e"
+ },
+ "recipe": {
+ "sha256": "1w5z2gykydsfp30ahqjihpvq04c5v0cfslbrrg429hycys8apws7",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150528.1428",
+ "deps": [
+ "cl-lib",
+ "emacs"
+ ]
+ },
+ "helm-R": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "myuhe",
+ "repo": "helm-R.el",
+ "sha256": "0nip0zrmn944wy0x2dc5ryr0m7a948rn2a8cbaajghs7a7zai4cr",
+ "rev": "b0eb9d5f6a483a9dbe6eb6cf1f2024d4f5938bc2"
+ },
+ "recipe": {
+ "sha256": "0zq9f2xhgap3ihnrlsrsaxaz0nx014k0820bfsq7lckwcnm0mng1",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20120819.1914",
+ "deps": [
+ "ess",
+ "helm"
+ ]
+ },
+ "mingus": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "pft",
+ "repo": "mingus",
+ "sha256": "0r4jh58pls859fljb6qm49l4imfxxif9mxsmjgwan0czfhq33xqh",
+ "rev": "151f2225f9af3c4cc7ca89e94dc6a19077baf6a4"
+ },
+ "recipe": {
+ "sha256": "0vw09qk56l792706vvp465f40shf678mcmdh7iw8wsjix4401bzi",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151115.1317",
+ "deps": [
+ "libmpdee"
+ ]
+ },
+ "hippie-namespace": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "rolandwalker",
+ "repo": "hippie-namespace",
+ "sha256": "0b5wrid428s11afc48d6mdifmd31gmzyrj9zcpd3jwk63ydiihdc",
+ "rev": "d0d0f15c67ab8bef5e9d1e29a89ecd3613a60b49"
+ },
+ "recipe": {
+ "sha256": "1bzjhq116ci9c9f0aw121fn3drmg2pw5ny1w6wcasa4p30syxxf0",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140508.1541",
+ "deps": []
+ },
+ "sbt-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "hvesalai",
+ "repo": "sbt-mode",
+ "sha256": "1l6l90lhqk56l20dhy19snn0fz4di03j714d2v07yl19q64gfk6c",
+ "rev": "209a396babd0a302cbb5a32f16525aabb409528b"
+ },
+ "recipe": {
+ "sha256": "0a2ynbxgjgbm2nvrgss59xc98kmryf9bmd3qg7qxacyancyi2gxh",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151014.242",
+ "deps": [
+ "scala-mode2"
+ ]
+ },
+ "evil-easymotion": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "PythonNut",
+ "repo": "evil-easymotion",
+ "sha256": "17qb3qnnn2f8jj2mi8735ymnw8rhpj6w3l61lhqfrkc0m6vq1vhy",
+ "rev": "ba7f1e08a5dca4c0540b347f55547828421d6c79"
+ },
+ "recipe": {
+ "sha256": "0zixgdhc228y6yqr044cbyls0pihzacqsgvybhhar916p4h8izgv",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151016.2259",
+ "deps": [
+ "avy",
+ "emacs"
+ ]
+ },
+ "org-dashboard": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "bard",
+ "repo": "org-dashboard",
+ "sha256": "1nqfi139cag3ll8wxk8rh59hay97vi8i0mlgnams4jla285zydj5",
+ "rev": "b523aefb5822c1f09a70bc429579c2959929782b"
+ },
+ "recipe": {
+ "sha256": "1hvhhbmyx12wsf2n1hd0hg5cy05zyspd82xxcdh04g4s9r3ikqj5",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150812.502",
+ "deps": [
+ "cl-lib"
+ ]
+ },
+ "shpec-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "shpec",
+ "repo": "shpec-mode",
+ "sha256": "1mizhbwvnsxxjz6m94qziibvhghhp8v8db3wxrq3z9gsaqqkcndn",
+ "rev": "146adc8281d0f115df39a3a3f982ac59ab61b754"
+ },
+ "recipe": {
+ "sha256": "155hc1nym3fsvflps8d3ixaqw1cafqp97zcaywdppp47n7vj8zjl",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150530.422",
+ "deps": []
+ },
+ "jonprl-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "david-christiansen",
+ "repo": "jonprl-mode",
+ "sha256": "1a0091r1xs3fpvg1wynh53xibdsiaf2khz1gp6s8dc45z8r0bclx",
+ "rev": "a7c7525ee19682c700f4d1d432b5be5707e94f10"
+ },
+ "recipe": {
+ "sha256": "0763ad65dmpl2l5lw91mlppfdvrjg6ym45brhi8sdwwri1xnyv9z",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151203.342",
+ "deps": [
+ "cl-lib",
+ "emacs",
+ "yasnippet"
+ ]
+ },
+ "anything-replace-string": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "k1LoW",
+ "repo": "anything-replace-string",
+ "sha256": "1834yj2vgs4dasdfnppc8iw8ll3yif948biq9hj0sbpsa2d8y44k",
+ "rev": "1962f24243d6013bcef7e8d23136277d42e13130"
+ },
+ "recipe": {
+ "sha256": "1fagi6cn88p6sf1yhx1qsi7nw9zpyx9hdfl66iyskqwddfvywp71",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140317.536",
+ "deps": [
+ "anything"
+ ]
+ },
+ "novice+": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/novice+.el",
+ "sha256": "1lv911k9s0607g8mrhc42zb7s1cw0zqqafqbrk6w17j4hr53n897"
+ },
+ "recipe": {
+ "sha256": "0r4w4c6y4fny8k0kipzqjsn7idwbi9jq6x9yw51d41ra3pkpvfzf",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150104.1834",
+ "deps": []
+ },
+ "discover": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "mickeynp",
+ "repo": "discover.el",
+ "sha256": "0f7h2rhh37lrs6xclj182li6s1fawv5m8w3hgy6qgm06dam45lka",
+ "rev": "7b0044bbb3b3bd5d811fdfb0f5ac6ec8de1239df"
+ },
+ "recipe": {
+ "sha256": "1hf57p90jn1zzhjl63zv9ascbgkcbr0p0zmd3fvzpjsw84235dga",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140103.1539",
+ "deps": [
+ "makey"
+ ]
+ },
+ "ob-elixir": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "zweifisch",
+ "repo": "ob-elixir",
+ "sha256": "0qknm1h2ijnzs1km51hqwpnv5083m9ngi3nbxd90r7d6vva5fhhk",
+ "rev": "d0e8007efa0b99ab7a6e4cb7160a87d6cb60d210"
+ },
+ "recipe": {
+ "sha256": "1l5b9hww2vmqnjlsd6lbjpz9walck82ngang1amfnk4xn6d0gdhi",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151021.647",
+ "deps": [
+ "org"
+ ]
+ },
+ "ledger-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "ledger",
+ "repo": "ledger",
+ "sha256": "110yvfj01cfl40pf8c1ad8hy07kb6ibjiwvc8svfxrlhw5lca465",
+ "rev": "7eacf5130849b4d53948d4750e11bd08f8a97a27"
+ },
+ "recipe": {
+ "sha256": "0hi9waxmw1bbg88brlr3816vhdi0jj05wcwvrvfc1agvrvzyqq8s",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151026.1742",
+ "deps": []
+ },
+ "eshell-autojump": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "coldnew",
+ "repo": "eshell-autojump",
+ "sha256": "13crzgkx1lham1nfsg6hj2zg875majvnig0v4ydg691zk1qi4hc2",
+ "rev": "c6a8b81a16576df9875e721fbbfe6690d04e7e43"
+ },
+ "recipe": {
+ "sha256": "09l2680hknmdbwr4cncv1v4b0adik0c3sm5i9m3qbwyyxm8m41i5",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150927.224",
+ "deps": []
+ },
+ "company-restclient": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "iquiw",
+ "repo": "company-restclient",
+ "sha256": "04829y7510zxjww9pq8afvnzwyyv30c0b3a71mxwf6ympfxb9rx5",
+ "rev": "752f39490178832f6a09abd82e10d9356636350a"
+ },
+ "recipe": {
+ "sha256": "1md0n4k4wmbh9rmbwqh3kg2fj0c34rzqfd56jsq8lcdg14k0kdcb",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151202.601",
+ "deps": [
+ "cl-lib",
+ "company",
+ "emacs",
+ "know-your-http-well",
+ "restclient"
+ ]
+ },
+ "ac-cake": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "k1LoW",
+ "repo": "emacs-ac-cake",
+ "sha256": "1llpnb9vy612sg214i76rxnzcl3qx8pqnixczc5pik9kd3fdaz5f",
+ "rev": "f34c9e3ba8cb962e4708c8f53b623e1922500176"
+ },
+ "recipe": {
+ "sha256": "0s2pgf0m98ixgadsnn201vm5gnawanpvxv56sf599f33krqnxzkl",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140315.1129",
+ "deps": [
+ "auto-complete",
+ "cake"
+ ]
+ },
+ "ddskk": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "skk-dev",
+ "repo": "ddskk",
+ "sha256": "11qr5ami93rwgvc3pf9370rsxbnawdllsrizm1v53xsi98yfp812",
+ "rev": "83f1acd557d1b5561f6bc5a3abae7ab9ab4ea440"
+ },
+ "recipe": {
+ "sha256": "1wj3z6ldlkaj99xqh7a497in1syn7shf2w1ffcn6aiskxjrzmpiq",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151213.552",
+ "deps": [
+ "ccc",
+ "cdb"
+ ]
+ },
+ "el-swank-fuzzy": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/el-swank-fuzzy.el",
+ "sha256": "1g2jhm9m5qcj6a231n5ch6b8bqwzq3kj275nd4s89p89v1252qhn"
+ },
+ "recipe": {
+ "sha256": "1m7y4c0r1w8ndmr1wgc2llrbfawbbxnvcvgjpsckb3704s87yxr1",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20130824.657",
+ "deps": []
+ },
+ "org-tree-slide": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "takaxp",
+ "repo": "org-tree-slide",
+ "sha256": "0aacxxwhwjzby0f9r4q0lra5lqcrw5snnm1yc63jrs6c0ifakk45",
+ "rev": "dccd80418a4444df5e8301695ff0d0dfe86a3c21"
+ },
+ "recipe": {
+ "sha256": "0v857zplv0wdbg4li667v2p5pn5zcf9fgbqcwa75x8babilkl6jn",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151017.253",
+ "deps": []
+ },
+ "org-transform-tree-table": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "jplindstrom",
+ "repo": "emacs-org-transform-tree-table",
+ "sha256": "1h15fr16kgbyrxambmk4hsmha6hx4c4yqkccb82g3wlvzmnqj5x3",
+ "rev": "0a9bf07f01bc5fc3b349aff64e83999a8de83b52"
+ },
+ "recipe": {
+ "sha256": "0n68cw769nk90ms6w1w6cc1nxjwn1navkz56mf11bsiqvsk3km7r",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150110.833",
+ "deps": [
+ "dash",
+ "s"
+ ]
+ },
+ "asilea": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "Fanael",
+ "repo": "asilea",
+ "sha256": "1s973vzivibaqjb8acn4ylrdasxh17jcfmmvqp4wm05nwhg75597",
+ "rev": "2aab1cc63b64ef08d12e84fd7ba5c94065f6039f"
+ },
+ "recipe": {
+ "sha256": "1lb8nr6r6yy06m4pxg8w9ja4zv8k5xwhl95v2wv95y1qwhgnwg3j",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150105.925",
+ "deps": [
+ "cl-lib",
+ "emacs"
+ ]
+ },
+ "icomplete+": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/icomplete+.el",
+ "sha256": "1vcv3ssmn5wwjnz6wcc0lsb0awxgqk5pn9p8zgwnj8qbag31b4ky"
+ },
+ "recipe": {
+ "sha256": "0gxqkj4bjrxb046qisfz22wvanxx6bzl4hfv91rfwm78q3484slx",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150619.1003",
+ "deps": []
+ },
+ "ox-reveal": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "yjwen",
+ "repo": "org-reveal",
+ "sha256": "196bjiij0nj19qsz95y9l44sr63673mxxj0cv6aa3ijpm48vmj9p",
+ "rev": "b92d0e843f2526788caa08bda5284f23e15e09cd"
+ },
+ "recipe": {
+ "sha256": "092swxkkisvj2y18ynal8dn7wcfi7h4y6n0dlzqq28bfflarbwik",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151023.106",
+ "deps": [
+ "org"
+ ]
+ },
+ "demo-it": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "howardabrams",
+ "repo": "demo-it",
+ "sha256": "0ws46aq5nl6ayhfrg9lm12i53v99a7pbfwb65rn9xsy4176k7zqb",
+ "rev": "3953fab63b4ef4eb18272596ccb66dcace60528c"
+ },
+ "recipe": {
+ "sha256": "063v115xy9mcga4qv16v538k12rn9maz92khzwa35wx56bwz4gg7",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151020.1429",
+ "deps": []
+ },
+ "helm-package": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "syohex",
+ "repo": "emacs-helm-package",
+ "sha256": "14ad0b9d07chabjclffjyvnmrasar1di9wmpzf78bw5yg99cbisw",
+ "rev": "117f5f26c96c0854aadaf9c52aaec961195d5798"
+ },
+ "recipe": {
+ "sha256": "1qab2abx52xcqrnxzl0m3533ngp8m1cqmm3hgpzgx7yfrkanyi4y",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151210.248",
+ "deps": [
+ "cl-lib",
+ "helm"
+ ]
+ },
+ "dired-filter": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "Fuco1",
+ "repo": "dired-hacks",
+ "sha256": "15jri9cj5jgr3ff423izd8idd7djay238c9pa3ccy05djl9z2hdx",
+ "rev": "6647825dbca4269afa76302e345d6bd15b222e42"
+ },
+ "recipe": {
+ "sha256": "1mw94210i57wrqfyif6rh689xbwbpv1qp6bgc0j7z6g4xypvd52p",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150909.1336",
+ "deps": [
+ "dash",
+ "dired-hacks-utils"
+ ]
+ },
+ "mmm-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "purcell",
+ "repo": "mmm-mode",
+ "sha256": "04rapmqblfjvmdccm9kqi8gn0him1x2q7hjwsyb8mg4lwxcd7qp9",
+ "rev": "c9a857a638701482931ffaaee262b61ce53489f3"
+ },
+ "recipe": {
+ "sha256": "10vkqaf4684cm5yds1xfinvgc3v7871fb203sfl9dbkcgnd5dcjw",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150828.1916",
+ "deps": []
+ },
+ "revive": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "emacsmirror",
+ "repo": "revive",
+ "sha256": "037sac5fvz6l2zgzlf8ykk4jf9zhj7ybzyz013jqzjj47a6sn1r1",
+ "rev": "16e1ac7cfa2fdccddf60d4a0e15731fc7448d818"
+ },
+ "recipe": {
+ "sha256": "1l7c6zq3ga2k1488qb0hgxlk08p3vrcf0sx116c1f8z8nf4c8ny5",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150417.1755",
+ "deps": []
+ },
+ "smart-tab": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "genehack",
+ "repo": "smart-tab",
+ "sha256": "0aighpby8khrljb67m533bwkzlsckyvv7d09cnzr1rfwxiil0ml4",
+ "rev": "28918a72045811294ecb33f666ba23fe66c169af"
+ },
+ "recipe": {
+ "sha256": "0qi8jph2c9fdsv2mqgxd7wb3q4dax3g5x2hc53kbgkjxylagjvp5",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150703.1117",
+ "deps": []
+ },
+ "man-commands": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "nflath",
+ "repo": "man-commands",
+ "sha256": "0w3d01q46clg3kz1zy963sih0dsi3ryl4p8zrgpd1frpf8lpg5fv",
+ "rev": "0a5091bf1d27eb2c220c90b8e20cffd0784a2211"
+ },
+ "recipe": {
+ "sha256": "1yl7y0k24gydldfs406v1n523q46m9x6in6pgljgjnjravc67wnq",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20130627.1853",
+ "deps": []
+ },
+ "helm-git": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "maio",
+ "repo": "helm-git",
+ "sha256": "1yfy4a52hx44r32i0b75bka8gfcn5lp61jl86lzrsi2cr9wg10pn",
+ "rev": "cb96a52b5aecadd3c27aba7749d14e43ab128d55"
+ },
+ "recipe": {
+ "sha256": "1ib73p7cmkw96csxxpkqwn6m60k1xrd46z6vyp29gj85cs4fpsb8",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20120630.1603",
+ "deps": []
+ },
+ "git-lens": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "pidu",
+ "repo": "git-lens",
+ "sha256": "0s1adgsigaq47vx8bfbmr5z8jq9y230ykwbw0jqka61n4ibg9ish",
+ "rev": "1feacc217c58fd4a41f9378eb09658f664036509"
+ },
+ "recipe": {
+ "sha256": "1vv3s89vk5ncinqh2f724z0qbbzp8g4y5y670ryy56w1l6v2acfb",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150817.214",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "emacs-setup": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "echosa",
+ "repo": "emacs-setup",
+ "sha256": "15l3ab11vcmzqibkd6h5zqw5a83k8dmgcp4n26px29c0gv6bkpy8",
+ "rev": "cc36ad5318c6c0e65d1b9ff8dff5ea2437675de2"
+ },
+ "recipe": {
+ "sha256": "1x4rh8vx6fsb2d6dz2g9j6jamin1vmpppwy3yzbl1dnf7w4hx4kh",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20120727.926",
+ "deps": []
+ },
+ "interaction-log": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "michael-heerdegen",
+ "repo": "interaction-log.el",
+ "sha256": "0jdm4xjzpl5dr5s8n2hhd5md6hfl6m6v10nwd1n54pb7bv98aqsl",
+ "rev": "977a3d276b73a4e239addc6c30214bc55ac6fd1f"
+ },
+ "recipe": {
+ "sha256": "1r9qbvgssc2zdwgwmmwv5kapvmg1y3px7268gkiakkfanw3kqk6j",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150603.1210",
+ "deps": [
+ "cl-lib"
+ ]
+ },
+ "ac-emmet": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "yasuyk",
+ "repo": "ac-emmet",
+ "sha256": "1lkhqmfkjga7qi4r1m7mjax3pyf9m6minsn57cbzm2z2kvkhq22g",
+ "rev": "88f24876ee3b759978d4614a758280b5d512d543"
+ },
+ "recipe": {
+ "sha256": "09ycjllfpdgqaf5iis5bkkhal1vxvl3qkxrn2759p67s97c49f3x",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20131015.1058",
+ "deps": [
+ "auto-complete",
+ "emmet-mode"
+ ]
+ },
+ "dummy-h-mode": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/dummy-h-mode.el",
+ "sha256": "0zq94x4br3sk6n4chrfnw7hpnsicxa02fcpk8hw1hfsaq3327n6v"
+ },
+ "recipe": {
+ "sha256": "1h2pm37y9kz62id0rm0zzgh1hpkhd9gvq95kjd29w0awsp9b6ca4",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140816.733",
+ "deps": []
+ },
+ "highlight-quoted": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "Fanael",
+ "repo": "highlight-quoted",
+ "sha256": "0vqkadhzszlxiqb4ysr7p86hhmi4z1j95llxa680xn6md8x2sj8a",
+ "rev": "ec9108486cf7f21f9a0b13f81369849b3b525f1f"
+ },
+ "recipe": {
+ "sha256": "0x6gxi0jfxvpx7r1fm43ikxlxilnbk2xbhdy9xivhgmmdyqiqqkl",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140916.1322",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "org-wc": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "dato",
+ "repo": "org-wc",
+ "sha256": "0miahg10xx3sy85n22xqwjp1z7kcmcsb85dh0653sf7axp42kq98",
+ "rev": "f1765fc913f288432ee2cc330c8a7af3af7715c8"
+ },
+ "recipe": {
+ "sha256": "1sa9fcy0bnn06swwq2gfrgmppd6dsbmw2mq0v73mizg3l6has1zb",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20141101.120",
+ "deps": []
+ },
+ "undo-tree": {
+ "fetch": {
+ "tag": "fetchgit",
+ "url": "http://www.dr-qubit.org/git/undo-tree.git",
+ "sha256": "1ef5db7cf476dd37348fd1f11dd199613a89a2351dc583a42afd9d35a53d8ae2",
+ "rev": "a3e81b682053a81e082139300ef0a913a7a610a2"
+ },
+ "recipe": {
+ "sha256": "0vrjxprpk854989wcp4wjb07jhhxqi25p6c758gz264z3xa8g9cr",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140509.722",
+ "deps": []
+ },
+ "wordsmith-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "istib",
+ "repo": "wordsmith-mode",
+ "sha256": "0d2byl3si2r0zh5ih6xpsgcd9r114ry0lzg5vcf31rr2gqf0j06h",
+ "rev": "597e1e7c7ef89b06ed8280251ecd8f40ce55e1bf"
+ },
+ "recipe": {
+ "sha256": "1570h1sjjaks6bnhd4xrbx6nna4v7hz6dmrzwjq37rwvallasg1n",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151117.436",
+ "deps": []
+ },
+ "makey": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "mickeynp",
+ "repo": "makey",
+ "sha256": "1rr7vpm3xxzcaam3m8xni3ajy8ycyljix07n2jzczayri9sd8csy",
+ "rev": "a61781e69d3b451551e269446e1c5f624ab81137"
+ },
+ "recipe": {
+ "sha256": "06xgrlkqvg288yd4lyhx4vi80jlfarhblxk5m5zzs5as7n08cvk4",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20131231.830",
+ "deps": [
+ "cl-lib"
+ ]
+ },
+ "stumpwm-mode": {
+ "fetch": {
+ "tag": "fetchgit",
+ "url": "git://git.savannah.nongnu.org/stumpwm.git",
+ "sha256": "3547616b9e5694fd09014bbbf29458ee0dea828428b6bf7a6231670aacfb8271",
+ "rev": "61a7cf27e49e0779a53c018b2342f5f1c5cc70b4"
+ },
+ "recipe": {
+ "sha256": "0a77mh7h7033adfbwg2fbx84789962par43q31s9msjlqw15gs86",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140130.2016",
+ "deps": []
+ },
+ "magit-gitflow": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "jtatarik",
+ "repo": "magit-gitflow",
+ "sha256": "10c1qd1l92h0z7mz7j004bx3fc9p6ij3m732lwmni9vlfbishbb4",
+ "rev": "dd1d88888957f0fd8b950037e0e58dba2d3221d9"
+ },
+ "recipe": {
+ "sha256": "0wsqq3xpqqfak4aqwsh5sxjb1m62z3z0ysgdmnrch3qsh480r8vf",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150905.239",
+ "deps": [
+ "magit",
+ "magit-popup"
+ ]
+ },
+ "wsd-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "josteink",
+ "repo": "wsd-mode",
+ "sha256": "1jqm4ysakdnb8lp3kj1d4cr0krnwvm7b5i70sfkx8ps0f9k7dhjb",
+ "rev": "a5b012607793a5edc9d54b30e04f4a324144e930"
+ },
+ "recipe": {
+ "sha256": "0lgs33lm85j9y2c5nw6dl8v6avghyjdavbk6yzh1cya2d9v5f4q0",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150913.1230",
+ "deps": []
+ },
+ "rubocop": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "bbatsov",
+ "repo": "rubocop-emacs",
+ "sha256": "1y5z0kr4qwd4fyvhk0rhpbbp6dw2jpzrawx62jid5539wrdjcabk",
+ "rev": "c54905256410ce2aed6725d5b5f7ed61d4ddc956"
+ },
+ "recipe": {
+ "sha256": "114azl0fasmnq0fxxyiif3363mpg8qz3ynx91in5acqzh902fa3q",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151123.2337",
+ "deps": [
+ "dash",
+ "emacs"
+ ]
+ },
+ "planet-theme": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "cmack",
+ "repo": "emacs-planet-theme",
+ "sha256": "0q4zdw58yawqp9rhx04lhq0v7iaf61ydbw19gpw4an85j2hxrkzq",
+ "rev": "e2bd6645535a3044fceafb1ce5d296cc111d5f2a"
+ },
+ "recipe": {
+ "sha256": "1mhbydvk7brmkgmij5gpp6l9ixcyh1g3r4fw3kpq8nvgbwknsqc9",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150627.951",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "ert-runner": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "rejeep",
+ "repo": "ert-runner.el",
+ "sha256": "0ivnfc42pw9pc9glx2m4klzx4csy4m60hj1x12js7492bd0ri933",
+ "rev": "0a88a6cc9d970660c9f1205a623bc80d9bd5a05b"
+ },
+ "recipe": {
+ "sha256": "0fnb8rmjr5lvc3dq0fnyxhws8ync1lj5xp8ycs63z4ax6gmdqr48",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151023.313",
+ "deps": [
+ "ansi",
+ "commander",
+ "dash",
+ "f",
+ "s",
+ "shut-up"
+ ]
+ },
+ "coffee-fof": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "yasuyk",
+ "repo": "coffee-fof",
+ "sha256": "010v886ak0rbbhqwxwj6m0mkgh19s232igy7wwbv07l2pdqszf3p",
+ "rev": "211529594bc074721c6cbc4edb73a63cc05f89ac"
+ },
+ "recipe": {
+ "sha256": "02cqza46qp8y69jd33cg4nmcgvrpwz23vyxqnmzwwvlmnbky96yc",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20131012.730",
+ "deps": [
+ "coffee-mode"
+ ]
+ },
+ "zenburn-theme": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "bbatsov",
+ "repo": "zenburn-emacs",
+ "sha256": "14m4azwy6h8d9gw764ikddnis13armxagpfvj6v97773v56ankgg",
+ "rev": "fc77c5382f2074f8defe39541b4bfc568cd67ca7"
+ },
+ "recipe": {
+ "sha256": "1kb371j9aissj0vy07jw4ydfn554blc8b2rbi0x1dvfksr2rhsn9",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151218.1441",
+ "deps": []
+ },
+ "web-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "fxbois",
+ "repo": "web-mode",
+ "sha256": "1k3kwcr4q6j0ljxj8hqfy466nw12v5j7yrszg2brmgfxz2285k63",
+ "rev": "71aebc9f003dccce021be917deb58e9c0dd5c704"
+ },
+ "recipe": {
+ "sha256": "1vyhyc5nf4yj2m63inpwmcqvlsihaqw8nn8xvfdg44nhl6vjz97i",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151218.1600",
+ "deps": []
+ },
+ "helm-filesets": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "gcla",
+ "repo": "helm-filesets",
+ "sha256": "00yhmpv5xjlw1gwbcrznz83gkaby8zlqv74d3p7plca2cwjll1g9",
+ "rev": "b352910af4c3099267a8aa0169c7f743b35bb1fa"
+ },
+ "recipe": {
+ "sha256": "1yhhchksi0r4r5c5q1mggz2hykkvk93baq91b5hkaflqi30d1v8f",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140929.1335",
+ "deps": [
+ "filesets+",
+ "helm"
+ ]
+ },
+ "gitconfig-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "magit",
+ "repo": "git-modes",
+ "sha256": "1ipr51v7nhbbgxbbz0fp3i78ypp73kyxgc4ni8nnr7yirjhsksfd",
+ "rev": "9d8f6eda6ee97963e4085da8988cad2c0547b8df"
+ },
+ "recipe": {
+ "sha256": "0hqky40kcgxdnghnf56gpi0xp7ik45ssia1x84v0mvfwqc50dgn1",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150330.1248",
+ "deps": []
+ },
+ "helm-sheet": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "yasuyk",
+ "repo": "helm-sheet",
+ "sha256": "00wnqcgpf4hqdnqj5zrizr4s0pffb93xwya8k5c3rp4plncrcdzx",
+ "rev": "d360b68d0ddb09aa1854e7b2f3cb39caeee26463"
+ },
+ "recipe": {
+ "sha256": "0lx70l5gq43hckgdfna8s6wx287sw5ms9l1z3n6vg2x8nr9m61kc",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20130630.739",
+ "deps": [
+ "helm"
+ ]
+ },
+ "tao-theme": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "11111000000",
+ "repo": "tao-theme-emacs",
+ "sha256": "1zhr6vrzf511mxrj4fkc9k8wfr1hixn733f5g28j4qzykr4zl2mh",
+ "rev": "48a69f5568b2d16496960aa92b312cd02be80ecc"
+ },
+ "recipe": {
+ "sha256": "0gl6zzk5ha6vl2xxf5fcnv1k42cw4axdjdcirr1c4r8jwdq3nl3a",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151217.1040",
+ "deps": []
+ },
+ "ahg": {
+ "fetch": {
+ "tag": "fetchhg",
+ "url": "https://bitbucket.com/agriggio/ahg",
+ "sha256": "04ngls59336lyjbwcxz6qdddpaijh51zds8m666vgwjihniv7skg",
+ "rev": "bc4ab0720d4a"
+ },
+ "recipe": {
+ "sha256": "0kw138lfzwp54fmly3jzzml11y7fhcjp3w0irmwdzr68lc206lr4",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151218.213",
+ "deps": []
+ },
+ "isearch-dabbrev": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "Dewdrops",
+ "repo": "isearch-dabbrev",
+ "sha256": "17d0816awadvsw1qc7r0p6ira75jmgxaj9hsk9ypayxsaf6ynyrb",
+ "rev": "1efe7abba4923015cbc2462395deaec5446a9cc8"
+ },
+ "recipe": {
+ "sha256": "1hl7zl5vjcsk3z452874g4nfcnmna8m2242dc9cgpl5jddzwqa7x",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20141224.22",
+ "deps": [
+ "cl-lib"
+ ]
+ },
+ "helm-bm": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "yasuyk",
+ "repo": "helm-bm",
+ "sha256": "1gcx7imq9gxfgmh188a8xlpmmlrdif1vsnnff49qvk82082ghbfz",
+ "rev": "1764c0139cb2f04b9fd520c7aca0b6d0152913bd"
+ },
+ "recipe": {
+ "sha256": "1dnlcvn0zv4qv4ii4j0h9r8w6vhi3l0c5aa768kblh5r2rf4bjjh",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20131224.905",
+ "deps": [
+ "bm",
+ "cl-lib",
+ "helm",
+ "s"
+ ]
+ },
+ "tornado-template-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "paradoxxxzero",
+ "repo": "tornado-template-mode",
+ "sha256": "0wv49gn1daylnjmnallpqsqy7630ynrp45agpiwi6kwyyqk1kdvv",
+ "rev": "667c0663dbbd279b6c345446b9f2bc50eb52b747"
+ },
+ "recipe": {
+ "sha256": "1sdv9rlhnabydws2sppsjcgqr0lg6bjapv753ksq5aaq21qsps0h",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20141128.408",
+ "deps": []
+ },
+ "mwim": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "alezost",
+ "repo": "mwim.el",
+ "sha256": "0hvq6z754niqjyv79jzb833wrwbspc7npfg85scwdv8vzwassjx4",
+ "rev": "dc1b5c358e0bfe607527f1b7c082188105fe6c75"
+ },
+ "recipe": {
+ "sha256": "0bsibwplvyv96y5i5svm2b0jwzs5a7jr2aara7v7xnpj0nqaxm8k",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150822.1436",
+ "deps": []
+ },
+ "launchctl": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "pekingduck",
+ "repo": "launchctl-el",
+ "sha256": "154z7bhb7qagvl3dlgrlsxdg4chz2863ijglg47xs3yhjp5ypanj",
+ "rev": "73f8f52a5aa9a0be9bdcf68c29ad0fa2b4a115a4"
+ },
+ "recipe": {
+ "sha256": "07fq445cjpv4ndi7hnjmsrmskm2rlp6ghq0k3bcbjxl21smd9vs9",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150518.809",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "transmission": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "holomorph",
+ "repo": "transmission",
+ "sha256": "0k6y501lqk73b38l2san0hc379f4qva9b4q101m0ajwbkkw383vn",
+ "rev": "883d41ca3648838f66ca9dd7b9709be2b50b2ede"
+ },
+ "recipe": {
+ "sha256": "0w0hlr4y4xpcrpvclqqqasggkgrwnzrdib51mhkh3f3mqyiw8gs9",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151215.343",
+ "deps": [
+ "emacs",
+ "let-alist"
+ ]
+ },
+ "ghq": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "rcoedo",
+ "repo": "emacs-ghq",
+ "sha256": "1aj5j0y244r1fbbbl0lzb53wnyhljw91kb4n3hi2gagm7zwp8jcf",
+ "rev": "bfbf9245075f710ffc7dc2c6bf584dd2ca7bde24"
+ },
+ "recipe": {
+ "sha256": "0prvywcgwdhx5pw66rv5kkfriahal2mli2ibam5np3z6bwcq4ngh",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151130.318",
+ "deps": []
+ },
+ "soft-charcoal-theme": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "mswift42",
+ "repo": "soft-charcoal-theme",
+ "sha256": "07056pnjgsgw06c67776qp7jci96iqbzlprbavzz2l1j8ywz8cwm",
+ "rev": "5607ab977fae6638e78b1495e02da8955c9ba19f"
+ },
+ "recipe": {
+ "sha256": "0i29ais1m2h9v4ghcg41zfbnaj8klgm4509nkyfkxm7wqnjd166a",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140420.1143",
+ "deps": []
+ },
+ "dyalog-mode": {
+ "fetch": {
+ "tag": "fetchhg",
+ "url": "https://bitbucket.com/harsman/dyalog-mode",
+ "sha256": "0ghxnzi2iy1g633fshl9wdpg2asrcl0v5rkk61gqd6axm7fjaxcj",
+ "rev": "ce795beb8747"
+ },
+ "recipe": {
+ "sha256": "1y17nd2xd8b3mhaybws8dr7yanzwqij9gzfywisy65ckflm9kfyq",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151111.854",
+ "deps": [
+ "cl-lib"
+ ]
+ },
+ "xah-lookup": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "xahlee",
+ "repo": "lookup-word-on-internet",
+ "sha256": "1adyww9jbjvcn9p3z9ggs3gijdmnab275a81ch8sir1xp59pfm3s",
+ "rev": "75590c52af87e635b2f19640095b805fdb3e5d8b"
+ },
+ "recipe": {
+ "sha256": "0z0h1myw6wmybyd0z2lw4l59vgm6q6kh492q77kf3s0fssc0facc",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150602.1346",
+ "deps": []
+ },
+ "character-fold+": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/character-fold+.el",
+ "sha256": "1lr1gzabaw7jpxazyjq7pkmy1cljna8v4150jkpndzzb1anb9xxy"
+ },
+ "recipe": {
+ "sha256": "01ibdwd7vap9m64w0bhyknxa3iank3wfss49gsgg4xbbxibyrjh3",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151201.924",
+ "deps": []
+ },
+ "notmuch": {
+ "fetch": {
+ "tag": "fetchgit",
+ "url": "git://git.notmuchmail.org/git/notmuch",
+ "sha256": "1b103da2084cb38dcf5ce07a62d69b6a15f81b59fae9130686934ec9820dc7b4",
+ "rev": "8881a61fe7a1956534b89cd1f79984793ff694fe"
+ },
+ "recipe": {
+ "sha256": "1sy9k6xbfl035qhnp8sdq9cb3xvgw3lkmdczyd6fw6yrzm5n0g1r",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151123.640",
+ "deps": []
+ },
+ "nixos-options": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "travisbhartwell",
+ "repo": "nix-emacs",
+ "sha256": "0iq1j703kj3dy1di8m488kds8i6klpavwwb88ysn5pv2nwdi6i4w",
+ "rev": "2bd8a5fe792dd6a219934f5295d6116877e45f6c"
+ },
+ "recipe": {
+ "sha256": "1m3jipidk10zj68rzjbacgjlal31jf80gqjxlgj4qs8lm671gxmm",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151013.1809",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "monky": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "ananthakumaran",
+ "repo": "monky",
+ "sha256": "0ddkcb5rzpcqpsrwkhvm9kzpx2mlrrsp7psljkz5q5qfvy3wdagh",
+ "rev": "48c0200910739b6521f26f6423b2bfb8c38b4482"
+ },
+ "recipe": {
+ "sha256": "1m7hy3ijwgxqjk3vjvqkxqj8b5bqnd201bmf302k45n0dpjmhshz",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150404.218",
+ "deps": []
+ },
+ "pythonic": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "proofit404",
+ "repo": "pythonic",
+ "sha256": "1af9cd8l5ac58mj92xc7a3diy995cv29abnbb3fl6x4208l4xs3c",
+ "rev": "959b3f5d5607eb41ef26ad61d7ec15ceecb8e37a"
+ },
+ "recipe": {
+ "sha256": "1hq0r3vg8vmgw89wfjdqknwm76pimlk0dy56wmh9vffh06gqsb51",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150730.416",
+ "deps": [
+ "cl-lib",
+ "dash",
+ "emacs",
+ "f",
+ "s"
+ ]
+ },
+ "auto-capitalize": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/auto-capitalize.el",
+ "sha256": "1lk9zwng7wkjvb8hprlgyrab1s56n8a61xjva931h0bgypwl1dfi"
+ },
+ "recipe": {
+ "sha256": "18fygc71n9bc0vrpymz2f7sw9hzkpqxzfglh53shmbm1zns3wkw0",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20131014.5",
+ "deps": []
+ },
+ "emms-mode-line-cycle": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "momomo5717",
+ "repo": "emms-mode-line-cycle",
+ "sha256": "1pz2xvv5hzfg4a8s6xnbr14mpwnr94cwsa1bpk83i7x15hmxj938",
+ "rev": "0488de1f9b4d0be6aa7dfe2fe0231cfd9b4d4295"
+ },
+ "recipe": {
+ "sha256": "1jdmfh1i9v84iy7bj2dbc3s2wfzkrby3pabd99gnqzd9gn1cn8ca",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151009.946",
+ "deps": [
+ "emacs",
+ "emms"
+ ]
+ },
+ "ember-yasnippets": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "ronco",
+ "repo": "ember-yasnippets.el",
+ "sha256": "14049ldvyxn6w06aw6slvxdb68idars3ynka90lm0piyjpn0fy16",
+ "rev": "650a6d31748175aa7df074bcfffd433a0b072ab5"
+ },
+ "recipe": {
+ "sha256": "1alqrv9yhc1f8dhvh2kjcv8qbn1hdgza5iasmchr1wggxds3s50i",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150501.1126",
+ "deps": [
+ "yasnippet"
+ ]
+ },
+ "go-errcheck": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "dominikh",
+ "repo": "go-errcheck.el",
+ "sha256": "1fm6xd3vsi8mqh0idddjpfxlsmz1ljmjppw3qkxl1vr0qz3598k3",
+ "rev": "1b0cd6af048a8b2074ace14ab51fb6c987beb430"
+ },
+ "recipe": {
+ "sha256": "11a75h32cd5h5xjv30x83k60s49k9fhgis31358q46y2gbvqp5bs",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150828.1335",
+ "deps": []
+ },
+ "lexbind-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "spacebat",
+ "repo": "lexbind-mode",
+ "sha256": "167ayfl1k8dnajw173hh67nbwbk4frmjc4fzc515q67m9d7m5932",
+ "rev": "fa0a6848c1cfd3fbf45db43dc2deef16377d887d"
+ },
+ "recipe": {
+ "sha256": "1hs9wg45mwp3fwi827rc4g0gjx4fk87zlibq3id9fcqic8q7nrnl",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20141027.929",
+ "deps": []
+ },
+ "minimal-session-saver": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "rolandwalker",
+ "repo": "minimal-session-saver",
+ "sha256": "1sj5sq932w079y3vy55q5b6wybwrzz30y092iq1mpfg5xvl42sbm",
+ "rev": "cf654ac549850746dc21091746e4bcc1aef7668e"
+ },
+ "recipe": {
+ "sha256": "1ay7wvriga28bdmarpfwagqzmmk93ri9f3idhr6z6iivwggwyy2i",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140508.1541",
+ "deps": []
+ },
+ "flymake-vala": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "daniellawrence",
+ "repo": "flymake-vala",
+ "sha256": "0qpr0frcn3w0f6yz8vgavwbxvn6wb0qkfk653v4cfy57dvslr4wf",
+ "rev": "c3674f461fc84fb0300cd3a562fb903a59782745"
+ },
+ "recipe": {
+ "sha256": "0yp81phd96z594ckav796qrjm0wlkrfsl0rwpmgg840qn49w71vx",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150326.31",
+ "deps": [
+ "flymake-easy"
+ ]
+ },
+ "popup-complete": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "syohex",
+ "repo": "emacs-popup-complete",
+ "sha256": "1q9zajv6g7mi6k98kzq3498nhmdkp1z9d2b8vgzbk7745d39gm9b",
+ "rev": "caa655a6d8472e9a4bfa1311126d90d7d1b07fca"
+ },
+ "recipe": {
+ "sha256": "04bpm31zx87j390r2xi1yl4kyqgalmyqc48xarsm67zfww9fw9c1",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20141108.2108",
+ "deps": [
+ "popup"
+ ]
+ },
+ "cake2": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "k1LoW",
+ "repo": "emacs-cake2",
+ "sha256": "15w21r0gqblbn9wlvb4wlm3706wf01r38mp465snjzi839f6sazb",
+ "rev": "0a9d0b3a1c49ba1730088416f50507f53221c70b"
+ },
+ "recipe": {
+ "sha256": "03q8vqqjlhahgnyy976c46x52splwdjpmb9ngrj5c2z7d8n9145x",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140626.742",
+ "deps": [
+ "anything",
+ "cake-inflector",
+ "dash",
+ "f",
+ "historyf",
+ "ht",
+ "json",
+ "s"
+ ]
+ },
+ "helm-rhythmbox": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "mrBliss",
+ "repo": "helm-rhythmbox",
+ "sha256": "05mf0021jhr4zmysy28cgilkfxyp08qmkc20v9wlykksg73l2crk",
+ "rev": "3bdff00fd9d7b39f8b1dfb35e6843da307ef4d98"
+ },
+ "recipe": {
+ "sha256": "0pnm7yvas0q3b38ch5idm7v4ih2fjyfai8217j74xhkpcc2w4g4a",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150813.808",
+ "deps": [
+ "cl-lib",
+ "helm"
+ ]
+ },
+ "async": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "jwiegley",
+ "repo": "emacs-async",
+ "sha256": "0z91alzf4ajj3r7pnwazynvp81cg67csy9kf87fk98024xldpkdp",
+ "rev": "c25bf17b34a1608da45e8a1ca02e1c89a34acd34"
+ },
+ "recipe": {
+ "sha256": "063ci4f35x1zm9ixy110i5ds0vsrcafpixrz3xkvpnfqdn29si3f",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151123.456",
+ "deps": [
+ "cl-lib",
+ "emacs"
+ ]
+ },
+ "gotest": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "nlamirault",
+ "repo": "gotest.el",
+ "sha256": "1b6zn1fmqvfb7bcpmhzkgcy5003dl22w3f293arlsd1xkbjgkxa2",
+ "rev": "ab0da939aad5cec301126c59b7718cd3158b3233"
+ },
+ "recipe": {
+ "sha256": "1kan3gykhci33jgg67jjiiz7rqlz5mpxp8sh6mb0n6kpfmgb4ly9",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151218.249",
+ "deps": [
+ "emacs",
+ "f",
+ "go-mode",
+ "s"
+ ]
+ },
+ "ede-compdb": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "randomphrase",
+ "repo": "ede-compdb",
+ "sha256": "1cfjw9b1lm29s5cbh0qqmkchbq2382s71w4rpb0gyf603s0yg13m",
+ "rev": "d6d8466cd62876fc90adeff5875a1a584fd846cd"
+ },
+ "recipe": {
+ "sha256": "1ypi7rxbgg2qck1b571hcw5m4ipllb48g6sindpdf180kbfbfpn7",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150920.1533",
+ "deps": [
+ "cl-lib",
+ "ede",
+ "semantic"
+ ]
+ },
+ "floobits": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "Floobits",
+ "repo": "floobits-emacs",
+ "sha256": "11zfpwfpv8lrib9629h9jyn9svqg30kf4jbnaj0s2sxcyn2sxfga",
+ "rev": "08b3b5a3c3a178b8f21f1baf5e1f0eb0cf1fb855"
+ },
+ "recipe": {
+ "sha256": "1jpk0q4mkf9ag1rqyai993nz5ngzfvxq9n9avmaaq59gkk9cjraf",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151016.1836",
+ "deps": [
+ "highlight",
+ "json"
+ ]
+ },
+ "md-readme": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "thomas11",
+ "repo": "md-readme",
+ "sha256": "1j8gp3byanf1mq8sc4hv838rgcywlv35d8q1vjwzsjaznvz8hvc3",
+ "rev": "9f3630d3ad2b83ec20968cf02c6613c53e8e32ec"
+ },
+ "recipe": {
+ "sha256": "1krq0f79jjrlihr2aqq87pxdqixv2zdjw4hm732sz79g996yxyw3",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150506.159",
+ "deps": []
+ },
+ "annoying-arrows-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "magnars",
+ "repo": "annoying-arrows-mode.el",
+ "sha256": "1ppq3kszzj2fgr7mwj565bjs8bs285ymy384cnnw7paddgcr9z02",
+ "rev": "fe59f3fd464e7a87cc43fb8a1f135b3bdf8a2fb3"
+ },
+ "recipe": {
+ "sha256": "13bwqv3mv7kgi1gms58f5g03q5g7q98n4vv6n28zqmppxm5z33s7",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151113.1102",
+ "deps": []
+ },
+ "foreign-regexp": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "k-talo",
+ "repo": "foreign-regexp.el",
+ "sha256": "1fczg710a0rjs932yv6vv9rwr9g5ii6cwva82nqfzyhlkf0b1sn5",
+ "rev": "c7251fce89c8585f2595e687d8d7bc65cf465b5e"
+ },
+ "recipe": {
+ "sha256": "189cq8n759f28nx10fn3w4qbq7q49bb788kp9l70pj38jgnjn7n7",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140823.1942",
+ "deps": []
+ },
+ "wilt": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "sixty-north",
+ "repo": "emacs-wilt",
+ "sha256": "1n45m8xn65a2lg8ff7m6hbqnp2j49n9sfyr924laljvhjbi37knd",
+ "rev": "5febe367c6c3729848654358af4d17ee2987da8d"
+ },
+ "recipe": {
+ "sha256": "0nw6zr06zq60j72qfjmbqrxyz022fnisb0bsh6xmlnd1k1kqlrz6",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151105.718",
+ "deps": [
+ "dash",
+ "emacs",
+ "s"
+ ]
+ },
+ "airplay": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "gongo",
+ "repo": "airplay-el",
+ "sha256": "1lxpfswp1bjrz192px79f155dycf2kazpr7dfrcr1gyshlgxkpf7",
+ "rev": "bd690aafcae3a887946e1bba8327597932d964ad"
+ },
+ "recipe": {
+ "sha256": "095nibgs197iplphk6csvkgsrgh1fcfyy33py860v6qmihvk538f",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20130212.626",
+ "deps": [
+ "deferred",
+ "request",
+ "simple-httpd"
+ ]
+ },
+ "mode-icons": {
+ "fetch": {
+ "tag": "fetchgit",
+ "url": "git://ryuslash.org/mode-icons.git",
+ "sha256": "b7afff1d8fb0b3f044d266af479df51fbb6021ff433628a9dc669695c1ddae40",
+ "rev": "cbf412d0c47dfdbeac7587a0c12c96f58f546467"
+ },
+ "recipe": {
+ "sha256": "18w221zjrrsfcymprv5x75i3qv04zy4bxl9mqjv0ys7qcc8xf1dp",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20130602.748",
+ "deps": []
+ },
+ "weibo": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "austin-----",
+ "repo": "weibo.emacs",
+ "sha256": "0hc5iyjpcik996ns84akrl28scndmn0gd1zfdf1nnqq6n2m5zvgh",
+ "rev": "a8abb50b7602fe15fe2bc6400ac29780e956b390"
+ },
+ "recipe": {
+ "sha256": "1ndgfqqb0gvy8p2fisi57s9bsa2nrnv80smg78m89i4cwagbz6yd",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150307.1642",
+ "deps": [
+ "cl-lib"
+ ]
+ },
+ "volatile-highlights": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "k-talo",
+ "repo": "volatile-highlights.el",
+ "sha256": "1v0chqj5jir4685jd8ahw86g9zdmi6xd05wmzhyw20rbk924fcqf",
+ "rev": "fb2abc2d4d4051a9a6b7c8de2fe7564161f01f24"
+ },
+ "recipe": {
+ "sha256": "1r6in919aqdziv6bgzp4k7jqa87bd287pacq615sd5m1nzva1a4d",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20141005.40",
+ "deps": []
+ },
+ "bbdb-china": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "tumashu",
+ "repo": "bbdb-china",
+ "sha256": "07plwm5nh58qya03l8z0iaqh8bmyhywx7qiffkf803n8wwjb3kdn",
+ "rev": "a64725ca6dbb5ec1825f3a9112df9aa54bb14f6c"
+ },
+ "recipe": {
+ "sha256": "111lf256zxlnylfmwis0pngbpj73p59s520v8abbm7pn82k2m72b",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150615.2056",
+ "deps": [
+ "bbdb-vcard",
+ "chinese-pyim"
+ ]
+ },
+ "grep-a-lot": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "ZungBang",
+ "repo": "emacs-grep-a-lot",
+ "sha256": "1f8262mrlinzgnn4m49hbj1hm3c1mvzza24py4b37sasn49546lw",
+ "rev": "9f9f645b9e308a0d887b66864ff97d0fca1ba4ad"
+ },
+ "recipe": {
+ "sha256": "1513vnm5b587r15hcbnplgsfv7kv8g5fd0w4nwb6pq7myzv53ra1",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20131006.847",
+ "deps": []
+ },
+ "stan-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "stan-dev",
+ "repo": "stan-mode",
+ "sha256": "09xgwrgb4a348fchcn24k51lh8cq1sj6lzfx8v76gkkhp7sn3l1r",
+ "rev": "58826c65f3351eb69bf999f3364afe50dc31645e"
+ },
+ "recipe": {
+ "sha256": "17ph5khwwrcpyl96xnp3rsbmnk7mpwmgskxka3cfgkm190qihfqy",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150829.2215",
+ "deps": []
+ },
+ "parse-csv": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "mrc",
+ "repo": "el-csv",
+ "sha256": "1z8cp1cdkxmdqislixxvncj0s1jx42i6arx48kdl5paymnnp282s",
+ "rev": "dc31201af8868aa98f055de055ee7aa5fae266dd"
+ },
+ "recipe": {
+ "sha256": "0khpfxbarw0plx8kka357d8wl1vvdih5797xlld9adc0g3cng0zz",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140203.316",
+ "deps": []
+ },
+ "edts": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "tjarvstrand",
+ "repo": "edts",
+ "sha256": "0vsrcvrd02nx647gxp65r548qlxg50w73dy0rs1lxwy6mdgp0npv",
+ "rev": "70dfcfd8cc448c854fb67d65e005ba00e77384c5"
+ },
+ "recipe": {
+ "sha256": "0f0rbd0mqqwn743qmr1g5mmi1sbmlcglclww8jxvbvb61jq8vspr",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150830.710",
+ "deps": [
+ "auto-complete",
+ "auto-highlight-symbol",
+ "dash",
+ "eproject",
+ "erlang",
+ "f",
+ "popup",
+ "s"
+ ]
+ },
+ "unison-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "impaktor",
+ "repo": "unison-mode",
+ "sha256": "0l8h084xkbjvx2vbg67hxmg4hb9175k858z3k3c93d2b6x2kh7ni",
+ "rev": "7e1bfee1a6796cc749a583605a9c948eccbc8cc5"
+ },
+ "recipe": {
+ "sha256": "03kyr1h5pm51vn4bykj13rm4ybln266rpnxh65y2ygw8f8md88gl",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150104.614",
+ "deps": []
+ },
+ "avy": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "abo-abo",
+ "repo": "avy",
+ "sha256": "1vd6i1kpnqh7344jfz0my3ykmfj449ik26cz4sgridsi8ymq4wzg",
+ "rev": "b1a1953e1c20578b0d866d538b6045b42f4de4ef"
+ },
+ "recipe": {
+ "sha256": "0gjq79f8jagbngp0shkcqmwhisc3hpgwfk34kq30nb929nbnlmag",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151207.756",
+ "deps": [
+ "cl-lib",
+ "emacs"
+ ]
+ },
+ "marmalade": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "nex3",
+ "repo": "marmalade",
+ "sha256": "1ygznmqb3fqy94p8qi71i223m7cpw3f596pkls2ybjlbpb4psjcl",
+ "rev": "2a4f07fbd4c17e08556c1a80c1753c37b3626d39"
+ },
+ "recipe": {
+ "sha256": "0ppa2s1fma1lc01byanfxpxfrjqk2snxbsmdbkcipjdi5dpb0a9s",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20110602.1822",
+ "deps": [
+ "furl"
+ ]
+ },
+ "per-buffer-theme": {
+ "fetch": {
+ "tag": "fetchhg",
+ "url": "https://bitbucket.com/inigoserna/per-buffer-theme.el",
+ "sha256": "1rh87jf0a15q35a8h00bx6k5wa931rb6gh600zbs7j4r3y8qsylf",
+ "rev": "2b82a04b28d0"
+ },
+ "recipe": {
+ "sha256": "1czcaybpfmx4mwff7hs07iayyvgvlhifkickccap6kpd0cp4n6hn",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151013.1212",
+ "deps": [
+ "cl-lib"
+ ]
+ },
+ "aurora-theme": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "xzerocode",
+ "repo": "aurora-theme",
+ "sha256": "1z2n6gd63mgj2wj45n6g1gmfrk0iwzlrzb6g1rdd9r9a03c03qi6",
+ "rev": "3cd8c3359b7b15148e5cea503f3d071e1ed7fc79"
+ },
+ "recipe": {
+ "sha256": "1fhlng30v25ycr502vfvajl70vimscqkipva6ghr670j35ac5vz5",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151015.1302",
+ "deps": []
+ },
+ "systemtap-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "ruediger",
+ "repo": "systemtap-mode",
+ "sha256": "0343ss3y9i40y3i9rr7p7bb4k9dj950zyvdv44q1abw2xrfd2xwd",
+ "rev": "1a968c2b1f3a054bebf91ac49739d3a81ce050a9"
+ },
+ "recipe": {
+ "sha256": "1l2jx6mvph0q2pdlhq7p4vwfw72rfl8k1rwi504bbkr5n5xwhhhz",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151122.1340",
+ "deps": []
+ },
+ "evil-dvorak": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "jbranso",
+ "repo": "evil-dvorak",
+ "sha256": "0jbb0ln54p43rqyw188ggrc848v24mhwdj9xna16y4g41g00i105",
+ "rev": "c193913839e153b0f2c973fae5e6b1fe51809d2b"
+ },
+ "recipe": {
+ "sha256": "1iq9wzcb625vs942khja39db1js8r46vrdiqcm47yfji98g39gsn",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151104.726",
+ "deps": [
+ "ace-jump-mode",
+ "evil",
+ "evil-surround",
+ "helm",
+ "helm-swoop"
+ ]
+ },
+ "shadow": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "mooz",
+ "repo": "shadow.el",
+ "sha256": "1i1a0jsrrimfxv8xm37cihb3w7fc3l0872c8gnx9gb4876if3sxw",
+ "rev": "eafc93b090895102ac299220a84ec99244f633af"
+ },
+ "recipe": {
+ "sha256": "0zhy94jpk29k51r7m1gd24jx7h6b68l38vhw27j3wz0ag1h5352k",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20110507.224",
+ "deps": []
+ },
+ "zop-to-char": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "thierryvolpiatto",
+ "repo": "zop-to-char",
+ "sha256": "1gqlxwvih7bhwvnjk7s0qff2dmnsjhiw522hd34jvx7z03s4bc7g",
+ "rev": "e1b4080286d7c905119eac745b8b7aaca2784844"
+ },
+ "recipe": {
+ "sha256": "0jnspvqqvnaplld083j7cqqxw122qazh88ab7hymci36m3ka9hga",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150901.247",
+ "deps": [
+ "cl-lib"
+ ]
+ },
+ "phoenix-dark-mono-theme": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "j0ni",
+ "repo": "phoenix-dark-mono",
+ "sha256": "1fg63g1cm9mp50sf3ldcb0pr4bvlfxx010arisxdkj102pmib2ri",
+ "rev": "dafb65c542605145d6b1702aae5b195b70f98285"
+ },
+ "recipe": {
+ "sha256": "15in299j170n0wxmkg3cx1zzx1n7r1ifraqqzfqhcnk8i8lmc939",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20130306.1415",
+ "deps": []
+ },
+ "connection": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "myrkr",
+ "repo": "dictionary-el",
+ "sha256": "0gz03hji6mcrzvxd74qim63g159sc8ggb6hq3x42x5l01g980fbm",
+ "rev": "a23b8f4a422d0de69a006ed010eff5795319db98"
+ },
+ "recipe": {
+ "sha256": "1y68d2kay8p5vapailxhrc5dl7b8k8nkvp7pa54md3fsivwp1d0q",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140717.2229",
+ "deps": []
+ },
+ "gmail-message-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "Malabarba",
+ "repo": "gmail-mode",
+ "sha256": "0j3pay3gd1wdnpc853gy5j68hbavrwy6cc2bgmd12ag29xki3hcg",
+ "rev": "2e0286e4a3c80889692f8da63a3b15d7a96abdea"
+ },
+ "recipe": {
+ "sha256": "0py0i7b893ihb8l1hmk3jfl0xil450znadcd18q7svr3zl2m0gkk",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140815.1016",
+ "deps": [
+ "ham-mode"
+ ]
+ },
+ "rust-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "rust-lang",
+ "repo": "rust-mode",
+ "sha256": "0vnf3y92s5rwwqifn1gfvhi609a5ir32dhyzgs9d2gacri7z75lw",
+ "rev": "061e6d8a3a9104570144f1eacb729e3211cb03cd"
+ },
+ "recipe": {
+ "sha256": "0h4gblg6ls8a2wa43r990lanl6ykx8j7c8yg5i3n151imzic2n33",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151215.2134",
+ "deps": []
+ },
+ "bug-reference-github": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "arnested",
+ "repo": "bug-reference-github",
+ "sha256": "0zr1raf0q5wi3vr66kglxcfxswlm8g2l501adm8c27clvqizpnrr",
+ "rev": "6f693e1f659d9a75abea3f23e95946c7f67138cd"
+ },
+ "recipe": {
+ "sha256": "18yzxwanbrxsab6ba75z1196x0m6dapdhbvy6df5b5x5viz99cf6",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20131202.1503",
+ "deps": []
+ },
+ "clojure-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "clojure-emacs",
+ "repo": "clojure-mode",
+ "sha256": "0mc5g44vfb8w0mhj518yxik6dg55w17vrldcw86ajhw05fww3h3n",
+ "rev": "802c1dbf3529da5a09f97cb21833e0a27ccf41d7"
+ },
+ "recipe": {
+ "sha256": "11n0rjhs1mmlzdqy711g432an5ybdka5xj0ipsk8dx6xcyab70np",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151213.1238",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "utop": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "diml",
+ "repo": "utop",
+ "sha256": "034hn9rf6jh8kk07jdhvk03dlxm9v0asypjdhkkslgwfj3hp7yz2",
+ "rev": "e608977856005c7a3503afff7a2f6c3ca8a423c5"
+ },
+ "recipe": {
+ "sha256": "0lv16kl29gc9hdcpn04l85pf7x93vkl41s4mgqp678cllzyr0cq7",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151105.447",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "with-editor": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "magit",
+ "repo": "magit",
+ "sha256": "0hy9a1rjl3vs6ysb2913li1zim7wcziaiv609g7dadfyl89c2d4v",
+ "rev": "6b595ac224f512cf672c56600e136714875a940f"
+ },
+ "recipe": {
+ "sha256": "042fa55yakdn2di4l5dilnmqpslac46wpr1zpl4xk3v3i4nn9ndv",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151214.705",
+ "deps": [
+ "async",
+ "dash",
+ "emacs"
+ ]
+ },
+ "evil-jumper": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "bling",
+ "repo": "evil-jumper",
+ "sha256": "1y4jm800mam36vzh2lwc4j6l0856c4h6da1fivz4kkgf4gy79mq8",
+ "rev": "f1a4952c0e1cee793275d75e297351eaaf6bb1b2"
+ },
+ "recipe": {
+ "sha256": "0zwsk7slzvcgvgh8fjrwangylishrwc1w0glxcr71sybxph2g46x",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151025.1002",
+ "deps": [
+ "cl-lib",
+ "evil"
+ ]
+ },
+ "lingr": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "lugecy",
+ "repo": "lingr-el",
+ "sha256": "0rkx0hk3y79rwhjqs3wvgxhg1rj83mxbqkhhm3jfawp8c1av4f40",
+ "rev": "4215a8704492d3c860097cbe2649936c22c196df"
+ },
+ "recipe": {
+ "sha256": "1445bxiirsxl9kgm0j86xc9d0pbaa5f07c1i66pw2vl40bvhrjff",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20100807.1231",
+ "deps": []
+ },
+ "auto-complete-sage": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "stakemori",
+ "repo": "auto-complete-sage",
+ "sha256": "0l49ciic7g30vklxq6l1ny3mz87l5p8qc30rmkjvkzvg8r52ksn3",
+ "rev": "a61a4e58b14134712e0737280281c0b10e56da93"
+ },
+ "recipe": {
+ "sha256": "02sxbir3arvmnkvxgndlkln9y05jnlv6i8czd6a0wcxk4nj43lq1",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151201.1257",
+ "deps": [
+ "auto-complete",
+ "sage-shell-mode"
+ ]
+ },
+ "rich-minority": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "Malabarba",
+ "repo": "rich-minority",
+ "sha256": "11hwf9y5ax207w6rwrsmi3pmn7pn7ap6iys0z8hni2f5zzxjrmx3",
+ "rev": "311ac8ee54078f95b7279e532da6cf5a2afb4125"
+ },
+ "recipe": {
+ "sha256": "11xd76w5k3b3q5bxqjb55vi6dsal9drvyc1nh7z83awm59hvgczc",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151201.600",
+ "deps": [
+ "cl-lib"
+ ]
+ },
+ "el-spy": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "uk-ar",
+ "repo": "el-spy",
+ "sha256": "016l3inzb7dby0w58najj2pvymwk6gllsxvqj2fkz3599i36p1pn",
+ "rev": "b1dead9d1877660856ada22d906ac4e54695aec7"
+ },
+ "recipe": {
+ "sha256": "1bgv4mgsnkmjdyay7lhkqdszvnwpjy4dxxw11kq45w866ba8645n",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20131226.1408",
+ "deps": []
+ },
+ "marcopolo": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "nlamirault",
+ "repo": "marcopolo",
+ "sha256": "0y4b69r2l6kvh7g8f1y9v1pdall3n668ci24lp04lcms6rxcrsnh",
+ "rev": "ce6ad40d7feab0568924e3bd9659b76e3eecd55e"
+ },
+ "recipe": {
+ "sha256": "1nbck1m7lhync7n474578d2g1zc72c841hi236xjbdd2lnxz3zz0",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150326.1118",
+ "deps": [
+ "dash",
+ "pkg-info",
+ "request",
+ "s"
+ ]
+ },
+ "openwith": {
+ "fetch": {
+ "tag": "fetchhg",
+ "url": "https://bitbucket.com/jpkotta/openwith",
+ "sha256": "1wl6gnxsyhaad4cl9bxjc0qbc5jzvlwbwjbajs0n1s6qr07d6r01",
+ "rev": "aeb78782ec87"
+ },
+ "recipe": {
+ "sha256": "05lkx3yfv2445fp07bhqv2aqz5hgf3dxp39lmz3nfxn4c9v8nkqi",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20120531.1636",
+ "deps": []
+ },
+ "el-mock": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "rejeep",
+ "repo": "el-mock.el",
+ "sha256": "1jiq2hpym3wpk80zsl4lffpv4kgkykc2zp08sb01wa7pl8d1knmm",
+ "rev": "5cb160b9bd2c9b909a2b64adcc9ec947da643c39"
+ },
+ "recipe": {
+ "sha256": "07m7w7n202nijnxidy0j0r4nbcvlnbkm9b0n8qb2bwi3d4cfp77l",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150906.521",
+ "deps": []
+ },
+ "smart-newline": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "ainame",
+ "repo": "smart-newline.el",
+ "sha256": "1q74b0mbhly84g252a0arbyxc720rgs9a3yqf8b8s2fpfkzb95sg",
+ "rev": "f5f5ff033645aea0652aa375b034746754a38b1e"
+ },
+ "recipe": {
+ "sha256": "1kyk865vkgh05vzlggs3ii81v86fcbcxybfkv5rkyl3fyqpkza1w",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20131207.2140",
+ "deps": []
+ },
+ "fringe-current-line": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "kyanagi",
+ "repo": "fringe-current-line",
+ "sha256": "0zwlnzbi91hkfz1jgj9s9pxwi21s21cwp6psdm687wj2a3wy4231",
+ "rev": "0ef000bac76abae30601222e6f06c7d133ab4942"
+ },
+ "recipe": {
+ "sha256": "125yn0wbrrxrmdn7qfxj0f4538sb3xnqb3r2inz3gpblc1vxnqb8",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140110.2211",
+ "deps": []
+ },
+ "vertica": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "r0man",
+ "repo": "vertica-el",
+ "sha256": "1mp71axs3vdrdwlhgywfldvnr6a1g2qbxiywmpfmcv59n5n58p1j",
+ "rev": "3c9647b425c5c13c30bf0cba483646af18196588"
+ },
+ "recipe": {
+ "sha256": "1ljjk6zrbr2k0s0iaqd9iq3j45cavijcx0rqdidliswnfllav4ng",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20131217.911",
+ "deps": [
+ "sql"
+ ]
+ },
+ "hydra": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "abo-abo",
+ "repo": "hydra",
+ "sha256": "0dp1ablyih2m3q5224xnkwxqm8pgblkdfcwls81r0qsaav7ag3fj",
+ "rev": "7f022f7f1a7833618c1bf4d38a4854d2bae06199"
+ },
+ "recipe": {
+ "sha256": "1c59l43p39ins3dn9690gm6llwm4b9p0pk78lip0dwlx736drdbw",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151214.617",
+ "deps": [
+ "cl-lib"
+ ]
+ },
+ "xmlunicode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "ndw",
+ "repo": "xmlunicode",
+ "sha256": "0y1n5xmz06var2m19nfw3q3b5mlqibd6h7dn35la3lb2s9s3b1bg",
+ "rev": "aecbdb50fcc4eee8a84fb37107bf3a69fb7a1e21"
+ },
+ "recipe": {
+ "sha256": "1ylpvx2p5l863r9qv9jdsm9rbv989c8xn0zpjl8zkcfxqxix4h4p",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151208.1113",
+ "deps": []
+ },
+ "pony-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "davidmiller",
+ "repo": "pony-mode",
+ "sha256": "1g1yw0ykwswl9dnicyi7kxskqqry40wjykshgrqhs4k09j3jnacr",
+ "rev": "d319b0317bfbdac12d28cfd83abe31cc35f3cdd7"
+ },
+ "recipe": {
+ "sha256": "1hgiryhpxv30bjlgv9pywzqn2ypimwzdhx03znqvn56zrwn1frnl",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151028.502",
+ "deps": []
+ },
+ "browse-kill-ring": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "browse-kill-ring",
+ "repo": "browse-kill-ring",
+ "sha256": "06mdrjc4jq7pj8vmg91dair138kmhvaa9gi5icc56120jmfb6kn2",
+ "rev": "66b5a0872b4278b49a815fc759c3eb48aebe10bf"
+ },
+ "recipe": {
+ "sha256": "1d97ap0vrg5ymp96z7y6si98fspxzy02jh1i4clvw5lggjfibhq4",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150829.832",
+ "deps": []
+ },
+ "auto-shell-command": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "ongaeshi",
+ "repo": "auto-shell-command",
+ "sha256": "1h8zsgw30axprs7a5kkygbhvilillzazxgqz01ng36il65fi28s6",
+ "rev": "59d4abce779a3ce3e920592bf5696b54b2e192c7"
+ },
+ "recipe": {
+ "sha256": "1i78fh72i8yv91rnabf0vs78r43qrjkr36hndmn5ya2xs3b1g41j",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150416.1257",
+ "deps": [
+ "deferred",
+ "popwin"
+ ]
+ },
+ "gerrit-download": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "chmouel",
+ "repo": "gerrit-download.el",
+ "sha256": "1ch8yp0mgk57x0pny9bvkknsqj27fd1rcmpm9s7qpryrwqkp1ix4",
+ "rev": "d568acc7c5935188c9bc19ba72719a6092d9f6fd"
+ },
+ "recipe": {
+ "sha256": "1rlz0iqgvr8yxnv5qmk29xs1jwf0g0ckzanlyldcxvs7n6mhkjjp",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150714.908",
+ "deps": [
+ "emacs",
+ "magit"
+ ]
+ },
+ "emms-player-mpv-jp-radios": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "momomo5717",
+ "repo": "emms-player-mpv-jp-radios",
+ "sha256": "06xhgxkpq4mw1mjkajjq30l131blqkkm46lh5hdq1x25d78qcpqi",
+ "rev": "325d78e161cacbd8279d53a0e786fdb5914f85d1"
+ },
+ "recipe": {
+ "sha256": "0gdap5cv08pz370fl92v9lyvgkbbyjhp9wsc4kyjm4f4pwx9fybv",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151130.617",
+ "deps": [
+ "cl-lib",
+ "emacs",
+ "emms",
+ "emms-player-simple-mpv"
+ ]
+ },
+ "paren-completer": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "MatthewBregg",
+ "repo": "paren-completer",
+ "sha256": "0fds9s16c0dgq6ah98x4pv5bgwbikqwiikcxjzmk9g1m3s232fl8",
+ "rev": "afb6d596ffac85b3457178cfdb384cd2a382b120"
+ },
+ "recipe": {
+ "sha256": "0xh17h8vmsgbrq6yf5sfy3kpia4za68f43gwgkvi2m430g15fr0x",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150711.1723",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "shelldoc": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "mhayashi1120",
+ "repo": "Emacs-shelldoc",
+ "sha256": "0i6xp6g3ggs4fkr410blxa4mkb1y05pcygkdbvb7y3gh878q5b5k",
+ "rev": "20eb889f3d3d9bd01aafdc699e712a75db42d8f3"
+ },
+ "recipe": {
+ "sha256": "1xlp03aaidp7dp8349v8drzhl4lcngvxgdrwwn9cahfqlrvvbbbx",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151114.2125",
+ "deps": [
+ "cl-lib",
+ "s"
+ ]
+ },
+ "malabar-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "m0smith",
+ "repo": "malabar-mode",
+ "sha256": "0hlxs9gi2vml2id9q0r1r0xdm0zshjzc1w3phjf2ab0aa3hl5k6l",
+ "rev": "830f38efae813db4388da6b4abd386eb0a4e861c"
+ },
+ "recipe": {
+ "sha256": "026ing7v22rz1pfzs2j9z09pm6dajpys992n45gzhwirz5f0q1rk",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150720.1255",
+ "deps": [
+ "fringe-helper",
+ "groovy-mode"
+ ]
+ },
+ "fullframe": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "tomterl",
+ "repo": "fullframe",
+ "sha256": "09jqaq81vbch93qwrmg0rm6a26pchqdraw374j13hgkhs849gx90",
+ "rev": "b9c3e54c8928c5ba994c55de7794b5f739b43ced"
+ },
+ "recipe": {
+ "sha256": "08sh8lmb6g8asv28fcb36ilcn0ka4fc6ka0pnslid0h4c32fxp2a",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140619.505",
+ "deps": [
+ "cl-lib"
+ ]
+ },
+ "cperl-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "jrockway",
+ "repo": "cperl-mode",
+ "sha256": "02fl9y72prykh6qmxlnyn7fl27rqsk5kgcm4vdhj3i6fvl1iqdm6",
+ "rev": "06f5668653a114991836139344dbe8f0674577af"
+ },
+ "recipe": {
+ "sha256": "0hkmpa0vg1miv8qqpnml4xblzvn9w4ba02fqp6qa2nnv554i7azp",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140309.422",
+ "deps": []
+ },
+ "handlebars-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "danielevans",
+ "repo": "handlebars-mode",
+ "sha256": "0w443knp6kvjm2m79cni5d17plyhbsl0a4kip7yrpv5nmg370q3p",
+ "rev": "81f6b73fea8f397807781a1b51568397af21a6ef"
+ },
+ "recipe": {
+ "sha256": "11ahrm4n588v7ir2r7sp4dkbypl5nhnr22px849hdxjcrwal24vj",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150211.1149",
+ "deps": []
+ },
+ "helm-git-grep": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "yasuyk",
+ "repo": "helm-git-grep",
+ "sha256": "1mp5gbda81szbx19rvaa6ybb28v64q49hqic8d478ggnjjsqhfyr",
+ "rev": "9e602f79ea58fe12c6a48ce3c2f749b817ef8c86"
+ },
+ "recipe": {
+ "sha256": "1ww6a4q78w5hnwikq7y93ic2b7x070c27r946lh6p8cz1k4b8vqi",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140222.2022",
+ "deps": [
+ "helm"
+ ]
+ },
+ "ido-select-window": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "pjones",
+ "repo": "ido-select-window",
+ "sha256": "0qvf3h2ljlbf3z36dhywzza62mfi6mqbrfc0sqfsbyia9bn1df4f",
+ "rev": "946db3db7a3fec582cc1a0097877f1250303b53a"
+ },
+ "recipe": {
+ "sha256": "03xqfpnagy2sk67yq7n7s6ma3im37d558zzx8sdzd9pbfxy9ij23",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20131220.1447",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "highlight-chars": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/highlight-chars.el",
+ "sha256": "14gx9fri2qbgii828dd42aw02rskshbyyymd68aqh2dll7cbw6mf"
+ },
+ "recipe": {
+ "sha256": "19jawbjvqx1hsjbynx0jgpziap3r64k8s1xfckajrx8aq8m4c6i0",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150630.1635",
+ "deps": []
+ },
+ "wgrep-helm": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "mhayashi1120",
+ "repo": "Emacs-wgrep",
+ "sha256": "075z0glain0dp56d0cp468y5y88wn82ab26aapsrdzq8hmlshwn4",
+ "rev": "7ef26c51feaef8a5ec0929737130ab8ba326983c"
+ },
+ "recipe": {
+ "sha256": "1hh7isc9xifkrdfw88jw0z0xmfazrbcis6d355bcaxlnjy6fzm8b",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140528.1627",
+ "deps": [
+ "wgrep"
+ ]
+ },
+ "flymake-cursor": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/flymake-cursor.el",
+ "sha256": "10cpzrd588ya52blghxss5zkn6x8hc7bx1h0qbcdlybbmkjgpkxr"
+ },
+ "recipe": {
+ "sha256": "1s065w0z3sfv3d348w4zhlw96xf3j28bcz14sl46963mj2dm90lr",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20130822.532",
+ "deps": []
+ },
+ "tabbar": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "dholm",
+ "repo": "tabbar",
+ "sha256": "0n23nnig1lgjamrzsa91p2aplh7gpj2vkp951i9fpf49c6xpyj3x",
+ "rev": "ad4c9c20cf9090a5ebf77a5150f2bf98bdb4bded"
+ },
+ "recipe": {
+ "sha256": "1y376nz1xmchwns4fz8dixbb7hbqh4mln78zvsh7y32il98wzvx9",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20141109.343",
+ "deps": []
+ },
+ "pretty-symbols": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "drothlis",
+ "repo": "pretty-symbols",
+ "sha256": "1f00l9f6an1mh8yhf629mw0p37m4jcpl8giz47xbdyw1k6bqn830",
+ "rev": "582cbe51ecfe1cc0a5b185bc06113c8a661e3956"
+ },
+ "recipe": {
+ "sha256": "0d1ad2x4md0n3fad3s2355wm8hl311qdhih1gkdqwdaj4i1d6gvb",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140814.459",
+ "deps": []
+ },
+ "comment-dwim-2": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "remyferre",
+ "repo": "comment-dwim-2",
+ "sha256": "0kzlv2my0cc7d3nki2rlm32nmb2nyjb38inmvlf13z0m2kybg2ps",
+ "rev": "8cedecde018b5872195bfead6511af822776a430"
+ },
+ "recipe": {
+ "sha256": "1w9w2a72ygsj5w47vjqcljajmmbz0mi8dhz5gjnpwxjwsr6fn6lj",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150825.1749",
+ "deps": []
+ },
+ "dom": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "toroidal-code",
+ "repo": "dom.el",
+ "sha256": "165d22qkkdxd8zsbln0991r5n7aklz92f2snf6d8578flkqvdmm2",
+ "rev": "19a3cadd02ef2cafc258b7ddb1f1609eec894ed6"
+ },
+ "recipe": {
+ "sha256": "0cpd12vhshlk2v3w42n769gc0b3rsqc8wb7g84846v9r05ypinj2",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150414.1810",
+ "deps": [
+ "cl-lib"
+ ]
+ },
+ "s-buffer": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "nicferrier",
+ "repo": "emacs-s-buffer",
+ "sha256": "06ng960fj2ivnwb0hrn0qic5x8hb0sswjzph01zmwhbfnwykhr85",
+ "rev": "f95d234282377f00a2c3a9846681080cb95bb1df"
+ },
+ "recipe": {
+ "sha256": "07kivgzv24psjq1240gwj9wkndq4bhvjh38x552k90m9v6jz8l6m",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20130605.1624",
+ "deps": [
+ "noflet",
+ "s"
+ ]
+ },
+ "ctags-update": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "jixiuf",
+ "repo": "helm-etags-plus",
+ "sha256": "1va394nls4yi77rgm0kz5r00xiidj6lwcabhqxisz08m3h8gfkh2",
+ "rev": "eeed834b25a1c084b2c672bf15e4f96ee3df6a4e"
+ },
+ "recipe": {
+ "sha256": "1k43l667mvr2y33nblachdlvdqvn256gysc1iwv5zgv7gj9i65qf",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150427.2214",
+ "deps": []
+ },
+ "pcsv": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "mhayashi1120",
+ "repo": "Emacs-pcsv",
+ "sha256": "0aaprjczjf3al5vcypw1fsnz5a0xnnlhmvy0lc83i9aqbsa2y8af",
+ "rev": "798e0933f8d0818beb17aebf3b1056bbf74e03d0"
+ },
+ "recipe": {
+ "sha256": "1zphndkbva59g1fd319a240yvq8fjk315b1fyrb8zvmqpgk9n0dl",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150220.531",
+ "deps": []
+ },
+ "projectile-speedbar": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "anshulverma",
+ "repo": "projectile-speedbar",
+ "sha256": "0lr3vx1byf0i9jdzbyrvvzyzi1nfddvw5r9f9wm7gpfp5l8772la",
+ "rev": "59a91ea6b7e4ed4e25ba1acc37d6f90e14c3fa16"
+ },
+ "recipe": {
+ "sha256": "0dli4gzsiycivh8dwa00lfpbimyg42qygfachzrhi8qy5413pwlp",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150629.1353",
+ "deps": [
+ "projectile"
+ ]
+ },
+ "helm-unicode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "shosti",
+ "repo": "helm-unicode",
+ "sha256": "1ypnsbx623gg3q07gxrbkn82jzy38sj4p52hj1wcb54qjqzyznkg",
+ "rev": "cf08fea1235fdc9f900efc0742b021ca33ef65aa"
+ },
+ "recipe": {
+ "sha256": "052xqzvcfzpsbl75ylqb1khqndvc2dqdymqlwivs0darlds0w8y4",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150428.1354",
+ "deps": [
+ "emacs",
+ "helm"
+ ]
+ },
+ "base16-theme": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "mkaito",
+ "repo": "base16-emacs",
+ "sha256": "16240dj0hvxkljas9973wjdgkbx213sqws77j167yr5xf761dlsr",
+ "rev": "18693adea42ec2667534651c28c32934bc1bcec0"
+ },
+ "recipe": {
+ "sha256": "1zxbvfj6gvz1ynhj6i9q9y65hq7aq41qx4vnx738cjizcq0rc8bs",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151019.911",
+ "deps": []
+ },
+ "xah-fly-keys": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "xahlee",
+ "repo": "xah-fly-keys",
+ "sha256": "0c8l924sanlbwbckg4ganw91lvbh5q05gn03f2j194adgjhqsw1n",
+ "rev": "83d0da590640dda6d175cf88e83062717e39ed50"
+ },
+ "recipe": {
+ "sha256": "0bzfz8q7yd1jai0pgngxwjp82nsfx5ivn24cb20vc5r8hhzj17cs",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151210.348",
+ "deps": []
+ },
+ "chm-view": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/chm-view.el",
+ "sha256": "1r274pf0xrcdml4sy2nhhp3v5pr3y3s4lvk45hd3pmw1i4pw2fd8"
+ },
+ "recipe": {
+ "sha256": "1acz0fvl3inn7g4himq680yf64bgm7n61hsv2zpm1k6smrdl78nz",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20110616.1219",
+ "deps": []
+ },
+ "company-quickhelp": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "expez",
+ "repo": "company-quickhelp",
+ "sha256": "0hg3wrfhz3qlfb6zv6j5a4xzmm4jk25pkv8h3ryg7sl7h602idgl",
+ "rev": "05e0ee9b854f90ff2b007b3e19446a02513f43dc"
+ },
+ "recipe": {
+ "sha256": "042bwv0wd4hksbm528zb7pbllzk83p8qjq5f8z46p84c8mmxfp9g",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150804.519",
+ "deps": [
+ "company",
+ "emacs",
+ "pos-tip"
+ ]
+ },
+ "fxrd-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "msherry",
+ "repo": "fxrd-mode",
+ "sha256": "003iqzwzf950dvn6q901y0jjadz7hqaafa9wrhzplay3kjnkjj9b",
+ "rev": "122afe6b7edeff117edf92dab1ba011ae71a5910"
+ },
+ "recipe": {
+ "sha256": "17zimg64lqc1yh9gnp5izshkvviz996aym7q6n9p61a4kqq37z4r",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151211.1328",
+ "deps": [
+ "s"
+ ]
+ },
+ "gnus-desktop-notify": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "wavexx",
+ "repo": "gnus-desktop-notify",
+ "sha256": "0ylcphnf4lv78kiazdkl5izn7ql402fpvv82n7n1gpjiqq4ylalr",
+ "rev": "cbd5352d7cb5209a410db7f0faa60b4585f8647b"
+ },
+ "recipe": {
+ "sha256": "0hf2dszk5d7vn80bm0msaqv7iji384n85dxgw8ng64c0f9f6752b",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150703.854",
+ "deps": [
+ "gnus"
+ ]
+ },
+ "abyss-theme": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "mgrbyte",
+ "repo": "emacs-abyss-theme",
+ "sha256": "12cgjc01k3ivy02381py2g87n2wzwnv153favw2raw4gwl2sfwhs",
+ "rev": "7971da041f5fb608e32cdac9259b53c87013c04f"
+ },
+ "recipe": {
+ "sha256": "0ckrgfd7fjls6g510v8fqpkd0fd18lr0spg3lf5s88gky8ihdg6c",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151007.608",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "js-comint": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "redguardtoo",
+ "repo": "js-comint",
+ "sha256": "0hh49j4ngnw7zkp31nm7bckkic3ya3xwzrsz4ksj2ws4fyjkqc9v",
+ "rev": "6eb9b2be4fc1c43d600ae9d4cfeacee40fba5c73"
+ },
+ "recipe": {
+ "sha256": "0jvkjb0rmh87mf20v6rjapi2j6qv8klixy0y0kmh3shylkni3an1",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151126.2038",
+ "deps": [
+ "nvm"
+ ]
+ },
+ "orglue": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "yoshinari-nomura",
+ "repo": "orglue",
+ "sha256": "1w0hadpslxcjn29yxl9i37sja4qf4kp7ffjpwij5hs73r518c2z6",
+ "rev": "4732f8bfd6866e20230b36e5971f2492827c6944"
+ },
+ "recipe": {
+ "sha256": "14g4q2k9zjzipzrp5mg72s40b0rwiaixgq3rvi15wh4vvcw5xajn",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150430.713",
+ "deps": [
+ "epic",
+ "org",
+ "org-mac-link"
+ ]
+ },
+ "qml-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "coldnew",
+ "repo": "qml-mode",
+ "sha256": "172yfy4adxqhjgh0y4z5fpp52fgbyqvxmb7nh7050byljmiqy3jf",
+ "rev": "5e8fb8819e2d7f6fdbb5609a19570db6eaa6a83a"
+ },
+ "recipe": {
+ "sha256": "123mlibviplzra558x87da4zx0kpbhsgfigjjgjgp3mdg897084n",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20130427.1008",
+ "deps": []
+ },
+ "org-journal": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "bastibe",
+ "repo": "emacs-journal",
+ "sha256": "0j6c2ykcm0yscfx5fjnbx53x4jvjc7c0lsgidlnn3a2mwynrc234",
+ "rev": "f67e147d864ec05f08f757725c8a97cb8d8a3fd1"
+ },
+ "recipe": {
+ "sha256": "078z9b9hxbvmmxib6098f49rn7n3d0v4x37p7xxb0v8cv4izlb4s",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150910.949",
+ "deps": []
+ },
+ "selectric-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "rbanffy",
+ "repo": "selectric-mode",
+ "sha256": "18xdkisxvdizsk51pnyimp9mwc6k9cpcxqr5hgndkz9q97p5dp79",
+ "rev": "0dd7ef28a9d9d6fbb95fdeeab6b576ad8762ad16"
+ },
+ "recipe": {
+ "sha256": "1k4l0lr68rqyi37wvqp1cnfci6jfkz0gvrd1hwbgx04cjgmz56n4",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151201.918",
+ "deps": []
+ },
+ "circe": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "jorgenschaefer",
+ "repo": "circe",
+ "sha256": "1l6lm3i02r0b8ng0n3rckgk0q38wjng41dqbx148bjxfq44cpghz",
+ "rev": "c9862e432d2dad7cd568d79dbe49849245333fb1"
+ },
+ "recipe": {
+ "sha256": "1f54d8490gfx0r0cdvgmcjdxqpni43msy0k2mgqd1qz88a4b5l07",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151207.344",
+ "deps": [
+ "cl-lib"
+ ]
+ },
+ "blgrep": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "ataka",
+ "repo": "blgrep",
+ "sha256": "1pslwyaq18d1z7fay2ih3n27i6b49ss62drqqb095l1jxk42xxm0",
+ "rev": "605beda210610a5829750a987f5fcebea97af546"
+ },
+ "recipe": {
+ "sha256": "0w7453vh9c73hdfgr06693kwvhznn9xr1hqa65izlsx2fjhqc9gm",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150401.916",
+ "deps": [
+ "clmemo"
+ ]
+ },
+ "sublime-themes": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "owainlewis",
+ "repo": "emacs-color-themes",
+ "sha256": "0gnxc9i544g6202s205jkjsfyzbybiqsdaxmfxcwj8la7ga6h2bf",
+ "rev": "88315505322f285ff56272a6cd5f20af8eff2ef0"
+ },
+ "recipe": {
+ "sha256": "1nahcfcy831c7w3c69i2na0r8jsdgprffgfdvh4c41cnk4rkgdqj",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150915.203",
+ "deps": []
+ },
+ "evm": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "rejeep",
+ "repo": "evm.el",
+ "sha256": "0739v0m9vj70a55z0canslyqgafzys815i7a0r6bxj2f9iwq6rhb",
+ "rev": "d0623b2355436a5fd9f7238b419782080c79196b"
+ },
+ "recipe": {
+ "sha256": "19l6cs5schbnph0pwhhj66gkxsswd4bmjpy79l9kxzpjf107wc03",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20141007.656",
+ "deps": [
+ "dash",
+ "f"
+ ]
+ },
+ "snakemake-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "kyleam",
+ "repo": "snakemake-mode",
+ "sha256": "0ymgiqfz33b0iyc6y9m8mb76q3jrccxlh7sbpqn8hj31iwlqyr48",
+ "rev": "801662d8c1bf0905afbd7ca5071d6bf637947f0a"
+ },
+ "recipe": {
+ "sha256": "1xxd3dms5vgvpn18a70wjprka5xvri2pj9cw8qz09s640f5jf3r4",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151103.2203",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "nameless": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "Malabarba",
+ "repo": "Nameless",
+ "sha256": "13v0v90vrc2w0wi7wmzmpql6yjbr6lpzh29kxggq9fy38lahd3ks",
+ "rev": "a3dfd7ecf9c58898241c8d1145eb8e0c875f5448"
+ },
+ "recipe": {
+ "sha256": "14agx54h2vqfb0656n12z761ywyxsdskd6xa1ccar70l9vwj85vq",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151014.639",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "epresent": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "eschulte",
+ "repo": "epresent",
+ "sha256": "1a8gzf7abda0zgcllyl351m47avnf995i9lvwjf05nyx2jb31dnw",
+ "rev": "c185826a464f780467dff240fd63ec385bd1d9c2"
+ },
+ "recipe": {
+ "sha256": "1x16wqfjfrh7kaqar5px61bf3lnlibvcbr5xaf3mcgph37sgi6la",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150324.810",
+ "deps": []
+ },
+ "truthy": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "rolandwalker",
+ "repo": "truthy",
+ "sha256": "1mm6rrprsmx4hc622qmllm7c81yhwbqmdr0n6020krq92zmilmlm",
+ "rev": "8ed8d07772aa8457554547eb17e264b5df2b4a69"
+ },
+ "recipe": {
+ "sha256": "1a56zmqars9fd03bkqzwpvgblq5fvq19n4jw04c4hpga92sq8wqg",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140508.1541",
+ "deps": [
+ "list-utils"
+ ]
+ },
+ "php-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "ejmr",
+ "repo": "php-mode",
+ "sha256": "0206jv7rz9gm016lpfdwh2l0z6da25szc6hfxgcz2qvkzjpvrlr6",
+ "rev": "9b1e7736ce014f26f40635af3c781127a5e32dfa"
+ },
+ "recipe": {
+ "sha256": "1lc4d3fgxhanqr3b8zr99z0la6cpzs2rksj806lnsfw38klvi89y",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151002.2230",
+ "deps": []
+ },
+ "helm-bibtexkey": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "kenbeese",
+ "repo": "helm-bibtexkey",
+ "sha256": "10k7hjfz9jmfpbmsv20jy9vr6fqxx1yp8v115hprqvw057iifsl9",
+ "rev": "aa1637ea5c8c5f1817e480fc2a3750cafab3d99f"
+ },
+ "recipe": {
+ "sha256": "00i7ni4r73mmxavhfcm0fd7jhx6gxvxx7prax1yxmhs46fpz8jwj",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140214.904",
+ "deps": [
+ "helm"
+ ]
+ },
+ "sotlisp": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "Malabarba",
+ "repo": "speed-of-thought-lisp",
+ "sha256": "027jmqx4240hym2is9q1iyjdws9ijyyck8dnsbm9xc5lhpsdrl69",
+ "rev": "d5d5ae44e6a31e231024cc7ad9861aa451165413"
+ },
+ "recipe": {
+ "sha256": "0zjnn6hhwy6cjvc5rhvhxcq5pmrhcyil14a48fcgwvg4lv7fbljk",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151105.934",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "helm-spaces": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "yasuyk",
+ "repo": "helm-spaces",
+ "sha256": "0sw7g1zcs1jfqcpprxwjq97lsk4qfngwamkj3q8jhm77zh7kfa3b",
+ "rev": "7545fed3880effe079bb27bfbf22e902ac0bc828"
+ },
+ "recipe": {
+ "sha256": "0hdvkk173k98iycvii5xpbiblx044125pl7jyz4kb8r1vvwcv791",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20130605.1100",
+ "deps": [
+ "helm",
+ "spaces"
+ ]
+ },
+ "logito": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "sigma",
+ "repo": "logito",
+ "sha256": "0jpyd2f33pk984kg0q9hxdl4615jb7sxsggnb30mpz7a2ws479xr",
+ "rev": "824acb89d2cc18cb47281a4fbddd81ad244a2052"
+ },
+ "recipe": {
+ "sha256": "0bk4qnz66kvhzsk88lw45209778y53kg17iih70ix4ma1x6a3v5l",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20120225.1455",
+ "deps": [
+ "eieio"
+ ]
+ },
+ "slack": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "yuya373",
+ "repo": "emacs-slack",
+ "sha256": "1xpkcabi0cnk895fkg8ssaz7m3bc9x5i77v6a9mwdyjjxikcmgi2",
+ "rev": "861b250458606039301480bcf8c166b1a2ce174b"
+ },
+ "recipe": {
+ "sha256": "0mybjx08yskk9vi06ayiknl5ddyd8h0mnr8c0a3zr61p1x4s6anp",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151218.347",
+ "deps": [
+ "alert",
+ "circe",
+ "emojify",
+ "oauth2",
+ "request",
+ "websocket"
+ ]
+ },
+ "auto-save-buffers-enhanced": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "kentaro",
+ "repo": "auto-save-buffers-enhanced",
+ "sha256": "10aw3bpvawkqj1l8brvzq057wx3mkzpxs4zc3yhppkhq2cpvx7i2",
+ "rev": "caf594120781a323ac37eab82bcf87f1ed4c9c42"
+ },
+ "recipe": {
+ "sha256": "123vf6nnvdhrrfjn8n8h8a11mkqmy2zm3w3yn99np0zj31x8z7bb",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20130607.2149",
+ "deps": []
+ },
+ "programmer-dvorak": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "yangchenyun",
+ "repo": "programmer-dvorak",
+ "sha256": "1yklm43d0ppyf4simhqab6m892z4mmxs2145lzw6kpizixavcv00",
+ "rev": "3288a8f058eca4cab390a564babbbcb17cfa0350"
+ },
+ "recipe": {
+ "sha256": "1w8r35hkl6qy9a89l0m74x9q2vcc4h2hvmi3r2hqcy2ypkn5l5bv",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150426.2037",
+ "deps": []
+ },
+ "gold-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "yuutayamada",
+ "repo": "gold-mode-el",
+ "sha256": "1k4i9z9h4m0h0y92mncr96jir63q5h1bix5bpnlfxhxl5w8pvk1q",
+ "rev": "6d3aa59602b1b835495271c8c9741ac344c2eab1"
+ },
+ "recipe": {
+ "sha256": "1b67hd1fp6xcj65xxp5jcpdjspxsbzxy26v6lqg5kiy8knls57kf",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140606.2106",
+ "deps": [
+ "sws-mode"
+ ]
+ },
+ "org-tracktable": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "tty-tourist",
+ "repo": "org-tracktable",
+ "sha256": "053wf36lq9piyzq7rv2lid34zanj6l9fvawp3r3nsniy5nlfckqx",
+ "rev": "28ef6772cdcf436cf38095f15c6bb681473180ce"
+ },
+ "recipe": {
+ "sha256": "0mngf9q2ffxq32cgng0xl30661mj15wmr9y4hr3xddj626kxrp00",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151129.1441",
+ "deps": [
+ "cl-lib",
+ "emacs"
+ ]
+ },
+ "showtip": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/showtip.el",
+ "sha256": "01ibg36lvmdk7ac1k0f0r6wyds4rq0wb7gzw26nkiwykn14gxaql"
+ },
+ "recipe": {
+ "sha256": "1fdhdmkvyz1dcy3x0im1iab6yhhh8gqvxmm6ccwr6rl1r1m5zwc8",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20080329.2159",
+ "deps": []
+ },
+ "electric-operator": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "davidshepherd7",
+ "repo": "electric-operator",
+ "sha256": "15k9jc8c7d1wq8lrmdpdk52a7krla0irb2anbllz7kmdj1cp6311",
+ "rev": "42be5a7e1e98ce879e93d87472de7b37434a5868"
+ },
+ "recipe": {
+ "sha256": "043bkpvvk42lmkll5jnz4q8i0m44y4wdxvkz6hiqhqcp1rv03nw2",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151126.1536",
+ "deps": [
+ "dash",
+ "emacs",
+ "names"
+ ]
+ },
+ "duplicate-thing": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "ongaeshi",
+ "repo": "duplicate-thing",
+ "sha256": "1qaiwm8mf4656gc1pdj8ivgy4abkjsypr52pvf4nrdkkln9qzfli",
+ "rev": "f6ed0232fd0653621afe450d53775a32a9d0e328"
+ },
+ "recipe": {
+ "sha256": "1jx2b6h23dj561xhizzbpxp3av69ic8zdw4kkf0py1jm3gnrmlm4",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20120515.1148",
+ "deps": []
+ },
+ "owdriver": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "aki2o",
+ "repo": "owdriver",
+ "sha256": "0f2psx4lq98l3q3fnibsfqxp2hvvwk7b30zjvjlry3bffg3l7pfk",
+ "rev": "0479389d9df9e70ff9ce69dff06252d3aa40fc86"
+ },
+ "recipe": {
+ "sha256": "0j8z7ynan0zj581x50gsi9lljkbi6bwmzpfyha3i6q8ch5qkdxfd",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20141011.938",
+ "deps": [
+ "log4e",
+ "smartrep",
+ "yaxception"
+ ]
+ },
+ "color-identifiers-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "ankurdave",
+ "repo": "color-identifiers-mode",
+ "sha256": "0m98i8w513zdzkskw9a96dd73lnfbfwvr947b0djsrazn8grh6hv",
+ "rev": "e35ee05588d84517193db07d94ce7f29ace10ef6"
+ },
+ "recipe": {
+ "sha256": "1hxp8lzn7kfckn5ngxic6qiz3nbynilqlxhlq9k1n1llfg216gfq",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150602.2004",
+ "deps": [
+ "dash",
+ "emacs"
+ ]
+ },
+ "visible-mark": {
+ "fetch": {
+ "tag": "fetchFromGitLab",
+ "owner": "iankelling",
+ "repo": "visible-mark",
+ "sha256": "15zdbvv6c114mv6hdq375l7ax70sss06p9d7m86hgssc3kiv9vsv",
+ "rev": "c1852e13b6b61982738b56977a452ec9026faf1b"
+ },
+ "recipe": {
+ "sha256": "1rp0gnz28m1drwb1hhsf0mwxzdppdi88hscf788qw8cw65gckv80",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150623.2350",
+ "deps": []
+ },
+ "message-x": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/message-x.el",
+ "sha256": "05ic97plsysh4nqwdrsl5m9f24m11w24bahj8bxzfdawfima2bkf"
+ },
+ "recipe": {
+ "sha256": "0z12alizwrqp5f9wq3qllym9k5xljh904c9qhlfhp9biazj6yqwj",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151029.918",
+ "deps": []
+ },
+ "spotify": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "remvee",
+ "repo": "spotify-el",
+ "sha256": "05y8xv6zapspwr5bii41lgirslas22wsbm0kgb4dm79qbk9j1kzw",
+ "rev": "07a44ecdbdaa93977e97f2a2e5d280ef0b2e8545"
+ },
+ "recipe": {
+ "sha256": "0pmsvxi1dsi580wkhhx8iw329agkh5yzk61bqvxzign3cd6fbq6k",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150108.1003",
+ "deps": []
+ },
+ "vi-tilde-fringe": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "syl20bnr",
+ "repo": "vi-tilde-fringe",
+ "sha256": "0wdm8k49zl6i6wnh7vjkswdh5m9lix56jv37xvc90inipwgs402z",
+ "rev": "f1597a8d54535bb1d84b442577b2024e6f910308"
+ },
+ "recipe": {
+ "sha256": "0jhwv46gjwjbs1ai65nm6k15y0q4yl9m5mawgp3n4f45dh02cawp",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20141027.2142",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "babel-repl": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "hung-phan",
+ "repo": "babel-repl",
+ "sha256": "19sj3kw8kyv1bmagf2mw27yxmajf4k2abzmb6pc5rlhhhjq0xam1",
+ "rev": "be3ec68b36f4dea88aa5705d9ac230b74afcd77e"
+ },
+ "recipe": {
+ "sha256": "0h11i8w8s4ia1x0lm5n7bnc3db4bv0a7f7hzl27qrg38m3c7dl6x",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150712.1000",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "spotlight": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "benmaughan",
+ "repo": "spotlight.el",
+ "sha256": "05knlca2dvpyqp9lw8dc47fl5kh2jb04q57cygkzfjjkzvywdwq8",
+ "rev": "ab902900f22e7d1ea2dd8169441d2da7155aaa68"
+ },
+ "recipe": {
+ "sha256": "0mmr1spr21pi8sfy95dsgqcxn8qfsphdkfjm5w5q97lh7496z65p",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150929.255",
+ "deps": [
+ "counsel",
+ "emacs",
+ "swiper"
+ ]
+ },
+ "http-post-simple": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/http-post-simple.el",
+ "sha256": "1wp2rwc1hgd5c3yr6b96yzzakd1qmy5d95mhc6q4f6lx279nx0my"
+ },
+ "recipe": {
+ "sha256": "1b2fh0hp5z3712ncgc5ns1f3sww84khkq7zb3k9xclsp1p12a4cf",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20131010.2258",
+ "deps": []
+ },
+ "shadchen": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "VincentToups",
+ "repo": "shadchen-el",
+ "sha256": "0phivbhjdw76gzrx35rp0zybqfb0fdy2hjllf72qf1r0r5gxahl8",
+ "rev": "35f2b9c304eec990c16efbd557198289dc7cbb1f"
+ },
+ "recipe": {
+ "sha256": "1r1mfmv4cdlc8kzjiqz81kpqdrwbnyciwdgg6n5x0yi4apwpvnl4",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20141102.1239",
+ "deps": []
+ },
+ "mustache-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "mustache",
+ "repo": "emacs",
+ "sha256": "15gw4d0hp15rglsj8hzd290li4p0kadj2dsz0dgfcxld7hnimihk",
+ "rev": "bf9897eb287ca47ced65d7d4e07ea61ea0aec39f"
+ },
+ "recipe": {
+ "sha256": "076ar57qhwcpl4n634ma827r2rh61670778wqr5za2444a6ax1gs",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20141024.932",
+ "deps": []
+ },
+ "persistent-soft": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "rolandwalker",
+ "repo": "persistent-soft",
+ "sha256": "14p20br8vzxs39d4hswzrrkgwql5nnmn5j17cpbabzjvck42rixc",
+ "rev": "a1e0ddf2a12a6f18cab565dee250f070384cbe02"
+ },
+ "recipe": {
+ "sha256": "0a4xiwpgyyynjf69s8p183mqd3z53absv544ggvhb2gkpm6jravc",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150223.1253",
+ "deps": [
+ "list-utils",
+ "pcache"
+ ]
+ },
+ "prosjekt": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "abingham",
+ "repo": "prosjekt",
+ "sha256": "1m8zvrv5aws7b0dffk8y6b5mncdk2c4k90mx69jys10fs0gc5hb3",
+ "rev": "a864a8be5842223043702395f311e3350c28e9db"
+ },
+ "recipe": {
+ "sha256": "1fn7ii1bq7bjkz27hihclpvx0aabgwy3kv47r9qibjl2jin97rck",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151127.816",
+ "deps": [
+ "dash"
+ ]
+ },
+ "chef-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "mpasternacki",
+ "repo": "chef-mode",
+ "sha256": "1mnskri5r1lyzzcag60x7amn00613jyl7by7hd4sqm2a7zd4r5aa",
+ "rev": "c333dd3f9229c4f35fe8c4495b21049ba730cc42"
+ },
+ "recipe": {
+ "sha256": "1pz82s82d4z3vkm8mpmwdxb9pd11kq09g23mg461lzqxjjw734rr",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20111121.900",
+ "deps": []
+ },
+ "simplenote": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "dotemacs",
+ "repo": "simplenote.el",
+ "sha256": "0xq4vy3ggdjiycd3aa62k94kd43zcpm8bfdgi8grwkb1lpvwq9i9",
+ "rev": "e836fcdb5a6497a9ffd6bceddd19b4bc52189078"
+ },
+ "recipe": {
+ "sha256": "0rnvm3q2spfj15kx2c8ic1p8hxg7rwiqgf3x2zg34j1xxayn3h2j",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20141118.840",
+ "deps": []
+ },
+ "key-combo": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "uk-ar",
+ "repo": "key-combo",
+ "sha256": "1is7s50lgn77lxxwgakiaywx6jqdfg8045d18m4zn3ilxg6k8ljf",
+ "rev": "2e220fe3a91c944ce30c4c0297f99d0053b95754"
+ },
+ "recipe": {
+ "sha256": "1v8saw92jphvjkyy7j9jx7cxzgisl4zpf4wjzdjfw3la5lz11waf",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150324.939",
+ "deps": []
+ },
+ "white-sand-theme": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "mswift42",
+ "repo": "white-sand-theme",
+ "sha256": "0sh92g5vd518f80klvljqkjpw4ji909439dpc3sfaccf5jiwn9xn",
+ "rev": "97621edd69267dd143760d94393db2c2558c9ea4"
+ },
+ "recipe": {
+ "sha256": "19qsiic6yf7g60ygjmw7kg1i28nqpm3zja8cmdh33ny2bbkwxsz5",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151117.1048",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "company-irony-c-headers": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "hotpxl",
+ "repo": "company-irony-c-headers",
+ "sha256": "1x2dfjmy86icyv2g1y5bjlr87w8rixqdcndkwm1sba6ha277wp9i",
+ "rev": "ba304fe7eebdff90bbc7dea063b45b82638427fa"
+ },
+ "recipe": {
+ "sha256": "0kiag5ggmc2f5c3gd8nn40x16i686jpdrfrflgrz2aih8p3g6af8",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151018.409",
+ "deps": [
+ "cl-lib",
+ "company",
+ "irony"
+ ]
+ },
+ "eshell-prompt-extras": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "kaihaosw",
+ "repo": "eshell-prompt-extras",
+ "sha256": "0r2fbz5z935vny9cbi857ryddhbg9v8i93jrzn2xvqs3h5wj9jn9",
+ "rev": "0b7670972b6b424b4a15a88b1733b99324dcf387"
+ },
+ "recipe": {
+ "sha256": "1plvc8azpmb3phlrxhw3y18dv5y0xljsr5fqym4w84m66lq5csfj",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150726.159",
+ "deps": []
+ },
+ "magit-filenotify": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "magit",
+ "repo": "magit-filenotify",
+ "sha256": "0nkxxhxkhy314jv1l3hza84vigl8q7fc8hjjvrx58gfgsfgifx6r",
+ "rev": "c0865b3c41af20b6cd89de23d3b0beb54c8401a4"
+ },
+ "recipe": {
+ "sha256": "00a77czdi24n3zkx6jwaj2asablzpxq16iqd8s84kkqxcfiiahn7",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151116.1740",
+ "deps": [
+ "emacs",
+ "magit"
+ ]
+ },
+ "xterm-color": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "atomontage",
+ "repo": "xterm-color",
+ "sha256": "064fpjcj1sp8m5x106dw6zgy0p0rfd5fxcx57h533q263l7z00ny",
+ "rev": "1bc4ddb0e1bf7562cbf4b6b3bdd2ce3f9b596b39"
+ },
+ "recipe": {
+ "sha256": "0bvzi1mkxgm4vbq2va1sr0k9h3fdmppq79hkvbizc2xgk72sazpj",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150823.846",
+ "deps": []
+ },
+ "cp5022x": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "awasira",
+ "repo": "cp5022x.el",
+ "sha256": "1z67x4a0aricd9q6i2w33k74alddl6w0rijjhzyxwml7ibhbvphz",
+ "rev": "ea7327dd75e54539576916f592ae1be98179ae35"
+ },
+ "recipe": {
+ "sha256": "0v1jhkix01l299m67jag43rnps68m19zy83vvdglxa8dj3naz5dl",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20120323.1835",
+ "deps": []
+ },
+ "sqlite": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "cnngimenez",
+ "repo": "sqlite.el",
+ "sha256": "0zlrx8sk7gwwr6a23mc22d7iinwf8p9ff16r9krqp86fyzbhnq1d",
+ "rev": "9a7fb5836a19bc0ea8b4c5a50177112524380986"
+ },
+ "recipe": {
+ "sha256": "1j23rqgq00as90nk6csi489ida6b83h1myl3icxivj2iw1iikgj1",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150417.15",
+ "deps": []
+ },
+ "phpunit": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "nlamirault",
+ "repo": "phpunit.el",
+ "sha256": "1zghw5nfm4a9j98vsaw4fc8r4f98s5fhgvgbnbyyxapl851fa9i6",
+ "rev": "1ea2aa7901b5d0b1878d6e104ca92de2bbd7313f"
+ },
+ "recipe": {
+ "sha256": "0nj8ss1yjkcqnbnn4jgbp0403ljjk2xhipzikdrl3dbxlf14i4f8",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151009.454",
+ "deps": [
+ "f",
+ "pkg-info",
+ "s"
+ ]
+ },
+ "pastebin": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/pastebin.el",
+ "sha256": "17br64snqby465bjb0l1hzw0pcms5m2knrvb6y9gn3kir4sdi6kn"
+ },
+ "recipe": {
+ "sha256": "19fgjcbxgmnm59qjkxhvy2aib5qs5d5a43hwvjdhxq2k6rn3f2gj",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20101125.1355",
+ "deps": []
+ },
+ "org-gcal": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "myuhe",
+ "repo": "org-gcal.el",
+ "sha256": "1fg5qd1jswbdykx2aghpv79y5fccxcrwhwm81cnfh8s4fsq5nyfi",
+ "rev": "d9e04635ad692a02073947cc290c3c36a56c89f0"
+ },
+ "recipe": {
+ "sha256": "1mp6cm0rhd4r9pfvsjjp86sdqxjbbg7gk41zx0zf0s772smddy3q",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150922.2148",
+ "deps": [
+ "alert",
+ "cl-lib",
+ "emacs",
+ "org",
+ "request-deferred"
+ ]
+ },
+ "evil-rails": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "antono",
+ "repo": "evil-rails",
+ "sha256": "12rdx5zjp5pck008cykpw200rr1y0b3lj2dpzf82llfyfaxzh7wi",
+ "rev": "6a9375bf7f5823c8138e679249c4e2ce58f2e93a"
+ },
+ "recipe": {
+ "sha256": "0ah0nvzl30z19566kacyrsznsdm3cpij8n3bw3dfng7263rh60gj",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150803.646",
+ "deps": [
+ "evil",
+ "projectile-rails"
+ ]
+ },
+ "pcmpl-pip": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "kaihaosw",
+ "repo": "pcmpl-pip",
+ "sha256": "14pz15by9gp0307bcdv9h90mcr35ya89wbn3y13n7k0z5r45gn58",
+ "rev": "b775bef9fa3ae9fb8015409554ecdd165c4bc325"
+ },
+ "recipe": {
+ "sha256": "17nmgq4wgv4yl2rsdf32585hfa58j0825mzzajrlwgmjiqx9i778",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20141024.348",
+ "deps": []
+ },
+ "helm-rubygems-org": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "neomantic",
+ "repo": "helm-rubygems-org",
+ "sha256": "1sff8kagyhmwcxf9062il1077d4slvr2kq76abj496610gpb75i0",
+ "rev": "6aaed984f698cbdf9f9aceb0221404563e28764d"
+ },
+ "recipe": {
+ "sha256": "04ni03ak53z3rggdgf68qh7ksgcf3s0f2cv6skwjqw7v8qhph6qs",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140826.656",
+ "deps": [
+ "cl-lib",
+ "emacs",
+ "helm"
+ ]
+ },
+ "ag": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "Wilfred",
+ "repo": "ag.el",
+ "sha256": "04rvj7arjmg12vimf55yzj2md1blncksl8q15jrdbzddhrbdjvg4",
+ "rev": "421202ff9cbe717157ff4baeea891e9f2ec9dfe0"
+ },
+ "recipe": {
+ "sha256": "1r4ai09vdckkg4h4i7dp781qqmm4kky53p4q8azp3n2c78i1vz6g",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151209.1750",
+ "deps": [
+ "cl-lib",
+ "dash",
+ "s"
+ ]
+ },
+ "smartscan": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "mickeynp",
+ "repo": "smart-scan",
+ "sha256": "193cxfnh263yw628ipf9gssvyq3j7mffrdmnjhvzzcsnhd1k145p",
+ "rev": "5fd584d29ff8e5cd7a9e689369756868ab2922d3"
+ },
+ "recipe": {
+ "sha256": "0vghgmx8vnjbvsw7q5zs0qz2wm6dcng9m69b8dq81g2cq9dflbwb",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20131230.939",
+ "deps": []
+ },
+ "propfont-mixed": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "ikirill",
+ "repo": "propfont-mixed",
+ "sha256": "0lch20njy248w7bnvgs7jz0zqasskf5dakmykxwpb48llm6kx95v",
+ "rev": "0b461ef4754a469610dba71874a34b6da42176bf"
+ },
+ "recipe": {
+ "sha256": "19k0ydpkiviznsngwcqwn4k30r6j8w34pchgpjlsfwq1bndaai9y",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150113.1611",
+ "deps": [
+ "cl-lib",
+ "emacs"
+ ]
+ },
+ "jenkins": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "rmuslimov",
+ "repo": "jenkins.el",
+ "sha256": "08ywfmsjv3vjqy95hx095kasy8knh3asl7mrlkgmv9wjwnxw45zs",
+ "rev": "5ae8759d4799789337df0fd5e0e7d6f732f59b79"
+ },
+ "recipe": {
+ "sha256": "0ji42r7p3f3hh643839xf74gb231vr7anycr2xhkga8qy2vwa53s",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151114.2108",
+ "deps": [
+ "dash",
+ "emacs",
+ "json"
+ ]
+ },
+ "el-init": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "HKey",
+ "repo": "el-init",
+ "sha256": "01yxv5kladg04rqglrzrh3vdf435g3m0hnv8ay9zkwgggcnqiknw",
+ "rev": "e9717f7f051b9685cb436e6f87b27c745bf17072"
+ },
+ "recipe": {
+ "sha256": "121n6z8p9kzi7axp4i2kyi621gw20635w4j81i1bryblaqrv5kl5",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150728.420",
+ "deps": [
+ "anaphora",
+ "cl-lib",
+ "emacs"
+ ]
+ },
+ "todotxt-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "avillafiorita",
+ "repo": "todotxt-mode",
+ "sha256": "1k9ywi7cdgb6i600wr04r2l00423l6vr7k93qa7i7svv856nbbc7",
+ "rev": "dc6ae151edee88f329ba7abc5d39b7440002232f"
+ },
+ "recipe": {
+ "sha256": "1bs4air13ifx3xkhcfi80z29alsd63r436gnyvjyxlph2ip37v7k",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150424.904",
+ "deps": []
+ },
+ "alert": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "jwiegley",
+ "repo": "alert",
+ "sha256": "0z7yfjg14bzndpm9ski1a1mdixvrykg7d08cd86dc82bghb3px2z",
+ "rev": "dfb003476aeb26d08782c17257f3a81934bcf6ce"
+ },
+ "recipe": {
+ "sha256": "0x3cvczq09jvshz435jw2fjm69457x2wxdvvbbjq46nfnybhi118",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151123.959",
+ "deps": [
+ "gntp",
+ "log4e"
+ ]
+ },
+ "slime-ritz": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "pallet",
+ "repo": "ritz",
+ "sha256": "0rsh0bbhyx74yz1gjfqyi0bkqq5n3scpyh5mmc3d6dkpv8wa7bwz",
+ "rev": "4003fdaa5657d4ed1eeb0e244c46658cbb981667"
+ },
+ "recipe": {
+ "sha256": "1y1439y07l1a0sp9wn110hw4yyxj8n1cnd6h17rmsr549m2qbg1a",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20130218.1737",
+ "deps": []
+ },
+ "buffer-flip": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "killdash9",
+ "repo": "buffer-flip.el",
+ "sha256": "0ck6d1z8j9yc32wrbwmxl8rgm19la7ijvsh740sd0sfmhwqxc1kz",
+ "rev": "2bbf74fac037ace991d03336c515c499a8e69c95"
+ },
+ "recipe": {
+ "sha256": "0ka9ynj528yp1p31hbhm89627v6dpwspybly806n92vxavxrn098",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151214.1050",
+ "deps": [
+ "key-chord"
+ ]
+ },
+ "point-undo": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/point-undo.el",
+ "sha256": "13c1iw77ccvrfrv4lyljg8fpm7xqhnv29yzvig8wr8b5j2vsd8bz"
+ },
+ "recipe": {
+ "sha256": "0by7ifj1lf0w9pp7v1j9liqjs40k8kk9yjnznxchq172816zbg3k",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20100504.329",
+ "deps": []
+ },
+ "frame-cmds": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/frame-cmds.el",
+ "sha256": "1p7ry940wgjpg2vq3m1nr1bs86cc4mhbpzj64znlmlnjgwa4bk2a"
+ },
+ "recipe": {
+ "sha256": "0xwzp6sgcb5ap76hpzm8g4kl08a8cgq7i2x9w64njyfink7frwc0",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150814.952",
+ "deps": [
+ "frame-fns"
+ ]
+ },
+ "yaoddmuse": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/yaoddmuse.el",
+ "sha256": "0svy6zp5f22z7mblap4psh7h4i52d1qasi9yk22l39przhsrjar4"
+ },
+ "recipe": {
+ "sha256": "07sqcsad3k23agwwws7hxnc46cp9mkc9qinzva7qvjgs8pa9dh54",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150712.621",
+ "deps": []
+ },
+ "company-dcd": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "tsukimizake",
+ "repo": "company-dcd",
+ "sha256": "0qbis9jqcrgj71cf8i9yfxsm7yj6d546gxw6linqd7slqn97l8rl",
+ "rev": "1d121dc42906fc58fa3a7febff8dabd29fba34f2"
+ },
+ "recipe": {
+ "sha256": "03849k4jzs23iglk9ghcq6283c9asffcq4dznypcjax7y4x113vd",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150901.604",
+ "deps": [
+ "cl-lib",
+ "company",
+ "flycheck-dmd-dub",
+ "helm",
+ "popwin",
+ "yasnippet"
+ ]
+ },
+ "focus-autosave-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "vifon",
+ "repo": "focus-autosave-mode.el",
+ "sha256": "1k5xhnr1jkfw8896kf2nl4633r6ni5bnc53rs6lxn8y9lj0srafb",
+ "rev": "592e2c0642ee86b2000b728ea346de084447dda8"
+ },
+ "recipe": {
+ "sha256": "1zwp99mk360mqk4mjnnjr6islavginc9732p0jn9g5yz62xypxpc",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151012.442",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "bert": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "manzyuk",
+ "repo": "bert-el",
+ "sha256": "06izbc0ksyhgh4gsjiifhj11v0gx9x5xjx9aqci5mc4kc6mg05sf",
+ "rev": "a3eec6980a725aa4abd2019e4c00246450260490"
+ },
+ "recipe": {
+ "sha256": "1zhz1dcy1nf84p244x6lc4ajancv5fgmqmbrm080yhb2ral1z8x7",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20131117.414",
+ "deps": []
+ },
+ "tern-django": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "proofit404",
+ "repo": "tern-django",
+ "sha256": "1yb416py93sxnkfnfnbwrlfg68gkp97wpfsrdpc83sai888p44wc",
+ "rev": "455326a1732daa58d4d963b0b11bb1a9fd2f2b86"
+ },
+ "recipe": {
+ "sha256": "1pjaaffadaw8h2n7yv01ks19gw59dmh8bp8vw51hx1082r3yfvv0",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150121.1327",
+ "deps": [
+ "emacs",
+ "f",
+ "tern"
+ ]
+ },
+ "shell-history": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/shell-history.el",
+ "sha256": "0biqjm0fpd7c7jilgkcwp6c32car05r5akimbcdii3clllavma7r"
+ },
+ "recipe": {
+ "sha256": "1blad7ggv27qzpai2ib1pmr23ljj8asq880g3d7w8fhqv0p1pjs7",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20100504.350",
+ "deps": []
+ },
+ "pager": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "emacsorphanage",
+ "repo": "pager",
+ "sha256": "1dq5ibz7rx9a7gm9zq2pz4c1sxgrm59yibyq92bvmi68lvf2q851",
+ "rev": "347e48d150d5e9a1ce2ca33ec12924d5fa89264d"
+ },
+ "recipe": {
+ "sha256": "0s5zwimkbsivbwlyd7g8dpnjyzqcfc5plg53ij4sljiipgjh5brl",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20100330.1331",
+ "deps": []
+ },
+ "ido-ubiquitous": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "DarwinAwardWinner",
+ "repo": "ido-ubiquitous",
+ "sha256": "1m9wyl4lm2sy6ax7wg4wh9nw5vq8z26z7kb9mq3p01z9v1vzyzil",
+ "rev": "3bf3c707753969b2c3b534bfe3d09dbd297dfaae"
+ },
+ "recipe": {
+ "sha256": "143pzpix9aqpzjy8akrxfsxmwlzc9bmaqzp9fyhjgzrhq7zchjsp",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151130.1816",
+ "deps": [
+ "cl-lib",
+ "emacs",
+ "ido-completing-read+",
+ "s"
+ ]
+ },
+ "merlin": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "the-lambda-church",
+ "repo": "merlin",
+ "sha256": "00rmhvj2a7vxmqlr47f0x2nzkyy0ppx0h7ql4hp9iyxqpan7rrha",
+ "rev": "f8f26df0ceee91a6825362029dfae03bc7bde679"
+ },
+ "recipe": {
+ "sha256": "0wnh7512sknagdk56j6gd8vamh9ns3vnggm56s73pik0m009w0xr",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151202.525",
+ "deps": []
+ },
+ "org-multiple-keymap": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "myuhe",
+ "repo": "org-multiple-keymap.el",
+ "sha256": "0zbpzm9lni6z180s7n52x8s5by5zkq2nlhx82l2h9i7in9y4r6c3",
+ "rev": "8ebc532df7f0dd6e6c3aa7c380a51d4166c668e8"
+ },
+ "recipe": {
+ "sha256": "16iv5575634asvn1b2k535ml8g4lqgy8z5w6ykma5f9phq5idb9f",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150328.2006",
+ "deps": [
+ "cl-lib",
+ "emacs",
+ "org"
+ ]
+ },
+ "bbdb-handy": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "tumashu",
+ "repo": "bbdb-handy",
+ "sha256": "04yxky7qxh0s4y4addry85qd1074l97frhp0hw77xd1bc7n5zzg0",
+ "rev": "67936204488b539fac9b4a7bfbf11546f3b13de2"
+ },
+ "recipe": {
+ "sha256": "0qv1lw4fv9w9c1ypzpbnvkm6ypqrzqpwyw5gpi7n9almxpd8d68z",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150707.1952",
+ "deps": [
+ "bbdb"
+ ]
+ },
+ "preproc-font-lock": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "Lindydancer",
+ "repo": "preproc-font-lock",
+ "sha256": "0yrfd9qaz16nqcvjyjm9qci526qgkv6k51q5752h3iyqkxnss1pd",
+ "rev": "565fda9f5fdeb0598986174a07e9fb09f7604397"
+ },
+ "recipe": {
+ "sha256": "1ra0lgjv6713zym2h8pblf2ryf0f658l1khbxbwnxl023gkyj9v4",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151107.1418",
+ "deps": []
+ },
+ "vagrant": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "ottbot",
+ "repo": "vagrant.el",
+ "sha256": "04r73s3fhvdcryv0l57awkpg1hi3kg6zcqxbxb03jc89h0f9vdlh",
+ "rev": "dabf69b7146f8a035bba15285b1fafc1e9ef4b3c"
+ },
+ "recipe": {
+ "sha256": "0g6sqzsx3lixcn09fkxhhcfp45qnqgf1ms0l7nkzyljavb7151cf",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20141125.2159",
+ "deps": []
+ },
+ "tramp-term": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "randymorris",
+ "repo": "tramp-term.el",
+ "sha256": "0cgx6h9a49qj7x6bgsnsa20hi1yj5k080x4x0jpn6l9bj5nqiaip",
+ "rev": "983ed67ee65d26a51c641f306fa6b921ec83eeaf"
+ },
+ "recipe": {
+ "sha256": "1vbdwj8q66j6h5ijqzxhyaqf8wf9rbs03x8ppfijxl5qd2bhc1dy",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20141104.1545",
+ "deps": []
+ },
+ "windsize": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "grammati",
+ "repo": "windsize",
+ "sha256": "0hijf56ahbc5inn7n39nj96d948c4d05n9d5ci3g3vbl5hsyb121",
+ "rev": "beb6376fdf52afa6f220c89032448460faf76e7f"
+ },
+ "recipe": {
+ "sha256": "1xhfw77168942rcn246qndii0hv0q6vkgzj67jg4mxh8n46m50m9",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151121.740",
+ "deps": []
+ },
+ "unbound": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/unbound.el",
+ "sha256": "0i5km1naxprd4lj20097ph50mjs2364xwxcdw0j3g5569mk5nc06"
+ },
+ "recipe": {
+ "sha256": "1ys6pgb3lhx4ihhv8i28vrchp1ad37md7lnana40macf5n72d77x",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140307.328",
+ "deps": []
+ },
+ "uuidgen": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "kanru",
+ "repo": "uuidgen-el",
+ "sha256": "19bf6vpc2b9hfjkjanji96fflvk1lbillasnpwcb6zzyq0cs47bw",
+ "rev": "7eb96415484c3854a3f383d1a3e10b87ae674e22"
+ },
+ "recipe": {
+ "sha256": "1qaz7hg0wsdkl0jb7v7vrkjs554i2zgpxl8xq2f8q7m4bs2m5k48",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140918.1801",
+ "deps": []
+ },
+ "anti-zenburn-theme": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "m00natic",
+ "repo": "anti-zenburn-theme",
+ "sha256": "1cqgzzk4hrdnji9cj55shs2fzjfhw0ri6gcmhs7wci4330iqgznm",
+ "rev": "0153e87f9ee3c2e8a1a41a4066aeafa99dcfde59"
+ },
+ "recipe": {
+ "sha256": "1sp9p6m2jy4m9fdn1hz25cmasy0mwwgn46qmvm92i56f5x6jlzzk",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151103.1846",
+ "deps": []
+ },
+ "sws-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "brianc",
+ "repo": "jade-mode",
+ "sha256": "1q6wpjb7vhsy92li6fag34pwyil4zvcchbvfjml612aaykiys506",
+ "rev": "0d0bbf60730d0e33c6362e1fceeaf0e133b1ceeb"
+ },
+ "recipe": {
+ "sha256": "0b12dsad0piih1qygjj0n7rni0pl8cizbzwqm9h1dr8imy53ak4i",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150317.1445",
+ "deps": []
+ },
+ "impatient-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "netguy204",
+ "repo": "imp.el",
+ "sha256": "0vr4i3ayp1n8zg3v9rfv81qnr0vrdbkzphwd5kyadjgy4sbfjykj",
+ "rev": "eba1efce3dd20b5f5017ab64bae0cfb3b181c2b0"
+ },
+ "recipe": {
+ "sha256": "05vp04zh5w0ss959galdrnridv268dzqymqzqfpkfjbg8kryzfxg",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150501.447",
+ "deps": [
+ "cl-lib",
+ "htmlize",
+ "simple-httpd"
+ ]
+ },
+ "ibuffer-projectile": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "purcell",
+ "repo": "ibuffer-projectile",
+ "sha256": "1zcnp61c9cp2kvns3v499hifk072rxm4rhw4pvdv2mm966vcxzvc",
+ "rev": "8b225dc779088ce65b81d8d86dc5d394baa53e2e"
+ },
+ "recipe": {
+ "sha256": "1qh4krggmsc6lx5mg60n8aakmi3f6ppl1gw094vfcsni96jl34fk",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150121.1037",
+ "deps": [
+ "projectile"
+ ]
+ },
+ "lentic": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "phillord",
+ "repo": "lentic",
+ "sha256": "1lb7sxnnz1hi4xlf1q0ldvzig48dfmf6ki2p8b0mxk3lm4i3m1js",
+ "rev": "37f9fedb44c5feaeb14279ab3e8113f69cdf19a7"
+ },
+ "recipe": {
+ "sha256": "0y94y1qwj23kqp491b1fzqsrjak96k1dmmzmakbl7q8vc9bncl5m",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151218.1029",
+ "deps": [
+ "dash",
+ "emacs",
+ "f",
+ "m-buffer",
+ "s"
+ ]
+ },
+ "hgignore-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "omajid",
+ "repo": "hgignore-mode",
+ "sha256": "06hm98aq87l91fhb2bqz8jw427k8fb280ygz5g44fy6sqc6js7v0",
+ "rev": "054c370c6df1b789f0d9907b30b54ef2287aafbe"
+ },
+ "recipe": {
+ "sha256": "0ja71l3cghhn1c6w2pff80km8h8xgzf0j9gcldfyc72ar6ifhjkj",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150412.1300",
+ "deps": []
+ },
+ "ubuntu-theme": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "rocher",
+ "repo": "ubuntu-theme",
+ "sha256": "1v8d1pc0vjc7wz0prr5w5vp2qb19f3gcyl6jx5130plajbvv23rc",
+ "rev": "88b0eefc75d4cbcde103057e1c5968d4c3052f69"
+ },
+ "recipe": {
+ "sha256": "160z59aaxb2v6c24nki6bn7pjm9r4jl1mgxs4h4sivzxkaw811s2",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150805.1006",
+ "deps": []
+ },
+ "lfe-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "rvirding",
+ "repo": "lfe",
+ "sha256": "1i0nw7b19c26v6lnv8zjmcvirjbh7hfb1magr49ric3gpwlblnv7",
+ "rev": "b0921aacf954e68689c181ec1c4651b02dc51855"
+ },
+ "recipe": {
+ "sha256": "06b382ncgk4zz3q8akyzfy55j86a53r97gf0l92qvlca7fbs8jjx",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151110.1835",
+ "deps": []
+ },
+ "color-theme": {
+ "fetch": {
+ "tag": "fetchbzr",
+ "url": "http://bzr.savannah.gnu.org/r/color-theme/trunk",
+ "sha256": "17bidzq9kiz250gal1fn9mg8gf8l749nz69z0awpc4x2222wxxiz",
+ "rev": "57"
+ },
+ "recipe": {
+ "sha256": "1p4bjh8a9f6ixmwwnyjb520myk3bww1v9w6427za07v68m9cdh79",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20080305.234",
+ "deps": []
+ },
+ "mo-vi-ment-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "AjayMT",
+ "repo": "mo-vi-ment",
+ "sha256": "0k0scl9z35d8x4ikxm2db1frpbx151p2m181fa1armxbd9lbfvnn",
+ "rev": "f45b014261f8fab19254920bd1d92f3a83263411"
+ },
+ "recipe": {
+ "sha256": "1pg889mgpv0waccm135mlvag7q13gzfkzchv2532jngwrn6amqc7",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20131029.133",
+ "deps": []
+ },
+ "ascii": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/ascii.el",
+ "sha256": "05fjsj5nmc05cmsi0qj914dqdwk8rll1d4dwhn0crw36p2ivql75"
+ },
+ "recipe": {
+ "sha256": "0jb63f7qwhfbz0n4yrvnvx03cjqly3mqsc3rq9mgf4svy2zw702r",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20130824.700",
+ "deps": []
+ },
+ "flycheck-d-unittest": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "flycheck",
+ "repo": "flycheck-d-unittest",
+ "sha256": "1r71alxbxwcrdf3r5rg7f0bdwh0ylvayp5g97i9biyxdg59az4ad",
+ "rev": "f2255abf6a5cd9268b1576d9b46356f8151a7311"
+ },
+ "recipe": {
+ "sha256": "0n4m4f0zqcx966582af1nqff5sla7jcr0wrmgzzxnn97yjrlnzk2",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150709.109",
+ "deps": [
+ "dash",
+ "flycheck"
+ ]
+ },
+ "crontab-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "emacsorphanage",
+ "repo": "crontab-mode",
+ "sha256": "1r9dhk8h8lq18vi0hjai8y4z42yjxg18786mcr2qs5m3q1ampf9d",
+ "rev": "68341c82b26462a6af4a5e2b624b1c2165243b8e"
+ },
+ "recipe": {
+ "sha256": "16qc2isvf6cgl5ihdbwmvv0gbhns4mkhd5lxkl6f8f6h0za054ci",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20090510.1555",
+ "deps": []
+ },
+ "term+key-intercept": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "tarao",
+ "repo": "term-plus-ki-el",
+ "sha256": "1dql2w8xkdw52zlrc2p9x391zn8wv4dj8a6293p4s08if7gg260w",
+ "rev": "fd0771fd66b8c7a909aaac972194485c79ba48c4"
+ },
+ "recipe": {
+ "sha256": "1564a86950xdwsrwinrs118bjsfmbv8gicq0c2dfr827v5b6zrlb",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140211.150",
+ "deps": [
+ "key-intercept",
+ "term+"
+ ]
+ },
+ "nyan-prompt": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "PuercoPop",
+ "repo": "nyan-prompt",
+ "sha256": "0bgspjy8h3d7v12sfjnd2ghj4183pdf0z48g5xs129jwd3nycykp",
+ "rev": "b5137f2ee9afe640f59786eed17b308df6356c73"
+ },
+ "recipe": {
+ "sha256": "1s0qyhpfpncsv9qfxy07rbp4gv8pp5xzb48rbd3r14nkjlnylnfb",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140810.8",
+ "deps": []
+ },
+ "keymap-utils": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "tarsius",
+ "repo": "keymap-utils",
+ "sha256": "18kc48glbwy9njw863fzlrgc4g0a65s5wf2iarfsjqcynad7r4c7",
+ "rev": "f9164e23dbc58c4fdce635138ed59fe2eb285313"
+ },
+ "recipe": {
+ "sha256": "0nbcwz4nls0pva79lbx91bpzkl38g98yavwkvg2rxbhn9vjbhzs9",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151030.526",
+ "deps": [
+ "cl-lib"
+ ]
+ },
+ "aria2": {
+ "fetch": {
+ "tag": "fetchgit",
+ "url": "https://bitbucket.org/ukaszg/aria2.git",
+ "sha256": "2713755e56b03e28a5a6e10c85865c1ace0247e71caeb8b89ec65d5618addafc",
+ "rev": "3c54254e424c6c8b4eb0d8e7c4907b094c27a3f0"
+ },
+ "recipe": {
+ "sha256": "10x2k99m3kl6y0k0mw590gq1ac162nmdwk58i8i7a4mb72zmsmhc",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20141107.1717",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "spray": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "ian-kelling",
+ "repo": "spray",
+ "sha256": "0fvywcwn0zd06yy4b6cxpasiwfbps17jz9dy3jr0y0mdx5lzfxa9",
+ "rev": "11623f45955a18115459a2c18dc95bc967980a53"
+ },
+ "recipe": {
+ "sha256": "11b3wn53309ws60w8sfpfxij7vnibj6kxxsx6w1agglqx9zqngz4",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150626.145",
+ "deps": []
+ },
+ "xcscope": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "dkogan",
+ "repo": "xcscope.el",
+ "sha256": "1wf6yijafqwcksrqci3d8zy3zh5yzqpfbf0d3m7qyslbax2aw25a",
+ "rev": "d845a033058ccb83e32dd9648885e8f608bb6258"
+ },
+ "recipe": {
+ "sha256": "06xh29cm5v3b5xwj32y0i0h0kvvy995840db4hvab2wn9jw68m8w",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140510.1637",
+ "deps": []
+ },
+ "helm-mu": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "emacs-helm",
+ "repo": "helm-mu",
+ "sha256": "0x523ic0bi40iplp2lbiyvy6yw6mrbgj9cfah71a47rwcm0fvhjk",
+ "rev": "2ae4b26817f13760e6d9e739477e2512292d90d5"
+ },
+ "recipe": {
+ "sha256": "0pydp6scj5icaqfp3dp5h0q1y2i7z9mfyw1ll6iphsz9qh3x2bj2",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151019.1144",
+ "deps": [
+ "helm"
+ ]
+ },
+ "org-cliplink": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "rexim",
+ "repo": "org-cliplink",
+ "sha256": "1hc8yrfnla66p9lqvcnql51xa5pdmaqpka60nvfnyc5h40jyjsfd",
+ "rev": "0e97eb716d66de4e13704f8aa3ac6f99ee0189e2"
+ },
+ "recipe": {
+ "sha256": "19l3k9w9csgvdr7n824bzg7jja0f28dmz6caldxh43vankpmlg3p",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150922.51",
+ "deps": []
+ },
+ "flymake-cppcheck": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "senda-akiha",
+ "repo": "flymake-cppcheck",
+ "sha256": "1dlxn8hhz3gfrhvkwhlxjmby6zc0g8yy9n9j9dn8c4cbi2fhyx5m",
+ "rev": "9554f504d425a04fa6a875f7e3179bc7cf07dd03"
+ },
+ "recipe": {
+ "sha256": "11brzgq2zl32a8a2dgj2imsldjqaqvxwk2jypf4bmfwa3mkcqh3d",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140415.757",
+ "deps": [
+ "flymake-easy"
+ ]
+ },
+ "weechat": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "the-kenny",
+ "repo": "weechat.el",
+ "sha256": "03xsh3fc7if6rkdp2s8lmrzpqm3pjakgqi3faap44y9i84q6mc6k",
+ "rev": "a191b4c52e2cca33acfdd82145da42fb2798b185"
+ },
+ "recipe": {
+ "sha256": "0sxrms5024bi4irv8x8s8j1zcyd62cpqm0zv4dgpm65wnpc7xc46",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151206.647",
+ "deps": [
+ "cl-lib",
+ "emacs",
+ "s",
+ "tracking"
+ ]
+ },
+ "psci": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "ardumont",
+ "repo": "emacs-psci",
+ "sha256": "08j31bg5vwgirv5n5fsw7w6gncrkpwpjlj2m00dhj8wbvhp503sn",
+ "rev": "64dc931b4fe2a7507b8ac81423b12f7dcda2067a"
+ },
+ "recipe": {
+ "sha256": "0sgrz8byz2pcsad2pydinp4hh2xb48pdb03r93wg2vvyy8p15j9g",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150328.1401",
+ "deps": [
+ "dash",
+ "deferred",
+ "f",
+ "purescript-mode",
+ "s"
+ ]
+ },
+ "chicken-scheme": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "dleslie",
+ "repo": "chicken-scheme.el",
+ "sha256": "0j61lvr99viaharg4553whcppp7lxhimkk5lps0izz9mnd8y2wm5",
+ "rev": "19b0b08b5592063e852cae094b394c7d1f923639"
+ },
+ "recipe": {
+ "sha256": "0ns49p7nsifpi7wrzr02ljrr0p6hxanrg54zaixakvjkxwcgfabr",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20141116.1339",
+ "deps": []
+ },
+ "ample-theme": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "jordonbiondo",
+ "repo": "ample-theme",
+ "sha256": "0x72czw5rmz89w5fa27z54bz8qirrr882g0r37pb8li04j1hk7kw",
+ "rev": "8259da1cc14e7f7dd3ee0fb01245c58110a95382"
+ },
+ "recipe": {
+ "sha256": "055c6jy2q761za4cl1vlqdskcd3mc1j58k8b4418q7h2lv2zc0ry",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150814.1301",
+ "deps": []
+ },
+ "ob-restclient": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "alf",
+ "repo": "ob-restclient.el",
+ "sha256": "0gd2n7dgaasl0clx71gsdm74xxm03qr5yrin8vz3q7wvkfn4bzdf",
+ "rev": "fc5684186275146bba667325c8c33bf7d6011552"
+ },
+ "recipe": {
+ "sha256": "0nv2wsqmpschym6ch8fr4a79hlnpz31jc8y2flsygaqj0annjkfk",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151207.1503",
+ "deps": []
+ },
+ "cmake-font-lock": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "Lindydancer",
+ "repo": "cmake-font-lock",
+ "sha256": "030kg3m546gcm6cf1k928ld51znsfrzhlpm005dvqap3gkcrg4sf",
+ "rev": "982b753e0228bb5189e3bf2283afad9197d93c37"
+ },
+ "recipe": {
+ "sha256": "0ws4kd94m8fh55d7whsf3rj9qrxjp1wsgxh0valsjxyp2ck9zrz0",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150828.1527",
+ "deps": [
+ "cmake-mode"
+ ]
+ },
+ "go-scratch": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "shosti",
+ "repo": "go-scratch.el",
+ "sha256": "1a6vg2vwgnafb61pwrd837fwlq5gs80wawbzjsnykawnmcaag8pm",
+ "rev": "3f68cbcce04f59eb8e83af109164731ec0454be0"
+ },
+ "recipe": {
+ "sha256": "11ahvmxbh67wa39cymymxmcpkq0kcn5jz0rrvazjy2p1hx3x1ma5",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150809.2340",
+ "deps": [
+ "emacs",
+ "go-mode"
+ ]
+ },
+ "finder+": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/finder+.el",
+ "sha256": "01rkp2fa4h9pippa7q3702hn9bqgbdg7ml4w6dn72l8nj4vnrwmn"
+ },
+ "recipe": {
+ "sha256": "1ichxghp2vzx01n129fmjm6iwx4b98ay3xk1ja1i8vzyd2p0z8vh",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150104.1604",
+ "deps": []
+ },
+ "vala-snippets": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "gopar",
+ "repo": "vala-snippets",
+ "sha256": "0iscaz8lm4fk6w13f68ysqk8ppng2wj9fkkkq1rfqz77ws66f8nq",
+ "rev": "671439501060449bd100b9fffd524a86064fbfbb"
+ },
+ "recipe": {
+ "sha256": "14hmmic0px3z38dm2dg0kis6cz1p3p1hj7xaqnqjmv02dkx2mmcy",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150428.2252",
+ "deps": [
+ "yasnippet"
+ ]
+ },
+ "plenv": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "karupanerura",
+ "repo": "plenv.el",
+ "sha256": "11cbpgjsnw8fiqf1s12hbm9qxgjcw6y2zxx7wz4wg7idmi7m0b7g",
+ "rev": "ee937d0f3a1a7ba2d035f45be896d3ed8fefaee2"
+ },
+ "recipe": {
+ "sha256": "0dw9fy5wd9wm76ag6yyw3f9jnlj7rcdcxgdjm30h514qfi9hxbw4",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20130707.116",
+ "deps": []
+ },
+ "random-splash-image": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "kakakaya",
+ "repo": "random-splash-image",
+ "sha256": "1z25xmz8pl3rsfahw6ay8wx5wbnlxabnzr2dq20m0i5jyci8lqll",
+ "rev": "907e2db5ceff781ac7f4dbdd65fe71736c36aa22"
+ },
+ "recipe": {
+ "sha256": "1j454jy4ia2wrgi3fxzjfdqi3z8x13hq8kh62lnb84whs7a1nhik",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151002.2030",
+ "deps": []
+ },
+ "typescript-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "ananthakumaran",
+ "repo": "typescript.el",
+ "sha256": "16y1r8080scjanbd95hpgk9lp8xqy8cxwkk9xij53jiqfglcwi5c",
+ "rev": "49241bcc1f60b3787ccd9448a559f792156907a9"
+ },
+ "recipe": {
+ "sha256": "01jyqy44ir59n9c2f6gh4xzwfmzdpnys1lw4lnsy6kirqgbsq9ha",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150830.2028",
+ "deps": []
+ },
+ "git-gutter+": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "nonsequitur",
+ "repo": "git-gutter-plus",
+ "sha256": "0bhrrgdzzj8gwxjx7b2kibp1b6s0vgvykfg0n47iq49m6rqkgi5q",
+ "rev": "b7726997806d9a2da9fe84ff00ecf21d62b6f975"
+ },
+ "recipe": {
+ "sha256": "1w78p5cz6kyl9kmndgvwnfrs80ha707s8952hycrihgfb6lixmp0",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151204.1123",
+ "deps": [
+ "dash",
+ "git-commit"
+ ]
+ },
+ "wrap-region": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "rejeep",
+ "repo": "wrap-region",
+ "sha256": "09fzbbrdgq19c3gylj4i0c5g070k65w943wz28mzis8b403vzh3n",
+ "rev": "0eff3165db36464d28ed303ab25b715307cbdee0"
+ },
+ "recipe": {
+ "sha256": "0mby3m49vm2pw127divspgivqam27zd4r70wx5ra05xwfxywaibq",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140117.120",
+ "deps": [
+ "dash"
+ ]
+ },
+ "flymake-gjshint": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "yasuyk",
+ "repo": "flymake-gjshint-el",
+ "sha256": "14kbqyw4v1c51dx7pfgqbn8x4j8j3rgyyq2fa9klqzxpldcskl24",
+ "rev": "dc957c14cb060819585de8aedb330e24efa4b784"
+ },
+ "recipe": {
+ "sha256": "19jcd5z4883z3fzlrdn4fzmsvn16f4hfnhgw4vbs5b0ma6a8ka44",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20130327.732",
+ "deps": []
+ },
+ "smotitah": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "laynor",
+ "repo": "smotitah",
+ "sha256": "1a097f1x9l0m4dizvnb742svlqsm6hlif73rk7qjar081sk1gjxx",
+ "rev": "f9ab562128a5460549d016913533778e8c94bcf3"
+ },
+ "recipe": {
+ "sha256": "1m5qjl3r96riljp48il8k4rb6rwys1xf1pl93d4qjhprwvz57mv2",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150218.430",
+ "deps": []
+ },
+ "org-dotemacs": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "vapniks",
+ "repo": "org-dotemacs",
+ "sha256": "15zrnd168n4pwa1bj5fz79hcrgw61braf0b095rsfhjh5w2sasy7",
+ "rev": "99a066508fedf8c80a3bfef08e015e612499d417"
+ },
+ "recipe": {
+ "sha256": "1vc391fdkdqd4g0piq66zhrlgqx5s2ijv7qd1rc3a235sjb9i2n4",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151119.1222",
+ "deps": [
+ "cl-lib",
+ "org"
+ ]
+ },
+ "rnc-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "TreeRex",
+ "repo": "rnc-mode",
+ "sha256": "1drvyf5asjp3lgpss7llff35q8r89vmh73n1axaj2qp9jx5a5jih",
+ "rev": "b39dc23218213336b55f28e12a1d0e49ef7c1e21"
+ },
+ "recipe": {
+ "sha256": "09ly7ln6qrcmmim9bl7kd50h4axrhy6ig406r352xm4a9zc8n22q",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20121227.1702",
+ "deps": []
+ },
+ "pangu-spacing": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "coldnew",
+ "repo": "pangu-spacing",
+ "sha256": "01zc2cvkyfx80snwrm3cs8cbwgxmd56rgvvbsyq53r4q3zhdk1li",
+ "rev": "4662e66d5cb72738d46d3296ac7626536fc88acb"
+ },
+ "recipe": {
+ "sha256": "082qh26vlk7kifz1800lyai17yvngwjygrfrsh1dsd8dxhk6l9j8",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150927.224",
+ "deps": []
+ },
+ "protobuf-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "google",
+ "repo": "protobuf",
+ "sha256": "023654g10pwx6h88jiwqdfskq663cc06dvr9pf6l1xjqm28wra34",
+ "rev": "43f9cb1e6f535e3a57bab517f8041beb2b3b1c51"
+ },
+ "recipe": {
+ "sha256": "1hh0w93fg6mfwsbb9wvp335ry8kflj50k8hybchpjcn6f4x39xsj",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150521.2211",
+ "deps": []
+ },
+ "metaweblog": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "punchagan",
+ "repo": "metaweblog.el",
+ "sha256": "06mbdb4zb07skq1jpv05hr45k5x96d9hgkb358jiq0kfsqlrbbb4",
+ "rev": "c8b50a6edf0fd2f396570c9a1c2ef8cd207606fb"
+ },
+ "recipe": {
+ "sha256": "11y5x3a8iv0hjj7ppi2sa7vawn7r475qfsh1jg415j4y4fzwpk6y",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20141130.805",
+ "deps": [
+ "xml-rpc"
+ ]
+ },
+ "imenus": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "alezost",
+ "repo": "imenus.el",
+ "sha256": "0wi346m05b18i14xxih4qvwdrfcgv30gdvxjjcn6vd7gr0wdk2ns",
+ "rev": "a153eadef49bcc0a2dd5d045c0e003fdfd8c13cd"
+ },
+ "recipe": {
+ "sha256": "1q0j6r2n5vjlbgchkz9zdglmmbpd8agawzcg61knqrgzpc4lk82r",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150107.1139",
+ "deps": [
+ "cl-lib"
+ ]
+ },
+ "systemd": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "holomorph",
+ "repo": "systemd-mode",
+ "sha256": "0f0xwsizi34pbpy48r70sdqk5692c0ds11amscafj0lyw3lza93j",
+ "rev": "26de1dd6f4505eb9db606d97c11b0d120c395d76"
+ },
+ "recipe": {
+ "sha256": "1biais0cmidy3d0hf2ifdlr6qv1z8k8c8bczi07bsfk4md3idbir",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151127.2332",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "sourcegraph": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "sourcegraph",
+ "repo": "emacs-sourcegraph-mode",
+ "sha256": "18iv7jhy08smpdksplngj1mxcm2mm9gvbylimgr3211l8jr9gq8r",
+ "rev": "554c55734c23588fce66a8fa966945509b03d395"
+ },
+ "recipe": {
+ "sha256": "0rl6s1d0y2pggbfiq4f4xg9qp7nhkd708himzilfqyfa4jwna8yz",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150403.2127",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "wordnut": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "gromnitsky",
+ "repo": "wordnut",
+ "sha256": "1b9pya342ikyxnlyxp86wx8xk6zcdws7jsqs7a9xk027prwkfngj",
+ "rev": "3e0184a8a1cc118a985f1cbd0b6d5b7417987169"
+ },
+ "recipe": {
+ "sha256": "1gqmjb2f9izra0x9ds1jyk7h204qsll6viwkvdnmxczyyc0wx44n",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151002.1657",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "list-processes+": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/list-processes+.el",
+ "sha256": "1bssvyjgk1h1wiaxxdi2m5gjy6a790a9rwvi0r22hin7iskg300a"
+ },
+ "recipe": {
+ "sha256": "10x7hkba2bmryyl68w769fggw65dl4f3a9g0gqdzmkdj80rcipky",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20131117.1335",
+ "deps": []
+ },
+ "nav": {
+ "fetch": {
+ "tag": "fetchhg",
+ "url": "https://code.google.com/p/emacs-nav/",
+ "sha256": "0kfqpji6z3ra8sc951vmm1bzyhkws7vb5q6djvl45wlf1wrgkc4p",
+ "rev": "d7f54ce8536e"
+ },
+ "recipe": {
+ "sha256": "036lf6iirxamlqzq3w6m0hji36l480yx5c9wnwypms85hi8hq0vl",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20120507.207",
+ "deps": []
+ },
+ "seclusion-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "dleslie",
+ "repo": "seclusion-mode",
+ "sha256": "15cjhwjiwmrfzmr74hbw5s92si2qdb8i97nmkbsgkj3444rxg239",
+ "rev": "9634e76c52bfb7200ff0f9f01404f743429e9ef0"
+ },
+ "recipe": {
+ "sha256": "0ff10x6yr37vpp6ffbk1nb027lgmrydwjrb332fskwlf3xmy6v0m",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20121118.1753",
+ "deps": []
+ },
+ "auto-highlight-symbol": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "gennad",
+ "repo": "auto-highlight-symbol",
+ "sha256": "0jfiax1qqnyznhlnqkjsr9nnv7fpjywvfhj9jq59460j0nbrgs5c",
+ "rev": "26573de912d760e04321b350897aea70958cee8b"
+ },
+ "recipe": {
+ "sha256": "02mkji4sxym07jf5ww5kgv1c18x0xdfn8cmvgns5h4gij64lnr66",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20130313.443",
+ "deps": []
+ },
+ "hippie-exp-ext": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/hippie-exp-ext.el",
+ "sha256": "1jkjg7zxpc06plzlyvj1a8dcvj8ijqzhkxwlsd12cgkymvp411yl"
+ },
+ "recipe": {
+ "sha256": "14py5hz523847f7bhw67v81x5cfhzz5la15mrqavc4z4yicy63iq",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151011.345",
+ "deps": []
+ },
+ "flycheck-clangcheck": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "kumar8600",
+ "repo": "flycheck-clangcheck",
+ "sha256": "1ckzs32wzqpnw89rrw3l7i4gbyn25wagbadsc4mcrixml5nf0mck",
+ "rev": "24a9424c484420073a24443a829fd5779752362b"
+ },
+ "recipe": {
+ "sha256": "1316cj3ynl80j39ha0371ss7cqw5hcr3m8944pdacdzbmp2sak2m",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150712.210",
+ "deps": [
+ "cl-lib",
+ "flycheck",
+ "seq"
+ ]
+ },
+ "lisp-extra-font-lock": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "Lindydancer",
+ "repo": "lisp-extra-font-lock",
+ "sha256": "1r2yhjfby4mibbr7d14m1rifchdy7bvwy50xz2wx4004zqhjmnjd",
+ "rev": "ff34c8519653824cf4a40979538b334cd2653892"
+ },
+ "recipe": {
+ "sha256": "1xchqwhav9x7b02787ghka567fihdc14aamx92jg549c6d14qpwk",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150129.1516",
+ "deps": []
+ },
+ "helm-rb": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "yuutayamada",
+ "repo": "helm-rb",
+ "sha256": "1b74jsr28ldz80mrqz3d1bmykpcprdbhf3fzhc0awd5i5xdnfaid",
+ "rev": "4949d646420a9849af234dacdd8eb34a77c662fd"
+ },
+ "recipe": {
+ "sha256": "14pkrj1rpi2ihpb7c1hx6xwzvc1x7l41lwr9znp5vn7z93i034fr",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20131123.1039",
+ "deps": [
+ "helm",
+ "helm-ag-r"
+ ]
+ },
+ "splitter": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "chumpage",
+ "repo": "chumpy-windows",
+ "sha256": "069aqyqzjp5ljqfzm7lxkh8j8firk7041wc2jwzqha8jn9zpvbxs",
+ "rev": "164be41b588b615864258c502583100d3ccfe13e"
+ },
+ "recipe": {
+ "sha256": "02vdhvipzwnh6mlj25lirzxkc0shfzqfs1p4gn3smkxqx6g7mdb2",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20130705.250",
+ "deps": []
+ },
+ "w3m": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "emacsorphanage",
+ "repo": "w3m",
+ "sha256": "1lgvdaghzj1fzh8p6ans0f62zg1bfp086icbsqmyvbgpgcxia9cs",
+ "rev": "5986b51c7c77500fee3349fb0b3f4764d3fc727b"
+ },
+ "recipe": {
+ "sha256": "0vh882b44vxnij3l01sig87c1jmbymgirf6s98mvag1p9rm8agxw",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20121224.1947",
+ "deps": []
+ },
+ "recentf-ext": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/recentf-ext.el",
+ "sha256": "15kwkphrlxq6nbmqm95sxv4rykl1d35sjm59ncy07ncqm706h33l"
+ },
+ "recipe": {
+ "sha256": "1m54w1n3ci5j7i1jhw6cs7dgzmxrj1hsrrarqlrd1d4iqhixjzbq",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20130130.1550",
+ "deps": []
+ },
+ "pydoc": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "statmobile",
+ "repo": "pydoc",
+ "sha256": "1q9fmdrnsqmisykndxzy9bvjl6n1rsmfgvh3h8fkg6b44ypcyyw7",
+ "rev": "74fb1a66e9d81661ddd371a03e916ea5e0b01dc8"
+ },
+ "recipe": {
+ "sha256": "0sf52cb80yiridsl1pffdr3wpbgxrn2l8vnq03l70djckild477n",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150525.2045",
+ "deps": []
+ },
+ "ov": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "ShingoFukuyama",
+ "repo": "ov.el",
+ "sha256": "1rk5pzm5wmdq68d99hhhbq8pq37bnph0dip5j2jnfj6zsw70whr2",
+ "rev": "fae7215b3dedba2a9ced145284332e4609bfdc38"
+ },
+ "recipe": {
+ "sha256": "0d71mpv74cfxcnwixbrl90nr22cw4kv5sdgpny5wycvh6cgmd6qb",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150312.28",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "applescript-mode": {
+ "fetch": {
+ "tag": "fetchsvn",
+ "url": "http://svn.osdn.jp/svnroot/macemacsjp/applescript-mode/trunk",
+ "sha256": "0n3y0314ajqhn5hzih09gl72110ifw4vzcgdxm8n6npjbx7irbml",
+ "rev": "584"
+ },
+ "recipe": {
+ "sha256": "1ya0dh7gz7qfflhn6dq43rapb2zg7djvxwn7p4jajyjnwbxmk611",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20120205.507",
+ "deps": []
+ },
+ "ibuffer-vc": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "purcell",
+ "repo": "ibuffer-vc",
+ "sha256": "0fwxhkx5rkyv3w5vs2swhmly9siahlww2ipsmk7v8xmvk4a63bhp",
+ "rev": "daae8b8cec4b8e572b065e00c8c8a368fd0a8b8b"
+ },
+ "recipe": {
+ "sha256": "0bn5qyiq07cgzci10xl57ss5wsk7bfhi3hjq2v6yvpy9v704dvla",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150714.1520",
+ "deps": [
+ "cl-lib"
+ ]
+ },
+ "kanji-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "wsgac",
+ "repo": "kanji-mode",
+ "sha256": "0vfagfzhh4rkmvjzfhfcm7w3z1x31aqzxwigk5yw9scnfb77pinz",
+ "rev": "3caaee58f00f69a8c9ee2491b8a2050add9df962"
+ },
+ "recipe": {
+ "sha256": "0nnkv7lp7ks9qhkbhz15ixm53grc2q0xfspzykxi9c4b59kypcq5",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150202.225",
+ "deps": []
+ },
+ "dired-dups": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "vapniks",
+ "repo": "dired-dups",
+ "sha256": "1lcmpzwj43gix2q56bh2gw3gfqh8vl5j3mqr8s7v3k0aw816j0ni",
+ "rev": "694ad128c822c59348ced16c4a0c1356d43da47a"
+ },
+ "recipe": {
+ "sha256": "05s02gw8b339yvsr7vvka1r2140y7mbjzs8px4kn4acgb5y7rk71",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20130527.1625",
+ "deps": []
+ },
+ "edebug-x": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "ScottyB",
+ "repo": "edebug-x",
+ "sha256": "1zgiifi1k2d9g8sarfpjzamk8g1yx4ilgn60mqhy2pznp30b5qb2",
+ "rev": "a2c2c42553d3bcbd5ac11898554865acbed1bc46"
+ },
+ "recipe": {
+ "sha256": "0mzrip6y346mix4ny1xj8rkji1w531ix24k3cczmlmm4hm7l29ql",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20130616.125",
+ "deps": []
+ },
+ "servant": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "rejeep",
+ "repo": "servant.el",
+ "sha256": "15lx6qvmq3vp84ys8dzbx1nzxcnzlq41whawc2yhrnd1dbq4mv2d",
+ "rev": "4d2aa8250b54b28e6e7ee4cd5ebd98a33db2c134"
+ },
+ "recipe": {
+ "sha256": "048xg0gcwnf4l2p56iw4iawi3ywjz7f6icnjfi8qzk1z912iyl9h",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140216.619",
+ "deps": [
+ "ansi",
+ "commander",
+ "dash",
+ "epl",
+ "f",
+ "s",
+ "shut-up",
+ "web-server"
+ ]
+ },
+ "moz-controller": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "RenWenshan",
+ "repo": "emacs-moz-controller",
+ "sha256": "0fssn33ld6xhjlwg1dbrjg8sa0pjmglq0dw792yrmvm4fj0zjph8",
+ "rev": "46f665c03574fa922de767fc29795e0db4a7c5c6"
+ },
+ "recipe": {
+ "sha256": "18gca1csl9dfi9995mky8cbgi3xzf1if8pzdjiz5404gzcqk0rfd",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151208.2006",
+ "deps": [
+ "moz"
+ ]
+ },
+ "bitlbee": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "pjones",
+ "repo": "elisp",
+ "sha256": "1cnx5kr0hah4h4b6arp7hb2i556vpx1dwmziny2csil39hkcjgbs",
+ "rev": "5eafcd3ff0725b5826d1e01bfe4c7ed01563b75e"
+ },
+ "recipe": {
+ "sha256": "15xb0vjamnfwi25yqd37zwfm6xb6p71if88hk2ymxikza4i47x0f",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20130328.1218",
+ "deps": []
+ },
+ "dired-efap": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "juan-leon",
+ "repo": "dired-efap",
+ "sha256": "0jj9da880b4zwxba140fldai1x9p2sxc6hdf3wz6lnbvz1pyn1mv",
+ "rev": "624757b2e54d9a13e2183118d6c113e37684b90c"
+ },
+ "recipe": {
+ "sha256": "01j5v6584qi8ia7zmk03kx3i3kmm6hn6ycfgqlh5va6lp2h9sr00",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140122.1056",
+ "deps": []
+ },
+ "form-feed": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "wasamasa",
+ "repo": "form-feed",
+ "sha256": "0ymj89bha77fwb64wrkgyaxp61k03kvdhp98c4l3vljmfm5hmsbl",
+ "rev": "ba1fb2be4b509e98ba7a368176bb13e4a3bb4720"
+ },
+ "recipe": {
+ "sha256": "1abwjkzi3irw0jwpv3f584zc72my9n8iq8zp5s0354xk6iwrl1rh",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150926.756",
+ "deps": []
+ },
+ "auto-complete-nxml": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "aki2o",
+ "repo": "auto-complete-nxml",
+ "sha256": "18bf1kw85mab0zp7rn85cm1nxjxg5c1dmiv0j0mjwzsv8an4px5y",
+ "rev": "ac7b09a23e45f9bd02affb31847263de4180163a"
+ },
+ "recipe": {
+ "sha256": "0viscr5k1carn9vhflry16kgihr6fvh6h36b049pgnk6ww085k6a",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140220.2258",
+ "deps": [
+ "auto-complete"
+ ]
+ },
+ "time-ext": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/time-ext.el",
+ "sha256": "0kxgzjwgd979aypjak07k8ss6hnm3x9f96z1rz2zsz2i3vvh6sqv"
+ },
+ "recipe": {
+ "sha256": "15b3m1jvr7kg5sc4c8cp0aaiiyivfx8ip1zf7w5m702krv4lfvpk",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20130130.1551",
+ "deps": []
+ },
+ "ws-butler": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "lewang",
+ "repo": "ws-butler",
+ "sha256": "1x2ybnv0h52i24vd1n95s4vglc6p79cyxh91a20cwza34svhz152",
+ "rev": "a998a23ee8713808ac1fe3d1523ea1861be4da57"
+ },
+ "recipe": {
+ "sha256": "072k67z2lx0ampwzdiszi64xs0w6frp4nbmrd2r0wpx0pd211vbn",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150126.959",
+ "deps": []
+ },
+ "nsis-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "mattfidler",
+ "repo": "nsis-mode",
+ "sha256": "1w80mbwlvmpd5ff7vy84z61b27klzh9z4wa6m2g7cy674fw4r1xp",
+ "rev": "5ea767c326bbe180e42be723605c0b03b16fdb06"
+ },
+ "recipe": {
+ "sha256": "0pc047ryw906sz5mv0awvl67kh20prsgx6fbh0j1qm0cali2792l",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150914.746",
+ "deps": []
+ },
+ "cucumber-goto-step": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "gstamp",
+ "repo": "cucumber-goto-step",
+ "sha256": "184plai32sn0indvi1dma6ykz907zgnrdyxdw6f5mghwca96g5kx",
+ "rev": "f2713ffb26ebe1b757d1f2ea80e900b55e5895aa"
+ },
+ "recipe": {
+ "sha256": "1ydsd455dvaw6a180b6570bfgg0kxn01sn6cb57smqj835am6gx8",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20131209.2319",
+ "deps": [
+ "pcre2el"
+ ]
+ },
+ "strie": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "hackscience",
+ "repo": "strie.el",
+ "sha256": "1xgsdr75p52vg34s1gm16ffkr3s7gdsln56xjxpdirnwr78glbmw",
+ "rev": "066e72c39ed51162d7d7892c7451a6cac28581b7"
+ },
+ "recipe": {
+ "sha256": "0i1bgjlwcc2ks8hzjkyrw924q4k8pcz8335z9935m73js0sq0lxl",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140109.812",
+ "deps": []
+ },
+ "punctuality-logger": {
+ "fetch": {
+ "tag": "fetchFromGitLab",
+ "owner": "elzair",
+ "repo": "punctuality-logger",
+ "sha256": "1bkkgs2agy00wivilljkj3a9fsb2ba935icjmhbk46zjc6yf3y6q",
+ "rev": "e09e5dd37bc92289fa2f7dc44aed51a7b5e04bb0"
+ },
+ "recipe": {
+ "sha256": "0q9s74hkfqvcx67xpq9rlvh38nyjnz230bll6ks7y5yzxvl4qhcm",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20141120.1431",
+ "deps": []
+ },
+ "obsidian-theme": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "mswift42",
+ "repo": "obsidian-theme",
+ "sha256": "00v21iw9wwxap8jhg9035cp47fm5v2djmldq6nprv860m01xlwh1",
+ "rev": "0f92ce87245529d5c75d6e5f7862ebbc54bdbc92"
+ },
+ "recipe": {
+ "sha256": "17ckshimdma6fqiis4kxczxkbrsfpm2a0b41m5f3qz3qlhcw2xgr",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140420.1143",
+ "deps": []
+ },
+ "firecode-theme": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "emacsfodder",
+ "repo": "emacs-firecode-theme",
+ "sha256": "0v8liv6aq10f8dxbl3d4rph1qk891dlxm9wqdc6w8aj318750hfm",
+ "rev": "73573192e5e9d14d94dfc5131dd2b7a780b89626"
+ },
+ "recipe": {
+ "sha256": "10lxd93lkrvz8884dv4sh6fzzg355j7ab4p5dpvwry79rhs7f739",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20141116.102",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "less-css-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "purcell",
+ "repo": "less-css-mode",
+ "sha256": "1w6mbk4gc63sh2p9rsy851x2kid0dp2ja4ai5badkr5prxkcpfdn",
+ "rev": "d59a3ff4031ae75fbbe77b6cfce7843205394c28"
+ },
+ "recipe": {
+ "sha256": "188iplnwwhawq3dby3388kimy0jh1k9r8v9nxz52hy9rhh9hykf8",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150511.519",
+ "deps": []
+ },
+ "snapshot-timemachine": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "mrBliss",
+ "repo": "snapshot-timemachine",
+ "sha256": "17nbm8692ihrlcikihspdqg8wvp80ryq4h06da34d0awqm0w027m",
+ "rev": "5c1e29fc771ffc65180faa1366c85aa50a335773"
+ },
+ "recipe": {
+ "sha256": "0pvh1ilzv0ambc5cridyhjcxs58wq92bxjkisqv42yar3h3z6f8p",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150501.1300",
+ "deps": [
+ "cl-lib",
+ "emacs"
+ ]
+ },
+ "python-x": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "wavexx",
+ "repo": "python-x.el",
+ "sha256": "0ahsz3ij4smngss0kspw0f27xl6324a48m7z0r78wywclnnpvrv2",
+ "rev": "1ffb8d748d1e01ca12ebf7ff93e0bade5cdf123a"
+ },
+ "recipe": {
+ "sha256": "115mvhqfa0fa8kdk64biba7ri4xjk74qqi6vm1a5z3psam9mjcmn",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151214.909",
+ "deps": [
+ "cl-lib",
+ "folding",
+ "python"
+ ]
+ },
+ "el-spec": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "uk-ar",
+ "repo": "el-spec",
+ "sha256": "1lsq7980pwcwlg7z37hrig8ddm9nyvaqrlczv1w0vy631vc5z2az",
+ "rev": "1dbc465401d4aea5560318c4f13ff30920a0718d"
+ },
+ "recipe": {
+ "sha256": "017syizs8qw5phwvpzzffzdnj6rh9q4n7s51qjvj8qfb3088igkh",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20121018.204",
+ "deps": []
+ },
+ "slime-annot": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "arielnetworks",
+ "repo": "cl-annot",
+ "sha256": "1wq1gs9jjd5m6iwrv06c2d7i5dvqsfjcljgbspfbc93cg5xahk4n",
+ "rev": "c99e69c15d935eabc671b483349a406e0da9518d"
+ },
+ "recipe": {
+ "sha256": "14x9lzpkgkc96jsbfpahl027qh6y5azwdk0cmk9pbd1xm95kxj6n",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20131230.2108",
+ "deps": [
+ "slime"
+ ]
+ },
+ "ruby-test-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "r0man",
+ "repo": "ruby-test-mode",
+ "sha256": "06fhrn04whqb3n40wkzrwmzbzv7b1m48rd18rx8zpgxhbw8v7rdc",
+ "rev": "b7a652b5d0492a3c712090787faa5f206c2af5fb"
+ },
+ "recipe": {
+ "sha256": "113ysf08bfh2ipk55f8h741j05999yrgx57mzh53rim5n63a312w",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151127.218",
+ "deps": [
+ "ruby-mode"
+ ]
+ },
+ "font-utils": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "rolandwalker",
+ "repo": "font-utils",
+ "sha256": "1k90w8v5rpswqb8fn1cc8sq5w12gf4sn6say5dhvqd63512b0055",
+ "rev": "9192d3f8ee6a4e75f34c3fed10378674cc2b11d3"
+ },
+ "recipe": {
+ "sha256": "0k33jdchjkj7j211a23kfp5axg74cfsrrq4axsb1pfp124swh2n5",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150806.1251",
+ "deps": [
+ "pcache",
+ "persistent-soft"
+ ]
+ },
+ "digistar-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "retroj",
+ "repo": "digistar-mode",
+ "sha256": "0rjqfpya6wkf8nv00q2d40fcnssnsr3p07j9blbpcrqalkdm27ds",
+ "rev": "fcc0447b9ad97ac76f86de7485e0947440966d3f"
+ },
+ "recipe": {
+ "sha256": "0khzxlrm09h31i1nqz6rnzhrdssb3kppc4klpxza612l306fih0s",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150402.1922",
+ "deps": []
+ },
+ "yatex": {
+ "fetch": {
+ "tag": "fetchhg",
+ "url": "https://www.yatex.org/hgrepos/yatex/",
+ "sha256": "1n38fn6hcsl5ilq8vdaakv6id426lr7hdnvccqy6jdplqymgj7h6",
+ "rev": "5b49aea3810d"
+ },
+ "recipe": {
+ "sha256": "00vck0ma5c4zygw0jfqx4nk4pv40rvzvrlp8igzwr0533p19p0pk",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151014.2228",
+ "deps": []
+ },
+ "phi-autopair": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "zk-phi",
+ "repo": "phi-autopair",
+ "sha256": "14g06ndxrqz80kdyhil6ajcqqxkfa77r1gr7vwqa9sq6jgm8dpx5",
+ "rev": "ec4e02f3b1602a6450ece118c79d4beb2430ff08"
+ },
+ "recipe": {
+ "sha256": "1ya1bvh28qgz1zg9kdh2lzbsf0w0lx4xr42mdrjwaz3bbfa9asg4",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150527.423",
+ "deps": [
+ "paredit"
+ ]
+ },
+ "dired-sort": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/dired-sort.el",
+ "sha256": "1dpxkxxfs14sdm3hwxv0j26lq0qzx4gryw42vrcdi680aj24962z"
+ },
+ "recipe": {
+ "sha256": "1dzy2601yikmmbfqivf9s5xi4vd1f5g3c53f8rc74kfnxr1qn59x",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20090208.2238",
+ "deps": []
+ },
+ "navi2ch": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "naota",
+ "repo": "navi2ch",
+ "sha256": "15l2zmm8bp4ip8m1hfxkvswfwa29pg72kisfya2n5v900r184a4m",
+ "rev": "faebfd15184de9df6903eae436dafb52c38ee86e"
+ },
+ "recipe": {
+ "sha256": "13xwvyy27dz1abjkkazm3s1p6cw32l2klr1bnln02w0azkbdy7x3",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150329.2116",
+ "deps": []
+ },
+ "dired-filetype-face": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "jixiuf",
+ "repo": "dired-filetype-face",
+ "sha256": "0v6n4ymlnphzmqaqlfbxvf24dh1pa0xy37xhz9xfjkk02l02wsgf",
+ "rev": "c51bb2d5fba8964b86e63242c247c4688441b9db"
+ },
+ "recipe": {
+ "sha256": "1g9wzkkqmlkxlxwx43446q9mlam035zwq0wzpf7m6394rw2xlwx6",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151216.2057",
+ "deps": []
+ },
+ "pandoc-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "joostkremers",
+ "repo": "pandoc-mode",
+ "sha256": "0aj509yjqgq8bxrvdq5x3d1sfj0dgwwh6kg7f20vapz9qxjdjvdg",
+ "rev": "23444375a60f44b3439994e969d8aa7acf220f8c"
+ },
+ "recipe": {
+ "sha256": "0qvc6cf87h1jqf590kd68jfg25snxaxayfds634wj4z6gp70l781",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151030.513",
+ "deps": [
+ "dash",
+ "hydra"
+ ]
+ },
+ "highlight-parentheses": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "nschum",
+ "repo": "highlight-parentheses.el",
+ "sha256": "0kzqx1y6rr4ryxi2md9087saad4g4bzysckmp8272k521d46xa1r",
+ "rev": "a821a314942f409cd69660d816cd9a0aebd1ae8f"
+ },
+ "recipe": {
+ "sha256": "1b0n9mz4a6baljvvgb881w53391smm35c9pwd45g861hk1qvrk5k",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151108.116",
+ "deps": []
+ },
+ "elx": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "tarsius",
+ "repo": "elx",
+ "sha256": "1mchc4d61li5gfsf05dwhgb694fjj9hljnbvwvc12c1iik0zavq0",
+ "rev": "a8dff14f0626f729e745092dd88a1801c6239710"
+ },
+ "recipe": {
+ "sha256": "02nq66c0sds61k2p8cn2l0p2l8ysb38ibr038qn41l9hg1dq065x",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151215.639",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "bibslurp": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "mkmcc",
+ "repo": "bibslurp",
+ "sha256": "077shjz9sd0k0akvxzzgjd8a626ck650xxlhp2ws4gs7rjd7a823",
+ "rev": "aeba96368f2a06959e4fe945375ce2a54d34b189"
+ },
+ "recipe": {
+ "sha256": "178nhng87bdi8s0r2bdh2gk31w9mmjkyi6ncnddk3v7p8fsh4jjp",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151202.1746",
+ "deps": [
+ "dash",
+ "s"
+ ]
+ },
+ "ensime": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "ensime",
+ "repo": "ensime-emacs",
+ "sha256": "0mzw17s831r8m4kbs2d5p15c86v7w1y7barzqwcj76sdbb7wfkmy",
+ "rev": "dc203a1fd52e05dee4462eb7b9cfb2ea28b833ca"
+ },
+ "recipe": {
+ "sha256": "1d8y72l7bh93x9zdj3d3qjhrrzr804rgi6kjifyrin772dffjwby",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151205.1416",
+ "deps": [
+ "company",
+ "dash",
+ "popup",
+ "s",
+ "sbt-mode",
+ "scala-mode2",
+ "yasnippet"
+ ]
+ },
+ "hyai": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "iquiw",
+ "repo": "hyai",
+ "sha256": "0d3kdpwzr1gs0q986pkj8b9av9knzbh1ax9ybhn0k66hi55hn7bc",
+ "rev": "9c229e6bbccb8481b3889643d02de9869956875c"
+ },
+ "recipe": {
+ "sha256": "00ns7q5b11c5amwkq11fs4p5vrmdfmjljfrcxbwb39gc12yrhn7s",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151218.610",
+ "deps": [
+ "cl-lib",
+ "emacs"
+ ]
+ },
+ "hackernews": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "clarete",
+ "repo": "hackernews.el",
+ "sha256": "15d7zjxjp9h8jmxq3dqakwzlymqk6hqsg7zklkjs0ih7fz0d25pl",
+ "rev": "676d72da9fa4743dae34da95138fd022a51fbfdd"
+ },
+ "recipe": {
+ "sha256": "1x1jf5gkhmpiby5rmy0sziywh6c1f1n0p4f6dlz6ifbwns7har6a",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150901.1017",
+ "deps": [
+ "json"
+ ]
+ },
+ "powerline": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "milkypostman",
+ "repo": "powerline",
+ "sha256": "0dq7fqlv72p72hbshzbwz5k40mqfdw10v9hsd1m18s2rf7082570",
+ "rev": "e886f6fe46c7413befb1de3799a185366fd8b39c"
+ },
+ "recipe": {
+ "sha256": "0gsffr6ilmckrzifsmhwd42vr85vs42pc26f1205pbxb7ma34dhx",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151008.1649",
+ "deps": [
+ "cl-lib"
+ ]
+ },
+ "helm-sage": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "stakemori",
+ "repo": "helm-sage",
+ "sha256": "1s6aw1viyzhhrfiazzi82n7bkvshp7clwi6539660m72lfwc5zdl",
+ "rev": "b42b4ba5fd1b17c4b54c30376a053281686beeb8"
+ },
+ "recipe": {
+ "sha256": "1vnq15fjaap0ai7dadi64sm4415xssmahk2j7kx45sasy4qaxlbj",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150827.2234",
+ "deps": [
+ "cl-lib",
+ "helm",
+ "sage-shell-mode"
+ ]
+ },
+ "skewer-less": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "purcell",
+ "repo": "skewer-less",
+ "sha256": "16757xz5ank3jsh8xglyly7pwdn5xm0yngampy1n1vgcwsp5080a",
+ "rev": "5a48dfa627c91f5f94150fab04cd66e890e3929f"
+ },
+ "recipe": {
+ "sha256": "0fhv5cnp5bgw3krfmb0jl18kw2hzx2p81falj57lg3p8rn23dryl",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20131015.822",
+ "deps": [
+ "skewer-mode"
+ ]
+ },
+ "eimp": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/eimp.el",
+ "sha256": "024qyipwlj3g0fff06cgq357blkh3hyr14vpmkqsv15x6gb9snir"
+ },
+ "recipe": {
+ "sha256": "11z23kx89yy03hzs1xlbcih70lsp2lplxs8nkc8jvfcpsjwypsl0",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140630.947",
+ "deps": []
+ },
+ "flymake-perlcritic": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "illusori",
+ "repo": "emacs-flymake-perlcritic",
+ "sha256": "1f4l2r4gp03s18255jawc7s5abpjjrw54937wzygmvzvqvmaiikj",
+ "rev": "edfaa86500ddfa8a6a6f51f5581a81a821277df6"
+ },
+ "recipe": {
+ "sha256": "0hibnh463wzhvpix7gygpgs04gi6salwjrsjc6d43lxlsn3y1im8",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20120328.314",
+ "deps": [
+ "flymake"
+ ]
+ },
+ "dired-single": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/dired-single.el",
+ "sha256": "1ys38kjnqvks8w207jv6y5yh30rarmib0p78ak761k9sldgd6wvx"
+ },
+ "recipe": {
+ "sha256": "075vzvmh9y403m1vm5a807vkzrqv8dmhgfdzyizfj80q365sv72p",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20130824.700",
+ "deps": []
+ },
+ "oneonone": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/oneonone.el",
+ "sha256": "1810acc61dwdq80jwn5diwg9djzag3n1l9lql72bjkq21my320k5"
+ },
+ "recipe": {
+ "sha256": "0v4nvhzgq97zbi18jd3ds57yh1fpv57b2a1cd7r8jbxwaaz3gpg9",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150821.1428",
+ "deps": [
+ "hexrgb"
+ ]
+ },
+ "emamux": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "syohex",
+ "repo": "emacs-emamux",
+ "sha256": "1x88blaf7f1nwqm20jlcx4xh9almz0570dck87qf27lljrbfikpn",
+ "rev": "1bb88275e472e131c4c14590b48e2016861724a5"
+ },
+ "recipe": {
+ "sha256": "1pg0gzi8rn0yafssrsiqdyj5dbfy984srq1r4dpp8p3bi3n0fkfz",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151021.2302",
+ "deps": [
+ "cl-lib",
+ "emacs"
+ ]
+ },
+ "itail": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "re5et",
+ "repo": "itail",
+ "sha256": "1az986mk8j8hyvr1mi9hirixwcd73jcqkjsw4xy34vjbwxi122r9",
+ "rev": "ff80d0456a0039062de1cf73932a5a32d46821b1"
+ },
+ "recipe": {
+ "sha256": "0mcyly88a3c15hl3wll56agpdsyvd26r501h0v64lasfr4k634m7",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151113.1035",
+ "deps": []
+ },
+ "rings": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "konr",
+ "repo": "rings",
+ "sha256": "0imsc44mcy5abmfin28d13l8mjjvyx6hxcsk81r0i8h12mxlmfkp",
+ "rev": "1655dbf88ad877f54d67fab49f292945f70708eb"
+ },
+ "recipe": {
+ "sha256": "1ncsb4jip07hbrf1l4j9yzn3l0kb63ylhzzsb4bb2yx6as4a66k7",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140102.1736",
+ "deps": []
+ },
+ "kill-or-bury-alive": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "mrkkrp",
+ "repo": "kill-or-bury-alive",
+ "sha256": "0z9jlps979c1pza9wqfy2v9jx9awwfccdnrdlz535r49qv5lmih4",
+ "rev": "04fa76e5baa2fbdfac77c38007a8dacbf0a3f9bc"
+ },
+ "recipe": {
+ "sha256": "0mm0m8hpy5v98cap4f0s38dcviirm7s6ra4l94mknyvnx0f73lz8",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151210.100",
+ "deps": [
+ "cl-lib",
+ "emacs"
+ ]
+ },
+ "hiwin": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "yoshida-mediba",
+ "repo": "hiwin-mode",
+ "sha256": "177blksgncxpxd1zi9kmbcfjnpd3ll1szjxiyc4am8a6hs1dyyqk",
+ "rev": "6ee8ed051405653bd9b7332d7e9fbb591d954051"
+ },
+ "recipe": {
+ "sha256": "0klhxwxsz7xan2vsknw79r1dj4qhhjbfpddr67mk9qzccp8q0w8g",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150825.327",
+ "deps": []
+ },
+ "ggtags": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "leoliu",
+ "repo": "ggtags",
+ "sha256": "1qjh7av046ax4240iw40hv5fc0k23c36my9hili7fp4y2ak99l8n",
+ "rev": "d4fb6d40b71cad3fd5a2141b8456f27e2b2dc731"
+ },
+ "recipe": {
+ "sha256": "1cmry4knxbx9257ivhfxsd09z07z3g3wjihi99nrwmhb9h4mpqyw",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151214.1544",
+ "deps": [
+ "cl-lib",
+ "emacs"
+ ]
+ },
+ "move-text": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/move-text.el",
+ "sha256": "0azda60cbz3kpvy6zd7pvlj40iwvj1zjdxv1brzqa6yfa4kyixv2"
+ },
+ "recipe": {
+ "sha256": "1xgq7wsh08fb23zv71lfw5rska9wijsl64ijpi2m06zyw1m7mdqr",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140307.1044",
+ "deps": []
+ },
+ "ac-cake2": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "k1LoW",
+ "repo": "emacs-ac-cake2",
+ "sha256": "0mlmhdl9s28z981y8bnpj8jpfzm6bgfiyl0zmpgvhyqw1wzqywwv",
+ "rev": "ffbb679c0d5c261b05abde06d8d1d1e5d5990b6a"
+ },
+ "recipe": {
+ "sha256": "0qxilldx23wqf8ilif2nin119bvd0l7b6f6wifixx28a6kl1vsgy",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140320.208",
+ "deps": [
+ "auto-complete",
+ "cake2"
+ ]
+ },
+ "elog": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "lujun9972",
+ "repo": "elog",
+ "sha256": "19yvhyg34w1idsh712cahmcy1pzbxcipw9j6xk567lvkqkinqg7s",
+ "rev": "03c275877301c72fbc61d5fdd72efe5fdc0b6e98"
+ },
+ "recipe": {
+ "sha256": "0hixsi60nf0khm9xmya3saf95ahn1gydp0l5wxawsc491qwg4vqd",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151116.1937",
+ "deps": [
+ "eieio"
+ ]
+ },
+ "cfengine-code-style": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "cfengine",
+ "repo": "core",
+ "sha256": "1z68f6x0ycpsiszlv7mwh2vcsrvl97nk0wzsn9q858yyki7slya1",
+ "rev": "ccaf5d1c5225ab4b50212273d45fb20b8034795e"
+ },
+ "recipe": {
+ "sha256": "1ny8xvdnz740qmw9m81xnwd0gh0a516arpvl3nfimglaai5bfc9a",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20131209.611",
+ "deps": []
+ },
+ "rpm-spec-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "bjorlykke",
+ "repo": "rpm-spec-mode",
+ "sha256": "01rb6qfsk4f33nkfdzvvjkw96ip1dv0py8i30l8ix9cqbk07svsv",
+ "rev": "7d06d19a31e888b932da6c8202ff2c73f42703a1"
+ },
+ "recipe": {
+ "sha256": "01vggdv8sac4p0szwk7xgxcglmd5a1hv5q0ylf8zcp1lsyyh8ypd",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150411.1055",
+ "deps": []
+ },
+ "jscs": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "papaeye",
+ "repo": "emacs-jscs",
+ "sha256": "1bqsv2drhcs8ia7nxss33f80p2mhcl4mr1nalphzw6s1f4mq2sgy",
+ "rev": "9d39d0f2355e69a020bf76242504f3a33e013ccf"
+ },
+ "recipe": {
+ "sha256": "1yw251f6vpj2bikjw79arywprk8qnmmfcki99mvwnqhsqlv1a8iv",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151015.1249",
+ "deps": [
+ "cl-lib",
+ "emacs"
+ ]
+ },
+ "fm-bookmarks": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "kuanyui",
+ "repo": "fm-bookmarks.el",
+ "sha256": "0984fhf1nlpdh9mh3gd2xak3v2rlv76qxppqvr6a4kl1dxwg37r3",
+ "rev": "e1440334a4fe161bd8872996b6862d079d8eb24e"
+ },
+ "recipe": {
+ "sha256": "12ami0k6rfwhrr6xgj0dls4mkk6dp0r9smwzhr4897dv0lw89bdj",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151203.803",
+ "deps": [
+ "cl-lib",
+ "emacs"
+ ]
+ },
+ "corral": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "nivekuil",
+ "repo": "corral",
+ "sha256": "1q9jxg9khvjm7lqjhgfhdnb9j9620bq1k5b2cj74q8k4paa6kyyw",
+ "rev": "9a5ab7f293a23a4fec77ab4fb442d69ecfcc293f"
+ },
+ "recipe": {
+ "sha256": "1drccqk4qzkgvkgkzlrrfd1dcgj8ziqriijrjihrzjgjsbpzv6da",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151120.1809",
+ "deps": []
+ },
+ "look-mode": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/look-mode.el",
+ "sha256": "0sl6hqggi6qn2qp9khw11qp5hamngwxrrwx98k3pwpj9kgicdpgp"
+ },
+ "recipe": {
+ "sha256": "0y3wjfjx0g5jclmv9m3vimv7zd18pk5im7smr41qk09hswi63yqj",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151211.1226",
+ "deps": []
+ },
+ "cacoo": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "kiwanami",
+ "repo": "emacs-cacoo",
+ "sha256": "07kzhyqr8ycjvkknijqhsfr26zd5jc8wxm9sl8bp6pzn4jbs1dmx",
+ "rev": "c9fa04fbe97639b24698709530361c2bb5f3273c"
+ },
+ "recipe": {
+ "sha256": "0kri4vi6dpsf0zk24psm16f3aa27cq5b54ga7zygmr02csq24a6z",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20120319.1859",
+ "deps": [
+ "concurrent"
+ ]
+ },
+ "widget-mvc": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "kiwanami",
+ "repo": "emacs-widget-mvc",
+ "sha256": "0036alzp66k7w3z45lj8qzh3plxv9vwcw17wibkz90mlb27vy6yz",
+ "rev": "a3fd2d2abc29a1b53aeaae8b267d0718740fb783"
+ },
+ "recipe": {
+ "sha256": "0njzvdlxb7z480r6dvmksgivhz7rvnil517aj86qx0jbc5mr3l2f",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150101.2206",
+ "deps": []
+ },
+ "sprintly-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "sprintly",
+ "repo": "sprintly-mode",
+ "sha256": "06rk07h92s5sljprs41y3q31q64cprx9kgs56c2j6v4c8cmsq5h6",
+ "rev": "6695892bae5860b5268bf3ae62be990ee9b63c11"
+ },
+ "recipe": {
+ "sha256": "15i3rrv27ccpn12wwj9raaxpj7nlnrrj3lsp8vdfwph6ydvnfza4",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20121006.34",
+ "deps": [
+ "furl"
+ ]
+ },
+ "org-alert": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "groksteve",
+ "repo": "org-alert",
+ "sha256": "0yzvir2gmyv9k43q3sf37lc9xcmfyaj5wh825xax7305j3b2hhvv",
+ "rev": "d9b73febcc4f211406521786a39853c6bc6dd1bf"
+ },
+ "recipe": {
+ "sha256": "0n5a24iv8cj395xr0gfgi0hs237dd98zm2fws05k47vy3ygni152",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151007.537",
+ "deps": [
+ "alert",
+ "dash",
+ "s"
+ ]
+ },
+ "dtrace-script-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "dotemacs",
+ "repo": "dtrace-script-mode",
+ "sha256": "1blfx3r2xd3idbfjrx44ma3x1d83xp67il2s2bmdwa8qz92z99lf",
+ "rev": "801af1ef16075d31a19830ebb8404bbf3a322f10"
+ },
+ "recipe": {
+ "sha256": "0v29rzlyccrc37052w2qmvjaii84jihhp736l807b0hjjfryras4",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150214.23",
+ "deps": []
+ },
+ "multi": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "kurisuwhyte",
+ "repo": "emacs-multi",
+ "sha256": "0f5hc6mgq0hg1wwnvqd4fp7ck58lcavvgqjggz9zlhrjgkmynjxx",
+ "rev": "0987ab71692717ed457cb3984de184db9185806d"
+ },
+ "recipe": {
+ "sha256": "1c240d1c1g8wb2ld944344zklnv86d9rycmya4z53b2ai10642ig",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20131013.1044",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "eclipse-theme": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "abo-abo",
+ "repo": "eclipse-theme",
+ "sha256": "1vxa6d8kp4h1havr9cq7zqgqm1xsjxhbgbi4hvi842ma6xwh4m5w",
+ "rev": "222f5b37d9c0573f752aa6097c677c91af9d2427"
+ },
+ "recipe": {
+ "sha256": "0mww0jysxqky1zkkhvhj7fn20w970n2w6501rdm5jwqfb58ivxfx",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150929.801",
+ "deps": []
+ },
+ "json-reformat": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "gongo",
+ "repo": "json-reformat",
+ "sha256": "0qp4n2k6s69jj4gwwimkpadjv245y54wk3bxb1x96f034gkp81vs",
+ "rev": "b9bd375ec1deb10d2ba09c409bdcf99c56d7a716"
+ },
+ "recipe": {
+ "sha256": "1m5p895w9qdgb8f67xykhzriribgmp20a1lvj64iap4aam6wp8na",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151204.1100",
+ "deps": []
+ },
+ "unicode-whitespace": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "rolandwalker",
+ "repo": "unicode-whitespace",
+ "sha256": "1ayb15nd5vqr0xaghrnp55kqw7bblrjipmfrag6bqpn7jk9bvbdz",
+ "rev": "a18c6b38d78b94f2eb1dcc4cb4fa91b6a17efabe"
+ },
+ "recipe": {
+ "sha256": "1b3jgha8va42b89pdp41sab2w9wllp7dicqg4lxl67bg6wn147wy",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140508.1541",
+ "deps": [
+ "list-utils",
+ "pcache",
+ "persistent-soft",
+ "ucs-utils"
+ ]
+ },
+ "kakapo-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "listx",
+ "repo": "kakapo-mode",
+ "sha256": "0b6af8hnrn0v4z1xpahjfpw5iga2bmgd3qwfn3is2rygsn5rkm40",
+ "rev": "fe3d579867f7465cd3ad04f29b4b2b3b820edc01"
+ },
+ "recipe": {
+ "sha256": "0a99cqflpzasl4wcmmf99aj8xgywkym37j7mvnsajrsk5wawdlss",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150906.2352",
+ "deps": [
+ "cl-lib"
+ ]
+ },
+ "pretty-lambdada": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/pretty-lambdada.el",
+ "sha256": "0qda87pz137ki2527v2ji74nibazwxh8ykqv26315z6pz0q1dkin"
+ },
+ "recipe": {
+ "sha256": "16v5fgifz672c37xyzv557mm6za4rldvdrb26vdymxqg4fy62fd6",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150104.1841",
+ "deps": []
+ },
+ "pretty-sha-path": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "alezost",
+ "repo": "pretty-sha-path.el",
+ "sha256": "1n0594msgy53ia58gjfkm3z3cnmq52wrq5992fm28s4jgazbgdfd",
+ "rev": "a2b43dd9de423a38d67cda2e3bd9412f7d363257"
+ },
+ "recipe": {
+ "sha256": "0qqsg383391dnsk46xm8plq7xmdmnis3iv7h7dmchpzd99bkm9lq",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20141105.1226",
+ "deps": []
+ },
+ "omni-tags": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "AdrieanKhisbe",
+ "repo": "omni-tags.el",
+ "sha256": "1lvnkdrav7h15p8d5ayhfsjynllwp4br1vqxmw0ppxnlyq7337n5",
+ "rev": "3f88b087d492e8ef742416d6e4bf8be41e5a46c4"
+ },
+ "recipe": {
+ "sha256": "133ww1jf14jbw02ssbx2a46mp52j18a2wwzb6x77azb0akmf1lzl",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150513.1253",
+ "deps": [
+ "cl-lib",
+ "pcre2el"
+ ]
+ },
+ "hcl-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "syohex",
+ "repo": "emacs-hcl-mode",
+ "sha256": "1vf5130bj1ii9j8qq9vdw0ga0qgfk8brjz34ysfmz9l2ihlcxvl0",
+ "rev": "5a5e490509452a1882bea43952e248682577ed2d"
+ },
+ "recipe": {
+ "sha256": "1wrs9kj6ahsdnbn3fdaqhclq1ia6w4x726hjvl6pyk01sb0spnin",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151002.2249",
+ "deps": [
+ "cl-lib"
+ ]
+ },
+ "polymode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "vitoshka",
+ "repo": "polymode",
+ "sha256": "0dlgmp1vmpvfjx19jz52xjmpg0fi1d0gy3zz7rsyjdkdw8dmr1v6",
+ "rev": "af589492a49b4703d390a7a91b281cf0d10d91a7"
+ },
+ "recipe": {
+ "sha256": "0ndavaan7k55l3ghm5h08i0slmmzc82c0gl4b8w91fa8bi2lq4h4",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151216.733",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "restclient": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "pashky",
+ "repo": "restclient.el",
+ "sha256": "08j4m70j9xdl731bwa4vh656lji0w0f9mm1aki0qqd5msglw6kvx",
+ "rev": "2075b17e2f8e118cf0739e4087f791ed724be1ad"
+ },
+ "recipe": {
+ "sha256": "14wxfhb17n2f9wil68lb05abj7m0whwkqvrm3y9dg9mh14lcpbvc",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151128.1712",
+ "deps": []
+ },
+ "lentic-server": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "phillord",
+ "repo": "lentic-server",
+ "sha256": "0c6wkfz6sdcs4aglvx6h3slhma2vbj7idckwzvp8ji6s7p1mavlv",
+ "rev": "533e0eadb2dd79c50da7de8fc1d6e6f1e99bd6ff"
+ },
+ "recipe": {
+ "sha256": "1y9idhf9qcsw3dbdj7rwa7bdrn1q0m3bg3r2jzwdnvkq8aas1w56",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150320.826",
+ "deps": [
+ "lentic",
+ "web-server"
+ ]
+ },
+ "tfs": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/tfs.el",
+ "sha256": "16byw8ix7bjh5ldr8rymisq2bhc5sh7db6rhpf0x28yd6mmzn73v"
+ },
+ "recipe": {
+ "sha256": "10szb9mni37s2blvhl1spj96narmkrv8zhrryw9q1251z8laq5v0",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20120508.1320",
+ "deps": []
+ },
+ "emms-soundcloud": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "osener",
+ "repo": "emms-soundcloud",
+ "sha256": "0nx5bb5fjmaa1nhkbfnhd1aydqrq390x4rl1vfh11ilnf52wzzld",
+ "rev": "87e5cbf9609d1f26c24dc834fdeb78b33d453c2b"
+ },
+ "recipe": {
+ "sha256": "0nf1f719m4pvxn0mf4qyx8mzwhrhv6kchnrpiy9clx520y8x3dqi",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20131221.545",
+ "deps": [
+ "emms",
+ "json"
+ ]
+ },
+ "abl-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "afroisalreadyinu",
+ "repo": "abl-mode",
+ "sha256": "081rz6q46wdpnlzd3ddcw425434vz54q7xw29z2nnaxsqckmim8f",
+ "rev": "5a2a65cc5eb1dc2ee80c8b64a7ea352a444abfdb"
+ },
+ "recipe": {
+ "sha256": "0h25lc87pa8irgxflnmnmkr9dcv4kz841nfc45fcz4awrn75kkzb",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151125.335",
+ "deps": []
+ },
+ "page-break-lines": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "purcell",
+ "repo": "page-break-lines",
+ "sha256": "1acz3w2zdcds0h6p2k9h3lmjsk519asqrxjw7f3pyrcq7x2qbhc4",
+ "rev": "36d3f93a23b767e7558b9c90f3631b03ce9fbdce"
+ },
+ "recipe": {
+ "sha256": "0q1166z190dxznzgf2f29klj2jkaqlic483p4h3bylihkqp93ij7",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150226.1017",
+ "deps": []
+ },
+ "kpm-list": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "KMahoney",
+ "repo": "kpm-list",
+ "sha256": "1m9hixlclynph2i5q18miq077dyvhx14pfzgawrwj82j1kslz50x",
+ "rev": "397912496d42e57c261ff6d33edc8fc029479b8b"
+ },
+ "recipe": {
+ "sha256": "0022bhy1mzngjmjydyqnmlgnhww05v4dxsfav034r8nyyc7677z0",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20130131.348",
+ "deps": []
+ },
+ "edbi-sqlite": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "proofit404",
+ "repo": "edbi-sqlite",
+ "sha256": "0xnaj2f9zvnc6abjkaa23j6ga4anmq676aplws0n01y7qz6w0xk8",
+ "rev": "929009365529b56daec172b87d7632240b15be1f"
+ },
+ "recipe": {
+ "sha256": "1w53ypz3pdqaml3vq9j3f1w443n8s9hb2ys090kxvjqnb8x8v44y",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150115.1301",
+ "deps": [
+ "edbi",
+ "emacs"
+ ]
+ },
+ "rope-read-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "marcowahl",
+ "repo": "rope-read-mode",
+ "sha256": "1mmrk88nlv66f5q7l7wll1ivc0hpcv5rd1wq3my8b2xvhwxlhfqs",
+ "rev": "8837e18405f96aab34821e890141ecf6b749bb73"
+ },
+ "recipe": {
+ "sha256": "0grnn5k6rbck0hz4c6cadgj3a4dv62habyingznisg2kx9i3m0dw",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151118.1705",
+ "deps": []
+ },
+ "desktop+": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "ffevotte",
+ "repo": "desktop-plus",
+ "sha256": "18k5898r4n96h93xsvjrpm90hz3rd0ir6x3axjzqwwrgs2ik7pj2",
+ "rev": "8ef242d0aa6f715ff4c5abbc4ee6be66a90ffedd"
+ },
+ "recipe": {
+ "sha256": "0w7i6k4814hwb19l7ly9yq59674xiw57ylrwxq7yprwx52sgs2r8",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151004.1440",
+ "deps": [
+ "dash",
+ "emacs",
+ "f"
+ ]
+ },
+ "smart-indent-rigidly": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "re5et",
+ "repo": "smart-indent-rigidly",
+ "sha256": "0q5hxg265ad9gpclv2kzikg6jvbf3zzb1mrykxn0n7mnvdfdlhsi",
+ "rev": "323d1fe4d0b81e598249aad01bc44adb180ece0e"
+ },
+ "recipe": {
+ "sha256": "12qggg1m28mlvkdn52dig8bwv58pvipkvn1mlc4r7w569arar44x",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20141205.1815",
+ "deps": []
+ },
+ "colemak-evil": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "patbl",
+ "repo": "colemak-evil",
+ "sha256": "0jjj1miwc7hw2fbb1fnmfnydim81djswla8iy4waam9014yraqci",
+ "rev": "cd2c75848ab0ad1aec42ca421d03a923166fa228"
+ },
+ "recipe": {
+ "sha256": "1bfzs5px1k6g3cnwjdaq2m78bbnfy3lxhjzkcch7zdv3nyacwl5z",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140508.1812",
+ "deps": [
+ "evil"
+ ]
+ },
+ "elnode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "nicferrier",
+ "repo": "elnode",
+ "sha256": "0p3cj5vgka388i4dk9r7bx8pv8mywnfij9ahgqak5jlsddflh8hw",
+ "rev": "3f2bf225853e40a2a10386ee5ae0bd6ba5d44ce9"
+ },
+ "recipe": {
+ "sha256": "0piy5gy9a7c8s10b99fmdyh6glhvjvdyrz0x2bv30h7wplx5szi6",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140203.1706",
+ "deps": [
+ "creole",
+ "dash",
+ "db",
+ "fakir",
+ "kv",
+ "noflet",
+ "s",
+ "web"
+ ]
+ },
+ "bash-completion": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "szermatt",
+ "repo": "emacs-bash-completion",
+ "sha256": "06c42531dy5ngscwfvg8rksg6jcsakfn7104hmlg1jp4kvfiy1kg",
+ "rev": "1659c7ca38e2cf591525a3d0b9d97461de33916d"
+ },
+ "recipe": {
+ "sha256": "0l41yj0sb87i27hw6dh35l32hg4qkka6r3bpkckjnfm0xifrd9hj",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150514.928",
+ "deps": []
+ },
+ "php-refactor-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "keelerm84",
+ "repo": "php-refactor-mode.el",
+ "sha256": "163albjkq7ldc9fki368540m7nl58qa70wfpff08gx3gsvywfnyi",
+ "rev": "9010e5e8dde2ad3a2c7a65ff1752b5482dfd4f61"
+ },
+ "recipe": {
+ "sha256": "0gj0nv6ii7pya0hcxs8haz5pahj0sa12c2ls53c3j85in645zb3s",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140920.1611",
+ "deps": []
+ },
+ "perlbrew": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "kentaro",
+ "repo": "perlbrew.el",
+ "sha256": "0wg0cpqxzfgln6xdngzspsbfirn9a5jxpgk66m0fpi33215z9q26",
+ "rev": "30e14a606a08948fde5eafda2cbe1cd4eb83b3f3"
+ },
+ "recipe": {
+ "sha256": "1qadwkcic2qckqy8hgrnj08ajhxayknhpyxkc6ir15vfqjk5crr8",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20130127.524",
+ "deps": []
+ },
+ "download-region": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "zk-phi",
+ "repo": "download-region",
+ "sha256": "0gc7z5ribp5yvadclq07l731m65pja00wgch4bgxsihiy7wvwknr",
+ "rev": "51fc808e10803f695ea3d24c22e1af27e080903d"
+ },
+ "recipe": {
+ "sha256": "1mrl2x6j708nchyh9y5avbf2cq10kpnhfj553l6akarvl5n5pvkl",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150807.232",
+ "deps": [
+ "cl-lib"
+ ]
+ },
+ "swoop": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "ShingoFukuyama",
+ "repo": "emacs-swoop",
+ "sha256": "0qp078q9jrfm0k8sjq6qglfilwgqy1n0bbhyjk3hrf7rjxlkfkx7",
+ "rev": "80a5df8edb86efd9885073b3ec6f475d8b969adf"
+ },
+ "recipe": {
+ "sha256": "0r265rwfbl1iyclnspxpbzf2w1q0w8dnc0wv5mz5g6hhcrr0iv6g",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140605.1610",
+ "deps": [
+ "async",
+ "emacs",
+ "ht",
+ "pcre2el"
+ ]
+ },
+ "angular-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "omouse",
+ "repo": "angularjs-mode",
+ "sha256": "04kg2x0lif91knmkkh05mj42xw3dkzsnysjda6ian95v57wfg377",
+ "rev": "8720cde86af0f1859ccc8580571e8d0ad1c52cff"
+ },
+ "recipe": {
+ "sha256": "1bwfmjldnxki0lqi3ys6r2a3nlhbwm1dibsg2dvzirq8qql02w1i",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151201.1527",
+ "deps": []
+ },
+ "vertigo": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "noctuid",
+ "repo": "vertigo.el",
+ "sha256": "0v884gbqq5vrx5gwg9dqn97kaqgnzhrqv8kam8dy9g7hx4fm6b2l",
+ "rev": "fecc566e9039408303f9b1c979624d546152b7df"
+ },
+ "recipe": {
+ "sha256": "0x0wy1z601sk1x96bl2xx18qm4avd77iybq1a3ss8x8ykwqlgf83",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151110.2213",
+ "deps": [
+ "dash"
+ ]
+ },
+ "flycheck-ats2": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "drvink",
+ "repo": "flycheck-ats2",
+ "sha256": "0fh5z68gnggm0qjb8ncmfngv195lbp1dxz9jbmdi418d47mlba9c",
+ "rev": "431e46d5bbd20941c26270c7ba6872c86451348b"
+ },
+ "recipe": {
+ "sha256": "0xm7zzz6hs5qnqkmv7hwxpvp3jjca57agx71sj0m12v0h53gbzhr",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151130.807",
+ "deps": [
+ "emacs",
+ "flycheck"
+ ]
+ },
+ "supergenpass": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "ober",
+ "repo": "sgpass",
+ "sha256": "0m02snzka243adhwwgriml133n4312lhdia3wdqjcq8y2mlp3331",
+ "rev": "549072ef7b5b82913cadd4758e8a0a9926f0a04a"
+ },
+ "recipe": {
+ "sha256": "0ldy6j6l6rf72w0hl195rdnrabml2a5k91200s186k0r5aja4b95",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20130329.48",
+ "deps": []
+ },
+ "iodine-theme": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "srdja",
+ "repo": "iodine-theme",
+ "sha256": "14zfxa8fc7h4rkz1hyplwf4q2lga3l5dd7a2xq5kk0kvf2fs4mk3",
+ "rev": "02fb780e1d8d8a6b9c709bfac399abe1665c6999"
+ },
+ "recipe": {
+ "sha256": "05mnq0bgcla0pxsgywpvcdgd4sk2xr7bjlp87l0dx8j121vqripj",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151031.1139",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "mkdown": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "ajtulloch",
+ "repo": "mkdown.el",
+ "sha256": "1d08i2cfn1q446nyyji0hi9vlw7bzkpxhn6653jz2k77vd2y0wmk",
+ "rev": "8e23de82719af6c5b53b52b3308a02b3a1fb872e"
+ },
+ "recipe": {
+ "sha256": "1b2vi8q6jhq1xv7yr5f3aiyp1w8j59w19vxys0pv6bqr2gra07i1",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140517.918",
+ "deps": [
+ "markdown-mode"
+ ]
+ },
+ "ctxmenu": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "aki2o",
+ "repo": "emacs-ctxmenu",
+ "sha256": "1jlr2miwqsg06hk2clvsrw9fa98m2n76qfq8qv5svrb8dpil04wb",
+ "rev": "5c2376859562b98c07c985d2b483658e4c0e888e"
+ },
+ "recipe": {
+ "sha256": "03g9px858mg19wapqszwav3599slljdyam8bvn1ri85fpa5ydvdp",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140303.1542",
+ "deps": [
+ "log4e",
+ "popup",
+ "yaxception"
+ ]
+ },
+ "python-environment": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "tkf",
+ "repo": "emacs-python-environment",
+ "sha256": "0q6bib9nr6xiq6npzbngyfcjk87yyvwzq1zirr3z1h5wadm34lsk",
+ "rev": "401006584e32864a10c69d29f14414828909362e"
+ },
+ "recipe": {
+ "sha256": "1pq16rddw76ic5d02j5bswl9qcydi47hqmhs7r06jk46vsfzxpl7",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150310.353",
+ "deps": [
+ "deferred"
+ ]
+ },
+ "flymake-phpcs": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "senda-akiha",
+ "repo": "flymake-phpcs",
+ "sha256": "140rlp6m0aqibwa0bhv8w6l3giziybqdw7x271nq8f3r60ch13bi",
+ "rev": "a4d383474e055e554aaf1cd617055d5d7181aa50"
+ },
+ "recipe": {
+ "sha256": "0zzxi3c203fiw6jp1ar9bb9f28x2lg23bczgy8n5cicrq59jfsn9",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140713.131",
+ "deps": [
+ "flymake-easy"
+ ]
+ },
+ "gotham-theme": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "wasamasa",
+ "repo": "gotham-theme",
+ "sha256": "0pxzi56lw9ry91f70hjnvrsbyhcaqknlwicjjbhf6rhv57fplw8h",
+ "rev": "d41b0ea37ad5a4d0060ea05e25d80581f113b662"
+ },
+ "recipe": {
+ "sha256": "0jars6rvf7hkyf71vq06mqki1r840i1dvv43dissqjg5i4lr79cl",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151117.358",
+ "deps": []
+ },
+ "evil-quickscope": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "blorbx",
+ "repo": "evil-quickscope",
+ "sha256": "0yx5ry102hzhqx1aql58fkd986xgj250bbcxabpnvy27gim2b977",
+ "rev": "d2f512fa4bd0b0603529a441e474ca551f621650"
+ },
+ "recipe": {
+ "sha256": "0xym1mh4p68i00l1lshywf5fdg1vw3szxp3fk9fwfcg04z6vd489",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150929.1448",
+ "deps": [
+ "evil"
+ ]
+ },
+ "hl-line+": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/hl-line+.el",
+ "sha256": "023l9f74kmg66j2rj5h39b4l6svdd48i4h3bdvq8lwy0lz58g889"
+ },
+ "recipe": {
+ "sha256": "13yv2nmx1wb80z4yifnh6d67rag17wirmp7z8ssq3havjl8lbpix",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150104.1622",
+ "deps": []
+ },
+ "lenlen-theme": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "zk-phi",
+ "repo": "lenlen-theme",
+ "sha256": "0ab84qiqaz3swiraks8lx0y1kzwylpy9wz2104xgnpwnc5169z65",
+ "rev": "05202458fa0a5242e5c6e4451e375f6c16920272"
+ },
+ "recipe": {
+ "sha256": "1bddkcl9kzj3v071qpzmxzjwywqfj5j6cldz240qgp5mx685r0a9",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150307.211",
+ "deps": [
+ "color-theme-solarized"
+ ]
+ },
+ "orgtbl-aggregate": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "tbanel",
+ "repo": "orgaggregate",
+ "sha256": "0am2yfnaxwc6f2wvrg4d508pdcs88cynr32k7bgyyadwq4xq3zsg",
+ "rev": "16b54b2be7cbb87aab9498c0ab7b8bca0f73cb59"
+ },
+ "recipe": {
+ "sha256": "0gnyjwn6jshs8bzdssm2xppg2s9p2x3rrhp523q39aydskc6ggc9",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150104.1018",
+ "deps": []
+ },
+ "cssfmt": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "KeenS",
+ "repo": "cssfmt.el",
+ "sha256": "0hyf4im7b8zka065daw7yxrb3670dpp8q92vd2gcsva1jla92h9y",
+ "rev": "802c82a1aa8d433ec473e253ae1fa4ecad3fb4b0"
+ },
+ "recipe": {
+ "sha256": "12yq4dhyv3p5gxnd2w193ilpj2d3gx5ns09w0z1zkg7ax3a4q4b8",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150818.2328",
+ "deps": []
+ },
+ "color-theme-buffer-local": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "vic",
+ "repo": "color-theme-buffer-local",
+ "sha256": "0gvc9jy34a8wvzwjpmqhshbx2kpk6ckmdrdj5v00iya7c4afnckx",
+ "rev": "ca8470bc34c65a026a6bca1707d95240bfd019af"
+ },
+ "recipe": {
+ "sha256": "1448rffyzn5k5mr31hwd28wlj7if7rp5sjlqcsvbxd2mnbgkgjz0",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151012.1828",
+ "deps": [
+ "color-theme"
+ ]
+ },
+ "xbm-life": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "wasamasa",
+ "repo": "xbm-life",
+ "sha256": "154xnfcmil9xjjmq4cyrfpir4ga4mgcmmbd7dja1m7rpk1734xk6",
+ "rev": "bde2b3730a02d237f7d95a8e3f3722f23f2d9201"
+ },
+ "recipe": {
+ "sha256": "1pglxjd4cs630sayx17ai1xflpbyj3hry3156682bgwhqs1vw68q",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151217.215",
+ "deps": []
+ },
+ "grails-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "Groovy-Emacs-Modes",
+ "repo": "groovy-emacs-modes",
+ "sha256": "07xiyf30p6hdd6lxv7c6xqpnvw6ys0halg8di0m3pwqz9qf4rj4i",
+ "rev": "74f360ee1ad25755707a89bec9eeed571b6748d0"
+ },
+ "recipe": {
+ "sha256": "1zdlmdkwyaj2zns3xwmqpil83j7857aj2070kvx8xza66dxcnlm4",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151206.154",
+ "deps": []
+ },
+ "flymake-lua": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "sroccaserra",
+ "repo": "emacs",
+ "sha256": "1fz7kywp1y2nhp50b2v961wz604sw1gzqcid4k8igz9aii3ygxcv",
+ "rev": "ee23c427a8eb01773c87e215d0e61cd8b5b5fe76"
+ },
+ "recipe": {
+ "sha256": "0pa66ymhazcfgd9jmxizq5w2sgj008hph42wsa9ljr2rina1gai6",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140310.430",
+ "deps": []
+ },
+ "elpa-mirror": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "redguardtoo",
+ "repo": "elpa-mirror",
+ "sha256": "1hjmvn3kls63alh0ihb5c8gf90lrfvq1hxrlf4162qiaa0s15f8a",
+ "rev": "6c32875c2317736e590e067820996010b21acb1d"
+ },
+ "recipe": {
+ "sha256": "1jnviav2ybr13cgllg26kfjrwrl25adggnqiiwyjwgbbzxfycah8",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151123.653",
+ "deps": []
+ },
+ "e2wm-bookmark": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "myuhe",
+ "repo": "e2wm-bookmark.el",
+ "sha256": "121vd44f42bxqvdjswmjlghf1jalbs974b6cip2i049k1n08xgh0",
+ "rev": "bad816b6d8049984d69bcd277b7d325fb84d55eb"
+ },
+ "recipe": {
+ "sha256": "1myaqxzrgff5gxcn3zn1bsmyf5122ql1mwr05wamd450lq8nmbw5",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151122.2321",
+ "deps": [
+ "e2wm"
+ ]
+ },
+ "p4": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "gareth-rees",
+ "repo": "p4.el",
+ "sha256": "12jsnfppif4l548wymvakx0f2zlm63xs6kfrb49hicmk668cq4ra",
+ "rev": "eff047caa75dbe4965defca9d1212454cdb755d5"
+ },
+ "recipe": {
+ "sha256": "0215li17gn35wmvd84gnp4hkwa2jd81wz4frb1cba2b5j33rlprc",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150721.1437",
+ "deps": []
+ },
+ "review-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "kmuto",
+ "repo": "review-el",
+ "sha256": "0lzsy68k7sm9d3r8lzhzx9alc1f0cgfclry40pa4x0ilkcr7ysch",
+ "rev": "d043b227eb1cd10361f8117c17de9a67caebe96a"
+ },
+ "recipe": {
+ "sha256": "0wapicggkngpdzi0yxc0b24s526fs819rc2d6miv6ix3gnw11n0n",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150110.812",
+ "deps": []
+ },
+ "peacock-theme": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "emacsfodder",
+ "repo": "emacs-peacock-theme",
+ "sha256": "1clvrmvijwpffigh5f29vnwcvffqk0nrvlz26158hip1z9x7nah3",
+ "rev": "268a2a7eb48ac750fc939657169ec65f2ac0f4f7"
+ },
+ "recipe": {
+ "sha256": "0jpdq090r37d07bm52yx3x9y3gsip6fyxxq1ax1k5k0r0js45kq9",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20141116.102",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "edit-server": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "stsquad",
+ "repo": "emacs_chrome",
+ "sha256": "0ssmhwg4wfh5cxgqv8bl55449204h4zi863m7jhvas4c9zq005kd",
+ "rev": "0a50fbb524fe256560f481701c000309c627b9ca"
+ },
+ "recipe": {
+ "sha256": "0ffxcgmnz0f2c1i3vfwm8vlm6jyd7ibf4kq5z8c6n50zkwfdmns0",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20141231.1558",
+ "deps": []
+ },
+ "imakado": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "imakado",
+ "repo": "emacs-imakado",
+ "sha256": "0f3xdqhq9nprvl8bnmgrx20h08ddkfak0is29bsqwckkfgn7pmqp",
+ "rev": "00a1e7eea2cb9e9066343a23927d6c747707902f"
+ },
+ "recipe": {
+ "sha256": "18mj0vpv3dybfpa8hl9jwlagsivbhgqgz8lwb8cswsq9hwv3jgd3",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20141024.423",
+ "deps": []
+ },
+ "dynamic-ruler": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "rocher",
+ "repo": "dynamic-ruler",
+ "sha256": "1jsjk4fkisgprn2w1d1385kbc9w1bd707biapd1y453k20q5c4h5",
+ "rev": "06318152d6831b1b0cfd814b4f4150a00b47ef67"
+ },
+ "recipe": {
+ "sha256": "13jc3xbsyc3apkdfy0iafmsfvgqs0zfa5w8jxp7zj4dhb7pxpnmc",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150826.1609",
+ "deps": []
+ },
+ "fontawesome": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "syohex",
+ "repo": "emacs-fontawesome",
+ "sha256": "103xz042h8w6c85hn19cglfsa34syjh18asm41rjhr9krp15sdl1",
+ "rev": "66650efea4a044afe0e5f482ccac465082cd5e62"
+ },
+ "recipe": {
+ "sha256": "07hn4s929xklc74j8s6pd61rxmxw3911dq47wql77vb5pijv6dr3",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151202.830",
+ "deps": [
+ "cl-lib",
+ "helm-core"
+ ]
+ },
+ "langdoc": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "tom-tan",
+ "repo": "langdoc",
+ "sha256": "0svci7xs4iysv8ysf93g382arip0xpgi0fllw8xx2vrd70sz7lff",
+ "rev": "2c7223bacb116992d700ecb19a60df5c09c63424"
+ },
+ "recipe": {
+ "sha256": "19i6ys58wswl5ckf33swl6lsfzg4znx850br4icik15yrry65yj7",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150218.45",
+ "deps": [
+ "cl-lib"
+ ]
+ },
+ "o-blog": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "renard",
+ "repo": "o-blog",
+ "sha256": "0xs6787a4v7djgd2zz2v1pk14x27mg2ganz30j9f0gdiai7da6ch",
+ "rev": "e466c59478feddc8126c43c1b98550474af484c0"
+ },
+ "recipe": {
+ "sha256": "08grkyvg27wd5232q3y8p0v7higfq7bmsdzmvhja96v6qy2xsbja",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151202.1739",
+ "deps": []
+ },
+ "love-minor-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "ejmr",
+ "repo": "love-minor-mode",
+ "sha256": "179r4pz3hlb5p6bjfhdikkx1zvh09ln5dbw3c3rmlyww1q7v26yl",
+ "rev": "31c3fc1ecd31f72f0f736014a4ff905eb3742e74"
+ },
+ "recipe": {
+ "sha256": "1skg039h2hn8dh47ww6n9l776s2yda8ariab4v9f56kb21bncr4m",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20130429.1659",
+ "deps": [
+ "lua-mode"
+ ]
+ },
+ "erc-hl-nicks": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "leathekd",
+ "repo": "erc-hl-nicks",
+ "sha256": "0h2hfa5qpszg0pzi1gc7qfkn9kb37pfg0vlj30049xnryh80r9br",
+ "rev": "e536ea57f842f85ecda5a28ceed24cd506b7be2c"
+ },
+ "recipe": {
+ "sha256": "1lhw77n2nrjnb5yhnpm6yhbcp022xxjcmdgqf21z9rd0igss9mja",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140619.722",
+ "deps": []
+ },
+ "quickref": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "pd",
+ "repo": "quickref.el",
+ "sha256": "1i7qqpqdwifd6vxpyyxyzq0b3wc82r7pqcw07bj0x2lhrjnqrxby",
+ "rev": "cfedf98c6b8b679b93296f7436e1fb4c2cc7ad25"
+ },
+ "recipe": {
+ "sha256": "0jahi84ra9g7h0cvz3c02zkbkknrzgv48zq32n72lkxl958swqn1",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20130113.1700",
+ "deps": [
+ "dash",
+ "s"
+ ]
+ },
+ "dash-functional": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "magnars",
+ "repo": "dash.el",
+ "sha256": "1g7vrfhafmkqwdpfllfiwirl4pi437pyaws38jsd8laxmsa4m4wb",
+ "rev": "8a46d3c7c126d3e979f7f9b36867a413694cd8df"
+ },
+ "recipe": {
+ "sha256": "0hx36hs12mf4nmskaaqrqpcgwrfjdqj6qcxn6bwb0s5m2jf9hs8p",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150828.613",
+ "deps": [
+ "dash",
+ "emacs"
+ ]
+ },
+ "pdf-tools": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "politza",
+ "repo": "pdf-tools",
+ "sha256": "1ik26v8x94myx04wy9vi6bwzvfxbl43fam765g0gy2n8289bhpi8",
+ "rev": "aac3bdc43eb6ea78dcf7c59653c9aa526fb41f1f"
+ },
+ "recipe": {
+ "sha256": "1hnc8cci00mw78h7d7gs8smzrgihqz871sdc9hfvamb7iglmdlxw",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151126.1658",
+ "deps": [
+ "emacs",
+ "let-alist",
+ "tablist"
+ ]
+ },
+ "beacon": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "Malabarba",
+ "repo": "beacon",
+ "sha256": "1aczmdlc8ckcq5qbnsdyraw9wp8p5cddjm5jx8rf0ahsszh6vxws",
+ "rev": "0353da8dd7f78179a721f42cec4df8c23f0908f2"
+ },
+ "recipe": {
+ "sha256": "1pwxvdfzs9qjd44wvgimipi2hg4qw5sh5wlsl8h8mq2kyx09s7hq",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151205.1203",
+ "deps": [
+ "seq"
+ ]
+ },
+ "image+": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "mhayashi1120",
+ "repo": "Emacs-imagex",
+ "sha256": "0v66wk9nh0raih4jhrzmmyi5lbysjnmbv791vm2230ffi2hmwxnd",
+ "rev": "6834d0c09bb4df9ecc0d7a559bd7827fed48fffc"
+ },
+ "recipe": {
+ "sha256": "1a9dxswnqn6cvx28180kclpjc0vc6fimzp7n91gpdwnmy123x6hg",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150707.1116",
+ "deps": [
+ "cl-lib"
+ ]
+ },
+ "dockerfile-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "spotify",
+ "repo": "dockerfile-mode",
+ "sha256": "08pd42vv2c3l19nfib1hd7i7sy9dqwar1wfrvsnm5dkxcwlsm99j",
+ "rev": "40be396417535c6721c1b13ca9f99c46192f1d73"
+ },
+ "recipe": {
+ "sha256": "1dxvzn35a9qd3x8pjvrvb2g71yf84404g6vz81y0p353rf2zknpa",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151123.1057",
+ "deps": []
+ },
+ "telepathy": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "NicolasPetton",
+ "repo": "telepathy.el",
+ "sha256": "16kr1p4lzi1ysd5r2dh0mxk60zsm5fvwa9345nfyrgdic340yscc",
+ "rev": "211d785b02a29ddc254422fdcc3db45262582f8c"
+ },
+ "recipe": {
+ "sha256": "0c3d6vk7d6vqzjndlym2kk7d2zm0b15ac4142ir03p6f19rqq9pr",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20131209.658",
+ "deps": []
+ },
+ "flycheck-haskell": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "flycheck",
+ "repo": "flycheck-haskell",
+ "sha256": "0sv4swdqnra3xvjp8im0mxphwfsfw6c45shwdgnjagqs6z6v0i5k",
+ "rev": "d83da3ff856ac59b84e3d84598a5bb30c288bd55"
+ },
+ "recipe": {
+ "sha256": "12lgirz3j6n5ns2ikq4n41z0d33qp1lb5lfz1q11qvpbpn9d0jn7",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151208.1347",
+ "deps": [
+ "dash",
+ "emacs",
+ "flycheck",
+ "haskell-mode",
+ "let-alist",
+ "seq"
+ ]
+ },
+ "handoff": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "rejeep",
+ "repo": "handoff.el",
+ "sha256": "0whn8rc98dhncgizzrb22nx6b6cm655q1cf2fpn6g3knq1c2471r",
+ "rev": "75dc7a7e352f38679f65d0ca80ad158798e168bd"
+ },
+ "recipe": {
+ "sha256": "0iqqvygx50wi2vcbs6bfgqzhcz9a89zrwb7sg0ang9qrkiz5k36w",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150917.100",
+ "deps": []
+ },
+ "evil-iedit-state": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "syl20bnr",
+ "repo": "evil-iedit-state",
+ "sha256": "1kdigwpl9pp88l11bkpxkw91pvs8z3gachxccibivzgjxd2pnvfl",
+ "rev": "153de161d5a272e3740dd862a3b7530b4240bcf8"
+ },
+ "recipe": {
+ "sha256": "1dihyh7vqcp7kvfic613k7v33czr93hz04d635awrsyzgy8savhl",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20141217.1934",
+ "deps": [
+ "evil",
+ "iedit"
+ ]
+ },
+ "unicode-enbox": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "rolandwalker",
+ "repo": "unicode-enbox",
+ "sha256": "0936dqxyp72if9wvn2dcci670yp1gqrmpnll9xq00skp85yq9zs5",
+ "rev": "77074fac1994a4236f111d6a1d0cf79ea3fca151"
+ },
+ "recipe": {
+ "sha256": "1phb2qq3pg6z6bl96kl9yfq4jxhgardjpaa4lhgqbxymmqdm7gzv",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140508.1541",
+ "deps": [
+ "list-utils",
+ "pcache",
+ "persistent-soft",
+ "string-utils",
+ "ucs-utils"
+ ]
+ },
+ "arduino-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "bookest",
+ "repo": "arduino-mode",
+ "sha256": "0i9xf74yfmg1a5vdf3nxd35865qhvrdw8vnfhnfx5cdc56v6rwa3",
+ "rev": "bb89ac81e9b206a6da5653fd108a315ad3e8a8d7"
+ },
+ "recipe": {
+ "sha256": "1lpsjpc7par12zsmg9sf4r1h039kxa4n68anjr3mhpp3d6rapjcx",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151018.135",
+ "deps": []
+ },
+ "flycheck-pos-tip": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "flycheck",
+ "repo": "flycheck-pos-tip",
+ "sha256": "17xfh8kbf1915mq4wli32nrvk7jcg67kq698cc35g8glkkxjm64v",
+ "rev": "6209525c675832ae4026d1458cb14fdd9e4b7527"
+ },
+ "recipe": {
+ "sha256": "09i2jmwj8b915fhyczwdb1j7c551ggbva33avis77ga1s9v3nsf9",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151130.258",
+ "deps": [
+ "dash",
+ "flycheck",
+ "pos-tip"
+ ]
+ },
+ "subatomic256-theme": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "d11wtq",
+ "repo": "subatomic256",
+ "sha256": "1w7mimyqc25phlww20l49wlafnxp6c7dwibvphg3vwl61g0llpq8",
+ "rev": "326177d6f99cd2b1d30df695e67ee3bc441cd96f"
+ },
+ "recipe": {
+ "sha256": "1whjlkpkkirpnvvjryhlpzwphr1syz5zfyg4pb66i0db03hxwwcy",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20130620.2110",
+ "deps": []
+ },
+ "evil-paredit": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "roman",
+ "repo": "evil-paredit",
+ "sha256": "0b08y4spapl4g2292j3l4cr84gjlvm3rpma3gqld4yb1sxd7v78p",
+ "rev": "e058fbdcf9dbf7ad6cc77f0172d7517ef233d55f"
+ },
+ "recipe": {
+ "sha256": "0xvxxa3gjgsrv10a61y0591bn3gj8v1ff2wck8s0svwfl076gyfy",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150413.1548",
+ "deps": [
+ "evil",
+ "paredit"
+ ]
+ },
+ "ac-dcd": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "atilaneves",
+ "repo": "ac-dcd",
+ "sha256": "1dydjkilvyzxl7wwy3afmn1cjf8jv0385im4nhn8c3xr8iiil7yv",
+ "rev": "8fe1a48fcfeeafa1970e5041b0e71a4fcd10f336"
+ },
+ "recipe": {
+ "sha256": "086jp9c6bilc361n1hscza3pbhgvqlq944z7cil2jm1kicsf8s7r",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150702.924",
+ "deps": [
+ "auto-complete",
+ "flycheck-dmd-dub"
+ ]
+ },
+ "es-windows": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "sabof",
+ "repo": "es-windows",
+ "sha256": "14rsifcx2kwdmwq9zh41fkb848l0f4igp5v9pk3x4jd2yw9gay7m",
+ "rev": "239e30408cb1adb4bc8bd63e2df34711fa910b4f"
+ },
+ "recipe": {
+ "sha256": "112ngkan0hv3y7m71479f46x5gwdmf0vhbqrzs5kcjwlacqlrahx",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140211.304",
+ "deps": [
+ "cl-lib",
+ "emacs"
+ ]
+ },
+ "find-by-pinyin-dired": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "redguardtoo",
+ "repo": "find-by-pinyin-dired",
+ "sha256": "18a4ydp30ycx5w80j3xgghclzmzbvrkl2awxixy4aj68nmljk480",
+ "rev": "d049cc7f507a6f801c497a3d401b260300874f58"
+ },
+ "recipe": {
+ "sha256": "150hvih3mdd1dqffgdcv3nn4qhy86s4lhjkfq0cfzgngfwif8qqq",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150202.416",
+ "deps": []
+ },
+ "metascript-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "metascript",
+ "repo": "metascript-mode",
+ "sha256": "1rascpmv17dksyn9y0llmjb8r4484x5ax54w6r83k1x7ha1iacx5",
+ "rev": "edb361c7b0e5de231e5334a17b90652fb1df78f9"
+ },
+ "recipe": {
+ "sha256": "1kgs4ki0s6bxx2ri6zxmsy2b2w56gnr9hjkr6302wcmp3qy7clwn",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150708.1957",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "helm-helm-commands": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "vapniks",
+ "repo": "helm-helm-commands",
+ "sha256": "05ksfx54ar2j4mypzwh0gfir8r26s4f1i4xw319q5pa1y2100cpn",
+ "rev": "3a05aa19c976501343ad9ae630a36810921a85f6"
+ },
+ "recipe": {
+ "sha256": "0dq9p37i5rrp2nb1vhqzzqfmdg11va2xr3yz8hdxpwykm1ldqdcf",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20130902.1248",
+ "deps": [
+ "helm"
+ ]
+ },
+ "smart-mode-line": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "Malabarba",
+ "repo": "smart-mode-line",
+ "sha256": "17m8nqp9xarrsr68n6c9jqzv2jzsyq0m1hqqhlj9j363x6y8790y",
+ "rev": "4b3265ec3e442bd8c596b99cfd4ec73424c395ec"
+ },
+ "recipe": {
+ "sha256": "0qmhzlkc6mfqyaw4jaw6195b8sw0wg9pfjcijb4p0mlywf5mh5q6",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151201.837",
+ "deps": [
+ "emacs",
+ "rich-minority"
+ ]
+ },
+ "apu": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/apu.el",
+ "sha256": "1g70yzfsn4wg077biwf2ja6gj1qv728s2map3a1njy664ga3r1k4"
+ },
+ "recipe": {
+ "sha256": "0399rmjwcs7fykj10s9m0lm2wb1cr2bzw2bkgm5rp4n3va0rzaa2",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150710.2151",
+ "deps": []
+ },
+ "live-py-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "donkirkby",
+ "repo": "live-py-plugin",
+ "sha256": "02jvfn0g7r07kvb9m97kqa22j5nsgxbnp6r5vsq3d9qjsi459yd3",
+ "rev": "35dda7dadba37ffbcc14d3b0a2711ca4967f1db5"
+ },
+ "recipe": {
+ "sha256": "0yn1a0gf9yn068xifpv8p77d917mnalc56pll800zlpsdk8ljicq",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151108.1107",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "virtualenv": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "aculich",
+ "repo": "virtualenv.el",
+ "sha256": "0rd7hyv66278dj32yva5q9z1749y84c6fwl2iqrns512j1l4kl8q",
+ "rev": "276c0f4d6493b402dc4d22ecdf17b2b072e911b3"
+ },
+ "recipe": {
+ "sha256": "1djqzzlbwsp9xyjqjbjwdck73wzikbpq19irzamybk90nc98wirl",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140220.1701",
+ "deps": []
+ },
+ "pos-tip": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "pitkali",
+ "repo": "pos-tip",
+ "sha256": "168hl76rhj6f5ncmrij4rd3z55228h6kb23384h2phsjw0avgf23",
+ "rev": "051e08fec5cf30b7574bdf439f79fef7d42d689d"
+ },
+ "recipe": {
+ "sha256": "13qjz112qlrnq34lr70087gshzq8m44knfl6694hfprzjgix84vh",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150318.1013",
+ "deps": []
+ },
+ "empos": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "dimalik",
+ "repo": "empos",
+ "sha256": "0bm0cxnv7g2dzfvfhkyy16kzn6shvy9gzypiqyjj42ng54xmhs0n",
+ "rev": "7b99ad30e56937adb7e6349777e5a2045597d564"
+ },
+ "recipe": {
+ "sha256": "0wbrszl9rq4is0ymxq9lxpqzlfg93gljh6almjy0hp3cs7pkzyl4",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151011.1416",
+ "deps": []
+ },
+ "helm-gitlab": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "nlamirault",
+ "repo": "emacs-gitlab",
+ "sha256": "07i4j9yl1yag70sl89n7v4yg4jvh5mrifhrf1xswlb29by6najdx",
+ "rev": "78deece7f314f9652b50117605e93be9f8c860f4"
+ },
+ "recipe": {
+ "sha256": "010ihx3yddhb8j3jqcssc49qnf3i7xlz0s380mpgrdxgz6yahsmd",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150604.233",
+ "deps": [
+ "dash",
+ "gitlab",
+ "helm",
+ "s"
+ ]
+ },
+ "smart-shift": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "hbin",
+ "repo": "smart-shift",
+ "sha256": "0azhfffm1bkgjx4i3p9f6x2gmw8kc3fafzqj4vxxdibhn0nizqk8",
+ "rev": "a26ab2b240137e62ec4bce1698ed9c5f7b6d13ae"
+ },
+ "recipe": {
+ "sha256": "0azahlflnh6sk081k5dcqal6nmwkjnj4dq8pv8ckwf8684zp23d3",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150203.125",
+ "deps": []
+ },
+ "jabber": {
+ "fetch": {
+ "tag": "fetchgit",
+ "url": "git://git.code.sf.net/p/emacs-jabber/git",
+ "sha256": "1a0f7c2154f863dbefc732a2057d0f7416cb4cd5764bdfa01cbf9e221a3abcb3",
+ "rev": "d5bfa1c62e6474a997e73a836524fdd322c0af44"
+ },
+ "recipe": {
+ "sha256": "1g5pc80n3cd5pzs3hmpbnmxbldwakd72pdn3vvb0h26j9v073pa8",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151025.1804",
+ "deps": [
+ "fsm"
+ ]
+ },
+ "magit-gerrit": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "terranpro",
+ "repo": "magit-gerrit",
+ "sha256": "0qhrh7z5snbmxfcrcj1v00z7vkmxqwgxmx4hfi0bvs3lfkcdrfxv",
+ "rev": "c4e3da19d55229feef8df2e062104ecc9fd4290d"
+ },
+ "recipe": {
+ "sha256": "1iwvg10ly6dlf8llz9f8d4qfdbvd3s28wf48qgn1wjlxpka6zrd4",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151202.1818",
+ "deps": [
+ "magit"
+ ]
+ },
+ "bubbleberry-theme": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "jasonm23",
+ "repo": "emacs-bubbleberry-theme",
+ "sha256": "1aha8rzilv4k300rr4l9qjfygydfwllkbw17lhm8jz0kh9w6bd28",
+ "rev": "22e9adf4586414024e4592972022ec297321b320"
+ },
+ "recipe": {
+ "sha256": "056pcr9ynsl34wqa2pw6sh4bdl5kpp1r0pl1vvw15p4866l9bdz3",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20141017.444",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "org-pomodoro": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "lolownia",
+ "repo": "org-pomodoro",
+ "sha256": "015idpk66835jdg1sbvpksyr07xk4vn17z8cng2qw87fss688ihb",
+ "rev": "95e2b1f555359a6096a19634814e1d93b2072f25"
+ },
+ "recipe": {
+ "sha256": "1vdi07hrhniyhhvg0hcr5mlixy6bjynvwm89z2lvfyvnnxpx0r27",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151217.753",
+ "deps": [
+ "alert",
+ "cl-lib"
+ ]
+ },
+ "buster-snippets": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "magnars",
+ "repo": "buster-snippets.el",
+ "sha256": "11djqlw4qf3qs2rwiz7dn5q2zw5i8sykwdf4hg4awsgv8g0bbxn6",
+ "rev": "bb8769dae132659858e74d52f3f4e8790399423a"
+ },
+ "recipe": {
+ "sha256": "0k36c2k7wwix10rgmjxipc77fkn9jahjyvl191af6w41wla47x4x",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151125.410",
+ "deps": [
+ "yasnippet"
+ ]
+ },
+ "monokai-theme": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "oneKelvinSmith",
+ "repo": "monokai-emacs",
+ "sha256": "09vm2mq89vnlnl13qra511inc1dsall3qd2sxjg0g536fk3y9v13",
+ "rev": "451a46930b9c5420d526505abe8f157a7292644e"
+ },
+ "recipe": {
+ "sha256": "13mv4vgsmdbf3v748lqi7b42hvr3yp86n97rb6792bcgd3kbdx7a",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151210.507",
+ "deps": []
+ },
+ "cloud-to-butt-erc": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "leathekd",
+ "repo": "cloud-to-butt-erc",
+ "sha256": "07kvnb6p35swkyj92c4wymsqq4r2885wdpqhv7nhicvi6n658kpf",
+ "rev": "6710c03d1bc91736435cbfe845924940cae34e5c"
+ },
+ "recipe": {
+ "sha256": "061mmw39dq8sqzi2589lf7svy15n2iyiwbfiram48r2yhma5dd0f",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20130627.1808",
+ "deps": []
+ },
+ "kurecolor": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "emacsfodder",
+ "repo": "kurecolor",
+ "sha256": "0da4y9pf6vq0i6w7bmvrszg9bji3ylhr44hmyrmxvah28pigb2fz",
+ "rev": "c8c72cea04e51f57701d2dd9be7dba5f3412e2f3"
+ },
+ "recipe": {
+ "sha256": "0q0q0dfv376h7j3sgwxqwfpxy1qjbvb6i5clsxz9xp4ly89w4d4f",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150423.2322",
+ "deps": [
+ "emacs",
+ "s"
+ ]
+ },
+ "dropbox": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "pavpanchekha",
+ "repo": "dropbox.el",
+ "sha256": "1s4cz5s0mw733ak9ps62fs150y3psqmb6v5s6s88jjfsi0r03c0s",
+ "rev": "fb71a2787030f911b569426596c081a89241056e"
+ },
+ "recipe": {
+ "sha256": "0ak6g2d2sq026ml6cmn6v1qz7sczkplgv2j9zq9zgzafihyyzs5f",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20130513.1737",
+ "deps": [
+ "json",
+ "oauth"
+ ]
+ },
+ "helm-rails": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "asok",
+ "repo": "helm-rails",
+ "sha256": "1a26r21jvgzk21vh3mf29s1dhvvv70jh860zaq9ihrpfrrl91158",
+ "rev": "31d79cd0feca11cbb1aa532a8d2112ec794de4f0"
+ },
+ "recipe": {
+ "sha256": "1iihfsmnkpfp08pldghf3w5k8v5dlmy5ns0l4niwdwp5w8lyjcd6",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20130424.1019",
+ "deps": [
+ "helm",
+ "inflections"
+ ]
+ },
+ "flymake-haml": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "purcell",
+ "repo": "flymake-haml",
+ "sha256": "08rcsg76qdq2l6z8q339yw770kv1q657ywqvq6a20pxxz2158a8l",
+ "rev": "3117d94ecad908710502e8def42dbae5748e9c1d"
+ },
+ "recipe": {
+ "sha256": "0dmdhh12h4xrx6mc0qrwavngk2sx0l4pfqkjjyavabsgcs9wlgp1",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20130324.551",
+ "deps": [
+ "flymake-easy"
+ ]
+ },
+ "highlight-indentation": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "antonj",
+ "repo": "Highlight-Indentation-for-Emacs",
+ "sha256": "00l54k75qk24a0znzl4ij3s3nrnr2wy9ha3za8apphzlm98m907k",
+ "rev": "cd6d8168ccb04c6c0394f42e9512c58f23c01689"
+ },
+ "recipe": {
+ "sha256": "0iblrrbssjwfn71n8xxjcl98pjv1qw1igf3hlz6mh8740fsca3d6",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150307.408",
+ "deps": []
+ },
+ "runtests": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "sunesimonsen",
+ "repo": "emacs-runtests",
+ "sha256": "18w6gkpxp0g7rzvnrk8vvr267y768dfik447ssq8jpz3jlr5jnq6",
+ "rev": "ed90249f24cc48290018df48b9b9b7172440be3e"
+ },
+ "recipe": {
+ "sha256": "0m9rqjb5c0yqr2wv5dsdiba21knr63b5pxsqgbkbybi15zgxcicb",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150807.331",
+ "deps": []
+ },
+ "monroe": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "sanel",
+ "repo": "monroe",
+ "sha256": "1z1gyknxscvk2qpfcrgzymf9w5m8jcnj525q852b8s6yf5fnffmh",
+ "rev": "7f42a0139a8030407da736ddb0f67132634b70c0"
+ },
+ "recipe": {
+ "sha256": "04rhninxppvilk7s90g0wwa0g9vfcg7mk8mrb2m2c7cb9vj6wyig",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20141111.307",
+ "deps": []
+ },
+ "helm-ctest": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "danlamanna",
+ "repo": "helm-ctest",
+ "sha256": "18d96alik66nw3rkk7k8740b4rx2bnh3pwn27ahpgj5yf51wm0ry",
+ "rev": "973a138aa8ff4c6a1cd798779e8d0dd80522354d"
+ },
+ "recipe": {
+ "sha256": "1mphc9fsclbw19p5i1xf52qg6ljljbajvbcsl95hisrnvhg89vpm",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150823.608",
+ "deps": [
+ "dash",
+ "helm-core",
+ "s"
+ ]
+ },
+ "with-namespace": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "Wilfred",
+ "repo": "with-namespace.el",
+ "sha256": "1c7g8f3jr7bb0xxprammfg433gd63in5iiiaq8rjmc94h6hdcys3",
+ "rev": "8ac52da3a09cf46087720e30cf730d00f140cde6"
+ },
+ "recipe": {
+ "sha256": "1199k1xvvv7ald6ywrh2sfpw2v42ckpcsw6mcj617bg3b5m7770i",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20130407.1322",
+ "deps": [
+ "dash",
+ "loop"
+ ]
+ },
+ "flymake-google-cpplint": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "senda-akiha",
+ "repo": "flymake-google-cpplint",
+ "sha256": "0zldhlvxmk0xcjmj4ns48pp4h3bvijrzs1md69ya7m3dmsbayfrc",
+ "rev": "905d32e84a27f18a78bec455ca930ab1ff9ae31e"
+ },
+ "recipe": {
+ "sha256": "0q7v70xbprh03f1yabq216q4q82a58s2c1ykr6ig49cg1jdgzkf3",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140205.725",
+ "deps": [
+ "flymake-easy"
+ ]
+ },
+ "names": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "Malabarba",
+ "repo": "names",
+ "sha256": "0m82g27gwf9mvicivmcilqghz5b24ijmnw0jf0wl2skfbbg0sydh",
+ "rev": "00862c57ae6363ba86d1e5ce138929a1b6d5c7e6"
+ },
+ "recipe": {
+ "sha256": "1q784606jlakw1z6sx2g2x8hz8c8arywrm2r626wj0v105v510vg",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151201.604",
+ "deps": [
+ "cl-lib",
+ "emacs"
+ ]
+ },
+ "worf": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "abo-abo",
+ "repo": "worf",
+ "sha256": "0flwch8hsfz1kkb0hg68s71szbvmh7mqih8hj0kwfjdb7alsah8r",
+ "rev": "61a6fc392034c2a588c44fef0a514032cf660e68"
+ },
+ "recipe": {
+ "sha256": "1fkb2ddl684dijsb0cqgmfbg1nz4xv43rb7g5rah05rchy5sgkpi",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151116.2040",
+ "deps": [
+ "ace-link",
+ "helm",
+ "hydra"
+ ]
+ },
+ "ztree": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "fourier",
+ "repo": "ztree",
+ "sha256": "1m6s02jvd48hx8i9apqlscrzqlqa46rk1zf1ix28c6xg0xpri00i",
+ "rev": "3d70aefd95404a42e21e53d7139c0b1fba47087b"
+ },
+ "recipe": {
+ "sha256": "1fk5xz8qq3azc66f954x5qvym94xnv4fg6wy83ihdfwycsas7j20",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151215.1412",
+ "deps": []
+ },
+ "log4j-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "emacsorphanage",
+ "repo": "log4j-mode",
+ "sha256": "14dmmjdmcc0zag8i947n59ihjc2df2l44f7issf66767ym3839kk",
+ "rev": "ec3de92cfe60dd3d0de613e9062476196dea0faf"
+ },
+ "recipe": {
+ "sha256": "0axr0x8mdxif0xbvs83mxc3gqgs84jb4b9la9n62i3lldckghwmg",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20101016.1022",
+ "deps": []
+ },
+ "discover-clj-refactor": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "maio",
+ "repo": "discover-clj-refactor.el",
+ "sha256": "0l2g58f55p8zmzv2q2hf163ggm9p0wk8hg93wlkyldrgyb94dgf4",
+ "rev": "3fbd5c1162739e606d7cf5d4f5d7426547d99647"
+ },
+ "recipe": {
+ "sha256": "08bz60fxcgzab77690mmv0f7wdxcpygmasazcss427k37z9ysm7r",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150328.959",
+ "deps": [
+ "clj-refactor",
+ "discover"
+ ]
+ },
+ "faceup": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "Lindydancer",
+ "repo": "faceup",
+ "sha256": "0sjmjydapfnv979dx8dwiz67wffamiaf41s4skkwa0wn2h4p6wja",
+ "rev": "70fa6be83768adf78f20425d0d76fe809dc44d79"
+ },
+ "recipe": {
+ "sha256": "0l41xp38iji55dv20lk7r187ywcz8s1g2jmwbjwkspzmcf763xvx",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150215.1548",
+ "deps": []
+ },
+ "repl-toggle": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "tomterl",
+ "repo": "repl-toggle",
+ "sha256": "0lx9zbn9zvr50i8x5vpd5cr22c2v27ln2v89dmn0shcdx54m454l",
+ "rev": "903791e3e34f67bca64c47dc2b91e612d3bad09c"
+ },
+ "recipe": {
+ "sha256": "1jyaksxgyygfv1wn9c6y8sykb4hicwgs9n5vrdikd2i0iix29zpb",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140501.731",
+ "deps": [
+ "fullframe"
+ ]
+ },
+ "gnus-x-gm-raw": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "aki2o",
+ "repo": "gnus-x-gm-raw",
+ "sha256": "1i3f67x2l9l5c5agspbkxr2mmh3rpq3009d8yzh6r1lih0b4hril",
+ "rev": "978bdfcecc8844465b71641c2e909fcdc66b22be"
+ },
+ "recipe": {
+ "sha256": "1a5iccghzqmcndql2bppvr48535sf6jbvc83iypr1031z1b5k4wg",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140610.231",
+ "deps": [
+ "log4e",
+ "yaxception"
+ ]
+ },
+ "noxml-fold": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "paddymcall",
+ "repo": "noXML-fold",
+ "sha256": "0jahr1380919p272srym1pp16ifdz69fn1m45ppglm54q4a741d8",
+ "rev": "feecc06b1136c1ddbabcdc37287f1ef26f1282fc"
+ },
+ "recipe": {
+ "sha256": "11dninxxwhflf2qrmvwmrryspd9j6m95kdlmyx59ykqvw8j0siqc",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151216.1021",
+ "deps": []
+ },
+ "dropdown-list": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/dropdown-list.el",
+ "sha256": "1szy46sk3nvlbb3yzk1s983281kkf507xr3fkclkki3d3x31n08a"
+ },
+ "recipe": {
+ "sha256": "14i9w897gnb3mvnkbzhzij04bgr551r8km310mbrmzzag54w077z",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20120329.1136",
+ "deps": []
+ },
+ "look-dired": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "vapniks",
+ "repo": "look-dired",
+ "sha256": "0w9pbjcp4d2w3qb3nnyzq2d0d9f0pgz5lyzapidxa9z1xcj51ccj",
+ "rev": "5b2afe910a904d13674103f5264c6bcdbb9f9fb2"
+ },
+ "recipe": {
+ "sha256": "0dddx5nxr519wqdgrbglh0pqjl3alg4ddmank42g4llzycy61wsd",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151115.1956",
+ "deps": [
+ "look-mode"
+ ]
+ },
+ "salt-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "beardedprojamz",
+ "repo": "salt-mode",
+ "sha256": "1hl227bmjch0vq7n47mwydkyxnd6wkbz9klk3c4398qmc2qxm5kn",
+ "rev": "c9147cb78680cc34e6fcff3968c336460a9090a4"
+ },
+ "recipe": {
+ "sha256": "1r5k7022vxgj3p5l16y839lff85z0m9hpifq59knij61g9hxadsp",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150904.1313",
+ "deps": [
+ "mmm-jinja2",
+ "mmm-mode",
+ "yaml-mode"
+ ]
+ },
+ "wand": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "cmpitg",
+ "repo": "wand",
+ "sha256": "09gqsssc2sk0vwfg0h4zxq9a779sdjdgvxsw7p6n2k0g4wk0phri",
+ "rev": "da6284ab75c3afa1275420faa9934037052e2967"
+ },
+ "recipe": {
+ "sha256": "052zq5dp800hynd9fb6c645kjb9rp3bpkz41ifazjnx4h4864r0l",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20141104.1845",
+ "deps": [
+ "dash"
+ ]
+ },
+ "docker": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "Silex",
+ "repo": "docker.el",
+ "sha256": "06vb6r1k9ml799h44fm9jhf3amldzhawxnm0lnr501hrmj4bz36x",
+ "rev": "77f646cc10909403a945d188cf9d81abd3bfc2a0"
+ },
+ "recipe": {
+ "sha256": "10x05vli7lg1w3fdbkrl34y4mwbhp2c7nqdwnbdy53i81jisw2lk",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151126.413",
+ "deps": [
+ "dash",
+ "emacs",
+ "magit-popup",
+ "s"
+ ]
+ },
+ "fuzzy-format": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/fuzzy-format.el",
+ "sha256": "1iv0x1cb12kknnxyq2gca7m3c3rg9s4cxz397sazkh1csrn0b2i7"
+ },
+ "recipe": {
+ "sha256": "055b8710yxbi2sdqsqk6jqgnzky4nykv8jgqgwy8q2isgj6q98jb",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20130824.700",
+ "deps": []
+ },
+ "rpn-calc": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "zk-phi",
+ "repo": "rpn-calc",
+ "sha256": "0i5qwbhhdnspgs2y67kkgbk9zq6fx2j509q92mgfzbvjnf54h1r8",
+ "rev": "ed202e9eb59c4ace74b4703174f7bc7fa7e2d594"
+ },
+ "recipe": {
+ "sha256": "04dj2r4035k0c3x6iyjydshzmq381d60pmscp2hg5m7sp7bqn5xs",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150302.734",
+ "deps": [
+ "popup"
+ ]
+ },
+ "auto-package-update": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "rranelli",
+ "repo": "auto-package-update.el",
+ "sha256": "05llpa6g4nb4qswmcn7j3bs7hnmkrkax7hsk7wvklr0wrljyg9a2",
+ "rev": "cdef79f9fc6f8347fdd05664978fb9a948ea0410"
+ },
+ "recipe": {
+ "sha256": "0fdcniq5mrwbc7yvma4088r0frdfvc2ydfil0s003faz0nrjcp8k",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151026.111",
+ "deps": [
+ "dash",
+ "emacs"
+ ]
+ },
+ "map-progress": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "tarsius",
+ "repo": "map-progress",
+ "sha256": "0pd6bh7wrrh59blp86a2jl2vi4qkzx49z0hy7dkc71ccg0wjsgz1",
+ "rev": "3167eb218510953fb97e7d50948a625eaa3f0005"
+ },
+ "recipe": {
+ "sha256": "0zc5vii72gbfwbb35w8m30c8r9zck971hwgcn1a4wjczgn4vkln7",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140310.1632",
+ "deps": []
+ },
+ "eno": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "enoson",
+ "repo": "eno.el",
+ "sha256": "15zqfisfa5yrdnlh0xd6avas0qxj273hy5nvj97bm9h54mamjbs6",
+ "rev": "c379bf040bab10e52aba44140e9aa1b566cdebb6"
+ },
+ "recipe": {
+ "sha256": "0k4n4vw261v3bcxg7pqhxr99vh673l963yjridl0dp1663gcrfpk",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150722.726",
+ "deps": [
+ "dash",
+ "edit-at-point"
+ ]
+ },
+ "helm-idris": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "david-christiansen",
+ "repo": "helm-idris",
+ "sha256": "0128nrhwyzslzl0l7wcjxn3dlx3h1sjmwnbbnp2fj4bjk7chc59q",
+ "rev": "a2f45d6817974f318b55ad9b7fd19d5df132d47e"
+ },
+ "recipe": {
+ "sha256": "1y52675j4kcq14jypxjw1rflxrxwaxyn1n3m613klad55wpfaamf",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20141202.1157",
+ "deps": [
+ "helm",
+ "idris-mode"
+ ]
+ },
+ "omni-log": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "AdrieanKhisbe",
+ "repo": "omni-log.el",
+ "sha256": "1nvgh9wvgswcs3r958b579rsx540xrhlnafc6cmcd63z6yck19w0",
+ "rev": "e5a8ee7d63eb1e745b37ba4e3e71c5ea025e2342"
+ },
+ "recipe": {
+ "sha256": "0c29243zq8r89ax4rxlmb8imag12icnldcb0q0xsnhjccw8lyw1r",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150604.1238",
+ "deps": [
+ "dash",
+ "emacs",
+ "ht",
+ "s"
+ ]
+ },
+ "zombie-trellys-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "david-christiansen",
+ "repo": "zombie-trellys-mode",
+ "sha256": "04m53hzk5n9vxh0gxi8jzpdhsdjlxnvz7hmsisr3bs99v603ha01",
+ "rev": "7f0c45fdda3a44c3b6d1762d116abb1421b8fba2"
+ },
+ "recipe": {
+ "sha256": "19xzvppw7f35s82hm0y7sga8dyjjyy0dxy6vji4hxdpjziz7lggv",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150304.848",
+ "deps": [
+ "cl-lib",
+ "emacs",
+ "haskell-mode"
+ ]
+ },
+ "ob-mongo": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "krisajenkins",
+ "repo": "ob-mongo",
+ "sha256": "0qibnn908a59jyfslsnpjanbm85f8xw9zywsqsh37nv27ncbx0hr",
+ "rev": "7eb5524d9c106945b371f9fbb9f1176f6e6f9b13"
+ },
+ "recipe": {
+ "sha256": "1cgmqsl5dzi8xy3sh5xsfkczl555fpd4q6kgsh9xkn74sz227907",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20130718.932",
+ "deps": [
+ "org"
+ ]
+ },
+ "karma": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "tonini",
+ "repo": "karma.el",
+ "sha256": "1xcs15j555cgp2k4k9vl5sy2lrffbk0ma2fv60hlxwirqyw4jcdy",
+ "rev": "07d5ba0fd669b909efdf02ffd0c1f45e6136edc4"
+ },
+ "recipe": {
+ "sha256": "19wl7js7wmw7jv2q3l4r5zl718lhy2a0jhl79k57ihwhxdc58fwc",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150120.2358",
+ "deps": [
+ "emacs",
+ "pkg-info"
+ ]
+ },
+ "jg-quicknav": {
+ "fetch": {
+ "tag": "fetchgit",
+ "url": "https://github.com/jeffgran/jg-quicknav",
+ "sha256": "a7aa00b03d474549a25faec9ae0394f9d1065c05049268dea507409f84c801a1",
+ "rev": "67293fdbbb0c6afe2528ec6c03dc54eaa59a2c98"
+ },
+ "recipe": {
+ "sha256": "1v46ck9imffhrmx6s4c3kbi5g5spf2mn2axy5nfpn7q8sc8bf0s3",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150217.2028",
+ "deps": [
+ "cl-lib",
+ "s"
+ ]
+ },
+ "imenu-anywhere": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "vitoshka",
+ "repo": "imenu-anywhere",
+ "sha256": "1mi45vb3f2ka9xgz5gbgq77nirl4dnrjxkar3d5m3xvax0bicv6i",
+ "rev": "b486c1e80c667504b243a84351cc8751710248e9"
+ },
+ "recipe": {
+ "sha256": "0p93g7ay9n4nhf1qk24mbax0w9sr06xd2kjmrz00gbg75sr9r2s8",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151030.1327",
+ "deps": [
+ "cl-lib"
+ ]
+ },
+ "js3-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "thomblake",
+ "repo": "js3-mode",
+ "sha256": "137lypg6jwsisn2g5h0wiqh57icj46zv3albxjf2q1k5isszhy1l",
+ "rev": "d0767afbb4fc8019f9e90e978937036d3bddbc5e"
+ },
+ "recipe": {
+ "sha256": "12s5qf6zfcv4m5kqxvh9b4zgwf433x39a210d957gjjp5mywbb1r",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150902.1149",
+ "deps": []
+ },
+ "scratch": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "ieure",
+ "repo": "scratch-el",
+ "sha256": "0ykhr24vpx3byn2n346nqqvmwcg34hk22s3lpdx7lpnkrn5z41aq",
+ "rev": "54e31e81cd239e1fd1b3c6a20ff426029bf9aaf5"
+ },
+ "recipe": {
+ "sha256": "1c6vxpd9c24d2flzwgvzqz0wr70xzqqs3f59pp897h0f7j91im5d",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20120830.1228",
+ "deps": []
+ },
+ "tangotango-theme": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "juba",
+ "repo": "color-theme-tangotango",
+ "sha256": "00v2y2gfb44kmzfdbp6f4nmxlwn8gf6y3hvgqzggmlbqb5m8hg8d",
+ "rev": "92a94756080577c0446b2fc7f06d43d7b76b2005"
+ },
+ "recipe": {
+ "sha256": "05cnvyqmh5h5mqys7qs7d9knzxzmi2x0j1avp77x5l5njzzv59s2",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150702.304",
+ "deps": []
+ },
+ "imgur": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "myuhe",
+ "repo": "imgur.el",
+ "sha256": "0nzgfj083im8lc62ifgsh1pmbw0j9wivimjgih7k6ny3jgw834rs",
+ "rev": "ed952eb8f556c6fc0d982e2a689083504558cffb"
+ },
+ "recipe": {
+ "sha256": "0hr2zz7nq65jig2036g5sa8q2lhb42jv40ijikcz8s4f5v3y14i7",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20120307.425",
+ "deps": [
+ "anything"
+ ]
+ },
+ "auto-auto-indent": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "sabof",
+ "repo": "auto-auto-indent",
+ "sha256": "1whbvqylwnxg8d8gn55kcky39rgyc49rakyxlbkplh813lk6lxb7",
+ "rev": "0139378577f936d34b20276af6f022fb457af490"
+ },
+ "recipe": {
+ "sha256": "08s73pnyrmklb660jl5rshncpq31z3m9fl55v7453ch8syp7gzh7",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20131106.1303",
+ "deps": [
+ "cl-lib",
+ "es-lib"
+ ]
+ },
+ "aproject": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "vietor",
+ "repo": "aproject",
+ "sha256": "1wyz8jvdy4m0cn75mm3zvxagm2gl10q51479f91gnqv14b4rndfc",
+ "rev": "3c7d23c341862dfd77fd0a64775df12ddb44ab54"
+ },
+ "recipe": {
+ "sha256": "0v3gx2mff2s7knm69y253pm1yr4svy8w00pqbn1chrvymb62jhp2",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150605.406",
+ "deps": []
+ },
+ "helm-projectile": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "bbatsov",
+ "repo": "projectile",
+ "sha256": "01mwciy9bacx5vkxckp0hsxx0s00qss48kkcc2rhlypdcmmawvn7",
+ "rev": "05058b1c73799b07003ad0978f5ba9a231783be4"
+ },
+ "recipe": {
+ "sha256": "0s7la43q2v2h2s6lykxw5ag8if8d931jhw5k716b26ihzl1xxbv5",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151217.49",
+ "deps": [
+ "cl-lib",
+ "dash",
+ "helm",
+ "projectile"
+ ]
+ },
+ "ahk-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "ralesi",
+ "repo": "ahk-mode",
+ "sha256": "122as0ssc6xzmxb5hlvhx6dlx6gq2f70xisz0z8pxgm3bpf9h6mx",
+ "rev": "e08a1b467d42b9d5e719c39407908152011b4573"
+ },
+ "recipe": {
+ "sha256": "066l4hsb49wbyv381qgn9k4hn8gxlzi20h3qaim9grngjj5ljbni",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151104.1737",
+ "deps": [
+ "cl-lib",
+ "emacs"
+ ]
+ },
+ "requirejs": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "joeheyming",
+ "repo": "requirejs-emacs",
+ "sha256": "1bfj2zjn3x41jal6c136wnwkgmag27bmrwbfwdylafc7qqk6dflv",
+ "rev": "4ea2a5fcbc76e4cbb6a7461e6f05f019b75865b1"
+ },
+ "recipe": {
+ "sha256": "09z6r9wcag3gj075wq215zcslyknl1izap595rn48xvizxi06c6k",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151204.119",
+ "deps": [
+ "cl-lib",
+ "js2-mode",
+ "popup",
+ "s",
+ "yasnippet"
+ ]
+ },
+ "json-rpc": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "skeeto",
+ "repo": "elisp-json-rpc",
+ "sha256": "0xgrb0zfxyfmfnvx1l7ca99lzl6f2qyal798rcra45167c0j0vbb",
+ "rev": "a83189b126d8d3d7a856008a5b6ad267b2fcc126"
+ },
+ "recipe": {
+ "sha256": "1v1pfmm9g18p6kgn27q1m1bjgwbzvwfm0jbsxp8gdsssaygky71k",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150830.1601",
+ "deps": [
+ "cl-lib",
+ "emacs"
+ ]
+ },
+ "gnus-alias": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "hexmode",
+ "repo": "gnus-alias",
+ "sha256": "1i278npayv3kfxxd1ypi9n83q5l402sbc1zkm11pf8g006ifqsp4",
+ "rev": "9447d3ccb4c0e75d0468899cccff7aa249657bac"
+ },
+ "recipe": {
+ "sha256": "0mbq9v8fiqqyldpb66v9bc777mzxywaq2dabivabxjg6554s8chf",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150315.1942",
+ "deps": []
+ },
+ "pastehub": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "kiyoka",
+ "repo": "pastehub",
+ "sha256": "0m6qjsq6qfwwszm95lj8c58l75vbmx9r5hm9bfywyympfgy0fa1n",
+ "rev": "37b045c67659c078f1517d0fbd5282dab58dca23"
+ },
+ "recipe": {
+ "sha256": "1slvqn5ay6gkbi0ai1gy1wmc02h4g3n6srrh4fqn72y7b9nv5i0v",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140615.120",
+ "deps": []
+ },
+ "nim-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "nim-lang",
+ "repo": "nim-mode",
+ "sha256": "00s8c4a5qnfm0h6zx26f1m0syq7gii7n45nl83y71yaccdw0syls",
+ "rev": "1f0a6cdd39460c1d59da79aa8d4b132753448c56"
+ },
+ "recipe": {
+ "sha256": "1kzn3kkkj7jzs7fqhvib196sl3vp7kbhb4icqzmvvmv366lkaib6",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151125.225",
+ "deps": [
+ "emacs",
+ "epc"
+ ]
+ },
+ "elfeed-org": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "remyhonig",
+ "repo": "elfeed-org",
+ "sha256": "0cp8sbhym83db88ii7gyab6iqxppinjlrkzb9627gq7xgb5mqj5j",
+ "rev": "e5206bc983d04c68310181da83147908682de295"
+ },
+ "recipe": {
+ "sha256": "0xf2r5ca3gnx2cv9f8rr4s1hds2ggqsbllvfr229gznkcqjnglik",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151003.531",
+ "deps": [
+ "dash",
+ "elfeed",
+ "org",
+ "s"
+ ]
+ },
+ "watch-buffer": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "mjsteger",
+ "repo": "watch-buffer",
+ "sha256": "0i84ndnxma8s07kf5ixqyhv5f89mzc4iymgazj5inmxhvbc7s7r2",
+ "rev": "761fd7252e6d7bf5148283c2a7ee935f087d9427"
+ },
+ "recipe": {
+ "sha256": "18sxgihmqmkrbgs66qgnrsjqbp90l93531hns31fbnif10bkx2j5",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20120331.1544",
+ "deps": []
+ },
+ "langtool": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "mhayashi1120",
+ "repo": "Emacs-langtool",
+ "sha256": "16wmc89jnn7qqcqw6702c9ccmwpb8pkxasa17ikmmmnggmg50lfh",
+ "rev": "443b3804f9e33e6d96ee8e15ddede7f152ece378"
+ },
+ "recipe": {
+ "sha256": "1xq70jyhzg0qmvialy015crbdk9rdibhwpl36khab9hi2999wxyw",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150917.613",
+ "deps": [
+ "cl-lib"
+ ]
+ },
+ "toml-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "dryman",
+ "repo": "toml-mode.el",
+ "sha256": "1w9vkh6c4g80zykcy77k3r0bdc99mq8yh58bqkyd6gsr7pnp16gj",
+ "rev": "afd98423773c2b9578fc5b2b46a43b5f5ecf7e6b"
+ },
+ "recipe": {
+ "sha256": "0yghf2ixl3dkcaxnkr4qzxfa9k1rrac7w5qpw1jx2bvic0cfs40l",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150818.320",
+ "deps": []
+ },
+ "ac-skk": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "myuhe",
+ "repo": "ac-skk.el",
+ "sha256": "1nvz0jfz4x99xc5ywspl8fdpyqns5zd0j7i4bwzlwplmy3qakjwm",
+ "rev": "d25a265930430d080329789fb253d786c01dfa24"
+ },
+ "recipe": {
+ "sha256": "0iycyfgv8v15ygngvyx66m3w3sv8p9h6q6j1hbpzwd8azl8fzj5z",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20141229.1919",
+ "deps": [
+ "auto-complete",
+ "cl-lib",
+ "ddskk",
+ "tinysegmenter"
+ ]
+ },
+ "gnus-spotlight": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/gnus-spotlight.el",
+ "sha256": "1r6bck1hsvk39ccri1h128jj8zd0fh9bsrlp8ijb0v9f6x3cysw4"
+ },
+ "recipe": {
+ "sha256": "065jcix6a4mxwq8wc8gkr0x9lxmn6hlvf0rqmhi8hb840km1syjx",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20130901.935",
+ "deps": []
+ },
+ "rbt": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "joeheyming",
+ "repo": "rbt.el",
+ "sha256": "0ij2gqhg714ah812rhf1yg2n7ah1v4d5yldn1rixrzfcdng10mpi",
+ "rev": "47cf236c732e9c5f468fb24c6a1c2db69a133797"
+ },
+ "recipe": {
+ "sha256": "1mrb6v8zybvhh242vvq0kdvg6cvws7gabfhcydrw5g2njhyqkygm",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151030.2255",
+ "deps": [
+ "popup"
+ ]
+ },
+ "uzumaki": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "geyslan",
+ "repo": "uzumaki",
+ "sha256": "0fx18m688wfflbzwv8h3051439fwql69v1ip5q6xn958rdq4pi3x",
+ "rev": "afae141588ef9407ff86ce1ae9a0f1860843c4a4"
+ },
+ "recipe": {
+ "sha256": "1fvhzz2qpyc819rjvzyf42jmb70hlg7a9ybqwi81w7rydpabg61q",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150119.1906",
+ "deps": [
+ "cl-lib"
+ ]
+ },
+ "eredis": {
+ "fetch": {
+ "tag": "fetchsvn",
+ "url": "http://eredis.googlecode.com/svn/trunk/",
+ "sha256": "0cdyhklmsv0xfcq97c3wqh8scs6910jzvvp04w0jxlayd1dbzx49",
+ "rev": "28"
+ },
+ "recipe": {
+ "sha256": "1j0y4h97pqsw6k18w6r3rza3ql04ag3cixyndji7i1smbfsh4v95",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20120808.2207",
+ "deps": []
+ },
+ "creole-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "nicferrier",
+ "repo": "creole-mode",
+ "sha256": "0japww5x89vd1ahjm2bc3biz6wxv94vvqq5fyyzkqsblgk5bys0h",
+ "rev": "b5e79b2ec5f19fb5aacf689b5febc3e0b61515c4"
+ },
+ "recipe": {
+ "sha256": "1lj9a0bgn7lmc2wyjzzvmpaz1f1spj02l51ki2wydjbfhxq61k0s",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20130721.1950",
+ "deps": []
+ },
+ "fvwm-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "theBlackDragon",
+ "repo": "fvwm-mode",
+ "sha256": "0w2kqmx38ji5273mzhn9sp4r6vn7jfwb5qpsf2w8d46avpf8rj5i",
+ "rev": "cfd14546b6905806e0f2ad3df58b08de2401be3c"
+ },
+ "recipe": {
+ "sha256": "07y32cnp4qfhncp7s24gmlxljdrj5miicinfaf4gc7hihb4bkrkb",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20141105.2236",
+ "deps": []
+ },
+ "factlog": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "tkf",
+ "repo": "factlog",
+ "sha256": "19zm9my7fl1r3q48axjv2f8x9hcjk6qah4y4r92b90bzfmcdc30y",
+ "rev": "6503d77ea882c995b051d22e72db336fb28770fc"
+ },
+ "recipe": {
+ "sha256": "163482vfpa52b5ya5xps4qnclbaql1x0q54gqdwwmm04as8qbfz7",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20130209.1940",
+ "deps": [
+ "deferred"
+ ]
+ },
+ "erc-terminal-notifier": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "julienXX",
+ "repo": "erc-terminal-notifier.el",
+ "sha256": "0cfqbqskh260zfq1lx1s8jz2351w2ij9m73rqim16fy7zr0s0670",
+ "rev": "a3dacb935845e4a20031212bbd82b2170f68d2a8"
+ },
+ "recipe": {
+ "sha256": "0vrxkg62qr3ki8n9mdn02sdni5fkj79fpkn0drx0a4kqp0nrrj7c",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140115.424",
+ "deps": []
+ },
+ "calmer-forest-theme": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "caldwell",
+ "repo": "calmer-forest-theme",
+ "sha256": "0n6y4z3qg04qnlsrjysf8ldxl2f2bk7n8crijydwabyy672qxd9h",
+ "rev": "87ba7bae389084d13fe3bc34e0c923017eda6ba0"
+ },
+ "recipe": {
+ "sha256": "0riz5n8fzvxdnzgg650xqc2zwc4xvhwjlrrzls5h0pl5adaxz96p",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20130926.10",
+ "deps": []
+ },
+ "kaesar-file": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "mhayashi1120",
+ "repo": "Emacs-kaesar",
+ "sha256": "1maab8iaf2wcjj02ibl21jlfzmi9gmcl167cgdlwj50wkig74s23",
+ "rev": "11ab63b8e6f1c4ebc5a2e54474095754a39104e5"
+ },
+ "recipe": {
+ "sha256": "0dcizg82maad98mbqqw5lamwz7n2lpai09jsrc66x3wy8k784alc",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150130.1004",
+ "deps": [
+ "kaesar"
+ ]
+ },
+ "purty-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "hackscience",
+ "repo": "purty-mode",
+ "sha256": "0qm2xv762cz196aqs445crqrmsks8hpwzpaykzn0chlvdk0m5cv1",
+ "rev": "8eef77317a3bab07ade212353a50fbd3f20f365a"
+ },
+ "recipe": {
+ "sha256": "1ackqv95sdphbsjwydbc4dmdzwpaj74v329f55zcwa8hn3li9d5m",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20131004.1759",
+ "deps": []
+ },
+ "idea-darkula-theme": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "fourier",
+ "repo": "idea-darkula-theme",
+ "sha256": "0i5cw6wcykirpkgyq5sg8mcpz2pf0fvjscw5n4mqcqgr0mzkxqq1",
+ "rev": "6ee45ec8a97d9afadc4d8f96d838b365c36d5f2d"
+ },
+ "recipe": {
+ "sha256": "0lanhwlhd7pbzjc047vd5sgsmi2bx66gr3inr8y57swgrfw3l8sk",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151210.1310",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "boon": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "jyp",
+ "repo": "boon",
+ "sha256": "1apxgj14hgfpz6hjp3384yjf2zrkv4pcncf2zklijs668igvaskq",
+ "rev": "82458a944e9cf3e4c959e63ebad09312aafe6d2c"
+ },
+ "recipe": {
+ "sha256": "0gryw7x97jd46jgrm93cjagj4p7w93cjc36i2ps9ajf0d8m4gajb",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151213.1533",
+ "deps": [
+ "emacs",
+ "expand-region",
+ "multiple-cursors"
+ ]
+ },
+ "inflections": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "eschulte",
+ "repo": "jump.el",
+ "sha256": "0061hcmj63g13bvacwkmcb5iggwnk27dvb04fz4hihqis6jg01c5",
+ "rev": "56cec33dd98231a95faa26dd4c0612885d923f78"
+ },
+ "recipe": {
+ "sha256": "0f02bhm2a5xiaxnf2c2hlpa4p121xfyyj3c59fy0yldipdxhvw70",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20121016.357",
+ "deps": []
+ },
+ "loccur": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "fourier",
+ "repo": "loccur",
+ "sha256": "1293ihhl1n1vkbp160ha23g46sx7s6wbdyqbbb2ym6300yrl2x10",
+ "rev": "5e2f33943a18c0b1ae984c24c8000bbaed737067"
+ },
+ "recipe": {
+ "sha256": "06pv2i05yzjzal4q21krbnp9rp4bsainxcwvpc98020vsmms0z8h",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150611.1237",
+ "deps": []
+ },
+ "interval-tree": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "Fuco1",
+ "repo": "interval-tree",
+ "sha256": "0fqnn9xhrc9hkaiziafjgg288l6m05416z9kz8l5845fnqsb7pb3",
+ "rev": "301302f480617091cf3ab6989caac385d52543dc"
+ },
+ "recipe": {
+ "sha256": "13zynac3h50x68f1ja72kqdrapjks2zmgqd4g7qwscq92mmh60i9",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20130325.907",
+ "deps": [
+ "dash"
+ ]
+ },
+ "todochiku": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/todochiku.el",
+ "sha256": "0fhlyjl0a3fd25as185j6dmch0wsrf1zc59q29lhjximg9lk3hr5"
+ },
+ "recipe": {
+ "sha256": "1iq08s5ji6hd8as80qxqkbavnjbx0kcmmjjvhjchmvv93vsn1f96",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150112.1454",
+ "deps": []
+ },
+ "wide-column": {
+ "fetch": {
+ "tag": "fetchhg",
+ "url": "https://code.google.com/p/phillord-emacs-packages/",
+ "sha256": "0pq9x73hrp7qwhms7x3dvjfh9imapglba9yd7nkyw68mc0b9wlnl",
+ "rev": "e14e67d6a5b7"
+ },
+ "recipe": {
+ "sha256": "1r9mh7756jgf1hdnprci988z07xxh2jvh8d0c1h5rmxmldlbx8az",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20120814.312",
+ "deps": []
+ },
+ "color-theme-sanityinc-solarized": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "purcell",
+ "repo": "color-theme-sanityinc-solarized",
+ "sha256": "07703v8xyia1vx9s636aaql99i29a4r5v9z0lvaypixgsidshx10",
+ "rev": "14beb86aeb5b17451980f192bad72d7edb17321c"
+ },
+ "recipe": {
+ "sha256": "0xg79hgb893f1nqx6q4q6hp4w6rvgp1aah1v2r3scg2jk057qxkf",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150803.1620",
+ "deps": []
+ },
+ "ido-yes-or-no": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "DarwinAwardWinner",
+ "repo": "ido-yes-or-no",
+ "sha256": "0zqjmi1pbvpby84g1nsrmwcv7w5k0nl3hmkqj0fvhdsmayxqc6j8",
+ "rev": "a9de5731b64f888be38073773c3d72b19c61ed4f"
+ },
+ "recipe": {
+ "sha256": "0glag4yb9xyf1lxxbdhph2nq6s1vg44i6f2z1ii8bkxpambz2ana",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140625.2306",
+ "deps": []
+ },
+ "mode-line-debug": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "tarsius",
+ "repo": "mode-line-debug",
+ "sha256": "1lkw9nnlns6v7r6nx915f85whq1ri4w8lccwyxrvam40hfvq60s1",
+ "rev": "da44422eeb6a1f055b4ec2f822962c5162fce001"
+ },
+ "recipe": {
+ "sha256": "0ppj14bm3rx3xgg4mfxa5zcm2r129jgmsx817wq3h7akjngcbfkd",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150307.712",
+ "deps": []
+ },
+ "helm-mode-manager": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "istib",
+ "repo": "helm-mode-manager",
+ "sha256": "1lbxb4vnnv6s46m90qihkj99qdbdylwncwaijjfd7i2kap2ayawh",
+ "rev": "5d9c3ca4f8205d07ff4e03c4c3e88f596751c1fc"
+ },
+ "recipe": {
+ "sha256": "1w9svq1kyyj8mmljardhbdvykb334nq1y18s956g4rvqyas2ciyd",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151124.338",
+ "deps": [
+ "helm"
+ ]
+ },
+ "python-docstring": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "glyph",
+ "repo": "python-docstring-mode",
+ "sha256": "1a2019172ycw7sdfjrxpyrg41ky9cp09mx30x6cr2qkc1w9pkyrv",
+ "rev": "263879fb339b18ee55d9463697d6f0a73171ee78"
+ },
+ "recipe": {
+ "sha256": "1vi30y71vflsbprp5j4phbp7x1j24vxn9d6sifaddari0g0zxpfw",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150907.1504",
+ "deps": []
+ },
+ "helm-aws": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "istib",
+ "repo": "helm-aws",
+ "sha256": "1bnypr906gfc1fbyrqfsfilsl6wiacrnhr8flpa0gmdjhvmrw7af",
+ "rev": "512fb7edcdc6c65303b9641bfc737f836939e5e9"
+ },
+ "recipe": {
+ "sha256": "0sjgdjpznjxsf6nlv2ah45fw17j8j5apdphd1fp43rjv1lskkgc5",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151124.333",
+ "deps": [
+ "cl-lib",
+ "helm",
+ "s"
+ ]
+ },
+ "ido-springboard": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "jwiegley",
+ "repo": "springboard",
+ "sha256": "14py5amh66jzhqyqjz5pxq0g19vzlmqnrr5wij1ix64xwfr3xdy8",
+ "rev": "d12119d9dd2b0b64f0af0ba82c273326c8c12268"
+ },
+ "recipe": {
+ "sha256": "04jqnag8jiyfbwvc3vd9ikrsmf6cajld7dz2gz9y0zkj1k4gs7zv",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150505.1211",
+ "deps": []
+ },
+ "autotetris-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "skeeto",
+ "repo": "autotetris-mode",
+ "sha256": "14pjsb026mgjf6l3dggy255knr7c1vfmgb6kgafmkzvr96aglcdc",
+ "rev": "7d348d33829bc89ddbd2b4d5cfe5073c3b0cbaaa"
+ },
+ "recipe": {
+ "sha256": "0k4yq4pvrs1zaf9aqxmlb6l2v4k774zbxj4zcx49w3l1h8gwxpbb",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20141114.1046",
+ "deps": [
+ "cl-lib"
+ ]
+ },
+ "pcache": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "sigma",
+ "repo": "pcache",
+ "sha256": "0xbbq8ddlirhvv921nrf7bwazh0i98bk0a9xzyx8iqpyg66vbfa8",
+ "rev": "4b090f46182fd2ed1f44905dc04acc3121bcf622"
+ },
+ "recipe": {
+ "sha256": "1q2wlbc58lyf3dxfs9ppdxvdsp81jmkq874zbd7f39wvc5ckbz0l",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151109.839",
+ "deps": [
+ "eieio"
+ ]
+ },
+ "fuzzy-match": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/fuzzy-match.el",
+ "sha256": "1q2qvw2inizw9r47nff7ikvjzfsx1f8n6yf0j31fxvaawcdf91nq"
+ },
+ "recipe": {
+ "sha256": "0mpy84f2zdyzmipzhs06b8rl2pxiypazf35ls1nc1yj8r16ijrds",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150104.1609",
+ "deps": []
+ },
+ "lolcode-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "bodil",
+ "repo": "lolcode-mode",
+ "sha256": "0pyfgywmmnlz1arvdxwyw96gr6xcg2sp3bqjli8xfcl8i0nww4kb",
+ "rev": "1914f1ba87587ecf5f175eeb2144c28e9f039317"
+ },
+ "recipe": {
+ "sha256": "0dxdqr3z5bw0vcfxhhhc1499vrfk1xqwxshr0kvlhdalpf59rqiw",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20111002.347",
+ "deps": []
+ },
+ "go-playground": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "grafov",
+ "repo": "go-playground",
+ "sha256": "1hpxvp0slqafbxhkashnmfjssb0ccjq67x01b4p7gznf6rwji166",
+ "rev": "6de119fe6d1ecb8db2dad1f70831561695c5da58"
+ },
+ "recipe": {
+ "sha256": "1rabwc80qwkafq833m6a199zfiwwmf0hha89721gc7i0myk9pac6",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151031.1610",
+ "deps": [
+ "emacs",
+ "go-mode",
+ "gotest"
+ ]
+ },
+ "cache": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "nflath",
+ "repo": "cache",
+ "sha256": "1hp6dk84vvgkmj5lzghvqlpq3axwzgx9c7gly2yx6497fgf9jlby",
+ "rev": "7499586b6c8224df9f5c5bc4dec96b008258d580"
+ },
+ "recipe": {
+ "sha256": "0lzj0h23g6alqcmd20ack53p72g9i09dp9x0bp3rdw5izcfkvhh3",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20111019.1800",
+ "deps": []
+ },
+ "flymake-go": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "robert-zaremba",
+ "repo": "flymake-go",
+ "sha256": "03gh0y988pksghmmvb5av2vnlbcsncafvn4nwihsis0bhys8k28q",
+ "rev": "ae83761aa908c1a50ff34af04f00dcc46bca2ce9"
+ },
+ "recipe": {
+ "sha256": "030m67d8g60ljm7ny3jh4vwj3cshypsklgbjpcvh32y109ga1hy1",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150714.233",
+ "deps": []
+ },
+ "reverse-theme": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "syohex",
+ "repo": "emacs-reverse-theme",
+ "sha256": "002ywhjms8ybk7cma2p2i11z3fz6kb0w8mlafysm911rvcq2hg5f",
+ "rev": "8319d0d5342890a3530ffa4daafdb7c35feda1ca"
+ },
+ "recipe": {
+ "sha256": "1lq8nwhf8n5i280v0kqksndm4b3n6x34wnd5fa5i48ljwr5cinih",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20141204.1945",
+ "deps": []
+ },
+ "menu-bar+": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/menu-bar+.el",
+ "sha256": "1vdqhn9srd8ihp0yjjj6lr0zl4n858wri0h3jzxmk3axc688lks7"
+ },
+ "recipe": {
+ "sha256": "181jxjnzdckmvpsdknhm21xwimvsp0qxn8azfn58dz41gl4xcg90",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151206.1120",
+ "deps": []
+ },
+ "perspective": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "nex3",
+ "repo": "perspective-el",
+ "sha256": "1ajmyl3bg01a3gkhay4qibgk9a0r6s8rhf1cc1678w3cm0w6yvmd",
+ "rev": "b6f4f05951d3f0d16a503bf462f136c689ede4df"
+ },
+ "recipe": {
+ "sha256": "150dxcsd0ylvfi9mmfpcki1wd3nl8q9mbszd3dgqfnm40yncklml",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151211.1654",
+ "deps": [
+ "cl-lib"
+ ]
+ },
+ "loop": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "Wilfred",
+ "repo": "loop.el",
+ "sha256": "07f9lp7s5lbnpjca84nys2pvsc4bk0mpaw3x2h8i9vickns2mlwp",
+ "rev": "186332dfd3f63ab79b53c4e26b46ef75713b308e"
+ },
+ "recipe": {
+ "sha256": "0pav16kinzljmzx84vfz63fvi39af4628vk1jw79jk0pyg9rjbar",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20130309.1005",
+ "deps": []
+ },
+ "offlineimap": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "jd",
+ "repo": "offlineimap.el",
+ "sha256": "1bjrgj8klg7ly63vx90jpaih9virn02bhqi16p6z0mw36q1q7ysq",
+ "rev": "cc3e067e6237a1eb7b21c575a41683b1febb47f1"
+ },
+ "recipe": {
+ "sha256": "0nza7lrz7cn06njcblwh9hy3050j8ja4awbxx7jzv6nazjg7201b",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150916.658",
+ "deps": []
+ },
+ "pmdm": {
+ "fetch": {
+ "tag": "fetchhg",
+ "url": "https://bitbucket.com/inigoserna/pmdm.el",
+ "sha256": "0x3s9fj41n6a21la762qm1si9ysv3zj5bbp6ykfskr73sxq6s9ff",
+ "rev": "f50a54774156"
+ },
+ "recipe": {
+ "sha256": "1zmy6cbnqhsbwc5vx30mx45xn88d2186hgrl75ws7vvbl197j03b",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151109.1236",
+ "deps": []
+ },
+ "es-lib": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "sabof",
+ "repo": "es-lib",
+ "sha256": "0jq4yp80wiphlpsc0429rg8n50g8l4lf78q0l3nywz2p93smjy9b",
+ "rev": "753b27363e39c10edc9e4e452bdbbbe4d190df4a"
+ },
+ "recipe": {
+ "sha256": "0mwvgf5385qsp91zsdw75ipif1h90xy277xdmrpwixsxd7abbn0n",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20141111.1230",
+ "deps": [
+ "cl-lib"
+ ]
+ },
+ "php-eldoc": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "sabof",
+ "repo": "php-eldoc",
+ "sha256": "0hm6myvf91f4d2yfc7fs2xky9m8hfnimx1gkfzmn9f5pcc2l2p0i",
+ "rev": "df05064146b884d9081e10657e32dc480f070cfe"
+ },
+ "recipe": {
+ "sha256": "1q5fkl8crqrgxik2mxbkqv10qnqhqrazd66rgfw797s3jcchv58j",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140202.1341",
+ "deps": []
+ },
+ "sqlplus": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/sqlplus.el",
+ "sha256": "0xixdddcrzx6k0s8w9rp6q7b9qjpdb4l888gmcis42yvawb1i53d"
+ },
+ "recipe": {
+ "sha256": "1z9pf36b1581flykis9cjv7pynnp94fm4ijzjy6hvqyj81aikxpz",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20141009.939",
+ "deps": []
+ },
+ "how-many-lines-in-project": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "kaihaosw",
+ "repo": "how-many-lines-in-project",
+ "sha256": "0vygbdjy2dv7n50vrkcnqyswq48sgas0zzjfsac8x5g9vhxjkawj",
+ "rev": "8a37ef885d004fe2ce231bfe05ed4867c6192d9b"
+ },
+ "recipe": {
+ "sha256": "145zmfmsxcbmfh9s0mvxxgfh1d51q66396zc29k1c0hw94ffhkdd",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140806.2342",
+ "deps": []
+ },
+ "helm-fuzzier": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "EphramPerdition",
+ "repo": "helm-fuzzier",
+ "sha256": "1jns0428jmxrm4w9yk67ffbzmgyjgp1v5ii152y0wsb105ary0xp",
+ "rev": "7e8573de1a639c031056f20c677d13760f2cece0"
+ },
+ "recipe": {
+ "sha256": "0qdgf0phs3iz29zj3qjhdgb3i4xvf5r2vi0709pwxx2s6r13pvcc",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151111.838",
+ "deps": [
+ "emacs",
+ "helm"
+ ]
+ },
+ "pt": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "bling",
+ "repo": "pt.el",
+ "sha256": "0bjs9khpvqcdamvizd0symb5xvb05vacahwdax6nl7bsk1hmzvzk",
+ "rev": "d63d1c2765160683a7b496aa265024fc8e768ae0"
+ },
+ "recipe": {
+ "sha256": "0zmz1hcr4ajc2ydvpdxhy1dlhp7hvlkv6y6w1b79ffvq6acdd5mj",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151024.1051",
+ "deps": []
+ },
+ "idle-require": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "nschum",
+ "repo": "idle-require.el",
+ "sha256": "0f8rxvc3dk2hi4x524l18fx73xrxy0qqwbybdma4ca67ck9n6xam",
+ "rev": "33592bb098223b4432d7a35a1d65ab83f47c1ec1"
+ },
+ "recipe": {
+ "sha256": "1lr330bqj4rfh2jgn3562sliani4yw5y4j2hr6cq9cfjjp18qgsj",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20090715.1703",
+ "deps": []
+ },
+ "save-visited-files": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "nflath",
+ "repo": "save-visited-files",
+ "sha256": "00jvl1npc889f3isi7cbdzwvf9x4rq67zgl7br8npxf8jlc2mwhm",
+ "rev": "35f8055a3eb0614721b5b755a3902ba008a4d6fa"
+ },
+ "recipe": {
+ "sha256": "1pmjz27dlp5yrihgsy8q1bwbhkkj3sn7d79ccvljvzxg5jn1grkd",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151021.1243",
+ "deps": []
+ },
+ "colonoscopy-theme": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "emacsfodder",
+ "repo": "emacs-colonoscopy-theme",
+ "sha256": "1k3sd07ffgpfhzg7d9mb1gc3n02zsvilxc30bgiycbjrbjgqq0i6",
+ "rev": "7b873d7e7e091b71bf4fdd23ded19e261a1e3936"
+ },
+ "recipe": {
+ "sha256": "0x9bfr4j0sp41jkgnyjlaxnnjjrc102x6sznn6cgcmqk5qhswl4q",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20141116.101",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "gitignore-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "magit",
+ "repo": "git-modes",
+ "sha256": "1ipr51v7nhbbgxbbz0fp3i78ypp73kyxgc4ni8nnr7yirjhsksfd",
+ "rev": "9d8f6eda6ee97963e4085da8988cad2c0547b8df"
+ },
+ "recipe": {
+ "sha256": "1i98ribmnxr4hwphd95f9hcfm5wfwgdbcxw3g0w17ws7z0ir61mn",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150330.1248",
+ "deps": []
+ },
+ "go-complete": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "vibhavp",
+ "repo": "go-complete",
+ "sha256": "0phy24cra8cza89xrqsx9xrwg98v9qwqx0fzgm1gwlf333zb3hha",
+ "rev": "e39efc356f6e19f17db3f3d2c81f28d38b31a55e"
+ },
+ "recipe": {
+ "sha256": "0dl0ibw145f84kd709r5i2kaw07z1sjzn3dmsiqn8dncspcf2vb4",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151015.428",
+ "deps": [
+ "cl-lib",
+ "go-mode"
+ ]
+ },
+ "ruby-guard": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "cheunghy",
+ "repo": "ruby-guard",
+ "sha256": "034dbz225xxqpi202h4z8zqz3cdfbd8m7vlnh30cb0p8lvgygmj1",
+ "rev": "c0bc5c58ad32e1786001aa5cd84f490096a00a4b"
+ },
+ "recipe": {
+ "sha256": "0hwxhirdvaysw9hxcgfdf0l12wilr6b9f9w91pk1hfwfi1w0lfwr",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20141218.2114",
+ "deps": []
+ },
+ "dkdo": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "davidkeegan",
+ "repo": "dkdo",
+ "sha256": "1nbvdnw9g3zbbb0n2sn2kxfzs5wichhl9qid3qjp8dsiq1wpv459",
+ "rev": "fd6bb105e8331fafb6385c5238c988c4c5bbe2da"
+ },
+ "recipe": {
+ "sha256": "0p7ybgldjs046jrkkbpli1iicfmblpxfz9lql8m8sz7lpjn7h300",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20131110.519",
+ "deps": [
+ "dkmisc",
+ "emacs"
+ ]
+ },
+ "occidental-theme": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "olcai",
+ "repo": "occidental-theme",
+ "sha256": "0pnliw02crqw8hbg088klz54z6s1ih8q2lcn9mq5f12xi752hxm8",
+ "rev": "fd2db7256d4f78c43d99c3cddb1c39106d479816"
+ },
+ "recipe": {
+ "sha256": "1ra5p8k96wvb04v69xm87jl4jlgi57v4jw2xxzkwbwxbydncnv0b",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20130312.1458",
+ "deps": []
+ },
+ "helm-flycheck": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "yasuyk",
+ "repo": "helm-flycheck",
+ "sha256": "0k5703nj838qh0h6hzgffjrp0df9rs7psczg4r9mxpi19vqk8ff0",
+ "rev": "361d7f0359cea3dd0bfef1647d65ab61c9e52925"
+ },
+ "recipe": {
+ "sha256": "038f9294qc0jnkzrrjxm97hyhwa4sca3wdsjbaya50cf0g4cmk7b",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140915.952",
+ "deps": [
+ "dash",
+ "flycheck",
+ "helm"
+ ]
+ },
+ "mb-depth+": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/mb-depth+.el",
+ "sha256": "02dszzkcqa2zwnafxyd6avsjgdrmb6c80j9qx0bgdkwm7yii090q"
+ },
+ "recipe": {
+ "sha256": "031hh227rh7l818p3di4h34i4698yynw5g9a5sl2hj47c0734q6w",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150104.1822",
+ "deps": []
+ },
+ "fold-dwim-org": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "mattfidler",
+ "repo": "fold-dwim-org",
+ "sha256": "14jvbkahwvv4wb0s9vp8gqmlpv1d4269j5rsjxn79q5pawjzslxw",
+ "rev": "c09bb2b46d65afbd1d0febc6fded7495be7a3037"
+ },
+ "recipe": {
+ "sha256": "0812p351rzvqcfn00k92nfhlg3y772y4z4b9f0xqnpa935y6harn",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20131203.751",
+ "deps": [
+ "fold-dwim"
+ ]
+ },
+ "minesweeper": {
+ "fetch": {
+ "tag": "fetchhg",
+ "url": "https://bitbucket.com/zck/minesweeper.el",
+ "sha256": "1b2kn4c90hl07lzdg10wamd4lq8f24wmaj4zvr728pwyga99b2av",
+ "rev": "d29af12fc611"
+ },
+ "recipe": {
+ "sha256": "1n6r3a3rl09pv4jvb7ald1gaipqylfchggza973qv9rgh5g90nag",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150414.22",
+ "deps": []
+ },
+ "fstar-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "FStarLang",
+ "repo": "fstar-mode.el",
+ "sha256": "0qq2gradcibjhn477sljy4lnsmi3pzlac42hpa92c6ca1srh3lc4",
+ "rev": "5e7c3d5a4b5422284d8ef4b69023b1fd71952b81"
+ },
+ "recipe": {
+ "sha256": "0kyzkghdkrnqqbd5b969pjyz9jxgq0j8hkmvlcwikl7ynnhm9lgy",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151023.953",
+ "deps": [
+ "cl-lib",
+ "dash",
+ "emacs"
+ ]
+ },
+ "ac-mozc": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "igjit",
+ "repo": "ac-mozc",
+ "sha256": "19cb8kq8gmrplkxil22ahvbyq5cng1l2vh2lrfiyqpjsap7zfjz5",
+ "rev": "4c6c8be4701010d9362184437c0f783e0335c631"
+ },
+ "recipe": {
+ "sha256": "1v3iiid8cq50i076q98ycks9m827xzncgxqwqs2rqhab0ncy3h0f",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150227.1019",
+ "deps": [
+ "auto-complete",
+ "cl-lib",
+ "mozc"
+ ]
+ },
+ "helm-dirset": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "k1LoW",
+ "repo": "helm-dirset",
+ "sha256": "183vj5yi575aqkak19hl8k4mw38r0ki9p1fnpa8nny2srjyy34yb",
+ "rev": "eb30810cd26e1ee73d84a863e6b2667700e9aead"
+ },
+ "recipe": {
+ "sha256": "0vng52axp7r01s00cqbbclbm5bx1qbhmlrx9h9kj7smx1al4daml",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151208.1812",
+ "deps": [
+ "cl-lib",
+ "f",
+ "helm",
+ "s"
+ ]
+ },
+ "logalimacs": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "logaling",
+ "repo": "logalimacs",
+ "sha256": "0lj3i9i3mg17xws13gzx8myc6d7djgsj47yx4kaq5hycgkni1p7q",
+ "rev": "8286e39502250fc6c3c6656a7f46a8eee8e9a713"
+ },
+ "recipe": {
+ "sha256": "0ai7a01bdi3a0amgi63pwgdp8wgcgx10an4nhc627wgb1cqxb7p6",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20131021.1329",
+ "deps": [
+ "popup",
+ "popwin",
+ "stem"
+ ]
+ },
+ "outlined-elisp-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "zk-phi",
+ "repo": "outlined-elisp-mode",
+ "sha256": "0d9hfr4kb6rkhwacdn70bkfchgam26gj92zfyaqw77a2sgwcmwwv",
+ "rev": "c16cb02b540448919ad148f2be6a41523ee5489c"
+ },
+ "recipe": {
+ "sha256": "165sivmv5h4nvh08ampq95x6b0bkzxgrdjbxjxlq6rv00vaidn7v",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20131108.527",
+ "deps": []
+ },
+ "achievements": {
+ "fetch": {
+ "tag": "fetchhg",
+ "url": "https://bitbucket.com/gvol/emacs-achievements",
+ "sha256": "0zjncby2884cv8nz2ss7i0p17l15lsk88zwvb7b0gr3apbfpcpa3",
+ "rev": "5b4b7b6816aa"
+ },
+ "recipe": {
+ "sha256": "1pwlibq87ph20z2pssk5hbgs6v8kdym9193jjdx2rxp0nic4k0cr",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150530.1326",
+ "deps": [
+ "keyfreq"
+ ]
+ },
+ "company-nixos-options": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "travisbhartwell",
+ "repo": "nix-emacs",
+ "sha256": "0iq1j703kj3dy1di8m488kds8i6klpavwwb88ysn5pv2nwdi6i4w",
+ "rev": "2bd8a5fe792dd6a219934f5295d6116877e45f6c"
+ },
+ "recipe": {
+ "sha256": "1yrqqdadmf7qfxpqp8wwb325zjnwwjmn2hhnl7i3j0ckg6hqyqf0",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151013.1809",
+ "deps": [
+ "cl-lib",
+ "company",
+ "nixos-options"
+ ]
+ },
+ "mongo": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "m2ym",
+ "repo": "mongo-el",
+ "sha256": "0z8mcfhj425hb91fkj1pyg3apw1kf4mgy8lx6n1sc8zmib38py0x",
+ "rev": "595529ddd70ecb9fab8b11daad2c3929941099d6"
+ },
+ "recipe": {
+ "sha256": "103zkslqdihjyl81688fvkq96rzk3an1vf3gz8rlmmz5anbql8ai",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150315.719",
+ "deps": []
+ },
+ "face-remap+": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/face-remap+.el",
+ "sha256": "13a439ipxy28l91c9gy6skq54xy2m3hj2qgqdjjqbinnhngg7ffi"
+ },
+ "recipe": {
+ "sha256": "0vq6xjrv3qic89pxzi6mx1s08k4ba27g8wqm1ap4fxh3l14wkg0y",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150104.1558",
+ "deps": []
+ },
+ "flymake-json": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "purcell",
+ "repo": "flymake-json",
+ "sha256": "1qn15pr7c07fmki484z5xpqyn8546qb5dr9gcp5n1172wnh2a534",
+ "rev": "36084b67830bdc6c226115ea8287ea88d14b05dd"
+ },
+ "recipe": {
+ "sha256": "1p5kajiycpqy2id664bs0fb1mbf73a43qqfdi4c57n6j9x7fxp4d",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20130424.157",
+ "deps": [
+ "flymake-easy"
+ ]
+ },
+ "sass-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "nex3",
+ "repo": "sass-mode",
+ "sha256": "0srz4j7484v5h7hmdlyrcl2k27jhy414689wphbbyj63rvg321cm",
+ "rev": "3da9040680880743fddb55a965ecd150d1039df6"
+ },
+ "recipe": {
+ "sha256": "1byjk5zpzjlyiwkp780c4kh7s9l56y686sxji89wc59d19rp8800",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150508.2212",
+ "deps": [
+ "cl-lib",
+ "haml-mode"
+ ]
+ },
+ "string-edit": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "magnars",
+ "repo": "string-edit.el",
+ "sha256": "0nx303bdi8mq18isgf79y8f1cjhqnxv3g3ynm09llrg73qr7r4zw",
+ "rev": "c380e20ca169bd4e7117a99edd5711e673168cbe"
+ },
+ "recipe": {
+ "sha256": "1l1hqsfyi6pp4x4g1rk4s7x9zjc03wfmhy16izia8nkjhzz88fi8",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151213.1130",
+ "deps": [
+ "dash"
+ ]
+ },
+ "flycheck-elm": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "bsermons",
+ "repo": "flycheck-elm",
+ "sha256": "08dlm3g2d8rl53hq0b4z7gp8529almlkyf69d3c8f9didmlhizk7",
+ "rev": "d1395ce80dcad5ed8931b4901471a8980fd3f2b8"
+ },
+ "recipe": {
+ "sha256": "06dpv19wgbw48gbf701c77vw1dkpddx8056wpim3zbvwwfwk8ra4",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151204.924",
+ "deps": [
+ "emacs",
+ "flycheck"
+ ]
+ },
+ "showkey": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/showkey.el",
+ "sha256": "0fbpwqjgi15l1mk2p1m9apfj9a50566gi97wkin5hrc8zhm41k5r"
+ },
+ "recipe": {
+ "sha256": "1m280ll07i5c6s4w0s227jygdlpvd87dq45039v0sljyxm4bfrsv",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150527.1048",
+ "deps": []
+ },
+ "proc-net": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "nicferrier",
+ "repo": "emacs-proc-net",
+ "sha256": "0nly5h0d6w8dc08ifb2fiqcn4cqcn9crkh2wn0jzlz4zd2x75qrb",
+ "rev": "10861112a1f3994c8e6374d6c5bb5d734cfeaf73"
+ },
+ "recipe": {
+ "sha256": "0562x2s3kk9vlaavak4lya1nlmn4mwlzlc7nw1l3687q023z4hmv",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20130321.1912",
+ "deps": []
+ },
+ "phi-grep": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "zk-phi",
+ "repo": "phi-grep",
+ "sha256": "1rchxhp4kji5kbg8kzkzdbfy8sdbgbqd5g59cch7ia9agh5jvwyx",
+ "rev": "9f1eb3548311816920864a171de303245a001301"
+ },
+ "recipe": {
+ "sha256": "1y5lq6lq9qdydbypb1pjnxryh94a295nnqqh2x27whiwdiysirjj",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150212.924",
+ "deps": [
+ "cl-lib"
+ ]
+ },
+ "xah-replace-pairs": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "xahlee",
+ "repo": "xah-replace-pairs",
+ "sha256": "18msj947w6msma6zm23slk2v0h92n5ych5j12zbzkzzir49sffql",
+ "rev": "b80430cd285ba09e2b35d518be0c25ba7db2d0a3"
+ },
+ "recipe": {
+ "sha256": "0r4aq9davh3ypzcjixr3aw9g659dhiblwbmcyhm8iqhkavcpqr1x",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150522.533",
+ "deps": []
+ },
+ "sequences": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "timvisher",
+ "repo": "sequences.el",
+ "sha256": "1np6ip28ksms6fig67scwvwj43zgblny50ccvz8aclbl0z8nxswl",
+ "rev": "2bcc54a6738202fffb23e9579b9695337ba6ef26"
+ },
+ "recipe": {
+ "sha256": "12wnkywkmxfk2sx40h90k53d5qmc8hiky5vhlyf0ws3n39zvhplh",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20130908.1322",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "chronos": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "dxknight",
+ "repo": "chronos",
+ "sha256": "1mqdz3rvx0jm80fgzw3s3lqn448kqrlrifdwcg36cqq4qmkpalq4",
+ "rev": "b360d9dae57aa553cf2a14ffa0756a51ad71de09"
+ },
+ "recipe": {
+ "sha256": "1fwpll0mk6pc37qagbq3b3z32d2qwz993nxp9pjw4qbmlnq6sy9d",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150602.1029",
+ "deps": []
+ },
+ "flymake-haskell-multi": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "purcell",
+ "repo": "flymake-haskell-multi",
+ "sha256": "0hwcgas83wwhk0szwgw7abf70400knb8dfabknwv0qrcsk4gqffd",
+ "rev": "6183620ffee429b33c886fffd6106b876245ea47"
+ },
+ "recipe": {
+ "sha256": "0cyzmmghwkkv6020s6n436lwymi6dr49i7gkci5n0hw5pdywcaij",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20130620.622",
+ "deps": [
+ "flymake-easy"
+ ]
+ },
+ "simple-screen": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "wachikun",
+ "repo": "simple-screen",
+ "sha256": "0zf9wgyp0n00i00zl1lxr0d60569zgcjdnmdvgpcibvny5s1fp2i",
+ "rev": "4fcbdb4575310c0a2b4dd17fc8aeb4d7e6e9ffae"
+ },
+ "recipe": {
+ "sha256": "16zvsmqn882w320h26hjjz5lcyl9y0x4amkf2zfps77xxmkmi5n0",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20141023.958",
+ "deps": []
+ },
+ "git-timemachine": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "pidu",
+ "repo": "git-timemachine",
+ "sha256": "058ylvq71xap2r2qas8lw2l2fmg2769ahh9zs4dw1mhf9j3rlmzg",
+ "rev": "141122e52a80f28b958a8bad128c480567ce3942"
+ },
+ "recipe": {
+ "sha256": "0nhl3g31r4a8j7rp5kbh17ixi16w32h80bc92vvjj3dlmk996nzq",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151005.29",
+ "deps": []
+ },
+ "evil-search-highlight-persist": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "juanjux",
+ "repo": "evil-search-highlight-persist",
+ "sha256": "1jfi2k9dm0cc9bx8klppm965ydhdw17a2n664199vhxrap6g27yk",
+ "rev": "0e2b3d4e3dec5f38ae95f62519eb2736f73c0b85"
+ },
+ "recipe": {
+ "sha256": "0iia136js364iygi1mydyzwvizhic6w5z9pbwmhva4654pq8dzqy",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151215.438",
+ "deps": [
+ "highlight"
+ ]
+ },
+ "edn": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "expez",
+ "repo": "edn.el",
+ "sha256": "107ljwqibnd247h4iyav37y75zcgl0j2yav09s38kl3nbxmaad2y",
+ "rev": "501a69696bec2fc09bf5d61e38a3ea344ed77a47"
+ },
+ "recipe": {
+ "sha256": "00cy8axhy2p3zalzl8k2083l5a7s3aswb9qfk9wsmf678m8pqwqg",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150929.346",
+ "deps": [
+ "cl-lib",
+ "dash",
+ "emacs",
+ "peg",
+ "s"
+ ]
+ },
+ "register-channel": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "YangZhao11",
+ "repo": "register-channel",
+ "sha256": "01k3v4yiilz1k6drv7b2x6zbjx6dlz7cch8rq63mwc7v8kvdnqmi",
+ "rev": "f62f9a62ebd2537d4a8c8f2e358562c67d2aefc1"
+ },
+ "recipe": {
+ "sha256": "037i2fgxxsfb85vd6xk17wyh7ny6fqfixvb0a18lf8m1hib1gyhr",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150513.2259",
+ "deps": []
+ },
+ "isearch-prop": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/isearch-prop.el",
+ "sha256": "190dlmrqk1g7ak5a3p6i97kwxk4lgz8y0kxf9ql75qis3hc4cl09"
+ },
+ "recipe": {
+ "sha256": "1z9y88b23m4ffil8p3wcq61q1fiyqjxphyd3wacs5fnc53mdzad9",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151108.1305",
+ "deps": []
+ },
+ "virtualenvwrapper": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "porterjamesj",
+ "repo": "virtualenvwrapper.el",
+ "sha256": "1a0x4dsyavqcl7xibn3g90fxvh1fnb6k0mpjm5mjvzc168p939kc",
+ "rev": "f95094dc7a6e6c0aa6f80fd897dbf380382f35f2"
+ },
+ "recipe": {
+ "sha256": "0rn5vwncx8z69xp8hspr06nzkf28l9flchpb2936c2nalmhx6m8i",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151127.821",
+ "deps": [
+ "dash",
+ "s"
+ ]
+ },
+ "emagician-fix-spell-memory": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "jonnay",
+ "repo": "emagicians-starter-kit",
+ "sha256": "00iklf97mszrsdv20q55qhml1dscvmmalpfnlkwi9mabklyq3i6z",
+ "rev": "5fadbf1bf84091b6ffe6cd1bff48f30e3da6c479"
+ },
+ "recipe": {
+ "sha256": "0ffjrpiph21dn8bplklsz3hrsai25l67yyr7n8qjxlwlibwqzv6j",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20141229.1634",
+ "deps": []
+ },
+ "google-contacts": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "jd",
+ "repo": "google-contacts.el",
+ "sha256": "1a3qdjk7mpzxdiwciv6qr56pj4av23s2aslg8pqzirn24xmnfpmj",
+ "rev": "92969f5f02f0ec1957c591b248530c0be0cc5432"
+ },
+ "recipe": {
+ "sha256": "0wgi244zy2am90alimgzazshk2z756bk1hchphssfa4j15n16jgn",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140530.433",
+ "deps": [
+ "oauth2"
+ ]
+ },
+ "org-table-comment": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "mattfidler",
+ "repo": "org-table-comment.el",
+ "sha256": "1qx3kd02sxs9k7adlvdlbmyhkc5kr7ni5lw4gxjw3nphnc536bkb",
+ "rev": "33b9966c33ecbc3e27cca67c2f2cdea04364d74e"
+ },
+ "recipe": {
+ "sha256": "1d40vl8aa1x27z4gwnkzxgrqp7vd3ln2pc445ijjxp1wr8bjxvdz",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20120209.1251",
+ "deps": []
+ },
+ "govet": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "meshelton",
+ "repo": "govet",
+ "sha256": "1fzf43my7qs4n37yh1jm6fyp76dfgknc5g4zin7x5b5lc63g0wxb",
+ "rev": "736f11850f2d1d62bd417fb57d4f8bb55a176b70"
+ },
+ "recipe": {
+ "sha256": "1rpgngixf1xnnqf0l2vvh6y9q3395qyj9ln1rh0xz5lm7d4pq4hy",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150428.1359",
+ "deps": []
+ },
+ "c-eldoc": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "nflath",
+ "repo": "c-eldoc",
+ "sha256": "0mlm5f66541namqn04vx6csf14mxhsiknbm36yqdnp1lxb7knv7a",
+ "rev": "3baef9b6300370bd8db3ea7636084afcdebc6e85"
+ },
+ "recipe": {
+ "sha256": "13grkww14w39y2x6mrbfa9nzljsnl5l7il8dnj6sjdyv0hz9x8vm",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150904.332",
+ "deps": []
+ },
+ "toc-org": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "snosov1",
+ "repo": "toc-org",
+ "sha256": "0gzv45yxjy0bkdnx9kki0svmc7gxrdaarblvi1pyvl7id31ssw70",
+ "rev": "72883a08b01d08b74cc03c565eac8d0422770fcf"
+ },
+ "recipe": {
+ "sha256": "06mx2b0zjck82vp3i4bwbqlrzn05i2rkf8080cn34nkizi59wlbs",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150921.905",
+ "deps": []
+ },
+ "hl-sexp": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "emacsmirror",
+ "repo": "hl-sexp",
+ "sha256": "1fsyj9cmqcz5nfxsfcyvpq2vqrhgl99xvq7ligviawl3x77376kw",
+ "rev": "0606100422321c18db51ceda80f25cd7717c2e01"
+ },
+ "recipe": {
+ "sha256": "0kg0m20i9ylphf4w0qcvii8yp65abdl2q5flyphilk0jahwbj9jy",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20101130.643",
+ "deps": []
+ },
+ "find-temp-file": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "thisirs",
+ "repo": "find-temp-file",
+ "sha256": "0anc6icm1a5d4iirkzzmz8g4z5ssa3hpzgj7gigm3kvvp4r1261d",
+ "rev": "556cc3afbdc3011c99e92e1ab3fe0744bd1af9ba"
+ },
+ "recipe": {
+ "sha256": "0c98zm94958rb9kdvqr3pad744nh63y3vy3lshfm0lsg85k9j62p",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150101.801",
+ "deps": []
+ },
+ "avy-migemo": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "momomo5717",
+ "repo": "avy-migemo",
+ "sha256": "0c7ss211z0qls26sd9qjpplak58g5zzk3n1h54zsyzyfnwxs0nsj",
+ "rev": "804a02dbd50dcfbdbf327ec800d9f7572e8b9511"
+ },
+ "recipe": {
+ "sha256": "1zvgkhma445gj1zjl8j25prw95bdpjbvfy8yr0r5liay6g2hf296",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151126.808",
+ "deps": [
+ "avy",
+ "emacs",
+ "migemo"
+ ]
+ },
+ "crosshairs": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/crosshairs.el",
+ "sha256": "0m2qggd8q3r32c8ipnp14093p0hbdd7i66nrv3q739wid7j98s8b"
+ },
+ "recipe": {
+ "sha256": "1gf73li6q5rg1dimzihxq0rdxiqzbl2w78r1qzc9mxw3qj7azxqp",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150104.1539",
+ "deps": [
+ "col-highlight",
+ "hl-line+",
+ "vline"
+ ]
+ },
+ "osx-browse": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "rolandwalker",
+ "repo": "osx-browse",
+ "sha256": "1iybrhp607a5rb3ynlaf8w2x9wdgdbril702z44dgcg3wxih2zy1",
+ "rev": "44ded7cc3a7ee426c1c3257fae534c121f7e752e"
+ },
+ "recipe": {
+ "sha256": "06rfzq2hxhzg6jh2zs28r7ffxwlq40nz954j13ly8403c7rmbrfm",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140508.1541",
+ "deps": [
+ "browse-url-dwim",
+ "string-utils"
+ ]
+ },
+ "sql-indent": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "bsvingen",
+ "repo": "sql-indent",
+ "sha256": "17nbcaqx58fq4rz501xcqqcjhmibdlkaavmmzwcfwra7jv8hqljy",
+ "rev": "f85bc91535b64b5d538e5aec2ce4c5e2312ec862"
+ },
+ "recipe": {
+ "sha256": "13s38zdd9j127p6jxbcj4d4va8mkri5dx5zh39g465mnlzx7fp8g",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150424.1916",
+ "deps": []
+ },
+ "helm-orgcard": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "emacs-jp",
+ "repo": "helm-orgcard",
+ "sha256": "1zyjxrrda7nxxjqczv2p3sfimxy2pq734kf51j6v2y0biclc4bk3",
+ "rev": "9655ac340d1ccc5f3d1c0f7c49be8dd3556d4d0d"
+ },
+ "recipe": {
+ "sha256": "1a56y8fny7qxxidc357n7l3yi7h66hidhvwhkam8y5wk6k61460p",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151001.1024",
+ "deps": [
+ "helm-core"
+ ]
+ },
+ "phpcbf": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "nishimaki10",
+ "repo": "emacs-phpcbf",
+ "sha256": "09rinyx0621d7613xmbyvrrlav6d4ia332wkgg0m9dn265g3h56z",
+ "rev": "b556b548ceb061b002389d6165d2cc63d8bddb5d"
+ },
+ "recipe": {
+ "sha256": "1hf88ys4grffpqgavrbc72dn3m7crafgid2ygzx9c5j55syh8mfv",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150302.728",
+ "deps": [
+ "s"
+ ]
+ },
+ "dispass": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "ryuslash",
+ "repo": "dispass.el",
+ "sha256": "075gj81rnhrvv061wnldixpfmlsyfbnvacnk107z6f9v3m2m3vl1",
+ "rev": "b6e8f89040ebaaf0e7609b04bc27a8979f0ae861"
+ },
+ "recipe": {
+ "sha256": "08c1s4zgl4rha10mva48cfkxzrqnpdhy03pxq51ihw94v6vxzg3z",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140202.931",
+ "deps": [
+ "dash"
+ ]
+ },
+ "ac-inf-ruby": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "purcell",
+ "repo": "ac-inf-ruby",
+ "sha256": "0xdqk0qr1mmm5q3049ldwlmrcfgz6rzk4yxc8qgz6kll27kciia0",
+ "rev": "3a1e741b40b8dba0e9c235dad4b9907411d9dcd3"
+ },
+ "recipe": {
+ "sha256": "04jclf0yxz78x1fsaf5sh1p466947nqrcx337kyhqn0nkj3hplqr",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20131115.550",
+ "deps": [
+ "auto-complete",
+ "inf-ruby"
+ ]
+ },
+ "cider-eval-sexp-fu": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "clojure-emacs",
+ "repo": "cider-eval-sexp-fu",
+ "sha256": "1gpklkrw6iishfb3yilnqysh6zij67l1sl3ixq1bi3f6r237v1pg",
+ "rev": "7c54327e6ff8914c7dbc9f8de289e1b255d01fbc"
+ },
+ "recipe": {
+ "sha256": "1n4sgv042qd9560pllabysx0c5snly6i22bk126y8f8rn0zj58iq",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150320.2215",
+ "deps": [
+ "emacs",
+ "eval-sexp-fu",
+ "highlight"
+ ]
+ },
+ "wn-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "luismbo",
+ "repo": "wn-mode",
+ "sha256": "12rfpkyjkhikjh0mihhp5h5pzbm4br68nwf8k1ja9djl77vfzv36",
+ "rev": "f05c3151523e529af5a0a3fa8c948b61fb369f6e"
+ },
+ "recipe": {
+ "sha256": "1qy1pkfdnm4pska4cnff9cx2c812ilymajhpmsfc9jdbvhzwrwg3",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151109.2352",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "professional-theme": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "juanjux",
+ "repo": "emacs-professional-theme",
+ "sha256": "0hx7rxa3smdippcpj4j63k0r5l4wflllb0vpnwwknc9j93r7042b",
+ "rev": "0927d1474049a193f9f366bde5eb1887b9ba20ed"
+ },
+ "recipe": {
+ "sha256": "1l8nisn2c124cpylyahr76hfpdim2125zrns2897p466l5wcxcx5",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150315.600",
+ "deps": []
+ },
+ "goto-last-change": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "camdez",
+ "repo": "goto-last-change.el",
+ "sha256": "1f0zlvva7d7iza1v79yjp0bm7vd011q4cy14g1saryll32z115z5",
+ "rev": "58b0928bc255b47aad318cd183a5dce8f62199cc"
+ },
+ "recipe": {
+ "sha256": "1yl9p95ls04bkmf4d6az72pycp27bv7q7wxxzvj8sj97bgwvwajx",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150109.1223",
+ "deps": []
+ },
+ "flymake-css": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "purcell",
+ "repo": "flymake-css",
+ "sha256": "00cnz3snhs44aknq6wmf19hq9bzb5pj0hvfzz93l6n7ngd8vvpzy",
+ "rev": "4649fc209836498d709bb627e8aa6e50189a06ec"
+ },
+ "recipe": {
+ "sha256": "0kqm3wn9symqc9ivnh11gqgq8ql2bhpqvxfm86d8vwm082hd92c5",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20121104.1304",
+ "deps": [
+ "flymake-easy"
+ ]
+ },
+ "flycheck-pyflakes": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "Wilfred",
+ "repo": "flycheck-pyflakes",
+ "sha256": "16albss527dq4ncpiy8p326fib038qc6wjbh985lw2p1f9babswa",
+ "rev": "026ef070f1589bc0ae8f86a02072fa36e57b9912"
+ },
+ "recipe": {
+ "sha256": "186h5ky48i1xmjbvvhn1i0rzhsy8bgdv1d8f7rlr2z4brb52f9c1",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140630.1721",
+ "deps": [
+ "flycheck"
+ ]
+ },
+ "vc-check-status": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "thisirs",
+ "repo": "vc-check-status",
+ "sha256": "0rl1q374h06lmspsmgkp44m9x8w93dz6zx2yk89hklfbsvg5pb5j",
+ "rev": "540db724cdd9f517f54fcd9f8c4be3bf274c9333"
+ },
+ "recipe": {
+ "sha256": "1kwnxa0ndfj8b211xy5d47sxkwmsay0kk8q7azfm5ag5dkg56zgi",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150330.301",
+ "deps": []
+ },
+ "pbcopy": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "emacsfodder",
+ "repo": "pbcopy.el",
+ "sha256": "138w0dlp3msjmr2x09kfcnxwhdldbz9xjfy7l6lig1x9ima0z5w6",
+ "rev": "338f7245746b5de1bb96c5cc2b32bfd9b5d83272"
+ },
+ "recipe": {
+ "sha256": "1989pkhaha6s2rmgyswnzps92x9hhzymjz4ng4a5jda1b9snp60q",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150224.2259",
+ "deps": []
+ },
+ "ob-lfe": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "zweifisch",
+ "repo": "ob-lfe",
+ "sha256": "1mk7qcf4svf4yk4mimcyhbw5imq3zps2vh2zzq9gwjcn17jnplhn",
+ "rev": "d50a5d76e389501504e060a7005f20b96c895594"
+ },
+ "recipe": {
+ "sha256": "11cpaxk9wb27b9zhyns75dqpds4gh3cbjcvia4p2bnvmbm8lz4y8",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150701.855",
+ "deps": [
+ "org"
+ ]
+ },
+ "auto-yasnippet": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "abo-abo",
+ "repo": "auto-yasnippet",
+ "sha256": "14qr8c4i4644vwqvlh5d3xhw1dzmqz3v74hqlp7g8991yaka72va",
+ "rev": "9e126461d4473fb734f7e33dc2019cd71856dc42"
+ },
+ "recipe": {
+ "sha256": "02281gyy07cy72a29fjsixg9byqq3izb9m1jxv98ni8pcy3bpsqa",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151218.1031",
+ "deps": [
+ "yasnippet"
+ ]
+ },
+ "company-try-hard": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "Wilfred",
+ "repo": "company-try-hard",
+ "sha256": "18hy60fm3b3dmp29cmzbs6grlihkwifjbzv30gprwj5f6x7m8knf",
+ "rev": "0401e8afa6bd4d3e9d2cf18e58955b83aef93005"
+ },
+ "recipe": {
+ "sha256": "1rwn521dc8kxh43vcd3rf0h8jc53d4gmid3szj2msi0da1sk0mmj",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150902.1706",
+ "deps": [
+ "company",
+ "dash",
+ "emacs"
+ ]
+ },
+ "clippy": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "Fuco1",
+ "repo": "clippy.el",
+ "sha256": "0msmigzip7hpjxwkz0khhlc2lj9wgb2919i4k0kv8ppi9j2f9hjc",
+ "rev": "23ba8772056a103267611b3757722730740d9f00"
+ },
+ "recipe": {
+ "sha256": "0nqmc8f2qrsp25vzc66xw6b232n7fyw6g06mwn2cdpm3d2pgb7rg",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140417.614",
+ "deps": [
+ "pos-tip"
+ ]
+ },
+ "company-coq": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "cpitclaudel",
+ "repo": "company-coq",
+ "sha256": "1np5k6wnhylyi3si2vg4fff5axafixv9qdf3k7l2iislq372nq61",
+ "rev": "eba6fee09a02b42ef581fa757314b6b63a11601f"
+ },
+ "recipe": {
+ "sha256": "1iagm07ckf60kg4i8m4n0gfmv0brqc4dcn7lkcz229r3f4kyqksa",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150718.2131",
+ "deps": [
+ "cl-lib",
+ "company",
+ "company-math",
+ "dash",
+ "yasnippet"
+ ]
+ },
+ "emacsql-sqlite": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "skeeto",
+ "repo": "emacsql",
+ "sha256": "0ld5qpl7b3iksgxcfysznf88wj019l5271kdz4nalqi4kchf5xad",
+ "rev": "74bd11bc0998d7019a05eecc0486fee09c84a93b"
+ },
+ "recipe": {
+ "sha256": "1vywq3ypcs61s60y7x0ac8rdm9yj43iwzxh8gk9zdyrcn9qpis0i",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151004.915",
+ "deps": [
+ "cl-lib",
+ "emacs",
+ "emacsql"
+ ]
+ },
+ "haskell-snippets": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "haskell",
+ "repo": "haskell-snippets",
+ "sha256": "0b3d7rvqvvcsp51aqfhl0zg9zg8j0p6vlfvga6jp9xc7626vh6f6",
+ "rev": "bcf12cf33a67ddc2f023a55072859e637fe4fa25"
+ },
+ "recipe": {
+ "sha256": "10bvv7q694fahcpm83v8lpqihg1gvfzrp1hdzwiffxydfvdbalh2",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150612.1439",
+ "deps": [
+ "yasnippet"
+ ]
+ },
+ "ycm": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "neuromage",
+ "repo": "ycm.el",
+ "sha256": "0znchya89zzk30mwl4qfm0q9sfa5m3jspapb892ydj0mck5n4nyj",
+ "rev": "4da8a14abcd0f4fa3235042ade2e12b5068c0601"
+ },
+ "recipe": {
+ "sha256": "16ahgvi85ddjlrjxld14zm2vvam0m89mwskizjd5clcz0snk51sc",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150822.1336",
+ "deps": []
+ },
+ "ldap-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "emacsmirror",
+ "repo": "ldap-mode",
+ "sha256": "03mv2r6k9syr7bk4vmdafmpa8kz19hv5h68ahj2bmdcmwlvwhkf3",
+ "rev": "8761a835e90b990fb5fe70173ecdcd6f4b776cb0"
+ },
+ "recipe": {
+ "sha256": "0lkfpbzsry9jigrx5zp14bkrvqnavnk4y3s0whnbigc4fgpf94rq",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20091203.1215",
+ "deps": []
+ },
+ "golint": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "golang",
+ "repo": "lint",
+ "sha256": "16lghkdi0rd7l1fph0a254k6axxivmpmc6grx4ryvza3f4yf7483",
+ "rev": "32a87160691b3c96046c0c678fe57c5bef761456"
+ },
+ "recipe": {
+ "sha256": "1q4y6mgll8wyp0c7zx810nzsm0k4wvz0wkly1fbja9z63sjzzxwb",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150414.1930",
+ "deps": []
+ },
+ "typed-clojure-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "typedclojure",
+ "repo": "typed-clojure-mode",
+ "sha256": "1i826xq77nh4s7qlj63r2iznbn319l1l3fzpbjb2nj0m00bwvxl6",
+ "rev": "3abd53d8cc1ad77ffe76e02849d0ab7731fd8364"
+ },
+ "recipe": {
+ "sha256": "1579zkhk2lwl5ij7dm9n2drggs5fmhpljrshc4ghhvig7nlyqjy3",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151003.1322",
+ "deps": [
+ "cider",
+ "clojure-mode"
+ ]
+ },
+ "load-theme-buffer-local": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "vic",
+ "repo": "color-theme-buffer-local",
+ "sha256": "0gvc9jy34a8wvzwjpmqhshbx2kpk6ckmdrdj5v00iya7c4afnckx",
+ "rev": "ca8470bc34c65a026a6bca1707d95240bfd019af"
+ },
+ "recipe": {
+ "sha256": "13829yrh36qac7gpxanizlk4n7av99ngvv06y6mmi5rq06a4hjx4",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20120702.1536",
+ "deps": []
+ },
+ "xah-math-input": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "xahlee",
+ "repo": "xah-math-input",
+ "sha256": "118dcxq6ya9ks488az5h7hwbvjw0amamaw52pi2cx6s74zyxvwb8",
+ "rev": "dbf055ca2b5497465de57e98d6cc58ddfa09bb8d"
+ },
+ "recipe": {
+ "sha256": "1afikjk46sjf97fb5fc8h63h7b9af010wxhsbpnmabsb4j72rx5a",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150907.1900",
+ "deps": []
+ },
+ "vim-region": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "ongaeshi",
+ "repo": "emacs-vim-region",
+ "sha256": "13g2hin100c8h5bd7hzhyqzj02ab9c35giyv963l7y044v7sbwig",
+ "rev": "7c4a99ce3678fee40c83ab88e8ad075d2a935fdf"
+ },
+ "recipe": {
+ "sha256": "1dcnx799lpjsdnnjxqzgskkfj2nx7f4kwf0xjhbg35ny4nyn81dx",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140329.1124",
+ "deps": [
+ "expand-region"
+ ]
+ },
+ "hideshowvis": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/hideshowvis.el",
+ "sha256": "15ax1j3j7kylyc8a91ja825sp4mhbdgx0j4i5kqxwhvmwvpmyrv6"
+ },
+ "recipe": {
+ "sha256": "1ajr71fch3v5g8brb83kwmlakcam5w21i3yr8df00c5j2pnc6v1f",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20130824.700",
+ "deps": []
+ },
+ "tumble": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "febuiles",
+ "repo": "tumble",
+ "sha256": "1klqqk0kn60c4ircgwh6hhdhhfqq7s3d7hw3xf62s7lp6r6yw5lc",
+ "rev": "8d04216752ad94c343ffa507016b893f8252602f"
+ },
+ "recipe": {
+ "sha256": "1c9ybq0mb2a0pw15fmm13vfwcnr2h9fb1xsm5nrff1cg7913pgv9",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151123.1349",
+ "deps": [
+ "http-post-simple"
+ ]
+ },
+ "evil-tabs": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "krisajenkins",
+ "repo": "evil-tabs",
+ "sha256": "1rjpgcl9m23fzlw9gfp0yyf5k5dcgn88pjm8glmmdpx1b08ymk79",
+ "rev": "93eba393e86ea4574aebaf4edbd27dce4fd7b2e6"
+ },
+ "recipe": {
+ "sha256": "0qgvpv5hcai8wmkv2fp6i2vdy7qp4gwidwpzz8j6vl9519x73s62",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150127.1546",
+ "deps": [
+ "elscreen",
+ "evil"
+ ]
+ },
+ "solidity-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "ethereum",
+ "repo": "emacs-solidity",
+ "sha256": "0drb237750lry18arbfx37drf16znwz8fhx5fawxy1q4z7bl7z5n",
+ "rev": "8bbd7d9e1e823b524d882d996b5c4e7b6a523b41"
+ },
+ "recipe": {
+ "sha256": "1qdzdivrf5yaa80p61b9r1gryw112v5l2m2jkvkc7glhkhrcvwsx",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151124.1111",
+ "deps": []
+ },
+ "ac-math": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "vitoshka",
+ "repo": "ac-math",
+ "sha256": "0p5cdaw9v8jgnmjqpb95bxy4khwbdgg19wzg8jkr2j2p55dpfbd6",
+ "rev": "c012a8f620a48cb18db7d78995035d65eae28f11"
+ },
+ "recipe": {
+ "sha256": "1gx35m0wv60cfgm87y2c7vrpwdsqjzk9bz4pp9dbs8dhxvji0ay4",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20141116.1527",
+ "deps": [
+ "auto-complete",
+ "math-symbol-lists"
+ ]
+ },
+ "flex-autopair": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "uk-ar",
+ "repo": "flex-autopair",
+ "sha256": "187ah7yhmr3ckw23bf4fivx8v79yj0zmilrkjj7k6l198w8wmvql",
+ "rev": "4bb757f2556a4a51828e2fed8fb81e31e83052cb"
+ },
+ "recipe": {
+ "sha256": "0hphrqwryp3c0wwyf2f16hj8nc7jlg2dkvljgm2rdvmh2kgj3007",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20120809.718",
+ "deps": []
+ },
+ "company-ghci": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "juiko",
+ "repo": "company-ghci",
+ "sha256": "112nkvkjrk41yc75mc0mnzm0jy0j6wafmdm0pbhrdar12wj8y014",
+ "rev": "c62617770a457c53d1d49621d4e71a2c36de2f82"
+ },
+ "recipe": {
+ "sha256": "0h9hqfb8fm90h87bi3myl84nppbbminhnvv6jqg62qi9k6snn1iq",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151206.1250",
+ "deps": [
+ "company",
+ "haskell-mode"
+ ]
+ },
+ "aurel": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "alezost",
+ "repo": "aurel",
+ "sha256": "1vzjrdzb7wp5ydlwsfxy8jnml7pb16y2dhf85qqv0ckncvwwrs3h",
+ "rev": "dec8063d243176a176f9d7c117c0bb4be9bd03dc"
+ },
+ "recipe": {
+ "sha256": "13zyi55ksv426pcksbm3l9s6bmp102w7j1xbry46bc48al6i2nnl",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151218.1353",
+ "deps": []
+ },
+ "ob-typescript": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "lurdan",
+ "repo": "ob-typescript",
+ "sha256": "1ycqdjqn5361pcnc95hxhjqd3y96cjjnaylrnzwhmacl38jm3vai",
+ "rev": "9dcbd226cbfb75e790dd9de91d9401dde85a889a"
+ },
+ "recipe": {
+ "sha256": "1wpy928ndvc076jzi14f6k5fsw8had0pz7f1yjdqql4icszhqa0p",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150804.730",
+ "deps": [
+ "emacs",
+ "org"
+ ]
+ },
+ "anaconda-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "proofit404",
+ "repo": "anaconda-mode",
+ "sha256": "01a9l785chmcf6d7fsyc72gapapb4gddgqmpps705zpkhjm8f6wj",
+ "rev": "e8f6d910993ac1ecaa41b07abc4cdc9e76e66fb8"
+ },
+ "recipe": {
+ "sha256": "0gz16aam4zrm3s9ms13h4qcdflf55506kgkpyncq3bi54cvv8n1r",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150922.737",
+ "deps": [
+ "dash",
+ "emacs",
+ "f",
+ "pythonic",
+ "s"
+ ]
+ },
+ "js2-closure": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "jart",
+ "repo": "js2-closure",
+ "sha256": "0105vx7bc681q9v2x6wj2r63pwp7g0cjjgpg7k4r852zmndfbzsc",
+ "rev": "8e81e90ee0b923b9d053c339e4b328ecc7693998"
+ },
+ "recipe": {
+ "sha256": "19732bf98lk2ah2ssgkr1ngxx7rz3nhsiw84lsfmydb0vvm4fpk7",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20141027.1750",
+ "deps": [
+ "js2-mode"
+ ]
+ },
+ "drag-stuff": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "rejeep",
+ "repo": "drag-stuff",
+ "sha256": "08kkiqhfy1i6j9156gbl85jvyj592vd08qy24ng2dj0prjvap8w1",
+ "rev": "0d7e28bf234037380dbcb24b9175b96ae34ef8fb"
+ },
+ "recipe": {
+ "sha256": "0hzbh58ijv1akamav8r0zs76pwda2zd9mjaj31ffalzhhsm5jnyc",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150717.732",
+ "deps": []
+ },
+ "epic": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "yoshinari-nomura",
+ "repo": "epic",
+ "sha256": "18gfi1287skv5xvh12arkvxy2c4fism8bdk42wc5q3y21h8nsiim",
+ "rev": "02f6472bb490a39d42ed49c0364972173202f6e1"
+ },
+ "recipe": {
+ "sha256": "0gfl8if83jbs0icz6gcjkwxvcz5v744k1kvqnbx3ga481kds9rqf",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150503.237",
+ "deps": [
+ "htmlize"
+ ]
+ },
+ "dsvn": {
+ "fetch": {
+ "tag": "fetchsvn",
+ "url": "http://svn.apache.org/repos/asf/subversion/trunk/contrib/client-side/emacs/",
+ "sha256": "016dxpzm1zba8rag7czynlk58hys4xab4mz1nkry5bfihknpzcrq",
+ "rev": "1720849"
+ },
+ "recipe": {
+ "sha256": "12cviq6v08anif762a5qav3l8ircp81kmnl9q4yl6bkh9zxv7vy6",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20130120.1457",
+ "deps": []
+ },
+ "clocker": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "roman",
+ "repo": "clocker.el",
+ "sha256": "0hw6i92k651p71am578p02lqp1dj9pic880n6x4z0ydz4xyjhmfw",
+ "rev": "9cb1440ca1fa4f82597f8b053c7f8e44f4682229"
+ },
+ "recipe": {
+ "sha256": "0cckrk40k1labiqjh7ghzpx5zi136xz70j3ipp117x52qf24k10k",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150505.1043",
+ "deps": [
+ "dash",
+ "projectile"
+ ]
+ },
+ "ujelly-theme": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "marktran",
+ "repo": "color-theme-ujelly",
+ "sha256": "0cryprvns1qdnp2qif2g187lj15810w472m7nwrfiwgvqv4v3p1l",
+ "rev": "ff4b9fb4a9469cd807ed712e05cf739a1a900218"
+ },
+ "recipe": {
+ "sha256": "0b7zgmpsdn5p3jx4kif7phxz8pb85snmmfr3yz98xf6p7h6w60gw",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150807.2336",
+ "deps": []
+ },
+ "hl-spotlight": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/hl-spotlight.el",
+ "sha256": "1mvcvd8401w0xw8kjq6rwmmqa41npgdxgpghf4nxl6rghza77nwh"
+ },
+ "recipe": {
+ "sha256": "1166g27fp2pj4j3a8904pzvp5idlq4l22i0w6lbk5c9zh5pqyyf3",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150104.1624",
+ "deps": []
+ },
+ "quick-buffer-switch": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "renard",
+ "repo": "quick-buffer-switch",
+ "sha256": "0kh63nzdzwxksn2ar2i1ds7n96jga2dhhc9gg27p1g2ca66fs6h5",
+ "rev": "d5fdd67b4c9f04b7a7122da2215e4ae076a03b1b"
+ },
+ "recipe": {
+ "sha256": "1fsnha3x3pgq582libb3dmxb93aagv1avnc0rigpfd7hv6bagj40",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151007.1708",
+ "deps": []
+ },
+ "jump-char": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "lewang",
+ "repo": "jump-char",
+ "sha256": "0vpla6lyr30fyq9gi7g9zmnhysbm077m0qgi7w3axppfbxdvg67q",
+ "rev": "b6011a1cb501c0242d11103bbee4d9138fcc765f"
+ },
+ "recipe": {
+ "sha256": "0l8zvfwpngkgcxl1a36jwwxdh23hi390mikz7xrq63w5zwm0007n",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150108.1435",
+ "deps": []
+ },
+ "e2wm-svg-clock": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "myuhe",
+ "repo": "e2wm-svg-clock.el",
+ "sha256": "0h1fnlpvy2mqfxjv64znghmiadh9qimj9q9a60cxhyc0bq0prz6f",
+ "rev": "d425925e3afffcbe2ff74edc80b714e4319d4c94"
+ },
+ "recipe": {
+ "sha256": "0q02lksrbn43s8d9rzpglqybalglpi6qi9lix0cllag6i7fzcbms",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150106.706",
+ "deps": [
+ "e2wm",
+ "svg-clock"
+ ]
+ },
+ "instapaper": {
+ "fetch": {
+ "tag": "fetchhg",
+ "url": "https://bitbucket.com/jfm/emacs-instapaper",
+ "sha256": "0krscid3yz2b7kv75gd9fs92zgfl7pnl77dbp5gycv5rmw5mivp8",
+ "rev": "8daa0058ede7"
+ },
+ "recipe": {
+ "sha256": "1yibdpj3lx6vr33s75s1y415lxqljrk7pqc901f8nfa01kca7axn",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20130104.821",
+ "deps": []
+ },
+ "tracking": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "jorgenschaefer",
+ "repo": "circe",
+ "sha256": "1l6lm3i02r0b8ng0n3rckgk0q38wjng41dqbx148bjxfq44cpghz",
+ "rev": "c9862e432d2dad7cd568d79dbe49849245333fb1"
+ },
+ "recipe": {
+ "sha256": "096h5bl7jcwz5hpbm2139bf8a784hijfy40vzf42y1c9794al46z",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151129.519",
+ "deps": []
+ },
+ "findr": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/findr.el",
+ "sha256": "0a04mgya59w468jv2bmkqlayzgh0r8sdz0qg3n70wn9rhdcwnl9q"
+ },
+ "recipe": {
+ "sha256": "0pxyfnn3f70gknxv09mfkjixqkzn77rdbql703wsslrj2v1l7bfq",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20130824.707",
+ "deps": []
+ },
+ "helm-chrome": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "kawabata",
+ "repo": "helm-chrome",
+ "sha256": "0mc15ymq72l8j7p8v6w99zmhpmqfbyc1w1h2pl5aqn2fmhbmhicy",
+ "rev": "212711d5adcbd3af9195855792ef0166fdf7b8ff"
+ },
+ "recipe": {
+ "sha256": "0p3n2pna83mp4ym8x69lk4r3q4apbj5v2blg2mwcsd9zij153nxz",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151014.2327",
+ "deps": [
+ "cl-lib",
+ "emacs",
+ "helm"
+ ]
+ },
+ "chruby": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "plexus",
+ "repo": "chruby.el",
+ "sha256": "0gx0bd7j71rlniq64vw8k59yzl070mdia05ry18br8kpsbk3bhrl",
+ "rev": "0b210f5bb8c38dbe4581e660055cf9bac93304d0"
+ },
+ "recipe": {
+ "sha256": "0pk6vdvmifiq52n452lbrkklxa69c40bfyzra9qhrghxr2q5v3mk",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151204.630",
+ "deps": []
+ },
+ "whitaker": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "Fuco1",
+ "repo": "whitaker",
+ "sha256": "1y75cylvqgn54h8yqahz4wi1qj5yhbs66i7x23jmbmah3q0rycab",
+ "rev": "eaf26ea647b729ca705b73ea70312d5ffdf89448"
+ },
+ "recipe": {
+ "sha256": "17fnvb3jh6fi4wddn5qnp6i6ndidg8jf9ac69q9j032c2msr07nj",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150814.622",
+ "deps": [
+ "dash"
+ ]
+ },
+ "company": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "company-mode",
+ "repo": "company-mode",
+ "sha256": "0xvrhkh2vdvy0xvwicsmy96bfa46lj89m1gy35lp3dl36nh64kjb",
+ "rev": "250ca1c395c6f05b733abce69a2d928b6cd31618"
+ },
+ "recipe": {
+ "sha256": "0v4x038ly970lkzb0n8fbqssfqwx1p46xldr7nss32jiqvavr4m4",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151208.1541",
+ "deps": [
+ "cl-lib",
+ "emacs"
+ ]
+ },
+ "twilight-bright-theme": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "jimeh",
+ "repo": "twilight-bright-theme.el",
+ "sha256": "1awqc4rvg8693myynb1d4y4dfdaxkd5blnixxs3mdv81l07zyn8c",
+ "rev": "322157cb2f3bf7920ecd209dafc31bc1c7959f49"
+ },
+ "recipe": {
+ "sha256": "074cqs55gwy5jlaay3m9bpdpdfb45nmlijvapz96nibl64pyk83d",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20130605.343",
+ "deps": []
+ },
+ "macro-math": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "nschum",
+ "repo": "macro-math.el",
+ "sha256": "119c77s3qp1vqc5m2yf7m4s81aphkhsvsnwqmpq6xl08r3592zxz",
+ "rev": "216e59371e9ee39c34117ba79b9acd78bb415750"
+ },
+ "recipe": {
+ "sha256": "1r7splwq5kdrdhbmw5zn81vxymsrllgil48g8dl0r60293384h00",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20130328.1104",
+ "deps": []
+ },
+ "elscreen-mew": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "masutaka",
+ "repo": "elscreen-mew",
+ "sha256": "091dxsb73bhqmrddwnmvblmfpwa7v7fa0ha18daxc8j0lrhzdhlh",
+ "rev": "f66a2a5a8dd904791ede5133fdd183522b061bba"
+ },
+ "recipe": {
+ "sha256": "06g4wcfjs036nn64ac0zsvr08cfmak2hyj83y7a0r35yxr1853w4",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140629.1016",
+ "deps": [
+ "elscreen"
+ ]
+ },
+ "helm-backup": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "antham",
+ "repo": "helm-backup",
+ "sha256": "0d6h4gbb69abxxgm85pdi5rsaf9h72yryg72ykd5633i1g4s8a76",
+ "rev": "184026b9fe454aab8e7730106b4ca494fe307769"
+ },
+ "recipe": {
+ "sha256": "182jbm36yzayxi9y3vhpyn25ivrgay37sncqvah35vbw52lnjcn3",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151213.1247",
+ "deps": [
+ "cl-lib",
+ "helm",
+ "s"
+ ]
+ },
+ "cedit": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "zk-phi",
+ "repo": "cedit",
+ "sha256": "1f8gdj3p54q3410c66716y3l7i7nnkmq6hqz0dg1a1sc6jwdij3v",
+ "rev": "0878d851b6307c162bfbddd2bb02789e5e27bc2c"
+ },
+ "recipe": {
+ "sha256": "169sy7a1bgczwfxkkzjiggb7vdjxhrx7i3a39g6zv9f1zs6byk6m",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20141231.1014",
+ "deps": []
+ },
+ "dired-sort-menu": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/dired-sort-menu.el",
+ "sha256": "1i42r7j1c8677qf79ig33bia24d2yvcj26y92migfvrlbi03w4qi"
+ },
+ "recipe": {
+ "sha256": "0n7zh8s3vdw3pcax8wkas9rykf917wn2dzikdlyrl5bbil9ijblb",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20130824.707",
+ "deps": []
+ },
+ "rinari": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "eschulte",
+ "repo": "rinari",
+ "sha256": "1kg83z10jw4ik0aapv9cjqlvqy31rln2am8vh3f77zh61qha37hx",
+ "rev": "be07b0f42aefa24c5d36c441d1f3f72e64fffaa4"
+ },
+ "recipe": {
+ "sha256": "0qknicg3vzl7zbkwsdvp10hrvlng6mbi8hgslx4ir522dflrf9p0",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150709.140",
+ "deps": [
+ "inf-ruby",
+ "jump",
+ "ruby-compilation",
+ "ruby-mode"
+ ]
+ },
+ "irony-eldoc": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "ikirill",
+ "repo": "irony-eldoc",
+ "sha256": "01fjpfixfcca01a5fnnpd2wga4j30p0kwhbai25prvib4qcp1kqn",
+ "rev": "bd1fadbc7c806d84aeec098b19238e5328cbbb7b"
+ },
+ "recipe": {
+ "sha256": "03m0h13jd37vfvn4mavaq3vbzx4x0lklbs0mbc29zaz8pwqlcwz6",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20141227.19",
+ "deps": [
+ "cl-lib",
+ "emacs",
+ "irony"
+ ]
+ },
+ "bm": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "joodland",
+ "repo": "bm",
+ "sha256": "0ifiqy3lpqf0v76jzhgi59smrbzph7silrhjw6w9fqw6nvmyg608",
+ "rev": "d773ecda1c7aec7d9adf4471884c3aba8be22e2b"
+ },
+ "recipe": {
+ "sha256": "07459r7m12j2nsb7qrb26bx32alylhaaq3z448n42lz02a8dc63g",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151105.1722",
+ "deps": []
+ },
+ "ox-textile": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "yashi",
+ "repo": "org-textile",
+ "sha256": "1r9c4s9f7cvxxzf9h07rg75bil0295zq1inh5i4r6za5jabkr4dg",
+ "rev": "0dfca070e35bc6f4a412319e2474bb88666c8c2d"
+ },
+ "recipe": {
+ "sha256": "01kri7vh16xhy8x5qd6s5z08xr0q964rk6xrligdb3i6x78wfvi4",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151114.2225",
+ "deps": [
+ "org"
+ ]
+ },
+ "helm-prosjekt": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "abingham",
+ "repo": "prosjekt",
+ "sha256": "1m8zvrv5aws7b0dffk8y6b5mncdk2c4k90mx69jys10fs0gc5hb3",
+ "rev": "a864a8be5842223043702395f311e3350c28e9db"
+ },
+ "recipe": {
+ "sha256": "019rya3bf13cnval8iz680wby3sqlmqg4nbn0a13l1pkhlnv9fvm",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140129.117",
+ "deps": [
+ "helm",
+ "prosjekt"
+ ]
+ },
+ "ucs-utils": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "rolandwalker",
+ "repo": "ucs-utils",
+ "sha256": "0qw9vwl1p0pjw1xmshxar1a8kn6gmin5rdvvnnly8b5z9hpkjf3m",
+ "rev": "cbfd42f822bf5717934fa2d92060e6e24a813433"
+ },
+ "recipe": {
+ "sha256": "111fwg2cqqzpa79rcqxidppb12c8g12zszppph2ydfvkgkryb6z2",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150826.914",
+ "deps": [
+ "list-utils",
+ "pcache",
+ "persistent-soft"
+ ]
+ },
+ "ids-edit": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "kawabata",
+ "repo": "ids-edit",
+ "sha256": "1k7h1795kaczmhd21hzqgns7blqc6zjh2xg4w3rj986ll8lb9fpr",
+ "rev": "f40495ecd434c6b39d52cadfed25098f08ce78cb"
+ },
+ "recipe": {
+ "sha256": "0jzmcynr6lvsr36nblqzrjwxawyqcdz972zsv4rqkihdydpqfz7m",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151128.635",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "string-utils": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "rolandwalker",
+ "repo": "string-utils",
+ "sha256": "1frdspm1qgksa8cpx5gkj50xk9mgz8202pgp11lqir6l3yjcj3wq",
+ "rev": "c2232d691617973ecf12a970c6008a161c21da14"
+ },
+ "recipe": {
+ "sha256": "1vsvxc06fd3wardldb83i5hjfibvmiqnxvcgdns7i5i8qlsrsx4v",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140508.1541",
+ "deps": [
+ "list-utils"
+ ]
+ },
+ "nose": {
+ "fetch": {
+ "tag": "fetchhg",
+ "url": "https://bitbucket.com/durin42/nosemacs",
+ "sha256": "07bhzddaxdjd591xmg59yd657a1is0q515291jd83mjsmgq258bm",
+ "rev": "194d7789bf79"
+ },
+ "recipe": {
+ "sha256": "0l77hsmn3qk934ppdav1gy9sq48g0v1dzc5qy0rp9vv4yz2jx2jk",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140520.1148",
+ "deps": []
+ },
+ "egison-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "egisatoshi",
+ "repo": "egison3",
+ "sha256": "0sz506yx59gjkphyi3fp07i8h0mkm7gr73xfbjdhn29dss0xl7x0",
+ "rev": "dbb8773f8a47655f3b5311e0a87f63c7b39f60db"
+ },
+ "recipe": {
+ "sha256": "0x11fhv8kkx34h831k2q70y5qfz7wnfia4ka5mbmps7mpr68zcwi",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150827.2329",
+ "deps": []
+ },
+ "hy-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "hylang",
+ "repo": "hy-mode",
+ "sha256": "16z43mpj839bzafhyzpcbw6bmv4ckrf9ryslvg6z6q4g93k64q2m",
+ "rev": "af0d848b069ca0cda3ed177d37d94de117f7ffec"
+ },
+ "recipe": {
+ "sha256": "1vxrqla3p82x7s3kn7x4h33vcdfms21srxgxzidr02k37f0vi82m",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151025.743",
+ "deps": []
+ },
+ "shader-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "midnightSuyama",
+ "repo": "shader-mode",
+ "sha256": "0l094nrrvan8v6j1xdgb51cbjvwicvxih29b7iyga13adb9dy9j4",
+ "rev": "5d5fcbc614f8d7e9226730dd587faf14115b0e6f"
+ },
+ "recipe": {
+ "sha256": "12y84fa1wc82js53rpadaysmbshhqf6wb97889qkksx19n3xmb9g",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151030.904",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "elscreen-separate-buffer-list": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "wamei",
+ "repo": "elscreen-separate-buffer-list",
+ "sha256": "1w34nnl4zalxzmyfbc81qd82m7qp3zvz608dx6hfi44pjz0dp36f",
+ "rev": "1aa66cdbf2b1dc87689725aef004a29bb79dd0f9"
+ },
+ "recipe": {
+ "sha256": "1d8kc137cd8i3wglir1rlvk7w8mrdhd3xvcihi2f2f2g5nh2n5jk",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150522.145",
+ "deps": [
+ "elscreen",
+ "emacs"
+ ]
+ },
+ "helm-cider-history": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "Kungi",
+ "repo": "helm-cider-history",
+ "sha256": "18j4ikb3q8ygdq74zqzm83wgb39x7w209n3186mm051n8lfmkaif",
+ "rev": "c391fcb2e162a02001605a0b9449783575a831fd"
+ },
+ "recipe": {
+ "sha256": "12l8jyl743zqk8m2xzcz75y1ybdkbkvcbvfkn1k88k09s31kdq4h",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150719.1620",
+ "deps": [
+ "cider",
+ "helm"
+ ]
+ },
+ "ido-occur": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "danil",
+ "repo": "ido-occur",
+ "sha256": "1xv8bryinn9qhjjxaxci4jnmz87jdm4nnhghl5lbpy7vzbhij490",
+ "rev": "13dc79ac2bb148b9fcbb470509a06ad1cb7008bb"
+ },
+ "recipe": {
+ "sha256": "058l2pklg12wkvyyshk8va6shphpbc508fv9a8x25pw857a28pji",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150928.1643",
+ "deps": [
+ "dash",
+ "ido-vertical-mode"
+ ]
+ },
+ "cus-edit+": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/cus-edit+.el",
+ "sha256": "0qqfxnsy124nk61iqgb8rjwziyj6h4nvx0gdpsj03z1zh7gqms9s"
+ },
+ "recipe": {
+ "sha256": "1kazcdfajcnrzvhsgsmwwx96rkry0dglprrc02hbd7ky1fppp4sz",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150814.949",
+ "deps": []
+ },
+ "outshine": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "tj64",
+ "repo": "outshine",
+ "sha256": "0g6h5ifmzxvwgyi7qrkkmr8s28kpq8xhmv7rkr3gphqrh5hyppl8",
+ "rev": "d1847614727a060e01d1d2f33b414a1b49d3e85b"
+ },
+ "recipe": {
+ "sha256": "1i8c3q6n9hpfbpg2f8n8brwgaq36af1jn3g5js88yiyyb5dknxq4",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151203.1002",
+ "deps": [
+ "cl-lib",
+ "outorg"
+ ]
+ },
+ "ack-menu": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "chumpage",
+ "repo": "ack-menu",
+ "sha256": "02ba4d8qkvgy52g0zcbyfvsnhr9685gq569nkwa2as30xdcq3khm",
+ "rev": "f77be93a4697926ecf3195a355eb69580f695f4d"
+ },
+ "recipe": {
+ "sha256": "1d2kw04ndxji2qjcm1b65qnxpp08zx8gbia8bl6x6mnjb2isc2d9",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150504.1522",
+ "deps": [
+ "mag-menu"
+ ]
+ },
+ "golden-ratio": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "roman",
+ "repo": "golden-ratio.el",
+ "sha256": "0wdw89n7ngxpcdigv8c01h4i84hsdh0y7xq6jdj1i6mnajl8gk92",
+ "rev": "72b028808b41d23fa3f7e8c0d23d2c475e7b46ae"
+ },
+ "recipe": {
+ "sha256": "15fkrv0sgpzmnw2h4fp2gb83d8s42khkfq1h76l241njjayk1f81",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150819.620",
+ "deps": []
+ },
+ "evil-mark-replace": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "redguardtoo",
+ "repo": "evil-mark-replace",
+ "sha256": "01hccc49xxb6lnzr0lwkkwndbk4sv0jyyz3khbcxsgkpzjiydihv",
+ "rev": "56cf191724a3e82239ca47a17b071c20aedb0617"
+ },
+ "recipe": {
+ "sha256": "03cq43vlv1b53w4kw7mjvk026i8rzhhryfb27ddn6ipgc6xh68a0",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150424.218",
+ "deps": [
+ "evil"
+ ]
+ },
+ "dark-krystal-theme": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "emacsfodder",
+ "repo": "emacs-dark-krystal-theme",
+ "sha256": "07w5aycgaps904q8lk52d0g28wxq41c82xgl5mw2q56n3s5iixfx",
+ "rev": "bcb3c4ccf17db541e319d60e2eca38a5b22d5664"
+ },
+ "recipe": {
+ "sha256": "056aql35502sgvdpbgphpqdxzbjf4ay01rra6pm11c1dya8avv0j",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20141116.101",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "helm-hoogle": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "jwiegley",
+ "repo": "haskell-config",
+ "sha256": "052hzybign54qawdm1fflsaz4bcwflycksv6wb1nw1jv79s2qbap",
+ "rev": "8e4e28c3852376510861f64f00009a63b8ec0c7d"
+ },
+ "recipe": {
+ "sha256": "0672mqm0c261mknbgc3a4pahq27gw2pfklflxl1y4ykbs6q7vcyw",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150919.421",
+ "deps": [
+ "emacs",
+ "helm"
+ ]
+ },
+ "kixtart-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "ryrun",
+ "repo": "kixtart-mode",
+ "sha256": "1ld3ccg8q7hmjrj60rxvmmfy4dpm2lvlshjqdf9ifgjzp221g4vb",
+ "rev": "1c2356797e7b766bbaaa2b341176a8b10499cd79"
+ },
+ "recipe": {
+ "sha256": "079bw4lgxbmk65rrfyy8givs8j5wsyhpcjjw915ifkg577gj87qp",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150611.1104",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "helm-ag": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "syohex",
+ "repo": "emacs-helm-ag",
+ "sha256": "11m1r4bcwk3w2g8wsgc1fbmkj5c30qfljwxhg1zw3hakvmycnpg6",
+ "rev": "47aca7f291eccd81f1b1a4a8f96b8d8caec5242e"
+ },
+ "recipe": {
+ "sha256": "023zvgmi5b5b2qga3jqd7jrq9ap8n3rhvl6jrv9fsi565sg1fv43",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151210.218",
+ "deps": [
+ "cl-lib",
+ "helm"
+ ]
+ },
+ "direx-grep": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "aki2o",
+ "repo": "direx-grep",
+ "sha256": "0swdh0qynpijsv6a2d308i42hfa0jwqsnmf4sm8vrhaf3vv25f5h",
+ "rev": "1109a512a80b2673a70b18b8568514049017faad"
+ },
+ "recipe": {
+ "sha256": "0y2wrzq06prm55akwgaqjg56znknyvbayav13asirqzg258skvm2",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140515.1006",
+ "deps": [
+ "direx"
+ ]
+ },
+ "muttrc-mode": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/muttrc-mode.el",
+ "sha256": "1xihp3zdqs9054j3bfrd9wnahsvvxjk1ags1iy50ncv5850ppjis"
+ },
+ "recipe": {
+ "sha256": "0ym6rfrhrmpnlqhkxv9ck5893qm0yhswslvgc9vb4nl9hyc1b5jn",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20090804.1752",
+ "deps": []
+ },
+ "cycle-resize": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "pierre-lecocq",
+ "repo": "cycle-resize",
+ "sha256": "0hf3r89n9zn7wkay71drxadsnd9zm6p6kvg5mvwzdy3x3z4cfyi3",
+ "rev": "1a5ed3ff6f7f5dc097c38b4361708b6882af692c"
+ },
+ "recipe": {
+ "sha256": "0vp57plwqx4nf3pbv5g4frjriq8niiia9xc3bv6c3gzd4a0zm7xi",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150602.1423",
+ "deps": []
+ },
+ "cmds-menu": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/cmds-menu.el",
+ "sha256": "1dfnvvdlyb8jlrj6zkmry075vmax77kyjnk5mjsfz2wwyk5lsfb5"
+ },
+ "recipe": {
+ "sha256": "12s75y9d75cxqgg3hj0s4w0d10zy8y230b5gy09685ab5lcajfks",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150104.1534",
+ "deps": []
+ },
+ "centimacro": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "abo-abo",
+ "repo": "centimacro",
+ "sha256": "0zqrpaq9c3lm12jxnvysh8f3m3193k22zaj0ycscdqd1jpq4wcgh",
+ "rev": "1b97a9b558ed9c49d5da1bfbf29b2506575c2742"
+ },
+ "recipe": {
+ "sha256": "1qbyfi6s4hdp5sv394w3sib8g2kx06i06q8gh6hdv5pis5kq9fx6",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140306.827",
+ "deps": []
+ },
+ "cmake-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "Kitware",
+ "repo": "CMake",
+ "sha256": "1fga8yvhna953p8gkx69767ai9lkzrxfisqwlf3mrc4pn40yi74x",
+ "rev": "f9e3ca46cbeae4fb885398e8f7b90c784078b1d3"
+ },
+ "recipe": {
+ "sha256": "0zbn8syb5lw5xp1qcy3qcl75zfiyik30xvqyl38gdqddm9h7qmz7",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151012.926",
+ "deps": []
+ },
+ "eyedropper": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/eyedropper.el",
+ "sha256": "1bs8239sv3mjyj2dw72wrl7yp1ds7gs3cs4a9ds7hlzzz7qw9s6s"
+ },
+ "recipe": {
+ "sha256": "07kdn90vm2nbdprw9hwdgi4py6gqzmrad09y1fwqdy49hrvbwdzk",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150509.1545",
+ "deps": [
+ "hexrgb"
+ ]
+ },
+ "smart-forward": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "magnars",
+ "repo": "smart-forward.el",
+ "sha256": "19l47xqzjhhm9j3izik0imssip5ygg3lnflb9ixsz1js571aaxha",
+ "rev": "7b6dbfdbd4b646376a567c70e1a161545431b72b"
+ },
+ "recipe": {
+ "sha256": "032yc45c19fl886jmi5q04r6q47xz5rphb040wjvpd4fnb06hr8c",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140430.213",
+ "deps": [
+ "expand-region"
+ ]
+ },
+ "majapahit-theme": {
+ "fetch": {
+ "tag": "fetchFromGitLab",
+ "owner": "franksn",
+ "repo": "majapahit-theme",
+ "sha256": "0ibw6x0wl257kxfp145ybzcnfgjr997wylxy0m6riv6sklzhx4db",
+ "rev": "09a038826ef00b82684e569eaca07ceff7228219"
+ },
+ "recipe": {
+ "sha256": "04k2smrya27rrjlzvnl3a6llg8vj8x4mm9qyk4kwrmckhd6jd68s",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151209.1243",
+ "deps": []
+ },
+ "interleave": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "rudolfochrist",
+ "repo": "interleave",
+ "sha256": "13bsszx4rsq3awg6zgzfdwgflkldw38nihkc9nldfixzvw1gdqqv",
+ "rev": "4b8ce53ee8ca075029ce88d203735256a875e516"
+ },
+ "recipe": {
+ "sha256": "18b3fpxn07y5abkcnaw9is9ihdhik7xjdj6kzl1pz958lk9f4hfy",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151120.835",
+ "deps": []
+ },
+ "workgroups2": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "pashinin",
+ "repo": "workgroups2",
+ "sha256": "0prj2b33h6rya7y9ff91r72bva1y6hg0sv9l11bn1gikmc6lc18n",
+ "rev": "928d509157ec8a4a2e343b6115dff034c3243a7a"
+ },
+ "recipe": {
+ "sha256": "0vhj6mb3iflli0l3rjlvlbxz5yk6z3ii5r71gx0m4vp4lhxncy3v",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20141102.1322",
+ "deps": [
+ "anaphora",
+ "cl-lib",
+ "dash",
+ "f"
+ ]
+ },
+ "eyebrowse": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "wasamasa",
+ "repo": "eyebrowse",
+ "sha256": "0jc5wv2hkc89yh5ypa324xlfqdna20msr63g30njxq4g2vd0iqa7",
+ "rev": "6d75409a81a6447765ad2171e3d0b5a272e1f207"
+ },
+ "recipe": {
+ "sha256": "09fkzm8z8nkr4s9fbmfcjc80h50051f48v6n14l76xicglr5p861",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151213.816",
+ "deps": [
+ "dash",
+ "emacs"
+ ]
+ },
+ "ido-occasional": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "abo-abo",
+ "repo": "ido-occasional",
+ "sha256": "0zlkq29wxd3a4vg0w6ds2jad5h1pja7ccd3l6ppl0kz1b1517qlr",
+ "rev": "d405f1795e1e0c63be411ee2825184738d29c33a"
+ },
+ "recipe": {
+ "sha256": "1vdh5i9qznzd9r148a6jw9v47swf7ykwyciqfzc3ismv5q909bl2",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150214.648",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "extempore-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "extemporelang",
+ "repo": "extempore-emacs-mode",
+ "sha256": "1gdvls5gaqiwrc8v335ap9raa25jzjq32h80y0mfq0iyrk1r9glp",
+ "rev": "e1efe28b29e2a5caf03a0cf1f1406e6a375be919"
+ },
+ "recipe": {
+ "sha256": "1z8nzpcj27s74kxfjz7wyr3848jpd6mbyjkssd06ri5p694j9php",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151214.40",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "oauth": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "psanford",
+ "repo": "emacs-oauth",
+ "sha256": "058dyk1c3iw0ip8n8rfpskvqiriqilpclkzc18x73msp5svrh3lj",
+ "rev": "ee4744ad76a1560281b0c4944575a3bd598c6458"
+ },
+ "recipe": {
+ "sha256": "18z3i5brxm60z373cwx2sa3hx7v38a5s62gbs9b0lxb20ah4p9rz",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20130127.1951",
+ "deps": []
+ },
+ "delight": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/delight.el",
+ "sha256": "1gap2icsqi7cryfvcffh41zqg2ghl4y7kg9pngzdfjrc3m7sf635"
+ },
+ "recipe": {
+ "sha256": "1d9m5k18k73vhidwd50mcbq7mlvwdn4sb9ih8r5gri9a9whi2nkj",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20141128.837",
+ "deps": []
+ },
+ "apropospriate-theme": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "waymondo",
+ "repo": "apropospriate-theme",
+ "sha256": "1p9nplbxp57i2m2r1f1ff1xgsb152az9yb4zyapf0cvspqzllrvx",
+ "rev": "3cc7729e266058c3c080ee67769cb0ff3e0789a6"
+ },
+ "recipe": {
+ "sha256": "10bj2bsi7b104m686z8mgvbh493liidsvivxfvfxzbndc8wyjsw9",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151112.1059",
+ "deps": []
+ },
+ "speech-tagger": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "cosmicexplorer",
+ "repo": "speech-tagger",
+ "sha256": "03vvv8s5l3218231hm7l6bkl990b0ypc8n72lda1zxk6kjyr1q25",
+ "rev": "10135e324630d25ae8c16f052cf4d97bda592164"
+ },
+ "recipe": {
+ "sha256": "0sqil949ny9qjxq7kpb4zmjd7770r0qvq4sz80agw6a27mqnaajc",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150903.2",
+ "deps": [
+ "cl-lib"
+ ]
+ },
+ "dokuwiki-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "kbkbkbkb1",
+ "repo": "emacs-dokuwiki-mode",
+ "sha256": "104nnvp2mhsm9iwnya6k9s6mlgcg47ndshppnz0hbh556pcdyagr",
+ "rev": "e0cecc9551f490318e7a23ed9e0a3082c7196bc7"
+ },
+ "recipe": {
+ "sha256": "0q5ybyj35dyh8k0nfvbglsq3ad2apc8cdijw4wqczc5180fckgy9",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140130.1136",
+ "deps": []
+ },
+ "wakatime-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "wakatime",
+ "repo": "wakatime-mode",
+ "sha256": "1bcdvk5bg5yi0qq0wd3w9wl38s0brrafz52bzsracj3wffswjg1n",
+ "rev": "883f969c1502994b55912c6ade7155220e3c2cea"
+ },
+ "recipe": {
+ "sha256": "1rhy2bwkqlha4bj3zmb0iassiglch7yb2kbas0bbpl3d0hdki2i8",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151117.1830",
+ "deps": []
+ },
+ "evil-vimish-fold": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "alexmurray",
+ "repo": "evil-vimish-fold",
+ "sha256": "0m4ipz3x5k3gbyjgsnhl6rr4jvhqn61cyc1gmv0mkc2pbqqs1ijq",
+ "rev": "d187a685d9610ec8159040c90030cb8ada4f54a5"
+ },
+ "recipe": {
+ "sha256": "01wp4h97hjyzbpd7iighjj26m79499wp5pn8m4pa7v59f6r3sdk6",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151006.2326",
+ "deps": [
+ "emacs",
+ "evil",
+ "vimish-fold"
+ ]
+ },
+ "try": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "larstvei",
+ "repo": "Try",
+ "sha256": "05nzchk7jia9g7b3ww4m3rgg0aylrfkpiz13cylv2bk79rwhzifc",
+ "rev": "464cfb73599c88a4b57c83adfa93173c41d28a35"
+ },
+ "recipe": {
+ "sha256": "0dv0i77agva215bf1gj1x1k7f7g3pvccyyd7vslapf9z8brccn7n",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150608.411",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "whole-line-or-region": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "purcell",
+ "repo": "whole-line-or-region",
+ "sha256": "0ip0vkqb4dm88xqzgwc9yaxzf4sc4x006m6z73a3lbfmrncy2c1d",
+ "rev": "a60e022b30c2f4d3118bcaef1adb77b90e0ca941"
+ },
+ "recipe": {
+ "sha256": "1vs2i4cy1zc6nj660i9h36jbfgc3kvqivjnzlq5zwlxk5hcibqa1",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20110901.330",
+ "deps": []
+ },
+ "flymake-elixir": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "syl20bnr",
+ "repo": "flymake-elixir",
+ "sha256": "04w6g4wixrpfidxbk2bwazhvf0cx3c2v2mxnycqqlqkg0m0sb0fn",
+ "rev": "3810566cffe35d04cc3f01e27fe397d68d52f802"
+ },
+ "recipe": {
+ "sha256": "15r3m58hnc75l3j02xdr8yg25fbn2sbz1295ac44widzis82m792",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20130810.917",
+ "deps": []
+ },
+ "flatui-theme": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "john2x",
+ "repo": "flatui-theme.el",
+ "sha256": "0j8pklgd2sk01glgkr24b5n5521425vws8zwdi4sxcv74922j5zr",
+ "rev": "80d1967ea73c10aa8aa10620c2b343010e9ce5b9"
+ },
+ "recipe": {
+ "sha256": "0s88xihw44ks4b07wcb9swr52f3l1ls0jn629mxvfkv4a6hn7rmz",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150531.343",
+ "deps": []
+ },
+ "seti-theme": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "caisah",
+ "repo": "seti-theme",
+ "sha256": "18igxblmrbxwhd2d68cz1bpj4524djh2dw2rwhxlij76f9v805wn",
+ "rev": "f2f472af00f251f8cdced29faadbb3380d3c7ff1"
+ },
+ "recipe": {
+ "sha256": "1mwkx3hynabwr0a2rm1bh91h7xf38a11h1fb6ys8s3mnr68csd9z",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150314.322",
+ "deps": []
+ },
+ "git-link": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "sshaw",
+ "repo": "git-link",
+ "sha256": "1la3zzcjnmzgxkd4ljr9b5335ddbrvid47kfzp2s358xknzmbsdf",
+ "rev": "00a8ed924d837d43bfdc486ab389ee400b6c2a8f"
+ },
+ "recipe": {
+ "sha256": "1vqabnmdw8pxd84c15ghh1rnglwb5i4zxicvpkg1ci8xalayn1c7",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150927.1225",
+ "deps": []
+ },
+ "evil-nerd-commenter": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "redguardtoo",
+ "repo": "evil-nerd-commenter",
+ "sha256": "1c8zh5vykl4v57jrxcpyrbd1ih6nv306sfmb6ihiak6ncvllp8cx",
+ "rev": "770981cffd7e8d967e6291c738534a04bcd7f753"
+ },
+ "recipe": {
+ "sha256": "1pa5gh065hqn5mhs47qvjllwdwwafl0clk555mb6w7svq58r6i8d",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151213.625",
+ "deps": []
+ },
+ "aes": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "Sauermann",
+ "repo": "emacs-aes",
+ "sha256": "0jlqk3kn2920b0dfmwy511x83hkmclb646qws3im0p75qcnyr4s1",
+ "rev": "61d0da553ad980e5b9079444aed8214a28b409d9"
+ },
+ "recipe": {
+ "sha256": "11vl9x3ldrv7q7rd29xk4xmlvfxs0m6iys84f6mlgf00190l5r5v",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151211.1603",
+ "deps": []
+ },
+ "vcl-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "ssm",
+ "repo": "vcl-mode",
+ "sha256": "1jfis26lmghl30ydzq1xdkrrj3d85q7g44ns6kmfg119ccapllbj",
+ "rev": "9f315654ec2ab13e5a14b752cac57dc832bef893"
+ },
+ "recipe": {
+ "sha256": "1h0a1briinp9ka7ga3ipdhyf7yfinwvf7babv36myi720900wcq5",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151213.1323",
+ "deps": []
+ },
+ "orgit": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "magit",
+ "repo": "orgit",
+ "sha256": "0d7rh5bi5v04njj1nh8q8kdr6aw68lcw4ghx6kwq97aff4qmcrp1",
+ "rev": "731c5cb4f1c7e2ee5b819ca159c0c01e2b306c73"
+ },
+ "recipe": {
+ "sha256": "0askccb3h98v8gmylwxaph3gbyv5b1sp4slws76aqz1kq9x0jy7w",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151008.1614",
+ "deps": [
+ "dash",
+ "emacs",
+ "magit",
+ "org"
+ ]
+ },
+ "jump-to-line": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "ongaeshi",
+ "repo": "jump-to-line",
+ "sha256": "1s9plmg323m1p625xqnks0yqz0zlsjacdj7pv8f783r0d9jmfq3s",
+ "rev": "01ef8c3529d85e6c59cc20840acbc4a8e8325bc8"
+ },
+ "recipe": {
+ "sha256": "09ifhsggl5mrb6l8nqnl38yph0v26v30y98ic8hl23i455hqkkdr",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20130122.1053",
+ "deps": []
+ },
+ "browse-at-remote": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "rmuslimov",
+ "repo": "browse-at-remote",
+ "sha256": "1djylgajp47mjxgdppm8ihbs4k4gnqn6ryzq3d1wkq5vlmqq25m3",
+ "rev": "6b07282cbf3d40d654cbc083f19a07118848ee6d"
+ },
+ "recipe": {
+ "sha256": "1d40b9j3pc6iy3l25062k7f52aq0vk9sizdwd7wii3v5nciczv6w",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151214.1527",
+ "deps": [
+ "cl-lib",
+ "f",
+ "s"
+ ]
+ },
+ "pkg-info": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "lunaryorn",
+ "repo": "pkg-info.el",
+ "sha256": "1xkdbyhz9mgdz5zmjm4hh050klsl12w5lkckw2l77ihcxv0vjnf2",
+ "rev": "4dbe328c9eced79e0004e3fdcd7bfb997a928be5"
+ },
+ "recipe": {
+ "sha256": "0whcvralk76mfmvbvwn57va5dkb1irj7iwffgddi7r0ima49iszx",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150517.643",
+ "deps": [
+ "epl"
+ ]
+ },
+ "dollaro": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "laynor",
+ "repo": "dollaro",
+ "sha256": "1xyqsnymgdd8ic3az2lgwv7s7vld6d4pcycb234bxm4in9fixgdj",
+ "rev": "500127f0172ac7a1eec627e026b59136580a74ac"
+ },
+ "recipe": {
+ "sha256": "06kaqzb0nh8sndhk7p5n4acn5nc27dyxw3ldgcbp81wj6ipii26h",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151123.702",
+ "deps": [
+ "s"
+ ]
+ },
+ "rustfmt": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "fbergroth",
+ "repo": "emacs-rustfmt",
+ "sha256": "0i2r14ifpqjcxcflhl38iayk53920vl616y770lwf77zvhnxrmm9",
+ "rev": "b54e77b2287bfc558c0b4dbfa8908b4face48320"
+ },
+ "recipe": {
+ "sha256": "1znav2pbax0rsvdl85mmbgbmxy7gnrm4nx54ij1ff6yd831r5jyl",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151124.1311",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "helm-css-scss": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "ShingoFukuyama",
+ "repo": "helm-css-scss",
+ "sha256": "01a3pahpsxb7d15dkfgxypl7gzqb4dy4f36lmid1w77b9rhs6nph",
+ "rev": "ab8348aa98e0daa2f1b771e35bdb06bfacbe5016"
+ },
+ "recipe": {
+ "sha256": "0iflwl0rijbkx1b7i1s7984dw7sz1wa1cb74fqij0kcn76kal7ak",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140626.1925",
+ "deps": [
+ "emacs",
+ "helm"
+ ]
+ },
+ "flycheck-protobuf": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "edvorg",
+ "repo": "flycheck-protobuf",
+ "sha256": "0dq4ikqskkpcl3z4s5vl6h4f4bx4dsgyn2knlr3x4wjcgzyrv0qn",
+ "rev": "2f0ab48b1b2e8f6c4b86ce876598f9ac9868d1da"
+ },
+ "recipe": {
+ "sha256": "0cn5b9pr9i9hrix7dbrylwb2812al8ipbpqvlb9bm2f8hc9kgsmc",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150731.512",
+ "deps": [
+ "protobuf-mode"
+ ]
+ },
+ "evil-space": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "linktohack",
+ "repo": "evil-space",
+ "sha256": "1x4nphjq8lvg8qsm1pj04mk9n59xc6jlxiv5s3bih1nl4xkssrxy",
+ "rev": "a9c07284d308425deee134c9d88a2d538dd229e6"
+ },
+ "recipe": {
+ "sha256": "1asvh873r1xgffvz3nr653yn8h5ifaphnafp6wf1b1mja6as7f23",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151208.628",
+ "deps": [
+ "evil"
+ ]
+ },
+ "ipretty": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "steckerhalter",
+ "repo": "ipretty",
+ "sha256": "0skyd9c7pz68v17aj3h47ralszbmc4gqg552q8jpimcjd1lacc7l",
+ "rev": "6f6da8907abea53d6d246d61e1a0f4ebeb0b9f38"
+ },
+ "recipe": {
+ "sha256": "1zysip6cb8s4nzsxiwk052gq6higz2xnd376r9wxmgj7w8him2c4",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140407.20",
+ "deps": []
+ },
+ "wcheck-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "tlikonen",
+ "repo": "wcheck-mode",
+ "sha256": "15ghfb6bpd1lcxaf04fcr9n62pjcbl65g4mgdhig8yawnwh0x05v",
+ "rev": "6f5e9faabb04f9e7c6698b90487ebe5913a13aed"
+ },
+ "recipe": {
+ "sha256": "0cmdvhgax6r5svn3wkwll4j271qj70g8182c58riwnkhiajxmn3k",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151203.1205",
+ "deps": []
+ },
+ "overseer": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "tonini",
+ "repo": "overseer.el",
+ "sha256": "1bfj56ackza8c1jja660v6ss9ii7prcaim5plnfqsv3k149r8qlh",
+ "rev": "db27cbbb10fb9b072d638a1b345102b42b20a37d"
+ },
+ "recipe": {
+ "sha256": "04wfwcal051jrnmm5dga6vl4c9j10pm416586yxb8smi6fxws2jg",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150801.1202",
+ "deps": [
+ "dash",
+ "emacs",
+ "pkg-info"
+ ]
+ },
+ "pp-c-l": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/pp-c-l.el",
+ "sha256": "0czz6qakz55776ji5472clvw13y32k3jvq8w5k9rdlmyxnc2vafd"
+ },
+ "recipe": {
+ "sha256": "0gbqxlrsh9lcdkrj8bqh1mpxyhdlwbaxz4ndp5s90inmisaqb83v",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150104.1839",
+ "deps": []
+ },
+ "win-switch": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "genovese",
+ "repo": "win-switch",
+ "sha256": "0ib20zl8l1fs69ca9rry27qz69sgf6ws1ca5nhm5llvpkjcgv53i",
+ "rev": "a0da96c23e8775a2dfdbe55ed3ec5b57f1ebb26a"
+ },
+ "recipe": {
+ "sha256": "1s6inp5kf763rngn58r02fd7n7z3dd55j6hb7s9dgvc856d5z3my",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150208.2111",
+ "deps": []
+ },
+ "nrepl-sync": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "phillord",
+ "repo": "lein-sync",
+ "sha256": "1129r3rzmfbl8nxjz71xnlyaszhhldawj467zbl36brdadp014n1",
+ "rev": "bab53a2361526d63a24cda176d07a1247bf5b399"
+ },
+ "recipe": {
+ "sha256": "01b504b4d8rrhlf3sfq3kk9i222fch6jd5jbm02kqw20fgv6q3jd",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140807.1054",
+ "deps": [
+ "cider"
+ ]
+ },
+ "smtpmail-multi": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "vapniks",
+ "repo": "smtpmail-multi",
+ "sha256": "0rhpnijp72jsl4gzhwz0z387f55vv3fp0zwki0fi5jlkzjamnnqg",
+ "rev": "21885f6f7ec46facb64fafc2caa2be01caa4b6db"
+ },
+ "recipe": {
+ "sha256": "0nc3k8ly4nx7fm3b2apga3p4svz5c9sldnlk86pz2lzra5h3b4ss",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20130921.2242",
+ "deps": []
+ },
+ "gitty": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "jorgenschaefer",
+ "repo": "gitty",
+ "sha256": "0y8msn22lzfwh7d417abay9by2zhs9zswhcj8a0l7ln2ksljl500",
+ "rev": "c7c3d622d59531d023b9184d2479316c28045ca2"
+ },
+ "recipe": {
+ "sha256": "1z6w4vbn0aaajyqanc7h1m5ali7dbrnh4ngw87a2x2pkxarx6x16",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151121.148",
+ "deps": []
+ },
+ "dmenu": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "lujun9972",
+ "repo": "el-dmenu",
+ "sha256": "1k9fkydy5rwfnj610fv2k8pallz4w545f4ms0snj63fp01640090",
+ "rev": "3b8e146f1f2170a7db2a0e45c352e523be25f25e"
+ },
+ "recipe": {
+ "sha256": "1w1pgaj2yasfhsd1ibvrwy11ykq8v17h913g298h3ycsvqv8gic0",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151216.1027",
+ "deps": [
+ "cl-lib"
+ ]
+ },
+ "stem": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "yuutayamada",
+ "repo": "stem",
+ "sha256": "1xc4v8a35c2vpfhza15j4f89x7vyg9bbgm7xnprij7814k8iy7p0",
+ "rev": "d74e6611d6ba5025e0276a2cc7c8a90f46bfa9ac"
+ },
+ "recipe": {
+ "sha256": "1625nbi2bmb7vzjz0s7y1cy7dp8lp83dayiib3nr2bfkv76fwkcq",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20131102.609",
+ "deps": []
+ },
+ "erefactor": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "mhayashi1120",
+ "repo": "Emacs-erefactor",
+ "sha256": "17i567nfm0rykimh6bpcc5f2l7wsf8zcdy2jzd7sgrl54dvb0g9i",
+ "rev": "fde3fd42c815c76e8015f69518a92f6bfcfde990"
+ },
+ "recipe": {
+ "sha256": "0ma9sbrq4n8y5w7vvbhhgmw25aiykbq5yhxzm0knj32bgpviprw7",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150620.1943",
+ "deps": [
+ "cl-lib"
+ ]
+ },
+ "mwe-log-commands": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "emacsmirror",
+ "repo": "mwe-log-commands",
+ "sha256": "0qdlbyq47gr65yq5ri8s9lxw4wp9fmyqc2prkh560d4hkvw60aw3",
+ "rev": "8253f2a311f35b03f72a035744f0cbdd776ea17e"
+ },
+ "recipe": {
+ "sha256": "05z2ax9mgyxldd3ds44xnh9f5w5q4ziy4rxmnfiqjykan2f5hnkn",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20100703.741",
+ "deps": []
+ },
+ "livescript-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "yhisamatsu",
+ "repo": "livescript-mode",
+ "sha256": "0kqjz0i0zapyhh8z57cvc8ifiizngix3ca01mjnvyq3zxg1bqrsg",
+ "rev": "90a918d9686e256e6d4d439cc20f24dad8d3b804"
+ },
+ "recipe": {
+ "sha256": "1fdfhp39zr2mhy5rd6mwqv5fwd8xaypdqig7v3ksv77m5zq7cmmj",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140612.2321",
+ "deps": []
+ },
+ "identica-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "gabrielsaldana",
+ "repo": "Emacs-Identica-mode",
+ "sha256": "047gzycr49cs8wlmm9j4ry7b7jxmfhmbayx6rbbxs49lba8dgwlk",
+ "rev": "cf9183ee11ac922e85c7c908f04e2d00b03111b3"
+ },
+ "recipe": {
+ "sha256": "1r69ylykjap305g23cry4wajiqhpgw08nw3b5d9i1y3mwx0j253q",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20130204.1653",
+ "deps": []
+ },
+ "org-ehtml": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "eschulte",
+ "repo": "org-ehtml",
+ "sha256": "0kqvwqmwnwg2h7r38fpjg6qlkcj9v8011df8nmsgs1w1mfdvnjsq",
+ "rev": "9df85de1a0fe1e7b2d6c000777c1a0c0217f92d0"
+ },
+ "recipe": {
+ "sha256": "0n82fbd7aircqg2c9m138qfv8csrv0amhya3xlwswdkqn51vn3gw",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150506.1858",
+ "deps": [
+ "emacs",
+ "web-server"
+ ]
+ },
+ "mentor": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "skangas",
+ "repo": "mentor",
+ "sha256": "11hyydc13jdai6lkxx8nqf8xljh0gx7fcmywhik4f1hf3pdv7i2q",
+ "rev": "f5d653348140cdab1d8ee9143b14a50ea88ed3fb"
+ },
+ "recipe": {
+ "sha256": "0nkf7f90m2qf11l97zwvb114yrpbqk1xxr2bh2nvbx8m1c8nad9s",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140904.1910",
+ "deps": [
+ "xml-rpc"
+ ]
+ },
+ "etags-table": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/etags-table.el",
+ "sha256": "0apm8as606bbkpa7i1hkwcbajzsmsyxn6cwfk9dkkll5bh4vglqf"
+ },
+ "recipe": {
+ "sha256": "1jzij9jknab42jmx358g7f1c0d8lsp9baxbk3xsy7w4nl0l53d84",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20130824.657",
+ "deps": []
+ },
+ "dtrt-indent": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "jscheid",
+ "repo": "dtrt-indent",
+ "sha256": "0x8c3h3jvyn2462r0sagz63vv9pr5ivfzkshr69603ibyfgqxxkp",
+ "rev": "7f212888fbacc262080ab2740eda673b376c6b7b"
+ },
+ "recipe": {
+ "sha256": "1npn2jngy1wq0jpwmg1hkn8lx6ncbqsi587jl38lyp2xwchshfk5",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151013.414",
+ "deps": []
+ },
+ "bracketed-paste": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "hchbaw",
+ "repo": "bracketed-paste.el",
+ "sha256": "00463z740xrkr4yz46g9zxz23zy878jgvba81pnwvg4l6hd3kc8s",
+ "rev": "6c2aee346e2f5cdb4ed1386c3e3c853cecd72eff"
+ },
+ "recipe": {
+ "sha256": "1v7zwi29as0218vy6ch21iqqcxfhyh373m3dbcdzm2pb8bpcg58j",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140222.2001",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "ac-alchemist": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "syohex",
+ "repo": "emacs-ac-alchemist",
+ "sha256": "19msfx3f3px1maj41bzh139s6sv2pjk9vm3bphn7758fqhzyin0f",
+ "rev": "b1891c3d41aed83f61d78a609ea97be5cc2758d9"
+ },
+ "recipe": {
+ "sha256": "02ll3hcixgdb8zyszn78714gy1h2q0vkhpbnwap9302mr2racwl0",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150908.156",
+ "deps": [
+ "alchemist",
+ "auto-complete",
+ "cl-lib"
+ ]
+ },
+ "jvm-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "martintrojer",
+ "repo": "jvm-mode.el",
+ "sha256": "0k91cdjlpil8npc4d3zsgx2gk41crl7qgm9r85khcgxs59kmkniw",
+ "rev": "3355dbaf5b0185aadfbad24160399abb32c5bea0"
+ },
+ "recipe": {
+ "sha256": "1r283b4s0pzq4hgwcz5cnhlvdvq4gy0x51g3vp0762s8qx969a5w",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150422.208",
+ "deps": [
+ "dash",
+ "emacs"
+ ]
+ },
+ "replace-symbol": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "bmastenbrook",
+ "repo": "replace-symbol-el",
+ "sha256": "0ks884jhxqkr8j38r9m4s56krm2gpkm0v5d51zzivcfhs30s6nff",
+ "rev": "6af93ad5a23790c90595c92bf2dcb69cd6d5f820"
+ },
+ "recipe": {
+ "sha256": "07ljmw6aw9hsqffhwmiq2pvhry27acg6f4vgxgi91vjr8jj3r4ng",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151030.1857",
+ "deps": []
+ },
+ "which-key": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "justbur",
+ "repo": "emacs-which-key",
+ "sha256": "11mi23djk690n4984hk3pv61rrkdnxpkmywsqibi3xki27v2al36",
+ "rev": "ad60a6c7206752d9b9cf4ba17c2293dba365e9fb"
+ },
+ "recipe": {
+ "sha256": "0vqbhfzcv9m58w41zdhpiymhgl38n15c6d7ffd99narxlkckcj59",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151217.827",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "myanmar-input-methods": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "yelinkyaw",
+ "repo": "emacs-myanmar-input-methods",
+ "sha256": "0177q8hm51bcvb4i46rwnimngvy9y32p3as19zwmfbznp2sc5963",
+ "rev": "601f5342ee2fd01263f6e04579d90cc22ad623f7"
+ },
+ "recipe": {
+ "sha256": "1yg8zy2z18pbyr507ms2b162c0819rna1ilwyp6hb3iv2zjw45sd",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150806.707",
+ "deps": []
+ },
+ "spaces": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "chumpage",
+ "repo": "chumpy-windows",
+ "sha256": "069aqyqzjp5ljqfzm7lxkh8j8firk7041wc2jwzqha8jn9zpvbxs",
+ "rev": "164be41b588b615864258c502583100d3ccfe13e"
+ },
+ "recipe": {
+ "sha256": "152x7fzjnjjdk9d9h0hbixdp3haqn5vdx3bq1nfqfrkvzychyr06",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20130610.249",
+ "deps": []
+ },
+ "esxml": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "tali713",
+ "repo": "esxml",
+ "sha256": "0mrfkq3jcsjfccqir02yijl24hllc347b02y7gk3b2yn0b676dv3",
+ "rev": "ca09423c3172820ba97dcc68204911d06f55f851"
+ },
+ "recipe": {
+ "sha256": "0nn074abkxz7p4w59l1za586p5ya392xhl3sx92yys8a3194n6hz",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151013.1328",
+ "deps": [
+ "kv"
+ ]
+ },
+ "iss-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "rasmus-toftdahl-olesen",
+ "repo": "iss-mode",
+ "sha256": "0992lzgar0kz9i1sk5vz17q9qzfgl8fkyxa1q0hmhgnpjf503cnj",
+ "rev": "3b517aff31529bab33f8d7b562bd17aff0107fd1"
+ },
+ "recipe": {
+ "sha256": "1my4vi1x07hg0dva97i685lx6m6fcbfk16j1zy93zriyd7z5plkc",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20141001.1413",
+ "deps": []
+ },
+ "dpaste": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "gregnewman",
+ "repo": "dpaste.el",
+ "sha256": "11s4vxr6waswyx4lz3q70s8xdz0v7354sn0pfwj42mmww4pzkizs",
+ "rev": "d073030e6b7feae84f0e2118e5fc454833848629"
+ },
+ "recipe": {
+ "sha256": "17mrdkldv4gfwm6ggc047l4a69xg2fy9f9mjbphkjl0p5nr6b4kz",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150528.800",
+ "deps": []
+ },
+ "python-cell": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "thisch",
+ "repo": "python-cell.el",
+ "sha256": "1cnjdgw3x6yb5k06z57xifywlg0kdx9ai4f1ajc0wx9aax8r5gav",
+ "rev": "ccacd91a19be784860d687eb1e8ce88fddaacaf6"
+ },
+ "recipe": {
+ "sha256": "07i3vyci52jvslq28djwkgx1r157wvxd99rvqlxnmmsl5yj4k1jf",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20131029.1816",
+ "deps": []
+ },
+ "japanese-holidays": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "emacs-jp",
+ "repo": "japanese-holidays",
+ "sha256": "1mwm9wpnxqq3nw7fl0jf40a92ha51yd95vvr58zllhbxdpy3q9pv",
+ "rev": "3c82e33a942e495bbfdf3f40d965dafc87b51336"
+ },
+ "recipe": {
+ "sha256": "0pxpkikkn2ys0kgf3lbrdxv8iym50h5ik2xzza0qk7cw1v93jza9",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150208.1937",
+ "deps": [
+ "cl-lib"
+ ]
+ },
+ "pyimpsort": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "emacs-pe",
+ "repo": "pyimpsort.el",
+ "sha256": "003hd5igv152yr4fa47n2l5jhwvdlfhw7bap1dkm1i7i898i6yds",
+ "rev": "e90d1b09e35356e3eed890fe38875bc7216d0f4e"
+ },
+ "recipe": {
+ "sha256": "0kdk3bmryfzvwf8vshfszbih8mwncf4xlb0n0n0yjn0p1n98q99k",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150927.1317",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "fwb-cmds": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "tarsius",
+ "repo": "fwb-cmds",
+ "sha256": "08qnyr945938hwjg1ypkf2x4mfxbh3bbf1xrgz1rk2ddrfv7hmkm",
+ "rev": "93504c2022799a84cc14d598e1413f8d9df4ee0e"
+ },
+ "recipe": {
+ "sha256": "0wnjvi0v0l2h1mhwlsk2d8ggwh3nk7pks48l55gp18nmj00jxycx",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20131209.1800",
+ "deps": []
+ },
+ "thread-dump": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "nd",
+ "repo": "thread-dump.el",
+ "sha256": "0rjcrvw9v2y10ahycra53bwbccpwqxxwn2c21wjj1kfs0kdwhs9p",
+ "rev": "1cee07775ac8c13bb52217be6c383562c617542b"
+ },
+ "recipe": {
+ "sha256": "0dzr86jyf2j49gq40q6qd6lppa57n65n94xzpdjjbs182hxzavp2",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20130323.1225",
+ "deps": []
+ },
+ "highlight-stages": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "zk-phi",
+ "repo": "highlight-stages",
+ "sha256": "0gnr1dqkcmc9gfzqjaixh76g1kq7xp20mg1h6vl3c4na7nk6a3fg",
+ "rev": "c5a01b29cf79cebd09da863d45f9f35f6ad3bd06"
+ },
+ "recipe": {
+ "sha256": "0r4kmjmrpi38q3y0q9h5xkxh7x728ha2nbnc152lzw6zfsxnm4x4",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150421.2257",
+ "deps": []
+ },
+ "notmuch-labeler": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "DamienCassou",
+ "repo": "notmuch-labeler",
+ "sha256": "1ss87vlp7625lnn2iah3rc1xfxcbpx4kmiww9n16jx073fs2rj18",
+ "rev": "d65d1129555d368243df4770ecc1e7ccb88efc58"
+ },
+ "recipe": {
+ "sha256": "1c0cbkk5k8ps01xl63a0xa2adkqaj0znw8qs8ca4ai8v1420bpl0",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20131230.1119",
+ "deps": [
+ "notmuch"
+ ]
+ },
+ "arjen-grey-theme": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "credmp",
+ "repo": "arjen-grey-theme",
+ "sha256": "1i6y3kv2vii6f8gpd845vv6h832hqx0vxb3fmb1x80kwx3gda682",
+ "rev": "d67a1da021269cb1aeb25ff1aa56249d67371266"
+ },
+ "recipe": {
+ "sha256": "18q66f7hhys2ab9ljsdp9013mp7d6v6d1lrb0d1bb035r1b4pfj7",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150731.845",
+ "deps": []
+ },
+ "phi-search": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "zk-phi",
+ "repo": "phi-search",
+ "sha256": "10kyq3lkhmbmj1hl9awzc0w8073dn9mbjd5skh660ljg5mmi6x62",
+ "rev": "40b86bfe9ae15377fbee842b1de3d93c2eb7dd69"
+ },
+ "recipe": {
+ "sha256": "0nj06ixl76dd80zg83q4bi8k224mcwb612mr4gd1xppj5k8xl03g",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150807.312",
+ "deps": []
+ },
+ "helm-c-yasnippet": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "emacs-jp",
+ "repo": "helm-c-yasnippet",
+ "sha256": "02sqcww40n6xbmh65n57l9vl79q4ysqm5x80gshzh1280s50irgd",
+ "rev": "660e18131a91e08a6a797ae6c17e2067416b93d1"
+ },
+ "recipe": {
+ "sha256": "0jwj4giv6lxb3h7vqqb2alkwq5kp0shy2nraik33956p4l8dfs90",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151117.1705",
+ "deps": [
+ "cl-lib",
+ "helm-core",
+ "yasnippet"
+ ]
+ },
+ "codic": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "syohex",
+ "repo": "emacs-codic",
+ "sha256": "14jcxrs3b02pbppvdsabr7c74i3c6d1lmd6l1p9dj8gv413pghsz",
+ "rev": "52bbb6997ef4ab9fb7fea43bbfff7f04671aa557"
+ },
+ "recipe": {
+ "sha256": "0fq2qfqhkd6injgl66vcpd61j67shl9xj260aj6cgb2nriq0jxgn",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150926.627",
+ "deps": [
+ "cl-lib",
+ "emacs"
+ ]
+ },
+ "perl-completion": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "imakado",
+ "repo": "perl-completion",
+ "sha256": "0fzypcxxd5zlkcybz0xppf09l0vf4vsfisr2y3ijsmxhg7yrwzj5",
+ "rev": "f2ec91b88a8b7d97d40d6c90a89eaf8e595c2b89"
+ },
+ "recipe": {
+ "sha256": "01p17mlkwjm60f14arda3ly8ng0r98nn3rly94ghn6jr7r7fv14b",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20090528.136",
+ "deps": []
+ },
+ "ahungry-theme": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "ahungry",
+ "repo": "color-theme-ahungry",
+ "sha256": "0dlk53zij907413fl6wh02i8nwzrbbrm22nn3i9h5sc8x9dhzazg",
+ "rev": "52b050992ef6fe0e6e57b51bcb5c98e02c616541"
+ },
+ "recipe": {
+ "sha256": "0fhim0qscpqx9siprp3ax1azxzmqkzvrjx517d9bnd68z7xxbpqy",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151014.2138",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "spaceline": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "TheBB",
+ "repo": "spaceline",
+ "sha256": "1xyhayzr2mbsq9w448bxy7ja9cgy3vrgh70w36nqrrkl1pi7lm3b",
+ "rev": "2cc31a94b8b8c3eefc81ab409071365d120d2535"
+ },
+ "recipe": {
+ "sha256": "0jpcj0i8ckdylrisx9b4l9kam6kkjzhhv1s7mwwi4b744rx942iw",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151215.225",
+ "deps": [
+ "cl-lib",
+ "dash",
+ "emacs",
+ "powerline",
+ "s"
+ ]
+ },
+ "auto-complete-clang-async": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "Golevka",
+ "repo": "emacs-clang-complete-async",
+ "sha256": "1sw0wxrjcjqk0w1llfj376g6axa5bnk2lq2vv66746bkz14h0s8f",
+ "rev": "5d9c5cabbb6b31e0ac3637631c0c8b25184aa8b4"
+ },
+ "recipe": {
+ "sha256": "1jj0jn1v3070g7g0j5gvpybv145kki8nsjxqb8fjf9qag8ilfkjh",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20130526.1014",
+ "deps": []
+ },
+ "gscholar-bibtex": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "cute-jumper",
+ "repo": "gscholar-bibtex",
+ "sha256": "1dfd22629gz0c8r4wplvbn0n7bm20549mg5chq289s826ca0kxqk",
+ "rev": "00b32521de3aa689bc58516ae10ba7f3ef1b6c92"
+ },
+ "recipe": {
+ "sha256": "0d41gr9amf9vdn9pl9lamhp2swqllxslv9r3wsgzqvjl7zayd1az",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151022.1225",
+ "deps": []
+ },
+ "elscreen-multi-term": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "wamei",
+ "repo": "elscreen-multi-term",
+ "sha256": "1cninrbgxzg0gykkpjx0i8pk2yc7sgr2kliqd35lgcxz2q4jlr51",
+ "rev": "7b6048a0dd80f69460a62bbc6f1af8856141a5ea"
+ },
+ "recipe": {
+ "sha256": "1zwrzblkag1d18xz450b7khsdssvsxyl1x6a682vy0dkn1y5qh1n",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151021.2133",
+ "deps": [
+ "elscreen",
+ "emacs",
+ "multi-term"
+ ]
+ },
+ "hive": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "r0man",
+ "repo": "hive-el",
+ "sha256": "097lrj9lgfa7szww324hlqywwkbi31n1pxfqyg0zbfj45djkp9bx",
+ "rev": "11b5172e081ad8079fc78758bef6f306f82ae32b"
+ },
+ "recipe": {
+ "sha256": "1marz8gmk824hb0nkhaw48d4qw1xjk1aad27gviya7f5ilypxrya",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20131217.912",
+ "deps": [
+ "sql"
+ ]
+ },
+ "anyins": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "antham",
+ "repo": "anyins",
+ "sha256": "05lq0bllgn44zs85mgnfdcyjasm6j8m70jdcxksf798i0qdqnk7n",
+ "rev": "83844c17ac9b5b6c7655ee556b75689e4c8ea663"
+ },
+ "recipe": {
+ "sha256": "0ncf3kn8rackcidkgda2zs60km3hx87rwr9daj7ksmbb6am09s7c",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20131229.441",
+ "deps": []
+ },
+ "d-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "Emacs-D-Mode-Maintainers",
+ "repo": "Emacs-D-Mode",
+ "sha256": "0fqirypxhbvnhz86rznwdx553ppg0z0hxh1h04qg7y58g01vpsdq",
+ "rev": "5501b77a1e212e27dd78e8c0e86424064b439cbb"
+ },
+ "recipe": {
+ "sha256": "060k9ndjx0n5vlpzfxlv5zxnizx72d7y9vk7gz7gdvpm6w2ha0a2",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151206.154",
+ "deps": []
+ },
+ "google-this": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "Malabarba",
+ "repo": "emacs-google-this",
+ "sha256": "0r6hngf3h5x55lk2qwfgd6bhjhkax5nz8ml43d1x23y5bjnrricq",
+ "rev": "5274167553071fadaebe9c2d3b061470a684ae22"
+ },
+ "recipe": {
+ "sha256": "0hg9y1b03aiamyn3mam3hyxmxy21wygxrnrww91zcbwlzgp4dd2c",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150522.440",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "goto-chg": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/goto-chg.el",
+ "sha256": "078d6p4br5vips7b9x4v6cy0wxf6m5ij9gpqd4g33bryn22gnpij"
+ },
+ "recipe": {
+ "sha256": "0fs0fc1mksbb1266sywasl6pppdn1f9a4q9dwycl9zycr588yjyv",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20131228.859",
+ "deps": []
+ },
+ "iterator": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "thierryvolpiatto",
+ "repo": "iterator",
+ "sha256": "08gagq74702x65dy75n2f53fsh806nppnidim9z6ycp8qw1ibyfp",
+ "rev": "7bd349d559a6e1c3da575e579a7cb35a7bee9190"
+ },
+ "recipe": {
+ "sha256": "17q10fw6y0icsv6vv9n968bwmbjlihrpkkyw62d1kfxhs9yw659z",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150321.2325",
+ "deps": [
+ "cl-lib",
+ "emacs"
+ ]
+ },
+ "jss": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "segv",
+ "repo": "jss",
+ "sha256": "07yd7sxb5f2mbm2nva7b2nwyxxkmsi2rdd5qig0bq1b2mf3g5l83",
+ "rev": "41749257aecf13c7bd6ed489b5ab3304d06e40bc"
+ },
+ "recipe": {
+ "sha256": "050hskqcjz5kc8nni255vj3hc9m936w1rybvg5kqyz4p4lpzj00k",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20130508.923",
+ "deps": [
+ "emacs",
+ "js2-mode",
+ "websocket"
+ ]
+ },
+ "dired-fdclone": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "knu",
+ "repo": "dired-fdclone.el",
+ "sha256": "1lnqjkbzryv655n16xj1c5bxck2jb5ccy8yckz1wp5yikkr06ba8",
+ "rev": "e9bf4f16248cb5d187a323b7887d236a4a203c59"
+ },
+ "recipe": {
+ "sha256": "11aikq2q3m9h4zpgl24f8npvpwd98jgh8ygjwy2x5q8as8i89vf9",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150417.332",
+ "deps": []
+ },
+ "package-safe-delete": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "Fanael",
+ "repo": "package-safe-delete",
+ "sha256": "1pdv6d6bm5jmpgjqf9ycvzasxz1205zdi0zjrmkr33c03azwz7rd",
+ "rev": "138171e4fc03c0ef05a8260cbb5cd2e114c1c194"
+ },
+ "recipe": {
+ "sha256": "12ss5yjhnyxsif4vlbgxamn5jfa0wxkkphffxnv6drhvmpq226jw",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150116.1007",
+ "deps": [
+ "emacs",
+ "epl"
+ ]
+ },
+ "emacsc": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "knu",
+ "repo": "emacsc",
+ "sha256": "1rqr08gj07hw37mqd0flmq4a10wn16vy7wg0msqq0ab2smwjhns7",
+ "rev": "02325c640232ee184314eb58d0051f365f7f085c"
+ },
+ "recipe": {
+ "sha256": "1fbf9al3yds0il18jz6hbpj1fsjlpb1kgp450gb6r09lc46x77mk",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150807.457",
+ "deps": []
+ },
+ "react-snippets": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "johnmastro",
+ "repo": "react-snippets.el",
+ "sha256": "00j0iqa37yzd7xrgd8xcgpgmjcarhn0yx4zpbnr7z7kzmg24ywa7",
+ "rev": "1b56f99e1f26c6dea4315c14fa58a851caa9d84f"
+ },
+ "recipe": {
+ "sha256": "0chs0h41nb2fdz02hdsaynz7ma8fg66a8m1q1np0464skrsdaj73",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151104.1740",
+ "deps": [
+ "yasnippet"
+ ]
+ },
+ "dirtree-prosjekt": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "abingham",
+ "repo": "prosjekt",
+ "sha256": "1m8zvrv5aws7b0dffk8y6b5mncdk2c4k90mx69jys10fs0gc5hb3",
+ "rev": "a864a8be5842223043702395f311e3350c28e9db"
+ },
+ "recipe": {
+ "sha256": "0pyb6c0gvc16z5rc5h0kpl8021hz2hzv86cmjsd20gbhz7imrqwk",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140129.304",
+ "deps": [
+ "dirtree",
+ "prosjekt"
+ ]
+ },
+ "indicators": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "Fuco1",
+ "repo": "indicators.el",
+ "sha256": "1zsw68zzvjjh93cldc0w83k67hzcgi226vz3d0nzqc9sczqk8civ",
+ "rev": "c6d520eb3536cf3a77c635fa36fec031d3f84fe4"
+ },
+ "recipe": {
+ "sha256": "1rhmz8sfi2gnv72sbw6kgyzidk43mnp05wnscw9vjvz9v0vwirss",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20130217.1605",
+ "deps": []
+ },
+ "fuzzy": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "auto-complete",
+ "repo": "fuzzy-el",
+ "sha256": "0rzp8c2164w775ggm2fs4j5dz33vqcah84ysp81majirwfql1niv",
+ "rev": "534d723ad2e06322ff8d9bd0ba4863d243f698e7"
+ },
+ "recipe": {
+ "sha256": "1hwdh9bx4g4vzzyc20vdwxsii611za37kc9ik40kwjjk62qmll8h",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150729.2237",
+ "deps": []
+ },
+ "evil-snipe": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "hlissner",
+ "repo": "evil-snipe",
+ "sha256": "0iyk8pn7pc3js3ppn46myzfr2i0b47wwrzv72939aydpw64rx76q",
+ "rev": "71f0f7df2300be390227e3f78619630c32bddbe9"
+ },
+ "recipe": {
+ "sha256": "0gcmpjw3iw7rjk86b2k6clfigp48vakfjd1a9n8qramhnc85rgkn",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151106.1602",
+ "deps": [
+ "evil"
+ ]
+ },
+ "jedi": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "tkf",
+ "repo": "emacs-jedi",
+ "sha256": "0xbp9fcxgbf298w05hvf52z41kk7r52975ailgdn8sg60xc98fa7",
+ "rev": "8da022c8cda511428c72a6dc4c5be3c0a0c88584"
+ },
+ "recipe": {
+ "sha256": "1777060q25k9n2g6h1lm5lkki900pmjqkxq72mrk3j19jr4pk9m4",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151214.905",
+ "deps": [
+ "auto-complete",
+ "emacs",
+ "jedi-core"
+ ]
+ },
+ "god-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "chrisdone",
+ "repo": "god-mode",
+ "sha256": "1am415k4xxcva6y3vbvyvknzc6bma49pq3p85zmpjsdmsp18qdix",
+ "rev": "6cf0807b6555eb6fcf8387a4e3b667071ef38964"
+ },
+ "recipe": {
+ "sha256": "01xx2byjh6vlckaxamm2x2qzicd9qc8h6amyjg0bxz3932a4llaa",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151005.1125",
+ "deps": []
+ },
+ "cask-package-toolset": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "AdrieanKhisbe",
+ "repo": "cask-package-toolset.el",
+ "sha256": "1182z9h6xk8mj2blq4x4429kjg7b9s54gdhza4cdb6jk9409bdrn",
+ "rev": "27467a52e243f3ba4024ce19d8e1f4dbd5dd7c0b"
+ },
+ "recipe": {
+ "sha256": "13ix093c0a58rjqj7zfp3914xj3hvj276gb2d8zhvrx9vvs1345g",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151213.130",
+ "deps": [
+ "ansi",
+ "cl-lib",
+ "commander",
+ "dash",
+ "emacs",
+ "f",
+ "s",
+ "shut-up"
+ ]
+ },
+ "firebelly-theme": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "startling",
+ "repo": "firebelly",
+ "sha256": "02ajday0lnk37dnzf4747ha3w0azisq35fmdhq322hx0hfb1c66x",
+ "rev": "5fd621102c676196319579b168da1476e8552d00"
+ },
+ "recipe": {
+ "sha256": "0lns846l70wcrzqb6p5cy5hpd0szh4gvjxd4xq4zsb0z5nfz97jr",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140410.355",
+ "deps": [
+ "cl-lib"
+ ]
+ },
+ "wc-goal-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "bnbeckwith",
+ "repo": "wc-goal-mode",
+ "sha256": "0p7j4hvcxfyjf0na9s3xv29dvmwq82s56lincfasd0ydcpz4fbwc",
+ "rev": "bf21ab9c5a449bcc20dd207a4915dcec218d2699"
+ },
+ "recipe": {
+ "sha256": "0l3gh96njjldp7n13jn1zjrp17h7ivjak102j6wwspgg6v2h5419",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140829.859",
+ "deps": []
+ },
+ "toml": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "gongo",
+ "repo": "emacs-toml",
+ "sha256": "1b3bkla6i5nvanifxchph6ab6ldrskdf240hy4d27dkmmnr3pban",
+ "rev": "9633a6872928e737a2335aae1065768b23d8c3b3"
+ },
+ "recipe": {
+ "sha256": "0kqv6zkywa7kqh8kg1dzcgkbi91lwx335przdakndm1lfai38i9b",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20130903.755",
+ "deps": []
+ },
+ "grin": {
+ "fetch": {
+ "tag": "fetchhg",
+ "url": "https://bitbucket.com/dariusp686/emacs-grin",
+ "sha256": "0rqpgc50z86j4waijfm6kw4zjmzqfii6nnvyix4rkd4y3ryny1x2",
+ "rev": "f541aa22da52"
+ },
+ "recipe": {
+ "sha256": "0mvzwmws5pi6hpzgkc43fjxs98ngkr0jvqbclza2jbbqawifzzbk",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20110806.158",
+ "deps": []
+ },
+ "find-things-fast": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "eglaysher",
+ "repo": "find-things-fast",
+ "sha256": "1r6cs7p43pi6n2inbrv9q924m679izxwxqgyr4sjjj3lg6an4cnx",
+ "rev": "efc7c189019ed65430e2f9e910e8e0a5ca9d2d03"
+ },
+ "recipe": {
+ "sha256": "1fs3wf61lzm1hxh5sx8pr74g7g9np3npdwg7xmk81b5f2jx2vy6m",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150519.1726",
+ "deps": []
+ },
+ "github-issues": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "inkel",
+ "repo": "github-issues.el",
+ "sha256": "065gpnllsk4x574fn9d6m4ajxl7mj5w2w5g9in421sp5r80fp9fv",
+ "rev": "ebe83ec18e7b874b05e7bc9c25b8cf0800ad20c1"
+ },
+ "recipe": {
+ "sha256": "12c6yb3v7xwkzc51binfgl4jb3sm3al5nlrklbsxhn44alazsvb0",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20120425.1735",
+ "deps": []
+ },
+ "window-numbering": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "nschum",
+ "repo": "window-numbering.el",
+ "sha256": "1f4c6q4larifm745fr8f3w8sxs1sbs77vna29rw120jz8rnlz0jy",
+ "rev": "575ad203545b01e21d28fefc0d8b809d1016ea3a"
+ },
+ "recipe": {
+ "sha256": "0x3n0ni16q69lfpyjz61spqghmhvc3cwa4aj80ihii3pk80f769x",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150228.1447",
+ "deps": []
+ },
+ "company-math": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "vspinu",
+ "repo": "company-math",
+ "sha256": "0pxg9851pl7ck58qiz4swj2c0by914d4bn14c5imfvdn5hxnq19i",
+ "rev": "f5cedcfa73e5ddd445167969e87ddf8e1bbd2bc1"
+ },
+ "recipe": {
+ "sha256": "0chig8k8l65bnd0a6734fiy0ikl20k9v2wlndh3ckz5a8h963g87",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150830.1837",
+ "deps": [
+ "company",
+ "math-symbol-lists"
+ ]
+ },
+ "window-number": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/window-number.el",
+ "sha256": "1as3qbvj6d171qp2s8ycqqi16bgqm47vfk3fbxrl9szjzaxh9nw6"
+ },
+ "recipe": {
+ "sha256": "1qhlsdhs40cyly87pj3f1n6ckr7z5pmhqndgay5jyxwxxdpknpap",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140123.2102",
+ "deps": []
+ },
+ "creole": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "nicferrier",
+ "repo": "elwikicreole",
+ "sha256": "18c4jfjnhb7asdhwj41g06cp9rz5xd7bbx2s1xvk6gahay27rlrv",
+ "rev": "7d5cffe93857f6c75ca09ac79c0e47b8d4410e53"
+ },
+ "recipe": {
+ "sha256": "1pqgm7m2gzkn65v3qic71c38qiira29cwx11l96qph8h8sf47zw5",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140924.1000",
+ "deps": [
+ "kv",
+ "noflet"
+ ]
+ },
+ "minibuffer-complete-cycle": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "knu",
+ "repo": "minibuffer-complete-cycle",
+ "sha256": "1zyb6c3xwdzk7dpn7xi0mvbcjdfxvzz1a0zlbs053pfar8iim5fk",
+ "rev": "3df80135887d0169e02294a948711f6dfeca4a6f"
+ },
+ "recipe": {
+ "sha256": "0y1mxs6q9a8lzprrlb22qff6x5mvkw4gp2l6p2js2r0j9jzyffq2",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20130813.1145",
+ "deps": []
+ },
+ "imgix": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "imgix",
+ "repo": "imgix-emacs",
+ "sha256": "1q53r3f3x0hpzryxd1v1w3qgs54p384q0azi7xj2gppi1q49sa42",
+ "rev": "4906ff0b4f7c9e84a5beb81630fe6d522ec91eaa"
+ },
+ "recipe": {
+ "sha256": "0dh7qsz5c9mflldcw60vc8mrxrw76n2ydd7blv6jfmsnr19ila4q",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20141226.1532",
+ "deps": [
+ "cl-lib",
+ "dash",
+ "ht",
+ "json",
+ "s"
+ ]
+ },
+ "anything-project": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "imakado",
+ "repo": "anything-project",
+ "sha256": "16a7i01q8qqkgph1s3jnwdr2arjq3cm3jpv5bk5sqs29c003q0pp",
+ "rev": "9f6f04bc1911474e97e99faf52e204cf159add83"
+ },
+ "recipe": {
+ "sha256": "10crwm34igb4kjh97alni15xzhsb2s0d4ghva86f2gpjidka9fhr",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20141024.427",
+ "deps": [
+ "anything",
+ "imakado"
+ ]
+ },
+ "powerline-evil": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "raugturi",
+ "repo": "powerline-evil",
+ "sha256": "1c8y4r7zdr6764kzs5bc64idv2pfjvi78lg2f1d2hp1595ia8y5r",
+ "rev": "98b3a102b6dba6632aa0755a7257300c9b164309"
+ },
+ "recipe": {
+ "sha256": "0cdnmq9f06lzkj0hs948a7j5sgg6fl5f36bfnyaxgss23akbfjhr",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151112.910",
+ "deps": [
+ "evil",
+ "powerline"
+ ]
+ },
+ "bog": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "kyleam",
+ "repo": "bog",
+ "sha256": "15nmcnyj2w5llbznyww3i2ldfifp866qyg4bx1kbylqc3hd3y51w",
+ "rev": "ea55493083ba08ac96e6cf130f24ac38c94abb45"
+ },
+ "recipe": {
+ "sha256": "1ci8xxca7dclmi5v37y5k45qlmzs6a9hi6m7czgiwxii902w5pkl",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150918.1730",
+ "deps": [
+ "cl-lib"
+ ]
+ },
+ "pydoc-info": {
+ "fetch": {
+ "tag": "fetchhg",
+ "url": "https://bitbucket.com/jonwaltman/pydoc-info",
+ "sha256": "1mzyr6yznkyv99x9q8zx2f270ngjh8s94zvnhcbhidi57inpd1nh",
+ "rev": "151d877c8fb8"
+ },
+ "recipe": {
+ "sha256": "0l80g0rzkk3a1wrw2riiywz9wdyxwr5i64jb2h5r8alp9qq1k7mf",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20110301.234",
+ "deps": []
+ },
+ "evil-indent-textobject": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "cofi",
+ "repo": "evil-indent-textobject",
+ "sha256": "0nghisnc49ivh56mddfdlcbqv3y2vqzjvkpgwv3zp80ga6ghvdmz",
+ "rev": "70a1154a531b7cfdbb9a31d6922482791e20a3a7"
+ },
+ "recipe": {
+ "sha256": "172a3krid5lrx1w9xcifkhjnvlxg1nbz4w102d99d0grr9465r09",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20130831.1719",
+ "deps": [
+ "evil"
+ ]
+ },
+ "fixmee": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "rolandwalker",
+ "repo": "fixmee",
+ "sha256": "1x4k8890pzdcizzl0p6v96ylrx5xid9ykgrmggx0b3y0gx0vhwic",
+ "rev": "1b8b3460f1e3c3c1784b2a63fb9f4fb3bb4dc084"
+ },
+ "recipe": {
+ "sha256": "0wnp6h8f547fsi1lkk4ajny7g21dnr76qfhxl82n0l5h1ps4w8mp",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150223.755",
+ "deps": [
+ "back-button",
+ "button-lock",
+ "nav-flash",
+ "smartrep",
+ "string-utils",
+ "tabulated-list"
+ ]
+ },
+ "haxe-mode": {
+ "fetch": {
+ "tag": "fetchhg",
+ "url": "https://bitbucket.com/jpsecher/haxe-mode",
+ "sha256": "106a7kpjj4laxl7x8aqpv75ih54569b3bs2a1b8z4rghmikqc4aw",
+ "rev": "850f29d9f70e"
+ },
+ "recipe": {
+ "sha256": "032h0nxlsrk30bsqb02by842ycrw1qscpfprifjjkaiq08wigh1l",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20131004.342",
+ "deps": []
+ },
+ "atom-dark-theme": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "whitlockjc",
+ "repo": "atom-dark-theme-emacs",
+ "sha256": "0jfpzv8dmvl4nr6kvq5aii830s5h632bq2q3jbnfc4zdql7id464",
+ "rev": "b6963e486d27eae7cd472736c106c7079c2a3d3c"
+ },
+ "recipe": {
+ "sha256": "1ci61blm7wc83wm2iyax017ai4jljyag5j1mvw86rimmmjzr0v8f",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151120.135",
+ "deps": []
+ },
+ "ox-tiddly": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "dfeich",
+ "repo": "org8-wikiexporters",
+ "sha256": "1rmlwx2svnsf0cg2xf0a09ncy4kx8jgn3rrnpa89z0brlafxx25s",
+ "rev": "0cd92e84ad22c103b078f285ec66ff98f7ca98ca"
+ },
+ "recipe": {
+ "sha256": "196i8lzxv2smpj5yhmiqwazn4pvc14yqyzasrgimhv3vi2xnxlfb",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151206.440",
+ "deps": [
+ "cl-lib",
+ "org"
+ ]
+ },
+ "thesaurus": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/thesaurus.el",
+ "sha256": "0zcyasdzb7dvmld8418cy2mg8mpdx01bv44cm0sp5950scrypsaq"
+ },
+ "recipe": {
+ "sha256": "1nyjk9jr1xvdkil13ylfsgg7q2sx71za05gi8m2v5f45pbmbi50h",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20121125.1337",
+ "deps": []
+ },
+ "semi": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "wanderlust",
+ "repo": "semi",
+ "sha256": "1s1wjk2ba5spqc0vhj8kmfsm8vzmza06pnjkwal084v8dnwz0zz3",
+ "rev": "35c9ff77db07ace4b7178189c1fe45118ebf9a65"
+ },
+ "recipe": {
+ "sha256": "01wk3lgln5lac65hp6v83d292bdk7544z23xa1v6a756nhybwv25",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150525.619",
+ "deps": [
+ "flim"
+ ]
+ },
+ "boron-theme": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "emacsfodder",
+ "repo": "emacs-boron-theme",
+ "sha256": "1gys5ri56s2s525wdji3m72sxzswmb8cmhmw5iha84v7hlqkrahb",
+ "rev": "ea5873139424d6ca013b915876daf0399432015b"
+ },
+ "recipe": {
+ "sha256": "1rrqlq08jnh9ihb99ji1vvmamj742assnm4a7xqz6gp7f248nb81",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150117.1152",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "relax": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "technomancy",
+ "repo": "relax.el",
+ "sha256": "0lqbhwi1f8b4sv9p1rf0gyjllk0l7g6v6mlws496079wxx1n5j66",
+ "rev": "6e33892623ab87833082262321dc8e1977209626"
+ },
+ "recipe": {
+ "sha256": "0gfr4ym6aakawhkfz40ar2n0rfz503hq428yj6rbf7jmq3ajaysk",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20131029.1634",
+ "deps": [
+ "json"
+ ]
+ },
+ "omni-kill": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "AdrieanKhisbe",
+ "repo": "omni-kill.el",
+ "sha256": "1925mh47n4x9v780qp5l6cksl64v9mpyb87znsg93x6sxr0cvv4c",
+ "rev": "4c8dbb6b2c9f1afc0f82077c04eab022e5387e85"
+ },
+ "recipe": {
+ "sha256": "03kydl16rd9mnc1rnan2byqa6f70891fhcj16wkavl2r68rfj75k",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150527.149",
+ "deps": []
+ },
+ "jenkins-watch": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "ataylor284",
+ "repo": "jenkins-watch",
+ "sha256": "0jayhv8j7b527dimhvcs0d7ax25x7v50dk0k6apisqc23psvkq66",
+ "rev": "37b84dfbd98240a57ff798e1ff8bc7dba2913577"
+ },
+ "recipe": {
+ "sha256": "0brgjgbw804x0gf2vq01yv6bd0ilp3x9kvr1nnsqxb9c03ffmb2m",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20121004.1826",
+ "deps": []
+ },
+ "git": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "rejeep",
+ "repo": "git.el",
+ "sha256": "0471xm0h6jkmxnrcqy5agq42i8immdb2qpnw7q7czrbsl521al8d",
+ "rev": "2b523c1975d4f258effaf826656c4b7120b2a19f"
+ },
+ "recipe": {
+ "sha256": "1nd2yvfgin13m368gjn7xah99glspnam4g4fh348x4makxcaw8w5",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140128.441",
+ "deps": [
+ "dash",
+ "f",
+ "s"
+ ]
+ },
+ "operate-on-number": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "knu",
+ "repo": "operate-on-number.el",
+ "sha256": "0iw3c8sn702ziki59mvd5gxm484i7f0bwsy8fz95y08s9gknjjf9",
+ "rev": "ceb3be565a29326c1098244fac0c50606723a56e"
+ },
+ "recipe": {
+ "sha256": "1rw3fqbzfizgcbz3yaf99rr2546msna4z7dyfa8dbi8h7yzl4fhk",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150707.123",
+ "deps": []
+ },
+ "easy-escape": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "cpitclaudel",
+ "repo": "easy-escape",
+ "sha256": "1qn0givyh07w41sv5xayfzlwbpbq7p39wbhmwsgffgfqzzz5r2ys",
+ "rev": "c87d76e5001f36fbbf975e9ce7e776acd2dd7776"
+ },
+ "recipe": {
+ "sha256": "1zspb79x6s151wwiian45j1nh0xps8y8yd98byyn5lbwbj2pp2gk",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150718.2133",
+ "deps": []
+ },
+ "thumb-frm": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/thumb-frm.el",
+ "sha256": "1zyx30awgdvhfbr7fzgizm7gl93j0hqckiafp2jmlaarl8s2i36i"
+ },
+ "recipe": {
+ "sha256": "1fjjd80drm8banni909lww9zqazr1kk9m40xwwa1ln2zicaf091c",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151206.1226",
+ "deps": [
+ "frame-cmds",
+ "frame-fns"
+ ]
+ },
+ "browse-url-dwim": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "rolandwalker",
+ "repo": "browse-url-dwim",
+ "sha256": "1rcihwdxrzhgcz573rh1yp3770ihkwqjqvd39yhic1d3sgwxz2hy",
+ "rev": "3d611dbb167c286109ac53995ad68286d87aafb9"
+ },
+ "recipe": {
+ "sha256": "13bv2ka5pp9k4kwrxfqfawwxzsqlakvpi9a32gxgx7qfi0dcb1rf",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140731.1422",
+ "deps": [
+ "string-utils"
+ ]
+ },
+ "bats-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "dougm",
+ "repo": "bats-mode",
+ "sha256": "1fy9qnwsxvb8qnyk13bnjjbnlhdads5qf1byg5agg6lq5np3w5jf",
+ "rev": "9469a9a9de4fe7d1aab4600294c43898bf5cf638"
+ },
+ "recipe": {
+ "sha256": "1l5winy30w8fs3f5cylc3a3j3mfkvchwanlgsin7q76jivn87h7w",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20141115.901",
+ "deps": []
+ },
+ "requirejs-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "ricardmo",
+ "repo": "requirejs-mode",
+ "sha256": "02wva5q8mvc0a5kms2wm1gyaag2x3zd6fkkpl4218nrbb0mbficv",
+ "rev": "bbb0c09f8eb2d6a33c17319be8137f68bb16bc92"
+ },
+ "recipe": {
+ "sha256": "1sq1kim17bcmh39106vfgm7gq9nj9943lw8by0bpi5qr8xdjsn5r",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20130215.1504",
+ "deps": []
+ },
+ "emmet-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "smihica",
+ "repo": "emmet",
+ "sha256": "0037nikvlcw6i228jym76pl1mgw4fn5dpz8hfr86b3m0zb012inj",
+ "rev": "3a29a1ae17271a3dfe3cd47db034ee4036b2b144"
+ },
+ "recipe": {
+ "sha256": "0w5nnhha70mndpk2a58raaxqanv868z05mfy1a8prgapm56mm819",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151213.938",
+ "deps": []
+ },
+ "trident-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "johnmastro",
+ "repo": "trident-mode.el",
+ "sha256": "08484fhc69rk16g52f9bzc1kzpif61ddfchxjbj1qqqammbx11ym",
+ "rev": "ad3201f47e114de35df189c3d80f0fdea9507ea9"
+ },
+ "recipe": {
+ "sha256": "0l81hs7bp46jlk41b9fk1lkvlp17fqc5hcz8k8kkal7rh7ari1fd",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20130726.1407",
+ "deps": [
+ "dash",
+ "emacs",
+ "skewer-mode",
+ "slime"
+ ]
+ },
+ "gnu-apl-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "lokedhs",
+ "repo": "gnu-apl-mode",
+ "sha256": "1l37447zshk5bl3r8v8nladxrcq252z05z1wch5ywp3h2qkmhkxp",
+ "rev": "ee7e633c65a36acdf92a34325fc759698614fbfe"
+ },
+ "recipe": {
+ "sha256": "0971pzc14gw8f0b4lzvicxww1k3wc58gbr3fd0qvdra2jifk2is6",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151217.2305",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "edbi": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "kiwanami",
+ "repo": "emacs-edbi",
+ "sha256": "1x5y1d5crc48iddlsf6irkr017p32a9xjcmlm9wf3zggmr95fr3s",
+ "rev": "3edb409245d8a3bca7a5b25c70c98954c0ab42b2"
+ },
+ "recipe": {
+ "sha256": "0qq0j16n8lyvkqqlcsrq1m7r7f0in6b92d74mpx5c6siv6z2vxlr",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140920.235",
+ "deps": [
+ "concurrent",
+ "ctable",
+ "epc"
+ ]
+ },
+ "markdown-toc": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "ardumont",
+ "repo": "markdown-toc",
+ "sha256": "0bmd601y2gafydnvzv9nbi5sh7m8hkwxbidim03knl2fh4j5rkyv",
+ "rev": "44c79a3b57224337fdaca5d2bdedba918e908fcd"
+ },
+ "recipe": {
+ "sha256": "0slky735yzmbfi4ld264vw64b4a4nllhywp19ya0sljbsfycbihv",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150715.1114",
+ "deps": [
+ "dash",
+ "markdown-mode",
+ "s"
+ ]
+ },
+ "sly-named-readtables": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "capitaomorte",
+ "repo": "sly-named-readtables",
+ "sha256": "1xi625pn3mg77mjvr94v6a5pjyvgjavpkdbbh1lqjx1halaa2qb7",
+ "rev": "df4ed79064cf85275804e201899b677bef4ab3f5"
+ },
+ "recipe": {
+ "sha256": "11ymzbj1ji7avfjqafj9p5zx0m4y1jfjcmyanpjq1frdcz639ir9",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150817.1016",
+ "deps": [
+ "sly"
+ ]
+ },
+ "ac-html": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "cheunghy",
+ "repo": "ac-html",
+ "sha256": "1sip87j4wvlf9pfnpr0zyyhys1dd9smh6hy3zs08ihbdh98krgs5",
+ "rev": "3de94a46d8cb93e8e62a1b6bdebbde4d65dc7cc2"
+ },
+ "recipe": {
+ "sha256": "0qf8f75b6dvy844dq8vh8d9c6k599rh1ynjcif9bwvdpf6pxwvqa",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151005.231",
+ "deps": [
+ "auto-complete",
+ "dash",
+ "f",
+ "s"
+ ]
+ },
+ "rails-log-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "ananthakumaran",
+ "repo": "rails-log-mode",
+ "sha256": "1fh8wsb0pa2isr1kgh3v9zmmxq1nlmqwqk4z34dw5wpaiyihmk84",
+ "rev": "ff440003ad7d47cb0ac3300f2a632f4cfd36a446"
+ },
+ "recipe": {
+ "sha256": "0h7gfg0c5pwfh18qzg1mx7an9p958ygdfqb54s85mbkv8x3rh1a0",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140407.2325",
+ "deps": []
+ },
+ "swiper": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "abo-abo",
+ "repo": "swiper",
+ "sha256": "021rl53d7qmrkg0l3z19khfznj60bf45907dz1ypgbk6blakbk8q",
+ "rev": "8306be11c84a23e0ab3bcdd36cab1e5c16df8fbe"
+ },
+ "recipe": {
+ "sha256": "13lld7kjz1n1ryxvrfsy0iym5l9m9ybrf7bpcmkzsalpp15j3mvm",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151218.523",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "simple-call-tree": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "vapniks",
+ "repo": "simple-call-tree",
+ "sha256": "09blcc1aj1lbqr1jcjm8dlq13s3plrg1qbp9vr3sp4dxyhjpimjj",
+ "rev": "9f2fd423a3b86878d84e8c97e3ba45647b4d165e"
+ },
+ "recipe": {
+ "sha256": "1cbv4frsrwd8d3rg8r4sylwnc1hl3hgh595qwbpx0zd3dp5na2yl",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151203.1625",
+ "deps": []
+ },
+ "eldoc-eval": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "thierryvolpiatto",
+ "repo": "eldoc-eval",
+ "sha256": "0vppa9xihn8777rphiw1aqp96xn16vgjwff1dwvp8z861silp8ar",
+ "rev": "e87b89f89a2aed0bb3b31c014fc1b72f00413866"
+ },
+ "recipe": {
+ "sha256": "0z4scgi2xgrgd47aqqmyv1ww8alh43s0qny5qmh3f1nnppz3nd7c",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150512.706",
+ "deps": []
+ },
+ "elm-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "jcollard",
+ "repo": "elm-mode",
+ "sha256": "1gbb8896fg0kdkdnnhq9zyknq5jifyj25lsigil407y4a4d0s78m",
+ "rev": "a813a0ab2ac7a255b41f2da230dae5e479a8de5d"
+ },
+ "recipe": {
+ "sha256": "18hky1d1d2q5paz271w17r6n1k2sb7rrski8dxq3q586k4lqykj2",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151218.257",
+ "deps": [
+ "emacs",
+ "f",
+ "let-alist",
+ "s"
+ ]
+ },
+ "axiom-environment": {
+ "fetch": {
+ "tag": "fetchhg",
+ "url": "https://bitbucket.com/pdo/axiom-environment",
+ "sha256": "1vk7jjbf8wp183c4nagkgxvzcyrdlr53avzsxl111rm5rsxbvdli",
+ "rev": "d7ea57a27527"
+ },
+ "recipe": {
+ "sha256": "1d3h1fn5zfbh7kpm2i02kza3bq9s6if4yd2vvfjdhgrykvl86h66",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151126.1509",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "speed-type": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "hagleitn",
+ "repo": "speed-type",
+ "sha256": "102hjyr9ii2rmq8762irbwansbi023s7dg4a8n6lkadcvzfibmag",
+ "rev": "d3a6745dbaaf6b1eacee10ce9b50108482dbe758"
+ },
+ "recipe": {
+ "sha256": "14q423an7v5hhfx1x039fizxcn5hcscqf2jfn9rqifg4jpq8bq5g",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150120.2234",
+ "deps": [
+ "cl-lib"
+ ]
+ },
+ "el-pocket": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "pterygota",
+ "repo": "el-pocket",
+ "sha256": "1iykhicc1ic1r6h4vj3701rm0vfy41b16w3d98amf8jjypv54wv7",
+ "rev": "e79b5a4c7762be4ea88f43f17203d44a5c8ad310"
+ },
+ "recipe": {
+ "sha256": "0fgylpfixsx5l1nrgz6n1c2ayf52p60f9q290hmkn36siyx5hixw",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150202.1728",
+ "deps": [
+ "emacs",
+ "web"
+ ]
+ },
+ "helm-descbinds": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "emacs-helm",
+ "repo": "helm-descbinds",
+ "sha256": "1f9nfvfsj9m1ha6cyic2l6gq5wlabx3mhnvs0jb111ybm87v4bhz",
+ "rev": "871771c458b59e494b0af036cff1cebf4fc24e2b"
+ },
+ "recipe": {
+ "sha256": "1890ss4pimjxskzzllf57fg07xbs8zqcrp6r8r6x989llrfvd1h7",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151215.1557",
+ "deps": [
+ "helm"
+ ]
+ },
+ "popup-switcher": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "kostafey",
+ "repo": "popup-switcher",
+ "sha256": "1gcf0dzw02jy5l7xzb4w5llzlinc1nvs72d6aydwp70cwziks475",
+ "rev": "a858f680898ef9631c21eebbe5cb527622179305"
+ },
+ "recipe": {
+ "sha256": "1888xiqhrn7fcpjnr3smchmmqwfayfbbyvdkdb79c6drzjcvidp1",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150331.908",
+ "deps": [
+ "cl-lib",
+ "popup"
+ ]
+ },
+ "edit-color-stamp": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "sabof",
+ "repo": "edit-color-stamp",
+ "sha256": "0vk954f44m2bq7qb122pzlb8fibrisx47ihvn3h96m8nmx0fv32r",
+ "rev": "32dc1ca5bcf3dcf83fad5e39b55dc5b77becb3d3"
+ },
+ "recipe": {
+ "sha256": "1f8v8w3w7vb8jv29w06mplah8yfcs5qfjz2w4irv0rg7dwzy3zk8",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20130529.1233",
+ "deps": [
+ "cl-lib",
+ "es-lib"
+ ]
+ },
+ "flycheck-typescript-tslint": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "Simplify",
+ "repo": "flycheck-typescript-tslint",
+ "sha256": "0m9fjfpand20qy9d196z5khiznn25n95zbmgs8q2s2wcn4f7022p",
+ "rev": "79d33ba8fbc23df604c239cfc32c21e07339faa1"
+ },
+ "recipe": {
+ "sha256": "141x4scl13gqxyg0nlc8vig1iaybc3g95il5r51k4k83isi62iyq",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151209.1647",
+ "deps": [
+ "emacs",
+ "flycheck"
+ ]
+ },
+ "wispjs-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "krisajenkins",
+ "repo": "wispjs-mode",
+ "sha256": "188h1sy4mxzrkwi3zgiw108c5f71rkj5agdkf9yy9v8c1bkawm4x",
+ "rev": "be094c3c3223c07b26b5d8bb8fa7aa6866369b3f"
+ },
+ "recipe": {
+ "sha256": "0qzm0dcvjndasnbqpkdc56f1qv66gxv8dfgfcwq5l1bp5wyx813p",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140103.1632",
+ "deps": [
+ "clojure-mode"
+ ]
+ },
+ "org-wunderlist": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "myuhe",
+ "repo": "org-wunderlist.el",
+ "sha256": "1cagmwl3acanwc2nky7m61cawi0i0x703sjc6zlw968lacyw86wa",
+ "rev": "b89633fcfd74e83dd8a5d81619244a666a45715c"
+ },
+ "recipe": {
+ "sha256": "08zg3wgr80rp89c53ffqzz22ws9bp62a1m74xvxa74x6nq9i4xl0",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150817.2113",
+ "deps": [
+ "alert",
+ "cl-lib",
+ "emacs",
+ "org",
+ "request-deferred",
+ "s"
+ ]
+ },
+ "discover-js2-refactor": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "NicolasPetton",
+ "repo": "discover-js2-refactor",
+ "sha256": "1vnbn4asz3lifscvy4shzisl6r0gkgq0qsa3kpgif3853wcd2rvn",
+ "rev": "3812abf61f39f3e73a9f3daefa6fed4f21a429ba"
+ },
+ "recipe": {
+ "sha256": "139zq66cpcn4dnidf22h7x88p812ywrrz4c3c62w3915b75f71ki",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140129.952",
+ "deps": [
+ "discover",
+ "js2-refactor"
+ ]
+ },
+ "glsl-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "jimhourihan",
+ "repo": "glsl-mode",
+ "sha256": "0b6ldcfzbdn0mzrcl08zm9kx1hap3djsbzd1qvph1pa2gab25n8j",
+ "rev": "6bd83d429307d682fef0efd46c78b3e055e2caf1"
+ },
+ "recipe": {
+ "sha256": "0d05qb60k5f7wwpsp3amzghayfbwcha6rh8nrslhnklpjbg87aw5",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150114.1033",
+ "deps": []
+ },
+ "py-import-check": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "psibi",
+ "repo": "emacs-py-import-check",
+ "sha256": "1416hbc64gwn9c8g9lxfx58w60ysi0x8rbps6mfxalavdhbs20sv",
+ "rev": "9787f87745a4234cd9bed711860b707902bc8ae4"
+ },
+ "recipe": {
+ "sha256": "1261dki0q44sw9h0g1305i2fj1dg9xgwzry50jbn2idcrqg4xf7k",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20130802.611",
+ "deps": []
+ },
+ "neotree": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "jaypei",
+ "repo": "emacs-neotree",
+ "sha256": "0ig7r2shwp37sfmbxb4k4rl3hyssj4g6va0l31qx8n5z8dpfdxxy",
+ "rev": "cd02617453a0a780bc8fa13efb2426f1623cfd4d"
+ },
+ "recipe": {
+ "sha256": "05smm1xsn866lsrak0inn2qw6dvzy24lz6h7rvinlhk5w27xva06",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151101.807",
+ "deps": []
+ },
+ "magit-topgit": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "magit",
+ "repo": "magit-topgit",
+ "sha256": "0dj183vphnvz9k2amga0ydcb4gkjxr28qz67055mxrf89q1qjq33",
+ "rev": "732de604c31c74e9da24616428c6e9668b57c881"
+ },
+ "recipe": {
+ "sha256": "1ngrgf40n1g6ncd5nqgr0zgxwlkmv9k4fik96dgzysgwincx683i",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151018.1231",
+ "deps": [
+ "emacs",
+ "magit"
+ ]
+ },
+ "gildas-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "smaret",
+ "repo": "gildas-mode",
+ "sha256": "1na8pp1g940zi22jgqi6drsm12db0hyw99v493i5j1p2y67c4hxw",
+ "rev": "23e8a2e6066ff74af592de6d5d0d858442e2bf8a"
+ },
+ "recipe": {
+ "sha256": "0bc3d8bnvg1w2chrr4rp9daq1x8p41qgklrniq0bbkr2h93cmkgv",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150919.1701",
+ "deps": [
+ "emacs",
+ "polymode"
+ ]
+ },
+ "express": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "rolandwalker",
+ "repo": "express",
+ "sha256": "0ah8zayipwp760909llb9whcdvmbsdgkg0x5y4qlcicm1r9kwcc7",
+ "rev": "93dae7377eace4a5413ba99aecb6f26f90798725"
+ },
+ "recipe": {
+ "sha256": "0lhisy4ds96bwpc7k8w9ws1zi1qh0d36nhxsp36bqzfi09ig0nb9",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140508.1541",
+ "deps": [
+ "string-utils"
+ ]
+ },
+ "easy-lentic": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "tumashu",
+ "repo": "easy-lentic",
+ "sha256": "0gk2a1bhxb2fr9mcli3j3mry0gipc407mbwrdip385rrzy7vqv2w",
+ "rev": "ecf7bac5e3ab760ab1e46f1955575b3c25ac99fe"
+ },
+ "recipe": {
+ "sha256": "1j141lncgcgfpa42m505xndiy6lh848xymfvb3cz4d6h73421khg",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151130.2116",
+ "deps": [
+ "cl-lib",
+ "lentic"
+ ]
+ },
+ "ox-twiki": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "dfeich",
+ "repo": "org8-wikiexporters",
+ "sha256": "1rmlwx2svnsf0cg2xf0a09ncy4kx8jgn3rrnpa89z0brlafxx25s",
+ "rev": "0cd92e84ad22c103b078f285ec66ff98f7ca98ca"
+ },
+ "recipe": {
+ "sha256": "1p1k0yg5fxcjgwpq2ix9ckh2kn69m7d5rnz76h14hw9p72cb54r0",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151206.440",
+ "deps": [
+ "cl-lib",
+ "org"
+ ]
+ },
+ "company-web": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "osv",
+ "repo": "company-web",
+ "sha256": "00acy74sgp4r2dxgss66aldc9s59dn0i85ixz9glgamk9411j5qr",
+ "rev": "8fafaf180cade7633dc5fcbbf12b1e4843e4e365"
+ },
+ "recipe": {
+ "sha256": "0dj0m6wcc8cyvblp9b5b3am95gc18j9y4va44hvljxv1h7l5hhvy",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151023.1546",
+ "deps": [
+ "cl-lib",
+ "company",
+ "dash",
+ "web-completion-data"
+ ]
+ },
+ "yandex-weather": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "abstractionlayer",
+ "repo": "yandex-weather.el",
+ "sha256": "17ymdqi19bs9xn0pxylzv7m99f7cn14hx73xljm6bg0qfb8m53f3",
+ "rev": "41cb91bd1e5aa0e4a317a99e88742631f487ab37"
+ },
+ "recipe": {
+ "sha256": "11hspadm520cjlv1wk2bdpzg7hg2g0chbh26qijj9jgvca26x0md",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150821.614",
+ "deps": []
+ },
+ "howdoi": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "atykhonov",
+ "repo": "emacs-howdoi",
+ "sha256": "01sj9c8mxqaif8wh6zz9v2czjaq7vcdi66drldyjmifkln6rg2v8",
+ "rev": "5fbf7069ee160c597a328e5ce5fb32920e1ca88f"
+ },
+ "recipe": {
+ "sha256": "12vgbypawxhhrnjp8dgh0wrcp7pvjccfaxw4yhq7msai7ik3h83b",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150203.1843",
+ "deps": []
+ },
+ "helm-recoll": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "emacs-helm",
+ "repo": "helm-recoll",
+ "sha256": "0c9h8n67wxy93rbf6ma7p27hpaj8v562mjnrc9wzgccb9rk4z4fn",
+ "rev": "e3e010d084697137d0b3cb802b19ab34c488094b"
+ },
+ "recipe": {
+ "sha256": "0pr2pllplml55k1xx9inr3dm90ichg2wb62dvgvmbq2sqdf4606b",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151118.658",
+ "deps": [
+ "helm"
+ ]
+ },
+ "anything-milkode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "ongaeshi",
+ "repo": "anything-milkode",
+ "sha256": "1jw6gqwcl3fx1m7w0a15w2pnzzlqyr1fbg0m81ay358s4w3jn6v7",
+ "rev": "d6b2be13a351c41793e9cc13c1320953939d3ac9"
+ },
+ "recipe": {
+ "sha256": "1apc865a01jyx602ldzj32rrjk6xmgnxdccpjpcfgh24h2aqpdan",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140518.943",
+ "deps": [
+ "anything",
+ "milkode"
+ ]
+ },
+ "sr-speedbar": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/sr-speedbar.el",
+ "sha256": "1ffnm2kfh8cg5rdhrkqmh4krggbxvqg3s6lc1nssv88av1c5cs3i"
+ },
+ "recipe": {
+ "sha256": "1zq3ysz1vpc98sz2kpq307v1fp1l4ivwgrfh2kdqkkdjm4fkya23",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150804.1151",
+ "deps": []
+ },
+ "emr": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "chrisbarrett",
+ "repo": "emacs-refactor",
+ "sha256": "0pl7i2a0mf2s33qpsc14dcvqbl6jm5xrvcnrhfr7visvnih29cy4",
+ "rev": "fd20fc1887e2ebcf752f0170b1f3bf697043fd4b"
+ },
+ "recipe": {
+ "sha256": "05vpfxg6lviclnms2zyrza8dc87m60mimlwd11ihvsbngi9gcw8x",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140817.1804",
+ "deps": [
+ "cl-lib",
+ "dash",
+ "emacs",
+ "list-utils",
+ "paredit",
+ "popup",
+ "projectile",
+ "redshank",
+ "s"
+ ]
+ },
+ "emacs-eclim": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "emacs-eclim",
+ "repo": "emacs-eclim",
+ "sha256": "1m674w1wskzvi92yjfk7sz4i59kc6bbgnic5z2m806qr1dmdyy0s",
+ "rev": "c13ad662a5194b292576fba477282263f573bc46"
+ },
+ "recipe": {
+ "sha256": "1l55jhz5mb3bqw90cbf4jhcqgwj962br706qhm2wn5i2a1mg8xlv",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151217.2022",
+ "deps": [
+ "cl-lib",
+ "dash",
+ "json",
+ "popup",
+ "s"
+ ]
+ },
+ "pillar": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "pillar-markup",
+ "repo": "pillar-mode",
+ "sha256": "19i8hgzr7kdj4skf0cnv6vlsklq9qcyxcv3p33k9vgq7y4f9mah8",
+ "rev": "13a7f676544cc66005ccd8e6fc1c25e4ccd6f909"
+ },
+ "recipe": {
+ "sha256": "1lklky3shyvm1iygp621hbldpx37m0a9vd5l6mxs4y60ksj6z0js",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20141112.1211",
+ "deps": [
+ "makey"
+ ]
+ },
+ "esqlite-helm": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "mhayashi1120",
+ "repo": "Emacs-esqlite",
+ "sha256": "0ag444hfrpdrf3lnaz7l2plj392xgh7a2080421z3g0alc74m8h3",
+ "rev": "fae9826cbc255b0f0686a801288f1441bda5f631"
+ },
+ "recipe": {
+ "sha256": "00y2nwyx13xlny40afczr31lvbpnw1cgmj5wc3iycyznizg5kvhq",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151116.250",
+ "deps": [
+ "esqlite",
+ "helm"
+ ]
+ },
+ "docean": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "emacs-pe",
+ "repo": "docean.el",
+ "sha256": "055kr0qknjgnjs7dn6gdmahrdbs8piwldbz7vg1hgq3b046x8lky",
+ "rev": "dcc296782b08531b768d3cf851cc7959ec486bf1"
+ },
+ "recipe": {
+ "sha256": "1mqmn2i9axnv5vnkg9gwfdjpzr6gxx4ia9mcdpm200ix297dg7x9",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150927.1318",
+ "deps": [
+ "cl-lib",
+ "emacs",
+ "request"
+ ]
+ },
+ "noflet": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "nicferrier",
+ "repo": "emacs-noflet",
+ "sha256": "0g70gnmfi8n24jzfci9nrj0n9bn1qig7b8f9f325rin8h7x32ypf",
+ "rev": "7ae84dc3257637af7334101456dafe1759c6b68a"
+ },
+ "recipe": {
+ "sha256": "0vzamqb52n330mi6rydrd4ls8nbwh5s42fc2gs5y15zakp6mvhr3",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20141102.854",
+ "deps": []
+ },
+ "typo": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "jorgenschaefer",
+ "repo": "typoel",
+ "sha256": "0f1rln2dqxgx2jdbs5n9czg930xqkzrknz4wqxv7zvgwlq4qpkvk",
+ "rev": "a6b9e0400706aeda99fe29012ff017bef300f580"
+ },
+ "recipe": {
+ "sha256": "07hmqrnbxbrhcbxdls8i4786lkqmfr3hv6va41xih1lxj0mk60bx",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150910.843",
+ "deps": []
+ },
+ "org-jekyll": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "juanre",
+ "repo": "org-jekyll",
+ "sha256": "0whv8nsla93194jjpxrhlr6g230spdxbac8ibmzmyad075vx97z5",
+ "rev": "66300a1a6676ab168663178e7a7c954541a39992"
+ },
+ "recipe": {
+ "sha256": "0jh3rla8s8prprvhnlg0psdrj7swz7v6vf2xy1m6ff66p9saiv8i",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20130508.439",
+ "deps": [
+ "org"
+ ]
+ },
+ "foreman-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "zweifisch",
+ "repo": "foreman-mode",
+ "sha256": "00wqn8h50xr90pyvwk4sv552yiajlzq56wh6f6lad5w90j47q1lx",
+ "rev": "9496018b0c202442248d4983ec5345501ea18a84"
+ },
+ "recipe": {
+ "sha256": "0p3kwbld05wf3dwcv0k6ynz727fiy0ik2srx4js9wvagy57x98kv",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150611.356",
+ "deps": [
+ "dash",
+ "dash-functional",
+ "emacs",
+ "f",
+ "s"
+ ]
+ },
+ "timesheet": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "tmarble",
+ "repo": "timesheet.el",
+ "sha256": "1ghvnmswq6rg17pjnys58mak6crfcvv1vb6q7spagq143y2ar24z",
+ "rev": "6aba2bac0be92b38c245135cebe5bf1f0d8406ab"
+ },
+ "recipe": {
+ "sha256": "1gy6bf4wqvp8cw2wjnrr9ijnzwav3p7j46m7qrn6l0517shwl506",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151107.804",
+ "deps": [
+ "auctex",
+ "org",
+ "s"
+ ]
+ },
+ "crab": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "puffnfresh",
+ "repo": "crab-emacs",
+ "sha256": "0y37fx4ghx8a74cp7ci6p5yfpji8g42hlah2xcwfnyw0qlpqfbnl",
+ "rev": "6d66844856c1864157cef3dea9332c319b05d7d5"
+ },
+ "recipe": {
+ "sha256": "1jz26bw2h7ahcb7y2qhpqrlfald244c92m6pvfrb0jg0z384i6aj",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150126.2337",
+ "deps": [
+ "json",
+ "websocket"
+ ]
+ },
+ "slideview": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "mhayashi1120",
+ "repo": "Emacs-slideview",
+ "sha256": "11p1pghx55a4gcn45cadw7c594134b21cdim723k2h99z14f89az",
+ "rev": "b6d170bda139aedf81b47dc55cbd1a3af512fb4c"
+ },
+ "recipe": {
+ "sha256": "0zr08yrnrz49zds1651ysmgjqgbnhfdcqbg90sbsb086iw89rxl1",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150324.1740",
+ "deps": [
+ "cl-lib"
+ ]
+ },
+ "latest-clojure-libraries": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "AdamClements",
+ "repo": "latest-clojure-libraries",
+ "sha256": "1cqbdgk3sd0xbw76qrhlild9dvgds3vgldq0rcl200kh7y8l6g4k",
+ "rev": "6db8709a746194800a3ffea3f906e3c9f5d4ca22"
+ },
+ "recipe": {
+ "sha256": "1vnm9piq71nx7q1843izm4vydfjq1564ax4ffwmqmlpisqzd6wq5",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140314.817",
+ "deps": []
+ },
+ "direx": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "m2ym",
+ "repo": "direx-el",
+ "sha256": "0mis3m6lg3vlvp8qm8iajprgx3pm3gcbhdszsm9mvrcgkahdjqnr",
+ "rev": "9497231cf50767987494718db073731b05a4f970"
+ },
+ "recipe": {
+ "sha256": "1x3rnrhhyrrvgry9n7kc0734la1zp4gc4bpy50f2qpfd452jwqdm",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151023.1806",
+ "deps": []
+ },
+ "yaxception": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "aki2o",
+ "repo": "yaxception",
+ "sha256": "0nqyn1b01v1qxv7rcf46qypca61lmpm8d7kqv63jazw3n05qdnj8",
+ "rev": "4e94cf3e0b9b5631b0e90eb4b7de597ee7185875"
+ },
+ "recipe": {
+ "sha256": "18n2kjbgfhkhcwigxmv8dk72jp57vsqqd20lc26v5amx6mrhgh58",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150105.852",
+ "deps": []
+ },
+ "haskell-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "haskell",
+ "repo": "haskell-mode",
+ "sha256": "1fi74hk3q8r75k9kyahfnx302kca5p0r04i8hj21cn9fd9q2nfq0",
+ "rev": "93bfb29b8e49aba39f1de791bcece1b8043a4d32"
+ },
+ "recipe": {
+ "sha256": "0wijvcpfdbl17iwzy47vf8brkj2djarfr8y28rw0wqvbs381zzwp",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151217.1822",
+ "deps": [
+ "cl-lib"
+ ]
+ },
+ "icicles": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/icicles.el",
+ "sha256": "1vr4wp808rv8kiq324ph2jfbqdw1wzii41rca45v5w21gway169s"
+ },
+ "recipe": {
+ "sha256": "15h2511gm38q14avsd86j5mnxhsjvcdmwbnhj66ashj5p5nxhr92",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151015.1751",
+ "deps": []
+ },
+ "linum-relative": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "coldnew",
+ "repo": "linum-relative",
+ "sha256": "0a3vljbgmbzcw6a4pb0pwf47h3rmcmjgzpgy8fa28a3j0g0z7jrj",
+ "rev": "3bed92ac52495938f3f23b626b2097e64a3d9dc0"
+ },
+ "recipe": {
+ "sha256": "0s1lc3lppazv0481dxknm6qrxhvkv0r9hw8xmdrpjc282l91whkj",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151205.1956",
+ "deps": []
+ },
+ "fingers": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "fgeller",
+ "repo": "fingers.el",
+ "sha256": "1vjgcxyzv2p74igr3y0z6hk7bj6yqwjawx90xvvmp9z7m91d4yrg",
+ "rev": "8fc8ae143736c4761fef69cb53c6083c5be5d914"
+ },
+ "recipe": {
+ "sha256": "1r8fy6q6isjxz9mvaa8in4imdghzla3gg1l93dfm1v2rlr7bhzbg",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150809.1916",
+ "deps": []
+ },
+ "flymake-jslint": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "purcell",
+ "repo": "flymake-jslint",
+ "sha256": "0y01albwwcnhj4pnpvcry0zw7z2g9py9q2p3sw5zhgw3g0v5p9ls",
+ "rev": "68ca28a88cffdd317f50c712b09abd2ccda8d7bc"
+ },
+ "recipe": {
+ "sha256": "1cq8fni4p0qhigx0qh34ypmcsbnilra1ixgnrn9mgg8x3cvcm4cm",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20130613.402",
+ "deps": [
+ "flymake-easy"
+ ]
+ },
+ "flycheck-nim": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "ALSchwalm",
+ "repo": "flycheck-nim",
+ "sha256": "06hs41l41hm08dv93wldd98hmnd3jqbg58pj5ymn15kgdsy1rirg",
+ "rev": "4cf6a70864e594c24b33c1032e2692ad1b310d6c"
+ },
+ "recipe": {
+ "sha256": "0w6f6998rqx8a3i4xhga7mrmvhxrm690wkqwfzspidid2z7v71az",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150911.1847",
+ "deps": [
+ "dash",
+ "flycheck"
+ ]
+ },
+ "org-bullets": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "sabof",
+ "repo": "org-bullets",
+ "sha256": "10nr4sjffnqbllv6gmak6pviyynrb7pi5nvrq331h5alm3xcpq0w",
+ "rev": "b70ac2ec805bcb626a6e39ea696354577c681b36"
+ },
+ "recipe": {
+ "sha256": "1kxhlabaqi1g6pz215afp65d9cp324s8mvabjh7q1h7ari32an75",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140918.1337",
+ "deps": []
+ },
+ "org-beautify-theme": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "jonnay",
+ "repo": "emagicians-starter-kit",
+ "sha256": "00iklf97mszrsdv20q55qhml1dscvmmalpfnlkwi9mabklyq3i6z",
+ "rev": "5fadbf1bf84091b6ffe6cd1bff48f30e3da6c479"
+ },
+ "recipe": {
+ "sha256": "1j2gi3f72kvavdcj6xs7zng0dcnivrhc7pjzm2g4mjm5ad5s1flq",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150106.1156",
+ "deps": []
+ },
+ "bitly": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "jorgenschaefer",
+ "repo": "bitly-el",
+ "sha256": "09blh9cbcbqr3pdaiwm9fmh5kzqm1v9mffy623z3jn87g5wadrmb",
+ "rev": "fca9d8da070402fa62d9289e56f7f1c5ce40f664"
+ },
+ "recipe": {
+ "sha256": "032s7ax8qp3qzcj1njbyyxiyadjirphswqdlr45zj6hzajfsr247",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151125.1048",
+ "deps": []
+ },
+ "scala-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "scala",
+ "repo": "scala-tool-support",
+ "sha256": "0qd3yi2as30kacr74vbzvyq97684s8sz585z30d47shqcvp6l1a6",
+ "rev": "0a217bc446b970116c67c933a747d5f57b853d34"
+ },
+ "recipe": {
+ "sha256": "1vbgphmvvsj5jl8f78rpsidlmlgyp1kq3nkmziqhwkcq8hfywssm",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20141205.1451",
+ "deps": []
+ },
+ "wimpy-del": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/wimpy-del.el",
+ "sha256": "05gmqx9qj95fd4lryvpp7rk93f1ibsvl3lqanraph0s73ir48x3z"
+ },
+ "recipe": {
+ "sha256": "10qw5lfq2392fr5sdz5a9bc6rvsg0j4dkrwvdhip1kqvajznw49x",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150104.1909",
+ "deps": []
+ },
+ "help+": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/help+.el",
+ "sha256": "0vdga10l8vslsicrspl3wyhf6a5jxdwzqb7r8g07fbd4f09d57a4"
+ },
+ "recipe": {
+ "sha256": "1jx0wa4md1mvdsvjyx2yvi4hhm5w061qqcafsrw4axsz7gjpd4yi",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150702.1143",
+ "deps": []
+ },
+ "org-projectile": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "IvanMalison",
+ "repo": "org-projectile",
+ "sha256": "1zskm97502f4yq1jr3k1j2mkdpbh8q7lm56wqnpbpv4gcprpx8gg",
+ "rev": "df1d4a843724f2e556305aea53567a0b3b403fb1"
+ },
+ "recipe": {
+ "sha256": "078s77wms1n1b29mrn6x25sksfjad0yns51gmahzd7hlgp5d56dm",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150902.2356",
+ "deps": [
+ "dash",
+ "projectile"
+ ]
+ },
+ "doremi-mac": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/doremi-mac.el",
+ "sha256": "1zlb6r5qy46yf5x499gzk6kvdy427qf3s9gzmpf5mzszcy6rzsfx"
+ },
+ "recipe": {
+ "sha256": "0n9fffgxnpqc7cch7aci5kxbwzk36iljdz2r8gcp5y5n1p7aamls",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150104.1553",
+ "deps": []
+ },
+ "magit-rockstar": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "tarsius",
+ "repo": "magit-rockstar",
+ "sha256": "0p9fx9ph18ygsjknvmn63qq5h5lq4p833lccbyzy3sbivn46496j",
+ "rev": "6e09d3d1589e5bde7279f9bd5b8f27352ea26ef4"
+ },
+ "recipe": {
+ "sha256": "1i4fmraiypyd3q6vvibkg9xqfxiq83kcz64b1dr3wmwn30j7986n",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151128.928",
+ "deps": [
+ "dash",
+ "magit"
+ ]
+ },
+ "list-environment": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "dgtized",
+ "repo": "list-environment.el",
+ "sha256": "1vlli9fmd5fsb19bmylp3yzqnhwk5ldxld0m0q4sai0992lwx897",
+ "rev": "70919f3f75cfee6a68bf617baf417d672deb8c4b"
+ },
+ "recipe": {
+ "sha256": "1zdhrlp8vk8knjwh56pws6dyn003r6avjzvhghlkgnw9nfrdk57h",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150620.2218",
+ "deps": []
+ },
+ "flyspell-popup": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "xuchunyang",
+ "repo": "flyspell-popup",
+ "sha256": "1rk7fsill0salrhb4anbf698nd21nxj8pni35brbmv64nj9fhfic",
+ "rev": "a3890c9272c0cfa1e2cde6526f7d6280ad4af00c"
+ },
+ "recipe": {
+ "sha256": "0wp15ra1ry6xpwal6mb53ixh3f0s4nps0rdyfli7hhaiwbr9bhql",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150926.1003",
+ "deps": [
+ "popup"
+ ]
+ },
+ "nameframe": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "john2x",
+ "repo": "nameframe",
+ "sha256": "07zgwyrss23yb8plnhhwmh0khdvfp539891sj1z1vs50jcllcpw5",
+ "rev": "96acff56b30f9d1145aeaf7a4c53c9a2c823ee8e"
+ },
+ "recipe": {
+ "sha256": "0iq8cfii39ha8sxn9w7kyfvys8kwyax8g4l0pkl05q0a0s95padp",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151017.2319",
+ "deps": []
+ },
+ "pyvenv": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "jorgenschaefer",
+ "repo": "pyvenv",
+ "sha256": "11scrmm15zyybl861l6izqsdysh8li7kkkwjm4p8cl5kmibiqrss",
+ "rev": "a0331f52ba2c9fe994ee423e4d82263b6f68a38a"
+ },
+ "recipe": {
+ "sha256": "0gai9idss1wvryxyqk3pv854mc2xg9hd0r55r2blql8n5rd2yv8v",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151105.1719",
+ "deps": []
+ },
+ "persp-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "Bad-ptr",
+ "repo": "persp-mode.el",
+ "sha256": "129cl5az4rr5j7krpyyi5khhbl8klw7ji9ysarz0s7ivy096jq7b",
+ "rev": "00e5f345f13b2b9e615082ac9ccbfd076592cc22"
+ },
+ "recipe": {
+ "sha256": "1bgni7y5xsn4a21494npr90w3320snfzw1hvql30xrr57pw3765w",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151212.207",
+ "deps": []
+ },
+ "replace-from-region": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/replace-from-region.el",
+ "sha256": "1clxkzxqsm91zbzv8nffav224ldr04ww5lppga2l41xjfl6z12qb"
+ },
+ "recipe": {
+ "sha256": "19q8hz2xiyamhw8hzpahqwd4352k1m9r9wlh9kdh6hbb6sjgllnb",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150406.1930",
+ "deps": []
+ },
+ "fuel": {
+ "fetch": {
+ "tag": "fetchgit",
+ "url": "git://factorcode.org/git/factor.git",
+ "sha256": "4a92fbfc3f08910d7fb1e351209dc40eb7bd724eebe7bf91bfab31f5faba54ec",
+ "rev": "216a1234c26d793488bb5a2c397c830b825f8da2"
+ },
+ "recipe": {
+ "sha256": "0m24p2788r4xzm56hm9kmpzcskwh82vgbs3hqfb9xygpl4isp756",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151204.543",
+ "deps": [
+ "cl-lib",
+ "emacs"
+ ]
+ },
+ "what-the-commit": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "danielbarbarito",
+ "repo": "what-the-commit.el",
+ "sha256": "04w62davpqqqvympkr52bg54c2i45p09q9bs70p9ff5jvc6i3g76",
+ "rev": "868c80a1b8614bcbd2225cd0290142c72f2a7956"
+ },
+ "recipe": {
+ "sha256": "0nnyb6hq6r21wf1x3q41ab48b3dmcz5lyli771a59dk1gs8qpgak",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150901.816",
+ "deps": []
+ },
+ "xterm-keybinder": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "yuutayamada",
+ "repo": "xterm-keybinder-el",
+ "sha256": "1jwimgglhqgp259wjqmpp1wi9j51qxcl1l356jlhjnfp1zh1ihmg",
+ "rev": "08d7c9b4c71db05df092010ba92f87567004b8c7"
+ },
+ "recipe": {
+ "sha256": "1n0zp1mc7x7z0671lf7p9r4qxic90bkf5q3zwz4vinpiw2qh88lz",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151211.101",
+ "deps": [
+ "cl-lib",
+ "emacs",
+ "let-alist"
+ ]
+ },
+ "mic-paren": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/mic-paren.el",
+ "sha256": "1ibim60fx0srmvchwbb2s04dmcc7mv7zyg1vqavas24ya2gmixc5"
+ },
+ "recipe": {
+ "sha256": "1kdmp0wd7838nk58lby8gx91pjan47lq3izk4vdb2vm0h0iq57sa",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140714.219",
+ "deps": []
+ },
+ "helm-core": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "emacs-helm",
+ "repo": "helm",
+ "sha256": "1dsipz9qz3bsmgj49z42vfs3ggdv37jcn852hffwjyzlhalwpi8i",
+ "rev": "e42e3ed6543b72756e6f2f1a96cbd0d35166cb6e"
+ },
+ "recipe": {
+ "sha256": "1dyv8rv1728vwsp6vfdq954sp878jbp3srbfxl9gsgjnv1l6vjda",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151213.217",
+ "deps": [
+ "async",
+ "cl-lib",
+ "emacs"
+ ]
+ },
+ "ssh-agency": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "magit",
+ "repo": "ssh-agency",
+ "sha256": "0i9c146wmy47dpiar5gzyxrqbi4156hbbabc9h6zkxiyx0zb3p78",
+ "rev": "528122b182e9e8ade2361720ea05a5594f926c18"
+ },
+ "recipe": {
+ "sha256": "0lci3fhl2p9mwilvq1njzy13dkq5cp5ighymf3zs4gzm3w0ih3h8",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151130.1754",
+ "deps": [
+ "dash",
+ "emacs"
+ ]
+ },
+ "bf-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "emacs-jp",
+ "repo": "bf-mode",
+ "sha256": "02b2m0cq04ynjcmr4j8gpdzjv9mpf1fysn736xv724xgaymj396n",
+ "rev": "7cc4d09aed64d9db6be95646f5f5067de68f8895"
+ },
+ "recipe": {
+ "sha256": "0b1yf9bx1ldkzry7v5qvcnl059rq62a50dvpa10i2f5v0y96n1q9",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20130403.942",
+ "deps": []
+ },
+ "sml-modeline": {
+ "fetch": {
+ "tag": "fetchbzr",
+ "url": "lp:~nxhtml/nxhtml/main",
+ "sha256": "1p10q1b5bvc8fvgfxynrq2kf1ygr6gad92x40zhaa5r1ksf6ryk4",
+ "rev": "835"
+ },
+ "recipe": {
+ "sha256": "086hslzznv6fmlhkf28mcl8nh4xk802mv6w0a4zwd5px2wyyaysd",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20120110.1440",
+ "deps": []
+ },
+ "wonderland": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "kurisuwhyte",
+ "repo": "emacs-wonderland",
+ "sha256": "0hacc8ha5w44cgwkipa3nwh1q5gdrcxhjkmw2gnvb1l01crgnack",
+ "rev": "89d274ad694b0e748efdac23ccd60b7d8b73d7c6"
+ },
+ "recipe": {
+ "sha256": "1b4p49mbzqffm2b2y8sbbi56vnkxap2jscsmla9l6l8brybqjppi",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20130912.2019",
+ "deps": [
+ "dash",
+ "dash-functional",
+ "emacs",
+ "multi"
+ ]
+ },
+ "plsense": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "aki2o",
+ "repo": "emacs-plsense",
+ "sha256": "1r2yxa7gqr0z9fwhx38siwjpg73a93rdmnhr4h6nm6lr32vviyxm",
+ "rev": "d50f9dccc98f42bdb42f1d1c8142246e03879218"
+ },
+ "recipe": {
+ "sha256": "1ka06r4ashhjkfyzql9mfvs3gj7n684h4gaycj29w4nfqrhcw9va",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151104.845",
+ "deps": [
+ "auto-complete",
+ "log4e",
+ "yaxception"
+ ]
+ },
+ "synonyms": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/synonyms.el",
+ "sha256": "1vqsi13ygbzjh3a6hdzidjy1p1xjxxvbisax8lcppy99l2cymr20"
+ },
+ "recipe": {
+ "sha256": "0rnq97jpr047gpkxhw22jj3gw09r45vn6fwkzxnxjzcmsyk492d0",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150920.38",
+ "deps": []
+ },
+ "clipmon": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "bburns",
+ "repo": "clipmon",
+ "sha256": "11q4qdl50ffxm9f8hllipikj28zriy48cbvmvvrr8q199jwzjfwl",
+ "rev": "0789be82a19bcdc556a93a287579c9eab2cc5c43"
+ },
+ "recipe": {
+ "sha256": "1gvy1722px4fh88jyb8xx7k1dgyjgq7zjadr5fghdir42l0byw7i",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150306.1423",
+ "deps": []
+ },
+ "datomic-snippets": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "magnars",
+ "repo": "datomic-snippets",
+ "sha256": "0ry7magy9x63xv2apjbpgszp0slch92g23gqwl4rd564qafajmf0",
+ "rev": "7116eac8e15a16fc72973b96fa855fd9784bbbb8"
+ },
+ "recipe": {
+ "sha256": "0lax0pj4k9c9n0gmrvil240pc9p25535q3n5m8nb2ar4sli8dn8r",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20130707.1515",
+ "deps": [
+ "dash",
+ "s",
+ "yasnippet"
+ ]
+ },
+ "save-load-path": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/save-load-path.el",
+ "sha256": "1p8p5b85sdnq45rdjq5wcr3xz7c22mr5bz41a21mkabc4j4fvd3z"
+ },
+ "recipe": {
+ "sha256": "01hm1rm9x3bqs6vf65l4xv2n4ramh3qwgmrp632fyfz5dlrvbssi",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20131228.1352",
+ "deps": []
+ },
+ "fic-mode": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/fic-mode.el",
+ "sha256": "110h0ff7bkwx7icph0j997hq53zpyz426dji4vs89zf75cf1nl7s"
+ },
+ "recipe": {
+ "sha256": "037f2jr8bs2sfxw28cal2d49bsbrg0zkz2xdham627l04qnkgv8x",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140421.1122",
+ "deps": []
+ },
+ "dionysos": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "nlamirault",
+ "repo": "dionysos",
+ "sha256": "1ldqxdwy6r0fd2vh0ckkhgpincvybghavi8c7vvyd24j91i57y2f",
+ "rev": "98907a38e98ff1b02171a1ad8df246a291e04750"
+ },
+ "recipe": {
+ "sha256": "1wjgj74dnlwd79gc3l7ymbx75jka8rw9smzbb10dsfppw3rrzfmz",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151013.303",
+ "deps": [
+ "alert",
+ "cl-lib",
+ "dash",
+ "libmpdee",
+ "pkg-info",
+ "s"
+ ]
+ },
+ "company-qml": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "cute-jumper",
+ "repo": "company-qml",
+ "sha256": "07vcxwqynji7ggy9sb8lgpinkfjdiav0aybn5pnb0v8ck9v1w6k3",
+ "rev": "ae4a5f1ac30eb31e74e2eebf98c895c2cb5a51df"
+ },
+ "recipe": {
+ "sha256": "0sva7i93dam8mc2z3cp785vmgcg7cphrpkwyvqyqhq8w51qg8mxx",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151027.1035",
+ "deps": [
+ "company",
+ "qml-mode"
+ ]
+ },
+ "graphene": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "rdallasgray",
+ "repo": "graphene",
+ "sha256": "1f34bhjxmbf2jjrkpdvqg2gwp83ka6d5vrxmsxdl3r57yc6rbrwa",
+ "rev": "dcc0e34c6c4632d5d5445ec023f5b1ca04c7d1b7"
+ },
+ "recipe": {
+ "sha256": "1wz3rvd8b7gx5d0k7yi4dd69ax5bybcm10vdc7xp4yn296lmyl9k",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151109.140",
+ "deps": [
+ "company",
+ "dash",
+ "exec-path-from-shell",
+ "flycheck",
+ "graphene-meta-theme",
+ "ido-ubiquitous",
+ "ppd-sr-speedbar",
+ "smartparens",
+ "smex",
+ "sr-speedbar",
+ "web-mode"
+ ]
+ },
+ "flycheck-package": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "purcell",
+ "repo": "flycheck-package",
+ "sha256": "0aa8cnh9f0f2zr2kkba2kf9djzjnsd51fzj8l578pbj016zdarwd",
+ "rev": "ff93e8986a1021daf542c441c1fd50436ee83cba"
+ },
+ "recipe": {
+ "sha256": "0068kpia17rsgjdmzsjnw0n6x5z9jvfxggxlzkszvwsx73mvcs2d",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151029.1338",
+ "deps": [
+ "cl-lib",
+ "emacs",
+ "flycheck"
+ ]
+ },
+ "btc-ticker": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "niedbalski",
+ "repo": "emacs-btc-ticker",
+ "sha256": "022j0gw5qkxjz8f70vqjxysifv2mz6cigf9n5z03zmpvwwvxmx2z",
+ "rev": "845235b545f070d0812cd1654cbaa4997565824f"
+ },
+ "recipe": {
+ "sha256": "1vfnx114bvnly1k3fmcpkqq4m9558wqr5c9k9yj8f046dgfh8dp1",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151113.859",
+ "deps": [
+ "json",
+ "request"
+ ]
+ },
+ "org-mac-iCal": {
+ "fetch": {
+ "tag": "fetchgit",
+ "url": "git://orgmode.org/org-mode.git",
+ "sha256": "c1c1d1723bd8d8b0a1b45d89000f1fed977ceddf7de0acc66ebd1121bd1dbb62",
+ "rev": "73803c1cf9d0e4016cd1c36653b40573396bd9e7"
+ },
+ "recipe": {
+ "sha256": "1ilzvmw1x5incagp1vf8d9v9mz0krlv7bpv428gg3gpqzpm6kksw",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140107.719",
+ "deps": []
+ },
+ "annotate": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "bastibe",
+ "repo": "annotate.el",
+ "sha256": "18ninv1z8zdqpqnablbds4zgxgk4c1nmznlfdicj6qs738c5c30s",
+ "rev": "a1690384317ce366e5a33aec916949e3328a0117"
+ },
+ "recipe": {
+ "sha256": "1ajykgara2m713blj2kfmdz12fzm8jw7klyakkyi6i3c3a9m44jy",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151006.1133",
+ "deps": []
+ },
+ "elfeed-goodies": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "algernon",
+ "repo": "elfeed-goodies",
+ "sha256": "1xl76gxjinggg332dib2h6z1gyqfi81r0x5rl8hrfpx8spi4iql0",
+ "rev": "319d88242c78d6073d25f8bb68336603c35904d0"
+ },
+ "recipe": {
+ "sha256": "0zpk6nx757hasgzcww90fzkcdn078my33p7yax7xslvi4msm37bi",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151210.801",
+ "deps": [
+ "ace-jump-mode",
+ "cl-lib",
+ "elfeed",
+ "noflet",
+ "popwin",
+ "powerline"
+ ]
+ },
+ "ox-mediawiki": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "tomalexander",
+ "repo": "orgmode-mediawiki",
+ "sha256": "0c2m02g6csg5fqizj3zqcm88q7w17kgvgi7swcx4fzz6rixnpsji",
+ "rev": "973ebfc673dfb4beeea3d3ce648c917b58dcf879"
+ },
+ "recipe": {
+ "sha256": "0lijj2n4saw0xd3jaghbvx9v6a4ldl5gd8wy7s7hfcm30wb75cdb",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150923.1102",
+ "deps": [
+ "cl-lib",
+ "s"
+ ]
+ },
+ "indy": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "attichacker",
+ "repo": "indy",
+ "sha256": "0kv0aj444i2rzksvcfz8sw0yyig3ca3m05agnhw9jzr01y05yl1n",
+ "rev": "bc1edbaa6db7264dd64fbd04331406d889b44501"
+ },
+ "recipe": {
+ "sha256": "1brmsgnkhr5nlma1p8f5s78y9gw3rfm8sah55n6vyhr0dpb4z7kl",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150610.1206",
+ "deps": []
+ },
+ "company-inf-ruby": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "company-mode",
+ "repo": "company-inf-ruby",
+ "sha256": "0fnv4rvvs9rqzrs86g23jcrpg0rcgk25299hm6jm08ia0kjjby1m",
+ "rev": "fe3e4863bc971fbb81edad447efad5795ead1b17"
+ },
+ "recipe": {
+ "sha256": "0cb1w0sxgb5jf0p2a5s2i4d511lsjjhyaqkqlwjz8nk4w14n0zxm",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140805.1554",
+ "deps": [
+ "company",
+ "emacs",
+ "inf-ruby"
+ ]
+ },
+ "envdir": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "proofit404",
+ "repo": "envdir-mode",
+ "sha256": "0jb8hf4v02b0zd02749533arrypjr3b3k88129grfks2kf29ybhb",
+ "rev": "efbfc45de320d33cd5c52edfa73a399a8b4dc34b"
+ },
+ "recipe": {
+ "sha256": "085bfm4w7flrv8jvzdnzbdg3j5n29xfzbs1wlrr29mg9dja6s8g8",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150519.955",
+ "deps": [
+ "dash",
+ "emacs",
+ "f"
+ ]
+ },
+ "flycheck-ghcmod": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "scturtle",
+ "repo": "flycheck-ghcmod",
+ "sha256": "0q1m1f3vhw1wy0pa3njy55z28psznbw2xwmwk2v1p5c86n74ns8d",
+ "rev": "6bb7b7d879f05bbae54e99eb04806c877adf3ccc"
+ },
+ "recipe": {
+ "sha256": "0mqxg622lqnkb52a0wff7h8b0k6mm1k7fhkfi95fi5sahclja0rp",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150114.32",
+ "deps": [
+ "dash",
+ "flycheck"
+ ]
+ },
+ "zerodark-theme": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "NicolasPetton",
+ "repo": "zerodark-theme",
+ "sha256": "1wv9wwc39555cr72z9pjnpymll8ifrhc527sph61pdilzlrmrc7q",
+ "rev": "98135542bad1fc894c718bc37e611f79434b693a"
+ },
+ "recipe": {
+ "sha256": "1nqzswmnq6h0av4rivqm237h7ghp7asa2nvls7nz4ma467p9qhp9",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151106.534",
+ "deps": []
+ },
+ "py-test": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "Bogdanp",
+ "repo": "py-test.el",
+ "sha256": "1s39407z3rxz10r5sshv2vj7s23ylkhg59ixasgnpjk82gl4igpf",
+ "rev": "3b2a0bdaacb54df6f2bee8317423e5c0d159d5cf"
+ },
+ "recipe": {
+ "sha256": "1mbwbzg606winf5af7qkg6a1hg79lc7k2miq4d3mwih496l5sinb",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151117.22",
+ "deps": [
+ "dash",
+ "emacs",
+ "f"
+ ]
+ },
+ "py-gnitset": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "quodlibetor",
+ "repo": "py-gnitset",
+ "sha256": "05803wi7rj73sy9ihkilr6pcn72szfsvgf2dgbdpnqra508rxyb6",
+ "rev": "471eb99b83eb9f6915d8ca241e9770ddd6244a78"
+ },
+ "recipe": {
+ "sha256": "0f6ivq4ignb4gfxw2q8qvigvv3fbvvyr87x25wcaz6yipg1lr18r",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140224.2210",
+ "deps": []
+ },
+ "org-cua-dwim": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "mlf176f2",
+ "repo": "org-cua-dwim.el",
+ "sha256": "0nrfvmqb70phnq0k4wbdj6z666wq6xvabg4pgv8qn62rbrw4yyhm",
+ "rev": "a55d6c7009fc0b22f1110c07de629acc955c85e4"
+ },
+ "recipe": {
+ "sha256": "0p7v564p8n1hm7rzlrbm2pnhyha8aif2r9g7g4kg0iqln89f5yhc",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20120202.2334",
+ "deps": []
+ },
+ "docbook-snippets": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "jhradilek",
+ "repo": "emacs-docbook-snippets",
+ "sha256": "1nbm3wzd12rsrhnwlcc6b72b1ala328mfpcp5bwlfcdshw6mfcrq",
+ "rev": "b06297fdec039a541aaa6312cb328a11062cfab4"
+ },
+ "recipe": {
+ "sha256": "1ipqfylgiw9iyjc1nckbay890clfkhda81nr00cq06sjmm71iniq",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150714.1125",
+ "deps": [
+ "yasnippet"
+ ]
+ },
+ "quick-preview": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "myuhe",
+ "repo": "quick-preview.el",
+ "sha256": "1cp3z05qjy7qvjjv105ws1j9qykx8sl4s13xff0ijwvjza6ga44c",
+ "rev": "29c884c6ab385ef67d9aa656ebb7c94cabeb5c35"
+ },
+ "recipe": {
+ "sha256": "18janbmhbwb6a46fgc1sxl9ww591v60y3wgh2wqh62vdy4ix3bd9",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150828.2339",
+ "deps": []
+ },
+ "scad-preview": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "zk-phi",
+ "repo": "scad-preview",
+ "sha256": "1mx5bg4mbgj828mwjd9nlxli4ibcrgpzn9i6ns2g9zpgm932zlbc",
+ "rev": "a444532126bdec3dec9cacf55bc183780decf040"
+ },
+ "recipe": {
+ "sha256": "0wcd2r60ibbc2mzpq8fvyfc1fy172rf9kzdj51p4jyl51r76i86z",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150818.824",
+ "deps": [
+ "scad-mode"
+ ]
+ },
+ "flx": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "lewang",
+ "repo": "flx",
+ "sha256": "10f9135i9z2y4k0x6fbwm0g6vhsj6ag41xq504zpygqzp6y6ikmz",
+ "rev": "807d69455585d89804ecef233a9462db7d0524d8"
+ },
+ "recipe": {
+ "sha256": "04plfhrnw7jx2jaxhbhw4ypydfcb8v0x2m5hyacvrli1mca2iyf9",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151030.1312",
+ "deps": [
+ "cl-lib"
+ ]
+ },
+ "hardhat": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "rolandwalker",
+ "repo": "hardhat",
+ "sha256": "13pgxskddir74lqknkkflzkrv6q455cf5s7wjww1zgvw95j7q50v",
+ "rev": "9355d174d49a514f3e176995ba93d5da7a25cbba"
+ },
+ "recipe": {
+ "sha256": "16pdbpm647ag9cadmdm75nwwyzrqsd9y1b4zgkl3pg669mi5vl5z",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140827.2056",
+ "deps": [
+ "ignoramus"
+ ]
+ },
+ "pinyin-search": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "xuchunyang",
+ "repo": "pinyin-search.el",
+ "sha256": "096izagfjw8cnxjq3v70x8a55npyxnr40mg1fc9b1jnqw6qwf491",
+ "rev": "53e75c2e32c03920dcc10334c7b62922779f2c8b"
+ },
+ "recipe": {
+ "sha256": "1si693nmmxgg0kp5mxvj5nq946kfc5cv3wfsl4znbqzps8qb2b7z",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150719.1955",
+ "deps": []
+ },
+ "mouse+": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/mouse+.el",
+ "sha256": "1l29smg3r2b2b08869wsrwyr5239gznd88xwf40q7qi350cj8fwy"
+ },
+ "recipe": {
+ "sha256": "1fv7jnqzskx9iv92dm2pf0mqy2accl0svjl2kkb6v273n1day3f8",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151122.1052",
+ "deps": []
+ },
+ "sexp-move": {
+ "fetch": {
+ "tag": "fetchFromGitLab",
+ "owner": "elzair",
+ "repo": "sexp-move",
+ "sha256": "11h5z2gmwq07c4gqzj2c9apksvqk3k8kpbb9kg78bbif2xfajr3m",
+ "rev": "117f7a91ab7c25e438413753e916570122011ce7"
+ },
+ "recipe": {
+ "sha256": "0lcxmr2xqh8z7xinxbv1wyrh786zlahhhj5nnbv83i8m23i3ymmd",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150915.1230",
+ "deps": []
+ },
+ "mc-extras": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "knu",
+ "repo": "mc-extras.el",
+ "sha256": "0252wdq4sd6jhzfy0pn3gdm6aq2h13nnp8hvrn1mpml9x473a5n1",
+ "rev": "71cf966be06d9c74e781a87bb30fa4cf657ee852"
+ },
+ "recipe": {
+ "sha256": "0b110x6ygc95v5pb9lk1i731x5s6dagl5afzv37l1qchys36xrym",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150218.434",
+ "deps": [
+ "multiple-cursors"
+ ]
+ },
+ "desktop-registry": {
+ "fetch": {
+ "tag": "fetchgit",
+ "url": "git://ryuslash.org/desktop-registry.git",
+ "sha256": "7c7727dd1d63be98e428700bfe340f2c4e7ff713fcc9b2b743a3366d786ae02d",
+ "rev": "244c2e7f9f0a1050aa8a47ad0b38f4e4584682dd"
+ },
+ "recipe": {
+ "sha256": "02mj0nlawx6vpksqsvp1q7l8rd6b1bs8f9c8c2rmda46jaf5npyr",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140119.1543",
+ "deps": []
+ },
+ "seoul256-theme": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "ChrisDavison",
+ "repo": "seoul256.el",
+ "sha256": "15vmd1qmj8a6a5mmvdcnbav6mi5rhrp39m85idzv02zm0x9x6lyc",
+ "rev": "32790703847b868e8fdd9c0736b0b8a0167f97cf"
+ },
+ "recipe": {
+ "sha256": "0mgyq725x5hmhs3h8v5macv8bfkginjghhwr9kli60vdb4skgjvp",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150714.1735",
+ "deps": []
+ },
+ "test-kitchen": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "jjasghar",
+ "repo": "test-kitchen-el",
+ "sha256": "125k13sqgxk963c04zn49jidvzx0hl0s4vvc9jpffgq8aq0mnnmr",
+ "rev": "3f3647bf437563493331821638f5f5829ae7dd26"
+ },
+ "recipe": {
+ "sha256": "1bl3yvj56dq147yplrcwphcxiwvmx5n97y4qpkm9imiv8cnjm1g0",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151027.627",
+ "deps": []
+ },
+ "llvm-mode": {
+ "fetch": {
+ "tag": "fetchgit",
+ "url": "http://llvm.org/git/llvm",
+ "sha256": "6def2eb038bf60d3520930449ba109763e1c430c6b4c7fba3f272c3c46311fe6",
+ "rev": "52707d211b073942a461af811dcc442456a3064b"
+ },
+ "recipe": {
+ "sha256": "0j3zsd0shd7kbi65a2ha7kmr0zy3my05378swx6m5m9x7miyr4y7",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150910.844",
+ "deps": []
+ },
+ "dired-rainbow": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "Fuco1",
+ "repo": "dired-hacks",
+ "sha256": "15jri9cj5jgr3ff423izd8idd7djay238c9pa3ccy05djl9z2hdx",
+ "rev": "6647825dbca4269afa76302e345d6bd15b222e42"
+ },
+ "recipe": {
+ "sha256": "1b9yh8p2x1dg7dyqhjhnqqiiymyl6bwsam65j0lpvbdx8r4iw882",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20141214.743",
+ "deps": [
+ "dash",
+ "dired-hacks-utils"
+ ]
+ },
+ "thrift": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "apache",
+ "repo": "thrift",
+ "sha256": "07wzips127pxd0s75l71jl9jc299v6r8npz7flb391z3lfryvbin",
+ "rev": "7be41c7ada9692e3c37fb8b4935991f6247320f6"
+ },
+ "recipe": {
+ "sha256": "0p1hxmm7gvhyigz8aylncgqbhk6cyf75rbcqis7x552g605mhiy9",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140312.1548",
+ "deps": []
+ },
+ "better-defaults": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "technomancy",
+ "repo": "better-defaults",
+ "sha256": "0j3wpw43q262wnq5214r20r15sy2hihbiak5j7ag23lq9jx2jvva",
+ "rev": "b7888289ed702aff1616cbff832c97d4e5fc2463"
+ },
+ "recipe": {
+ "sha256": "13bqcmx2gagm2ykg921ik3awp8zvw5d4lb69rr6gkpjlqp7nq2cm",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150404.423",
+ "deps": []
+ },
+ "wwtime": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "ndw",
+ "repo": "wwtime",
+ "sha256": "0ba193ilqmp7l35hhzfym4kvbnj9h57m8mwsxdj6rdj2cwrifx8r",
+ "rev": "d04d8fa814b5d3644efaeb28f25520ada69acbbd"
+ },
+ "recipe": {
+ "sha256": "0n37k23lkjgaj9wxnr41yk3mwvy62mc9im5l86czqmw5gy4l63ic",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151122.1010",
+ "deps": []
+ },
+ "color-theme-solarized": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "sellout",
+ "repo": "emacs-color-theme-solarized",
+ "sha256": "1xd2yk7p39zxgcf91s80pqknzdxw9d09cppjb87g7ihj6f0wxqjv",
+ "rev": "412713a0fcedd520d208a7b783fea03d710bcc61"
+ },
+ "recipe": {
+ "sha256": "011rzq38ffmq7f2nzwrq96wwz67p82p1f0p5nib4nwqa47xlx7kf",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150619.1934",
+ "deps": [
+ "color-theme"
+ ]
+ },
+ "cinspect": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "inlinestyle",
+ "repo": "cinspect-mode",
+ "sha256": "190n4kdcqdwglhnawnj9mqjarmcaqylxipc07whmrii0jv279kjw",
+ "rev": "4e199a90f89b335cccda1518aa0963e0a1d4fbab"
+ },
+ "recipe": {
+ "sha256": "0djh61mrfgcm3767ll1l5apw6646j4fdcaripksrmvn5aqfn8rjj",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150715.2133",
+ "deps": [
+ "cl-lib",
+ "deferred",
+ "emacs",
+ "python-environment"
+ ]
+ },
+ "nu-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "pyluyten",
+ "repo": "emacs-nu",
+ "sha256": "0nbmpnljl0wdkwmxzg6lqd3mand9w043qmwp727hb84gxy0j4dib",
+ "rev": "e2b509a9b631e98f6feabdc783c01a6b57d05fc2"
+ },
+ "recipe": {
+ "sha256": "0h5jaw577vgm3hfiwc2c0k1wn8zda8ps06vj6mqj952m8bqhf4i7",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150413.1515",
+ "deps": [
+ "helm",
+ "undo-tree"
+ ]
+ },
+ "plsense-direx": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "aki2o",
+ "repo": "plsense-direx",
+ "sha256": "0s34nbqqy6aqi113xj452pbmqp43046wfbfbbfv1xwhybgq0c1j1",
+ "rev": "8a2f465264c74e04524cc789cdad0190ace43f6c"
+ },
+ "recipe": {
+ "sha256": "0qd4b7gkmn5ydadhp70995rap3643s1aa8gfi5izgllzhg0i864j",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140520.1508",
+ "deps": [
+ "direx",
+ "log4e",
+ "plsense",
+ "yaxception"
+ ]
+ },
+ "cygwin-mount": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/cygwin-mount.el",
+ "sha256": "09my4gj3qm9rdpk8lg6n6ki8ywj7kwzwd4hhgwascfnfi1hzwdvw"
+ },
+ "recipe": {
+ "sha256": "0ik2c8ab9bsx58mgcv511p50h45cpv7455n4b0kri83sx9xf5abb",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20131111.1546",
+ "deps": []
+ },
+ "aggressive-fill-paragraph": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "davidshepherd7",
+ "repo": "aggressive-fill-paragraph-mode",
+ "sha256": "18zlxgwcvqhlw9y7zn6fywmy04f7rs71fd5ihcx28j4rx9ay929c",
+ "rev": "9af6a31b7c47306fb524bcc8582e0a3738701f25"
+ },
+ "recipe": {
+ "sha256": "1df4bk3ks09805y67af6z1gpfln0lz773jzbbckfl0fy3yli0dja",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151112.141",
+ "deps": [
+ "dash"
+ ]
+ },
+ "eshell-git-prompt": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "xuchunyang",
+ "repo": "eshell-git-prompt",
+ "sha256": "1b94pamb92a26lvlbwyr7kgaiwax4hkgmmalh8l5ldcwxkscq09c",
+ "rev": "1751dd26dab245fd9567ed5eb09ba0b312699eac"
+ },
+ "recipe": {
+ "sha256": "0a8pyppqvnavvb8rwsjxagb76hra9zhs5gwa0ylyznmql83f8w8s",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150929.47",
+ "deps": [
+ "cl-lib",
+ "dash",
+ "emacs",
+ "s"
+ ]
+ },
+ "stgit": {
+ "fetch": {
+ "tag": "fetchgit",
+ "url": "git://repo.or.cz/stgit.git",
+ "sha256": "c5d424f34ca33d2c19e3888a9dc249d0398203e5199bf2b4bdd9e604390b500b",
+ "rev": "e4e04764009f749665636c4d11e0cafd9c4971e1"
+ },
+ "recipe": {
+ "sha256": "102s9lllrcxsqs0lgbrcljwq1l3s8ri4276wck6rcypck5zgzj89",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140213.548",
+ "deps": []
+ },
+ "poporg": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "QBobWatson",
+ "repo": "poporg",
+ "sha256": "0ja1kq4pl62zxlzwv2m8zzb55lg2fl366bi9pzvxl38frvbqg8qx",
+ "rev": "d4d8b3e6206b0af4044d1dcecfc0bd2193704e07"
+ },
+ "recipe": {
+ "sha256": "08s42689kd78h2fmw230ja5dd3c3b4lx5mzadncwq0lj91y86kd8",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150603.2047",
+ "deps": []
+ },
+ "cdb": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "skk-dev",
+ "repo": "ddskk",
+ "sha256": "11qr5ami93rwgvc3pf9370rsxbnawdllsrizm1v53xsi98yfp812",
+ "rev": "83f1acd557d1b5561f6bc5a3abae7ab9ab4ea440"
+ },
+ "recipe": {
+ "sha256": "1gx34062h25gqsl3j1fjlklha19snvmfaw068q6bv6x9r92niqnf",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151205.743",
+ "deps": []
+ },
+ "kite-mini": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "tungd",
+ "repo": "kite-mini.el",
+ "sha256": "1m0f1hiczq88qjy573rhlkw2lmjy814cgdl42zxsjbf78wg4qx8d",
+ "rev": "d9eb14593364f7d58eed3f26b45e8aef5b845b20"
+ },
+ "recipe": {
+ "sha256": "1g644406zm3db0fjyv704aa8dbd20v1apmysb3mmh2vldbch4iyh",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150811.1329",
+ "deps": [
+ "dash",
+ "websocket"
+ ]
+ },
+ "ac-html-bootstrap": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "osv",
+ "repo": "ac-html-bootstrap",
+ "sha256": "0c2d5yh0xndna2p1azhhss63q3vbn3lsi2f22nb792gr6al1j8za",
+ "rev": "3c1880294585054fe8345f25d002a7a4633b2fae"
+ },
+ "recipe": {
+ "sha256": "0z71m6xws0k9smhsswaivpikr64mv0wh6klnmi5cwhwcqas6kdi1",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150930.241",
+ "deps": [
+ "web-completion-data"
+ ]
+ },
+ "zlc": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "mooz",
+ "repo": "emacs-zlc",
+ "sha256": "1gb51bqdf87yibs1zngk6q090p05293cpwlwbwzhnih9sl6wkq8x",
+ "rev": "4dd2ba267ecdeac845a7cbb3147294ee7daa25f4"
+ },
+ "recipe": {
+ "sha256": "0qw0qf14l09mcnw7h0ccbw17psfpra76qfawkc10zpdb5a2167d0",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151010.2057",
+ "deps": []
+ },
+ "julia-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "JuliaLang",
+ "repo": "julia",
+ "sha256": "08rznffmfbfsr1i7bphkxxsadq25rqkidfni7ljxakf0zwl6x7yr",
+ "rev": "e83b7559df94b3050603847dbd6f3674058027e6"
+ },
+ "recipe": {
+ "sha256": "0c5bdgh98hw7484s2is84af7hznd8c4z5vlzfd98s8qxi7bldqjm",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150912.1000",
+ "deps": []
+ },
+ "term+mux": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "tarao",
+ "repo": "term-plus-mux-el",
+ "sha256": "12gfvcf7hl29xhg231cx76q04ll7cvfpvhkb0qs3qn1sqb50fs2q",
+ "rev": "81b60e80cf008472bfd7fad9233af2ef722c208a"
+ },
+ "recipe": {
+ "sha256": "129kzjpi5nzagqkjfikx9i7k6489dy7d3pd7ggn59p4cnh3r2rhh",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140211.149",
+ "deps": [
+ "tab-group",
+ "term+"
+ ]
+ },
+ "chinese-remote-input": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "tumashu",
+ "repo": "chinese-remote-input",
+ "sha256": "06k13wk659qw40aczq3i9gj0nyz6vb9z1nwsz7c1bgjbl2lh6hcv",
+ "rev": "d05d0bd116421e6fd19f52e9e576431ee5de0858"
+ },
+ "recipe": {
+ "sha256": "0nnccm6w9i0qsgiif22hi1asr0xqdivk8fgg76mp26a2fv8d3dag",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150110.2303",
+ "deps": []
+ },
+ "flycheck-status-emoji": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "liblit",
+ "repo": "flycheck-status-emoji",
+ "sha256": "17mhsxnixw37x9jpy59nn3npw93r1rza2zcw6jmqzandmj0jyvm4",
+ "rev": "a6ae7b108110acc4dba32e616c8b02555455ea67"
+ },
+ "recipe": {
+ "sha256": "0p42424b1fsmfcjyl252vhblppmpjwd6br2yqh10fi60wmprvn2p",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150924.1314",
+ "deps": [
+ "emacs",
+ "flycheck",
+ "let-alist"
+ ]
+ },
+ "gitlab": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "nlamirault",
+ "repo": "emacs-gitlab",
+ "sha256": "07i4j9yl1yag70sl89n7v4yg4jvh5mrifhrf1xswlb29by6najdx",
+ "rev": "78deece7f314f9652b50117605e93be9f8c860f4"
+ },
+ "recipe": {
+ "sha256": "0vxsqfnipgapnd2ijvdnkspk68dlnki3pkpkzg2h6hyazmzrsqnq",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151202.238",
+ "deps": [
+ "dash",
+ "pkg-info",
+ "request",
+ "s"
+ ]
+ },
+ "ivariants": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "kawabata",
+ "repo": "emacs-ivariants",
+ "sha256": "12nqpzcmz724wpk8p16lc3z26rxma3wp6pf6dvrsqagnlixrs9si",
+ "rev": "f9deff2e6fba5647f69771546fb2283136d0fb0d"
+ },
+ "recipe": {
+ "sha256": "00fgcm62g4fw4306lw9ld2k7w0c358fcbkxn969k5p009g7pk5bw",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140720.2327",
+ "deps": [
+ "emacs",
+ "ivs-edit"
+ ]
+ },
+ "highlight-tail": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/highlight-tail.el",
+ "sha256": "1bbiyqddqkrp3c7xsg1m4143611bhg1kkakrwscqjb4cfmx29qqg"
+ },
+ "recipe": {
+ "sha256": "187kv3n262l38jdapi9bwcafz8fh61pdq2zliwiz7m7xdspp2iws",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140415.2041",
+ "deps": []
+ },
+ "common-lisp-snippets": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "mrkkrp",
+ "repo": "common-lisp-snippets",
+ "sha256": "1cc9ak9193m92g6l4mrfxbkkmvljl3c51d0xzdidwww978q3x6ad",
+ "rev": "3b2b50fda8b1526d45a74e3d30f560d6b6bbb284"
+ },
+ "recipe": {
+ "sha256": "0ig8cz00cbfx0jckqk1xhsvm18ivl2mjvcn65s941nblsywfvxjl",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150910.547",
+ "deps": [
+ "yasnippet"
+ ]
+ },
+ "apples-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "tequilasunset",
+ "repo": "apples-mode",
+ "sha256": "0br0jl6xnajdx37s5cvs13srn9lldg58y9587a11s3s651xjdq0z",
+ "rev": "83a9ab0d6ba82496e2f7df386909b1a55701fccb"
+ },
+ "recipe": {
+ "sha256": "05ssnxs9ybc26jhr69xl9jpb41bz1688minmlc9msq2nvyfnj97s",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20110120.2218",
+ "deps": []
+ },
+ "reveal-in-osx-finder": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "kaz-yos",
+ "repo": "reveal-in-osx-finder",
+ "sha256": "1q13cgpz4wzhnqv84ablawy3y2wgdwy46sp7454mmfx9m77jzb2v",
+ "rev": "5710e5936e47139a610ec9a06899f72e77ddc7bc"
+ },
+ "recipe": {
+ "sha256": "00jgrmh5s3vlpj1jjf8l3c3h4hjk5x781m95sidw6chimizvfmfc",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150802.1157",
+ "deps": []
+ },
+ "minitest": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "arthurnn",
+ "repo": "minitest-emacs",
+ "sha256": "0svv44f9fham9icqq3v31n9728wap4fa0dq241sikbbrw0lnq3gx",
+ "rev": "c2019088087ebb5e3fe32eae9ae8156db08bd82d"
+ },
+ "recipe": {
+ "sha256": "0x6nd4kkhiw8hh79r69861pf41j8p1y39kzf2rl61zlmyjz9zpmw",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151015.1331",
+ "deps": [
+ "dash"
+ ]
+ },
+ "evil-god-state": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "gridaphobe",
+ "repo": "evil-god-state",
+ "sha256": "1cv24qnxxf6n1grf4n5969v8y9xll5zb9mbfdnq9iavdvhnndk2h",
+ "rev": "3d44197dc0a1fb40e7b7ff8717f8a8c339ce1d40"
+ },
+ "recipe": {
+ "sha256": "1g547d58zf11qw0zz3fk5kmrzmfx1rhawyh5d2h8bll8hwygnrxf",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20141116.2055",
+ "deps": [
+ "evil",
+ "god-mode"
+ ]
+ },
+ "org-mac-link": {
+ "fetch": {
+ "tag": "fetchgit",
+ "url": "git://orgmode.org/org-mode.git",
+ "sha256": "c1c1d1723bd8d8b0a1b45d89000f1fed977ceddf7de0acc66ebd1121bd1dbb62",
+ "rev": "73803c1cf9d0e4016cd1c36653b40573396bd9e7"
+ },
+ "recipe": {
+ "sha256": "02rmhrwikppppw8adnzvwj43kp9wsyk60csj5pygg7cd7wah7khw",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151218.428",
+ "deps": []
+ },
+ "occur-x": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "juan-leon",
+ "repo": "occur-x",
+ "sha256": "1zj0xhvl5qx42injv0av4lyzd3jsjls1m368dqd2qnswhfw8wfn6",
+ "rev": "352f5fab207d8a1d3dd048073ff127a83e97c82b"
+ },
+ "recipe": {
+ "sha256": "1xq1k9rq7k1zw90shbgiidwvcn0ys1d53q03b5mpvvfqhj4n0i1g",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20130610.843",
+ "deps": []
+ },
+ "evil-matchit": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "redguardtoo",
+ "repo": "evil-matchit",
+ "sha256": "0kf4m1ghpxfalqx2zwm1d8xav4d6l6bpk79g5cvssk5jz5913fbi",
+ "rev": "8b80b3df9472217d55962981025539f2da603296"
+ },
+ "recipe": {
+ "sha256": "01z69n20qs4gngd28ry4kn825cax5km9hn96i87yrvq7nfa64swq",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151120.535",
+ "deps": []
+ },
+ "sqlup-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "trevoke",
+ "repo": "sqlup-mode.el",
+ "sha256": "0p2g4ss3bf2asxcibrd8l70ll04nm47znr99l5xyzzwhyfzi61w4",
+ "rev": "9cb9662673b7bed891582cfc1080d91a254048f7"
+ },
+ "recipe": {
+ "sha256": "06a0v2qagpd9p2bh19bfw14a6if8kjjc4yyhm5nwp8a8d2vnl5l7",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151121.830",
+ "deps": []
+ },
+ "ox-impress-js": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "kinjo",
+ "repo": "org-impress-js.el",
+ "sha256": "1kf2si2lyy0xc971bx5zd2j9mnz1smc9s8l0dwc6iksh2v9q8cy9",
+ "rev": "91c6d2af6af308ade352a03355c4fb551b238c6b"
+ },
+ "recipe": {
+ "sha256": "0p0cc51lmxgl0xv951ybdg5n8gbzv8qf0chfgigijizzjypxc21l",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150412.1216",
+ "deps": [
+ "org"
+ ]
+ },
+ "flycheck-gometalinter": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "favadi",
+ "repo": "flycheck-gometalinter",
+ "sha256": "1hvjbvrarg39bi761bfvg4i3psz03pcilpp9zb6zb01vnhihwgd0",
+ "rev": "bc82ffa3ad4a4407a4eddc9bc06ff0b7df9d4ab3"
+ },
+ "recipe": {
+ "sha256": "1bnvj5kwgbh0dv989rsjcvmcij1ahwcz0vpr6a8f2p6wwvksw1h2",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151201.1128",
+ "deps": [
+ "emacs",
+ "flycheck"
+ ]
+ },
+ "hipster-theme": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "xzerocode",
+ "repo": "hipster-theme",
+ "sha256": "17dcpwx2y464g8qi3ixlsf3la8dn0bkxax296bhfg4vh73dxccl3",
+ "rev": "0583bcef489c0bbe2393f813c17f634a9487e04f"
+ },
+ "recipe": {
+ "sha256": "1xrgpqlzp4lhh5h3sv7pg1nqzc9wcv1hs6ybv2h4x6jangicwfl2",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20141205.2205",
+ "deps": []
+ },
+ "ir-black-theme": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "jmdeldin",
+ "repo": "ir-black-theme.el",
+ "sha256": "1cy9xwhswj9vahg8zr16r2crm2mm3vczqs73gc580iidasb1q1i2",
+ "rev": "36e930d107604b5763c80294a6f92aaa02e6c272"
+ },
+ "recipe": {
+ "sha256": "1qpq9zbv63ywzk5mlr8x53g3rn37k0mdv6x1l1hcd90gka7vga9v",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20130303.155",
+ "deps": []
+ },
+ "password-store": {
+ "fetch": {
+ "tag": "fetchgit",
+ "url": "http://git.zx2c4.com/password-store",
+ "sha256": "9c3ee0155b9d6b96acacaab8e799b23e92550ef136ffa2c07880029af3061733",
+ "rev": "bffca1ee21a38f1e808fa83e5df2fcf0f808cb9f"
+ },
+ "recipe": {
+ "sha256": "1jh24737l4hccr1k0b9fnq45ag2dsk84fnfs86hcgsadl94d6kss",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151027.1649",
+ "deps": [
+ "f",
+ "s"
+ ]
+ },
+ "subr+": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/subr+.el",
+ "sha256": "16k141aikvwg5dsw8mfkv222ikjdch0178dm8w58km0mjj7j81wk"
+ },
+ "recipe": {
+ "sha256": "1vrv64768f7rk58mqr4pq1fjyi5n5kfqk90hzrwbvblkkrmilmfs",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150104.1855",
+ "deps": []
+ },
+ "memento": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "ehartc",
+ "repo": "memento",
+ "sha256": "0pjqax3pi6pb650yb8iwa4brwwl6cdka7jym3cfkpppyy782dm0q",
+ "rev": "35733b79101f694346792a57df686cbffe64bd79"
+ },
+ "recipe": {
+ "sha256": "0f8ajhj677r2kxszmad6h1j1b827ja0vaz2my1vx145y3gf160b8",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150823.539",
+ "deps": []
+ },
+ "django-theme": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "andrzejsliwa",
+ "repo": "django-theme.el",
+ "sha256": "1azf4p6salga7269l0kf13bqlxf9idp0ys8mm20qpyjpj79p5g9w",
+ "rev": "86c8142b3eb1addd94a43aa6f1d98dab06401af0"
+ },
+ "recipe": {
+ "sha256": "1rydl857zfpbvd7aziz6h7n3rrh584z2cbfxlss3wgfclzmbyhgf",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20131022.402",
+ "deps": []
+ },
+ "vimrc-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "mcandre",
+ "repo": "vimrc-mode",
+ "sha256": "000fs2h5zcv8aq8an16r6zwwf9x1qnfs7xxn39iahiwfzvnljqp0",
+ "rev": "d4c7d41091eb282e617c973f5b1fc29c69dc9a28"
+ },
+ "recipe": {
+ "sha256": "06hisgsn0czvzbq8m4dz86h4q75j54a0gxkg5shnr8s654d450bp",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150607.1113",
+ "deps": []
+ },
+ "highlight-unique-symbol": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "hitode909",
+ "repo": "emacs-highlight-unique-symbol",
+ "sha256": "0hhc2l4pz6q8injpplv6b5l08l8q2lnjdpwabp7gwmhraq54rhjx",
+ "rev": "4141bf86a94e30d94d9af9c29d40b16886226e1c"
+ },
+ "recipe": {
+ "sha256": "0lwl8pkmq0q4dvyflarggnn8vzpvk5hhcnk508r6xml2if1sg9zx",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20130612.42",
+ "deps": [
+ "deferred"
+ ]
+ },
+ "extend-dnd": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "mattfidler",
+ "repo": "extend-dnd",
+ "sha256": "15dwl1rb3186k328a83dz9xmslc0px60ah16fifvmr3migis9hwz",
+ "rev": "80c966c93b82c9bb5c6225a432557c39144fc602"
+ },
+ "recipe": {
+ "sha256": "0rknpvp8yw051pg3blvmjpp3c9a82jw7f10mq67ggbz98w227417",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151122.1250",
+ "deps": []
+ },
+ "bts-github": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "aki2o",
+ "repo": "emacs-bts-github",
+ "sha256": "1sfr3j11jz4k9jnfa9i05bp4v5vkil38iyrgsp3kxf15797b9dg9",
+ "rev": "57c23f2b842f6775f0bbbdff97eeec78474be6bc"
+ },
+ "recipe": {
+ "sha256": "03lz12bbkjqbs82alc97k6s1pmk721qip3h9cifq8a5ww5cbq9ln",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150108.227",
+ "deps": [
+ "bts",
+ "gh"
+ ]
+ },
+ "ac-haskell-process": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "purcell",
+ "repo": "ac-haskell-process",
+ "sha256": "0m33v9iy3y37sicfmpx7kvmn8v1a8k6cs7d0v9v5k93p4d5ila41",
+ "rev": "0362d4323511107ec70e7165cb612f3ab01b712f"
+ },
+ "recipe": {
+ "sha256": "0kv4z850kv03wiax1flnrp6sgqja25j23l719w7rkr7ck110q8rw",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150423.902",
+ "deps": [
+ "auto-complete",
+ "haskell-mode"
+ ]
+ },
+ "erc-view-log": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "Niluge-KiWi",
+ "repo": "erc-view-log",
+ "sha256": "0bzi2sh2fhrz49j5y53h6jgf41av6rx78smb3bbk6m74is8vim2y",
+ "rev": "c5a25f0cbca84ed2e4f72068c02b66bd0ea3b266"
+ },
+ "recipe": {
+ "sha256": "1k6fawblz0d7kz1y7sa3q43s7ci28jsmzkp9vnl1nf55p9xvv4cf",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140227.1439",
+ "deps": []
+ },
+ "jst": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "cheunghy",
+ "repo": "jst-mode",
+ "sha256": "16jgmabcqrjb3v9c6q711jqn9dna88bmzm4880mdry69ixwcydxy",
+ "rev": "2a3fd16c992f7790dc67134ef06a814c3d20579c"
+ },
+ "recipe": {
+ "sha256": "0hp1f7p6m1gfv1a3plavzkzn87dllb5g2xrgg3mch4qsgdbqx65i",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150604.638",
+ "deps": [
+ "dash",
+ "emacs",
+ "f",
+ "pcache",
+ "s"
+ ]
+ },
+ "flx-ido": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "lewang",
+ "repo": "flx",
+ "sha256": "10f9135i9z2y4k0x6fbwm0g6vhsj6ag41xq504zpygqzp6y6ikmz",
+ "rev": "807d69455585d89804ecef233a9462db7d0524d8"
+ },
+ "recipe": {
+ "sha256": "00wcwbvfjbcx8kyap7rl1b6nsgqdwjzlpv6al2cdpdd19rm1vgdc",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151030.1312",
+ "deps": [
+ "cl-lib",
+ "flx"
+ ]
+ },
+ "helm-open-github": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "syohex",
+ "repo": "emacs-helm-open-github",
+ "sha256": "0z20wrrzwbw7d6b1s0grzlc3nj9n7dhmv3yk2wk0m4s8y5gmwjd5",
+ "rev": "9f275e065dbdcaf10c7573984d1ac97041faddba"
+ },
+ "recipe": {
+ "sha256": "121sszwvihbv688nq5lhdclvsjj8759glh42h82r4pcw30lxggxb",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151217.846",
+ "deps": [
+ "cl-lib",
+ "gh",
+ "helm-core"
+ ]
+ },
+ "xresources-theme": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "CQQL",
+ "repo": "xresources-theme",
+ "sha256": "1n3biybylvq5c1lpf7zsjsgdrg7mzrhkaw251fp8qmsss0s3sv4g",
+ "rev": "4842144f9f83e9d6f71f5ba2fd3abdcf6887de8f"
+ },
+ "recipe": {
+ "sha256": "0spqa3xn3p2lmvlc5hdn7prq4vb70nkyrryx1kavha9igzhlyaga",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20141219.1117",
+ "deps": []
+ },
+ "enclose": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "rejeep",
+ "repo": "enclose",
+ "sha256": "0dz5xm05d7irh1j8iy08jk521p19cjai1kw68z2nngnyf1az7cim",
+ "rev": "2747653e84af39017f503064bc66ed1812a77259"
+ },
+ "recipe": {
+ "sha256": "04gs468qqhdc9avx7lgibr0f1i444714i7rifad37dfmim8qk759",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20121008.1114",
+ "deps": []
+ },
+ "magic-latex-buffer": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "zk-phi",
+ "repo": "magic-latex-buffer",
+ "sha256": "102qvck8piskirlpz6y5m3slli8913flkjw6jzz1ymxcw9mszaz3",
+ "rev": "9039acc76000d3c11444fc8782343344247f6fb3"
+ },
+ "recipe": {
+ "sha256": "0xm4vk4aggyfw96cgya5cp97jzx5ha0xwpf2yfh7c3m8d9cca4y8",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151211.202",
+ "deps": [
+ "cl-lib",
+ "emacs"
+ ]
+ },
+ "nvm": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "rejeep",
+ "repo": "nvm.el",
+ "sha256": "0prag0ks511ifa5mdpqmizp5n8190dxp4vdr81ld9w9xv7migpd7",
+ "rev": "d6c7ad048f1d2854ec3c043d80528857aa1090a8"
+ },
+ "recipe": {
+ "sha256": "03gy7wavc2q02lnr9pmp3l1pn0lzbdq0kwnmg9fvklmq6r6n3x34",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151113.255",
+ "deps": [
+ "dash",
+ "dash-functional",
+ "f",
+ "s"
+ ]
+ },
+ "organic-green-theme": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "kostafey",
+ "repo": "organic-green-theme",
+ "sha256": "0q90vm2z3vs9hg9zg5dl6c35f7ivzxj5df3y3h9xjif494ladbsg",
+ "rev": "c4d68c3329147aedd066a88b6d5e5266bcd59dcc"
+ },
+ "recipe": {
+ "sha256": "1fdj3dpcdqx0db5q8dlxag6pr2qn4yiz1hmg3c7dkmh51n85ssw2",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151028.720",
+ "deps": []
+ },
+ "ruby-factory": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "sshaw",
+ "repo": "ruby-factory-mode",
+ "sha256": "1xwh71kpjn8ql3qp0s35c4ql3niab31igj21k1gcybdfv316mcyd",
+ "rev": "134a91c854c06d0d06038005769ce20b2a8177bd"
+ },
+ "recipe": {
+ "sha256": "0v8009pad0l41zh9r1wzcx1h6vpzhr5rgpq6rb002prxz2lcbd37",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151011.1023",
+ "deps": [
+ "inflections"
+ ]
+ },
+ "kv": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "nicferrier",
+ "repo": "emacs-kv",
+ "sha256": "0r0lz2s6gvy04fwnafai668jsf4546h4k6zd6isx5wpk0n33pj5m",
+ "rev": "721148475bce38a70e0b678ba8aa923652e8900e"
+ },
+ "recipe": {
+ "sha256": "1vzifi6zpkmsh1a3c2njrw7mpfdgyjvpbz3bj42j8cg3vwjnjznb",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140108.934",
+ "deps": []
+ },
+ "org-mobile-sync": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "steckerhalter",
+ "repo": "org-mobile-sync",
+ "sha256": "0d22q57mizw70qxbvwi4yz15jg86icqq1z963rliwss3wgpirndh",
+ "rev": "3b086ffebfead48feccc629f7a6571df2f94c8e0"
+ },
+ "recipe": {
+ "sha256": "1cj0pxcjngiipmyl0w1p0g4wrxgm2y98a8862x1lcbali9lqbrwj",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20131118.1316",
+ "deps": [
+ "emacs",
+ "org"
+ ]
+ },
+ "websocket": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "ahyatt",
+ "repo": "emacs-websocket",
+ "sha256": "1w6qg6acakl868s392m4hrz3z2111ir6hk89d1scy8qm9g81znap",
+ "rev": "e5cd7c955734f6864fd9f2fa001f076b1a024044"
+ },
+ "recipe": {
+ "sha256": "1v8jlpahp30lihz7mdznwl6pyrbsdbqznli2wb5gfblnlxil04lg",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150719.1248",
+ "deps": []
+ },
+ "editorconfig-core": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "editorconfig",
+ "repo": "editorconfig-emacs",
+ "sha256": "0af6r0qn6gy3ww5cf3cvvbwyqpvx5xv08gxkjsj92z9h2x5rfz7f",
+ "rev": "301d67b26098d048ff7235c0878252e80becc7e0"
+ },
+ "recipe": {
+ "sha256": "18d7byqkxn6lyw3nqsvqs5vyj9alh9wjd2mim44a3zcc9r2j061r",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151208.1035",
+ "deps": [
+ "cl-lib",
+ "editorconfig-fnmatch"
+ ]
+ },
+ "gnomenm": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "nicferrier",
+ "repo": "emacs-nm",
+ "sha256": "1svnvm9fqqx4mrk9jjn11pzqwk71w8kyyd9wwxam8gz22ykw5jb2",
+ "rev": "9065cda44ffc9e06239b8189a0154d31314c3b4d"
+ },
+ "recipe": {
+ "sha256": "01vmr64j6hcvdbzg945c5a2g4fiidl18dsk4px7mdf85cv45kzqm",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150316.1418",
+ "deps": [
+ "dash",
+ "kv",
+ "s"
+ ]
+ },
+ "imenu-list": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "bmag",
+ "repo": "imenu-list",
+ "sha256": "0hlrhnv0n9i1jl20k6hly4py9d98vpqdb9wgzx8573srxqpv541k",
+ "rev": "0c725825ad13fca6b1eea2d28c42ffb172fa6de9"
+ },
+ "recipe": {
+ "sha256": "092fsn7hnbfabcyakbqyk20pk62sr8xrs45aimkv1l91681np98s",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150911.446",
+ "deps": [
+ "cl-lib"
+ ]
+ },
+ "minor-mode-hack": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/minor-mode-hack.el",
+ "sha256": "0vwvvhzqiad82qvfwygb2arq1mdvh1lj6q2as0a92fg1vc95qcb0"
+ },
+ "recipe": {
+ "sha256": "1f2wy25iphk3hzjy39ls5j04173g7gaq2rdp2grkawfhwx0ld4pj",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20141226.1420",
+ "deps": []
+ },
+ "flymake-less": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "purcell",
+ "repo": "flymake-less",
+ "sha256": "0ggi8a4j4glpsar0sqg8q06rscajjaziis5ann31wphx88rc5wd7",
+ "rev": "32d3c28a9a5c52b82d1741ff9d715013b6498421"
+ },
+ "recipe": {
+ "sha256": "05k5daphxy94164c73ia7f4l1gv2cmlw8xzs8xnddg7ly22gjhi0",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151111.138",
+ "deps": [
+ "flymake-easy",
+ "less-css-mode"
+ ]
+ },
+ "go-rename": {
+ "fetch": {
+ "tag": "fetchgit",
+ "url": "https://go.googlesource.com/tools",
+ "sha256": "e8768dadb61beb860223d8cc2b9a2e4da8e5ebaeb631f94d1a72aebb9ce1a30a",
+ "rev": "fa833fdef560f0fe9b40dbb37fd03030ac3d514b"
+ },
+ "recipe": {
+ "sha256": "1sc3iwxiydgs787a6pi778i0qzqv3bf498r47jwiw5b6mmib3fah",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151027.838",
+ "deps": [
+ "go-mode"
+ ]
+ },
+ "malinka": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "LefterisJP",
+ "repo": "malinka",
+ "sha256": "1a22xkhnmpfffllarsjdw10n5cd3nwifcl1iv98kb4j4x96kd4xg",
+ "rev": "cd451d32dcdfa3e6b34f47c6956ff310de8a9a06"
+ },
+ "recipe": {
+ "sha256": "1245mpxsxwnnpdsf0pd28mddgdfhh7x32a2l3sxfq0dyg2xlgvrp",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151107.216",
+ "deps": [
+ "cl-lib",
+ "dash",
+ "f",
+ "projectile",
+ "rtags",
+ "s"
+ ]
+ },
+ "aggressive-indent": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "Malabarba",
+ "repo": "aggressive-indent-mode",
+ "sha256": "0alqjrpssmkijab1pigaa86ny9vdir9vssgr4fz04fw8xws81qkr",
+ "rev": "e613e7eb5179ae0caf4b96501923276bccd30d83"
+ },
+ "recipe": {
+ "sha256": "1qi8jbr28gax35siim3hnnkiy8pa2vcrzqzc6axr98wzny46x0i2",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151212.1448",
+ "deps": [
+ "cl-lib",
+ "emacs"
+ ]
+ },
+ "helm-pt": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "ralesi",
+ "repo": "helm-pt",
+ "sha256": "01wcybzb1jdyybr7scblzxp3c16zm01ms9ci1hcpfsv2y55gbg5y",
+ "rev": "afdf50913c49b8bbb0ff40ee5d9dfe3eb8b7c71a"
+ },
+ "recipe": {
+ "sha256": "1imhy0bsm9aldv0pvf88280qdya01lznxpx5gi5wffhrz17yh4pi",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151208.2130",
+ "deps": [
+ "helm"
+ ]
+ },
+ "subemacs": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "kbauer",
+ "repo": "subemacs",
+ "sha256": "189547d0g9ax0nr221bkdchlfcj60dsy8lgbbrvq3n3xrmlvl362",
+ "rev": "24f0896f1995a3ea42a58b0452d250dcc6802944"
+ },
+ "recipe": {
+ "sha256": "0sqh80jhh3v37l5af7w6k9lqvj39bd91pn6a9rwdlfk389hp90zm",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150830.1054",
+ "deps": []
+ },
+ "magit-find-file": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "bradleywright",
+ "repo": "magit-find-file.el",
+ "sha256": "1j3jsrp0qpaa2xd98d1g9z0zc4b93knwajrlnlsc7l6g0vlfsddb",
+ "rev": "c3ea91bab37d10a814a829728ec972811f728d60"
+ },
+ "recipe": {
+ "sha256": "1d5flydyhwhvhlhi541zcnz2b03bi07zrp21bfz5sm069bf2c96b",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150702.330",
+ "deps": [
+ "dash",
+ "magit"
+ ]
+ },
+ "awk-it": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/awk-it.el",
+ "sha256": "1r1vbi1r3rdbkyb2naciqwja7hxigjhqfxsfcinnygabsi7fw9aw"
+ },
+ "recipe": {
+ "sha256": "1rnrm9jf9wvfrwyylhj0bfrz9140945lc87lrh21caf7q88fpvkw",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20130917.1348",
+ "deps": []
+ },
+ "c0-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "catern",
+ "repo": "c0-mode",
+ "sha256": "10k90r4ckkkdjn9pqcbfyp6ynvrd5k0ngqcn5d0v1qvkn6jifxjx",
+ "rev": "c214093c36864d6208fcb9e6a72413ed17ed5d60"
+ },
+ "recipe": {
+ "sha256": "0s3h4b3lpz4jsk222yyfdxh780dvykhaqgyv6r3ambz95vrmmpl4",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151110.1252",
+ "deps": []
+ },
+ "dizzee": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "davidmiller",
+ "repo": "dizzee",
+ "sha256": "120zgp38nz4ssid6bv0zy5rnf2claa5s880incgljqyl0vmj9nq5",
+ "rev": "37629f390afb8da03ef0ce81c2b3caff660e12f6"
+ },
+ "recipe": {
+ "sha256": "1axydags80jkyhpzp3m4gyplwr9k3a13w6vmrrzcv161nln7jhhs",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20111009.816",
+ "deps": []
+ },
+ "mvn": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "apgwoz",
+ "repo": "mvn-el",
+ "sha256": "1gvn0a49lgbjnkl0j2sv4p9zdfqzj9s4jw0k2f4ypmsd1fc0q6d6",
+ "rev": "01ede605d49c5fb6f2da038f5df6f31112de802f"
+ },
+ "recipe": {
+ "sha256": "1ykiz5fviq2n2474izwp0vvqanpbmxg7lzh1xbpn281kwmp0mwin",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151001.129",
+ "deps": []
+ },
+ "figlet": {
+ "fetch": {
+ "tag": "fetchhg",
+ "url": "https://bitbucket.com/jpkotta/figlet",
+ "sha256": "0xnr709vmwbryyfxngxs80gjfxv009ik6wcs4jd74ph5lm6gqh4f",
+ "rev": "255e7570a3e2"
+ },
+ "recipe": {
+ "sha256": "1m7hw56awdbvgzdnjysb3wqkhkjqy68jxsxh9f7fx266wjqhp6yj",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20141104.1037",
+ "deps": []
+ },
+ "caroline-theme": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "xjackk",
+ "repo": "caroline-theme",
+ "sha256": "14ijcb9qp1gv8ianqm7cdvwjkgpwdaw3lz34j29c3rmg5ir26bjb",
+ "rev": "742bf4ac4521ff9905294812919051cec768b1a0"
+ },
+ "recipe": {
+ "sha256": "07flxggnf0lb1fnvprac1daplgx4bi5fnnkgfc58wnw805s12k32",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151030.1804",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "ace-isearch": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "tam17aki",
+ "repo": "ace-isearch",
+ "sha256": "02i3gxk7kfv3a0pcc82z69hgvjw8bvn40y8h7d59chg8bixcwbyr",
+ "rev": "9a32a039623e3907a4fce959aa48c26a79fb249b"
+ },
+ "recipe": {
+ "sha256": "0n8qf08z9n8c2sp5ks29nxcfks5mil1jj6wq348apda8safk36hm",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150808.756",
+ "deps": [
+ "ace-jump-mode",
+ "avy",
+ "emacs",
+ "helm-swoop"
+ ]
+ },
+ "flycheck-perl6": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "hinrik",
+ "repo": "flycheck-perl6",
+ "sha256": "0ffas4alqhijvm8wl1p5nqjhnxki8gs6b5bxb4nsqwnma8qmlcx3",
+ "rev": "6a9a929ffb58595bbe9fe3d7c2e78617c8e9bb5a"
+ },
+ "recipe": {
+ "sha256": "0czc0fqx7g543afzkbjyz4bhxfl4s3v5swn9xrkayv8cgk8acvp4",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150414.2032",
+ "deps": [
+ "emacs",
+ "flycheck"
+ ]
+ },
+ "sparkline": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "woudshoo",
+ "repo": "sparkline",
+ "sha256": "1fqd3ycywxxmln2kzqwflc69xmqlvi9gwvmf7frn0rfv73w09cvp",
+ "rev": "a2b5d817d272d6363b67ed8f8cc75499a19fa8d2"
+ },
+ "recipe": {
+ "sha256": "081jzaxjb32nydvr1kmyafxqxi610n0yf8lwz9vldm84famf3g7y",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150101.719",
+ "deps": [
+ "cl-lib"
+ ]
+ },
+ "slime-volleyball": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "fitzsim",
+ "repo": "slime-volleyball",
+ "sha256": "00v4mh04affd8kkw4rn51djpyga2rb8f63mgy86napglqnkz40r3",
+ "rev": "159b5c0f40b109e3854e94b89ec5383854c46ae3"
+ },
+ "recipe": {
+ "sha256": "1dzvj8z3l5l9ixjl3nc3c7zzi23zc2300r7jzw2l3bvg64cfbdg7",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140717.2341",
+ "deps": []
+ },
+ "free-keys": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "Fuco1",
+ "repo": "free-keys",
+ "sha256": "12rmwf7gm9ib2c99jangygh2yswy41vxlp90rg0hvlhdfmbqa8p0",
+ "rev": "368820cb361161f10a2ae7a839ab758146fd222c"
+ },
+ "recipe": {
+ "sha256": "0j9cfgy2nkbska4lm5z32p804i9n8pdgn50bs5zzk1ilwd5vbalj",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151202.522",
+ "deps": [
+ "cl-lib"
+ ]
+ },
+ "emms-player-simple-mpv": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "momomo5717",
+ "repo": "emms-player-simple-mpv",
+ "sha256": "0ajxyv7yx4ni8dizs7acpsxnmy3c9s0dx28vw9y1ym0bxkgfyzrf",
+ "rev": "92be36ef158df3db3a2f9e2d0186a609fc2d3702"
+ },
+ "recipe": {
+ "sha256": "15aljprjd74ha7wpzsmv3d873i6fy3x1jwhzm03hvw0sw18m25i1",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151020.801",
+ "deps": [
+ "cl-lib",
+ "emacs",
+ "emms"
+ ]
+ },
+ "ta": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "kuanyui",
+ "repo": "ta.el",
+ "sha256": "054l3imxk9ivq361cr15q1wym07mw3s8xzjkzqlihrfvadsq37ym",
+ "rev": "0d946b15a88239982ec66eaa8a55ad53d85e7c3f"
+ },
+ "recipe": {
+ "sha256": "0kn2k4n0xfwsrniaqb36v3rxj2pf2sai3bmjksbn1g2kf5g156ll",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150604.1224",
+ "deps": [
+ "cl-lib",
+ "emacs"
+ ]
+ },
+ "mote-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "inkel",
+ "repo": "mote-mode",
+ "sha256": "1hz9vqvhyz2zw5sl4r62rjxiymqlp9y26j4kdd9qy1y67zx9rmi7",
+ "rev": "18dfc3af0cee7d6d522616f07134364c1c3e54ba"
+ },
+ "recipe": {
+ "sha256": "1lg5z5d0d35sh21maiwmgzvc31iki9yg6x0awy5xrfsains7ykn9",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20121014.2319",
+ "deps": [
+ "ruby-mode"
+ ]
+ },
+ "xml-rpc": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "hexmode",
+ "repo": "xml-rpc-el",
+ "sha256": "0kkjfg1l2wg3d5wrgkwnww4d3fca0xpd3k5z9j9gwmjnkxqd95ca",
+ "rev": "a190759da8765d3b22ceb6774cefc610fda404d8"
+ },
+ "recipe": {
+ "sha256": "14r6xgnpqsb2jlv52vgrhqf3qw8a6gmdyap3ylhilyxw71lxf1js",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150902.2027",
+ "deps": []
+ },
+ "cmm-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "bgamari",
+ "repo": "cmm-mode",
+ "sha256": "0xdcw329d2gssx86iajwrgpr7yv69b9nflmzjgb4jvg4pskj4pgx",
+ "rev": "c3ad514dff3eb30434f6b20d953276d4c00de1ee"
+ },
+ "recipe": {
+ "sha256": "184b8x19cnvx8z4dr9alv62wchzc7vr7crzz8jiyqw9d544zs50h",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150225.146",
+ "deps": []
+ },
+ "enlive": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "zweifisch",
+ "repo": "enlive",
+ "sha256": "0vd7zy06nqb1ayjlnf2wl0bfv1cqv2qcb3cgy3zr9k9c4whcd8jh",
+ "rev": "0f6646adda3974e7fe9a42339a4ec3daa532eda5"
+ },
+ "recipe": {
+ "sha256": "1dyayk37zik12qfh8zbjmhsch64yqsx3acrlm7hcnavx465hmhnz",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150824.749",
+ "deps": []
+ },
+ "wiki-summary": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "jozefg",
+ "repo": "wiki-summary.el",
+ "sha256": "02bczc1mb1cs1aryz5pw6cmpydjmxja2zj91893cz8rnfn1r031i",
+ "rev": "ed3755dd09f5f73ef78ec295fe842d08b316c8a0"
+ },
+ "recipe": {
+ "sha256": "1hiyi3w6rvins8hfxd96bgpihxarmv192q96sadqcwshcqi14zmw",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150408.1622",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "nexus": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "juergenhoetzel",
+ "repo": "emacs-nexus",
+ "sha256": "1xnx6v49i6abzbhq4fl4bp9d0pp9gby40splpcj211xsb8yiry27",
+ "rev": "c46f499951b90839aa8683779fe43d8f01672a60"
+ },
+ "recipe": {
+ "sha256": "1mdphgsqg6n4hryr53rk42z58vfv0g5wkar5ipanr4h4iclkf5vd",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140114.705",
+ "deps": []
+ },
+ "rake": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "asok",
+ "repo": "rake",
+ "sha256": "1wcs8j8rdls0n3v8zdpk2n5riwzz2yvjf6b70a5bj7p20gyafhj2",
+ "rev": "eba311a8f5ccfb6535efbc26fa58c43e3f1e5515"
+ },
+ "recipe": {
+ "sha256": "0cw47g6cjnkh3z4hbwwq1f8f5vrvs84spn06k53bx898brqdh8ns",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150831.358",
+ "deps": [
+ "cl-lib",
+ "dash",
+ "f"
+ ]
+ },
+ "slim-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "slim-template",
+ "repo": "emacs-slim",
+ "sha256": "0vgyc2ny9qmn8f5r149y4g398mh4gnwsp4yim85z4vmdikqg8vi1",
+ "rev": "869c84821cf3e556b380c5c35d8ad62287c4df58"
+ },
+ "recipe": {
+ "sha256": "1hip0r22irr9sah3b65ky71ic508bhqvj9hj95a81qvy1zi9rcac",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140611.1150",
+ "deps": []
+ },
+ "ox-html5slide": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "coldnew",
+ "repo": "org-html5slide",
+ "sha256": "19h3w3fcas60jv02v7hxjmh05804sb7bif70jssq3qwisj0j09xm",
+ "rev": "4703dfbd9d79161509def673d2c1e118d722a58f"
+ },
+ "recipe": {
+ "sha256": "0nqk6chg0ky98ap2higa74786prj7dbwx2a3l67m0llmdajw76qn",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20131228.6",
+ "deps": [
+ "org"
+ ]
+ },
+ "waher-theme": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "emacsfodder",
+ "repo": "emacs-waher-theme",
+ "sha256": "0w59ix8cbbcyhh882c8vkrbh84i8d03h9w7dchr3qy233b8wcxlc",
+ "rev": "60d31519fcfd8e797723d47961b255ae2f2e2c0a"
+ },
+ "recipe": {
+ "sha256": "091kipkb6z6x9ic4chprim9rvnmx4yj4419ijmvpn70w69aspnb5",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20141115.630",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "zotxt": {
+ "fetch": {
+ "tag": "fetchFromGitLab",
+ "owner": "egh",
+ "repo": "zotxt-emacs",
+ "sha256": "015xgsisgsv4w5h6r68f7iw3vwrqvc0az1gcdkd5dfr3nl1h4yzl",
+ "rev": "3809f0932660c09910639eaecb3d0a8e784420b3"
+ },
+ "recipe": {
+ "sha256": "18jla05g2k8zfrmp7q9kpr1mpw6smxzdyn8nfghm306wvv9ff8y5",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151031.1159",
+ "deps": [
+ "request-deferred"
+ ]
+ },
+ "mu4e-maildirs-extension": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "agpchil",
+ "repo": "mu4e-maildirs-extension",
+ "sha256": "0hbgzvybd04s9fz9myrs68ic2v0kks3wpv8qj14ihrnl7xh03rfh",
+ "rev": "17eacf2d0b3a57ebf26a6aaa9eeb51d579457d25"
+ },
+ "recipe": {
+ "sha256": "1xz19dxrj1grnl7wy9qglh08xb3dr509232l3xizpkxgqqk8pwbi",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151126.1126",
+ "deps": [
+ "dash"
+ ]
+ },
+ "gvpr-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "rodw",
+ "repo": "gvpr-lib",
+ "sha256": "0060qw4gr9fv6db20xf3spgl2fwg2iid5ckfjm3vj3ydyv62q13s",
+ "rev": "3d6cc6f4416faf2a1913821d12ba6eb624362af0"
+ },
+ "recipe": {
+ "sha256": "19p6f06qdjvh2vmgbabajvkfxpn13j899jrivw9mqyssz0cyvzgw",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20131208.1118",
+ "deps": []
+ },
+ "header2": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/header2.el",
+ "sha256": "04gp3km2d163cw8gqzb02dj3kq23s96ncip5c03whpja2sj9ji6f"
+ },
+ "recipe": {
+ "sha256": "1dg25krx3wxma2l5vb2ji7rpfp17qbrl62jyjpa52cjfsvyp6v06",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150104.1610",
+ "deps": []
+ },
+ "move-dup": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "wyuenho",
+ "repo": "move-dup",
+ "sha256": "0baynb6gq04rxh10l6rn0myrhg7c7fwqaryiiyddp4jy7llf83c8",
+ "rev": "964d1bbaacd4559d2dbde9cb44015c400d5a71b5"
+ },
+ "recipe": {
+ "sha256": "0b0lmiisl9yckblwf7619if88qsmbka3bl4qiaqam7fka7psxs7f",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140925.1008",
+ "deps": []
+ },
+ "stash": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "vermiculus",
+ "repo": "stash.el",
+ "sha256": "0cl2y72iagmv87kg72a46a3kap2xigwnrbk2hjgvsbxv2ng5f9cr",
+ "rev": "c2e494d20c752b80ebbdffbf66687b3cdfc425ad"
+ },
+ "recipe": {
+ "sha256": "116k40ispv7sq3jskwc1lvmhmk3jjz4j967r732s07f5h11vk1z9",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151117.827",
+ "deps": []
+ },
+ "autopair": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "capitaomorte",
+ "repo": "autopair",
+ "sha256": "1z3hd2jkibwz2ijvyh066ki5g30pdqgh2vj2r35prpp12bqabw4a",
+ "rev": "4f4bd30b341e7fb15a452b59f3e5c34cbd5c97d8"
+ },
+ "recipe": {
+ "sha256": "161qhk8rc1ldj9hpg0k9phka0gflz9vny7gc8rnylk90p6asmr28",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140825.627",
+ "deps": [
+ "cl-lib"
+ ]
+ },
+ "chinese-word-at-point": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "xuchunyang",
+ "repo": "chinese-word-at-point.el",
+ "sha256": "1jsy43avingxxccs0zw2qm5ysx8g76xhhh1mnyypxskl9m60qb4j",
+ "rev": "36a03cce32fe059d2b581cb2e029715c0be81074"
+ },
+ "recipe": {
+ "sha256": "0pjs4ckncv84qrdj0pyibrbiy86f1gmjla9n2cgh10xbc7j9y0c4",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150618.2038",
+ "deps": [
+ "cl-lib"
+ ]
+ },
+ "key-seq": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "vlevit",
+ "repo": "key-seq.el",
+ "sha256": "05vpydcgiaya35b62cdjxna9y02vnwzzg6p8jh0dkr9k44h4iy3f",
+ "rev": "e29b083a6427d061638749194fc249ef69ad2cc0"
+ },
+ "recipe": {
+ "sha256": "166k6hl9vvsnnksvhrv5cbhv9bdiclnbfv7qf67q4c1an9xzqi74",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150907.256",
+ "deps": [
+ "key-chord"
+ ]
+ },
+ "ox-pandoc": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "kawabata",
+ "repo": "ox-pandoc",
+ "sha256": "0c8hknfs4wapz2zy2nskv3r8gkmzs1smib9r3nlg6p84bs0wnkhr",
+ "rev": "c2ee3801e1df4e865afc9ce271771479ce2b248b"
+ },
+ "recipe": {
+ "sha256": "0wy6yvwd4vyq6xalkrshnfjjxlh1p24y52z49894nz5fl63b74xc",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150706.2009",
+ "deps": [
+ "dash",
+ "emacs",
+ "ht",
+ "org"
+ ]
+ },
+ "helm-ghc": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "david-christiansen",
+ "repo": "helm-ghc",
+ "sha256": "16p1gisbza48qircsvrwx020n96ss1c6s68d7cgqqfc0bf2467is",
+ "rev": "e5ee7b8d3b745d162553aecfbd41381c4de85f35"
+ },
+ "recipe": {
+ "sha256": "1q5ia8sgpflv2hhvw7hjpkfb25vmrjwlrqz1f9qj2qgmki5mix2d",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20141105.859",
+ "deps": [
+ "cl-lib",
+ "emacs",
+ "ghc",
+ "helm"
+ ]
+ },
+ "projectile": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "bbatsov",
+ "repo": "projectile",
+ "sha256": "01mwciy9bacx5vkxckp0hsxx0s00qss48kkcc2rhlypdcmmawvn7",
+ "rev": "05058b1c73799b07003ad0978f5ba9a231783be4"
+ },
+ "recipe": {
+ "sha256": "1kf8hql59nwiy13q0p6p6rf5agjvah43f0sflflfqsrxbihshvdn",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151217.1552",
+ "deps": [
+ "dash",
+ "pkg-info"
+ ]
+ },
+ "fabric": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "nlamirault",
+ "repo": "fabric.el",
+ "sha256": "0crhkdbxz1ldbrvppi95g005ni5zg99z1271rkrnk5i6cvc4hlq5",
+ "rev": "004934318f63d8cf955022f87b2c33eb97ada280"
+ },
+ "recipe": {
+ "sha256": "1mkblsakdhvi10b67bv3j0jsf7hr8lf9sibmprvx8smqsih7l88m",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20141024.522",
+ "deps": []
+ },
+ "sage-shell-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "stakemori",
+ "repo": "sage-shell-mode",
+ "sha256": "060xvh5qwqbvvb5ykyflwps2p2by9p1mm5dz7gkxla5zq0a73vmx",
+ "rev": "ad78c168c1fb702eebc74f30eba830adc3fe0079"
+ },
+ "recipe": {
+ "sha256": "18k7yh8rczng0kn2wsawjml70cb5bnc5jr2gj0hini5f7jq449wx",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151024.313",
+ "deps": [
+ "cl-lib",
+ "deferred"
+ ]
+ },
+ "flycheck": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "flycheck",
+ "repo": "flycheck",
+ "sha256": "1szj58qd0wx6lvcb69mb7ccn2b0qsa7b028519137slrwmxipgp8",
+ "rev": "1404451f226153a06a1e7741fe6a3d10267bb3a4"
+ },
+ "recipe": {
+ "sha256": "045k214dq8bmrai13da6gwdz97a2i998gggxqswqs4g52l1h6hvr",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151216.902",
+ "deps": [
+ "dash",
+ "emacs",
+ "let-alist",
+ "pkg-info",
+ "seq"
+ ]
+ },
+ "cuda-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "chachi",
+ "repo": "cuda-mode",
+ "sha256": "1ms0z5zplcbdwwdbgsjsbm32i57z9i2i8j9y3wm0pwzyz4zr36zy",
+ "rev": "9ae9eacfdba3559b5456342d0d03296290df8ff5"
+ },
+ "recipe": {
+ "sha256": "0ip4vax93x72bjrh6prik6ddmrvszpsmgm0fxfz772rp24smc300",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151213.2121",
+ "deps": []
+ },
+ "ob-cypher": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "zweifisch",
+ "repo": "ob-cypher",
+ "sha256": "1xbczyqfqdig5w6jvx2kg57mk16sbiz5ysv445v83wqk0sz6nc9n",
+ "rev": "b3511df05f175c1947996802e9e199432ea9ced8"
+ },
+ "recipe": {
+ "sha256": "1ygmx0rjvxjl8hifkkwrkk9gpsmdsk6ndb6pg7y78p8hfp5jpyq3",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150224.2037",
+ "deps": [
+ "cypher-mode",
+ "dash",
+ "dash-functional",
+ "s"
+ ]
+ },
+ "company-ycm": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "neuromage",
+ "repo": "ycm.el",
+ "sha256": "0znchya89zzk30mwl4qfm0q9sfa5m3jspapb892ydj0mck5n4nyj",
+ "rev": "4da8a14abcd0f4fa3235042ade2e12b5068c0601"
+ },
+ "recipe": {
+ "sha256": "1q4d63c7nr3g7q0smd55pp636vqa9lf1pkwjn9iq265369npvina",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140904.1317",
+ "deps": [
+ "ycm"
+ ]
+ },
+ "dired+": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/dired+.el",
+ "sha256": "0pgm5pg3z7cbrvs12fwj6g2kxm7qqq0410lsb1kpsdlgixb2yh5q"
+ },
+ "recipe": {
+ "sha256": "1dmp6wcynran03nsa0fd26b9q0zj9wp8ngaafx1i1ybwn2gx32g5",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151215.854",
+ "deps": []
+ },
+ "bfbuilder": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "zk-phi",
+ "repo": "bfbuilder",
+ "sha256": "1y9fxs1nbf0xsn8mw45m9ghmji3h64wdbfnyr1npmf5fb27rmd17",
+ "rev": "49560bdef131fa5672dab660e0c62376dbdcd906"
+ },
+ "recipe": {
+ "sha256": "16ckybqd0a8l75ascm3k4cdzp969lzq7m050aymdyjhwif6ld2r7",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150924.1150",
+ "deps": [
+ "cl-lib"
+ ]
+ },
+ "debug-print": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "kenoss",
+ "repo": "debug-print",
+ "sha256": "1n99nrp42slmyp5228d1nz174bysjn122jgs8fn1x0qxywg7jyxp",
+ "rev": "d817fd9ea2d3f8d2c1ace4d8af155684f3a99dc5"
+ },
+ "recipe": {
+ "sha256": "01dsqq2qdsbxny6j9dhvg770493awxjhk1m85c14ysgh6sl199rm",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140125.1819",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "gorepl-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "manute",
+ "repo": "gorepl-mode",
+ "sha256": "1abb78xxsggawl43hspl0cr0f7i1b3jd9r6xl1nl5jg97i4byg0b",
+ "rev": "17e025951f5964a0542a4b353ddddbc734c01eed"
+ },
+ "recipe": {
+ "sha256": "12h9r4kf9y2v601myhzzdw2c4jc5cb7s94r5dkzriq578digxphl",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151121.622",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "mocker": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "sigma",
+ "repo": "mocker.el",
+ "sha256": "0dngznaraphpc5amn9n120la7ga3rj7h67pnnal6qwflh5rqcmss",
+ "rev": "b56f0f2839d4a395979816b40089a77050518eb6"
+ },
+ "recipe": {
+ "sha256": "1g90jp1czrrzrmn7n4linby3q4fb4gcflzv2amjv0sdimw1ln1w3",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150916.2054",
+ "deps": [
+ "eieio",
+ "el-x"
+ ]
+ },
+ "ido-hacks": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "scottjad",
+ "repo": "ido-hacks",
+ "sha256": "01p4az128k1jvd9i1gshgg87z6048cw9cnm57l8qdlw01c3h6dkx",
+ "rev": "b7e7514a0e011e4d767d1f5755c5eae9d85f83dc"
+ },
+ "recipe": {
+ "sha256": "05f9pdkqppnp7wafka2d2yj84gqchjd7vnrl5rcywy1l47gbxiw0",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150331.1409",
+ "deps": []
+ },
+ "subatomic-theme": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "cryon",
+ "repo": "subatomic",
+ "sha256": "1njfwjyrh9m00jyy65zl31gxa66941mvvrk7nn5yizsbdadrbq0z",
+ "rev": "2543881f9bbb8520f845b7fe8f370793c36f7df2"
+ },
+ "recipe": {
+ "sha256": "0mqas67qms492n3hn74c5nrkjpsgf9b42lp02s2dh366c075dpqc",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150704.1009",
+ "deps": []
+ },
+ "jar-manifest-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "omajid",
+ "repo": "jar-manifest-mode",
+ "sha256": "0nydj0y58yhfh16492q5gzkkz7qrxbdhp4gh2xbiykcbynygj2mq",
+ "rev": "200dcf6ec5116b506ae24a83511837adf0acedef"
+ },
+ "recipe": {
+ "sha256": "0kx358m3p23r8m7z45454i62ijmdlf4mljlbqc20jkihfanr6wqd",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150329.1733",
+ "deps": []
+ },
+ "psc-ide": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "epost",
+ "repo": "psc-ide-emacs",
+ "sha256": "0pz5d8xl2bc9k4isk39rbkw9wcmd83a4hpqv04fqcvjnrvawabww",
+ "rev": "44d9bc5e0cfadb4fd03b32c0c0b8ea01e5b1c1ae"
+ },
+ "recipe": {
+ "sha256": "1f8bphrbksz7si9flyhz54brb7w1lcz19pmn92hjwx7kd4nl18i9",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151206.817",
+ "deps": [
+ "cl-lib",
+ "company",
+ "dash"
+ ]
+ },
+ "quelpa-use-package": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "quelpa",
+ "repo": "quelpa-use-package",
+ "sha256": "00wnvyw2daiwwd1jyq1ag5jsws8k8jxs3lsj73dagbvqnlywmkm6",
+ "rev": "d18b55508ceaeb894f5db3d775f5c1b27e4be81b"
+ },
+ "recipe": {
+ "sha256": "0p09w419kldgl913hgqfzyv2pck27vqq2i1xsx7g29biwgnp9hl9",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150805.528",
+ "deps": [
+ "emacs",
+ "quelpa",
+ "use-package"
+ ]
+ },
+ "hide-region": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/hide-region.el",
+ "sha256": "1zxrygpf47bzj6p808r3qhj3dfr3m8brp1xgxs33c7f88rinfval"
+ },
+ "recipe": {
+ "sha256": "0nsc6m3yza658xsxvjz8766vkp71rcm6vwnvcv225r2pr94mq7vm",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140201.514",
+ "deps": []
+ },
+ "dna-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "jhgorrell",
+ "repo": "dna-mode-el",
+ "sha256": "0z28j7x7wgkc1cg1q1kz1lhdx1v1n6s88ixgkm8hn458h9bfnr3n",
+ "rev": "c3fed6b9d98deafbc1525d445a920b969120fe6a"
+ },
+ "recipe": {
+ "sha256": "0ak3g152q3xxkiz1a4pl5y2vgbigbbmbc95fggirbcrh52zkzgk9",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20130821.1305",
+ "deps": []
+ },
+ "pungi": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "mgrbyte",
+ "repo": "pungi",
+ "sha256": "1viw95y6fha782n1jw7snr7xc00iyf94r4whsm1a2q11vm2d1h21",
+ "rev": "a2d4d439ea371be0b064a12248288903b8a521a0"
+ },
+ "recipe": {
+ "sha256": "1v9fsd764z5wdcips63z53rcipdz7bha4q6s4pnn114jn3a93ls1",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150222.646",
+ "deps": [
+ "jedi",
+ "pyvenv"
+ ]
+ },
+ "mpages": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "slevin",
+ "repo": "mpages",
+ "sha256": "11c8pr3s77aq34ic32lnsialwh8bw3m78kj838xl2aab2pgrlny2",
+ "rev": "39a72a0931ab1cdbfdf0ab9f412dc12d43a3829f"
+ },
+ "recipe": {
+ "sha256": "11scjjwwrpgaz6i4jq9y7m864nfak46vnbfb0w15625znz926jcs",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150710.904",
+ "deps": []
+ },
+ "colorsarenice-theme": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "Fanael",
+ "repo": "colorsarenice-theme",
+ "sha256": "18hzm7yzwlfjlbkx46rgdl31p9xyfqnxlvg8337h2bicpks7kjia",
+ "rev": "3cae55d0c7aeda3a8ef731ebc3886b2449ad87e6"
+ },
+ "recipe": {
+ "sha256": "09zlglldjbjr97clwyzyz7c0k8hswclnk2zbkm03nnn9n9yyg2qi",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150421.1536",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "isearch-symbol-at-point": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "re5et",
+ "repo": "isearch-symbol-at-point",
+ "sha256": "09z49850c32x0rchxg203cxg504xi2b6cjgnd0i4axcs5fmq7gv9",
+ "rev": "51a1029bec1ec414885f9edb7e5947603dffdab2"
+ },
+ "recipe": {
+ "sha256": "0j5fr7qdvpd5b096h5a83fz8sh9wybdnsgix6v94gv8lkzdsqkr8",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20130728.1721",
+ "deps": []
+ },
+ "flycheck-mypy": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "lbolla",
+ "repo": "emacs-flycheck-mypy",
+ "sha256": "1vdnw6hnhg8aqcsdqcd2rqz4fsfgxn2xr3xixkvwmpplb4x40c8k",
+ "rev": "263339e6e44c3d0d4c10ff3528e5575db97a353f"
+ },
+ "recipe": {
+ "sha256": "1w418jm6x3vcg2x31nzc8a3b8asx6gznl6m76ip8w98riz7vy02f",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150915.333",
+ "deps": [
+ "flycheck"
+ ]
+ },
+ "backup-walker": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "lewang",
+ "repo": "backup-walker",
+ "sha256": "0z4d8x9lkad50720lgvr8f85p1ligv07865i30lgr9ck0q04w68v",
+ "rev": "934a4128c122972ac32bb9952addf279a60a94da"
+ },
+ "recipe": {
+ "sha256": "0hfr27yiiblrd0p3zhpapbj4vijfdk7wqh406xnlwf2yvnfsqycd",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20130720.1016",
+ "deps": []
+ },
+ "workgroups": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "tlh",
+ "repo": "workgroups.el",
+ "sha256": "0q32z54qafj8ap3ybx82i3fm1msmzwvpxgmkaglzhi8nccgzbn2n",
+ "rev": "9572b3492ee09054dc329f64ed846c962b395e39"
+ },
+ "recipe": {
+ "sha256": "1v01yr3lk6l0qn80i3r8fq3di0a8bmqjyhwx19hcgiap57xl80h8",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20110726.1141",
+ "deps": []
+ },
+ "browse-kill-ring+": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/browse-kill-ring+.el",
+ "sha256": "0av8fv2xf8b3qs32hxv90pglv9a90z2865rlja21hsyi5isw8vca"
+ },
+ "recipe": {
+ "sha256": "1flw7vmqgsjjvr2zlgz2909gvpq9mhz8qkg6hvsrzwg95f4l548w",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150104.1532",
+ "deps": [
+ "browse-kill-ring"
+ ]
+ },
+ "ace-jump-buffer": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "waymondo",
+ "repo": "ace-jump-buffer",
+ "sha256": "11c9jfrh9mzi0qwbvgcjia6s1gkwb76ssiraka3f4k7rc8dli11y",
+ "rev": "9299ebd4bbbf6ba78dcb40440b3aadd7b540375c"
+ },
+ "recipe": {
+ "sha256": "0hkxa0ps0v1hwmjafqbnyr6rc4s0w95igk8y3w53asl7f5sj5mpi",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150215.34",
+ "deps": [
+ "ace-jump-mode",
+ "dash"
+ ]
+ },
+ "find-dired+": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/find-dired+.el",
+ "sha256": "1x0zn9kpnvxhgljp4ii4f11hgncj9smdkn64ihih00w7qgg7sif2"
+ },
+ "recipe": {
+ "sha256": "06a6lwx61xindlchh3ps8khhxc6sr7i9d7i60rjw1h07nxmh0fli",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150829.2355",
+ "deps": []
+ },
+ "codebug": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "shano",
+ "repo": "emacs-codebug",
+ "sha256": "11v671c4338bsizbmm7ypp4x9s5hiwyddsg2ig6h157gfv2597pp",
+ "rev": "ac0e4331ba94ccb5203fa492570e1ca6b90c3d52"
+ },
+ "recipe": {
+ "sha256": "1cb2wvawp3wqslhgbmbw9xwcqgwfscqg0jfgqzi3nr42mjp9zgqj",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140929.1637",
+ "deps": []
+ },
+ "bts": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "aki2o",
+ "repo": "emacs-bts",
+ "sha256": "1qgasaqhqm0birjmb6k6isd2f5pn58hva8db8qfhva9g5kg1f38w",
+ "rev": "df42d58a36447697f93b56e69f5e700b2baef1f9"
+ },
+ "recipe": {
+ "sha256": "1i1lbjracrgdxr52agxhxxgkra4w291dmz85s195lcx38rva7ib3",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151109.733",
+ "deps": [
+ "dash",
+ "log4e",
+ "pos-tip",
+ "s",
+ "widget-mvc",
+ "yaxception"
+ ]
+ },
+ "fyure": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "mooz",
+ "repo": "fyure",
+ "sha256": "08x5li0mshrlamr7vswy7xh358bqhh3pngjr4ckswfi0l2r5fjbd",
+ "rev": "b6977f1eb148e8b63259f7233b55bb050e44d9b8"
+ },
+ "recipe": {
+ "sha256": "0k5z2xqlrzp5lyvp2lr462x38kqdmqld845bvyvkfjd2k4yri71x",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20130216.714",
+ "deps": []
+ },
+ "wedge-ws": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "aes",
+ "repo": "wedge-ws",
+ "sha256": "19hgb5knqqc4rb8yl8s604xql8ar6m9r4d379cfakn15jvwqnl98",
+ "rev": "4669115f02d9c6fee067cc5369bb38c0f9db88b2"
+ },
+ "recipe": {
+ "sha256": "07i2dr807np4fwq3ryxlw11vbc1sik1iv7x5740q258jyc9zfgll",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140714.1649",
+ "deps": []
+ },
+ "ctl-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "yyr",
+ "repo": "emacs-grads",
+ "sha256": "1d89gxyzv0z0nk7v1aa4qa0xfms2g2dsrr07cw0d99xsnyxfky31",
+ "rev": "1a13051db21b999c7682a015b33a03096ff9d891"
+ },
+ "recipe": {
+ "sha256": "0fydq779b0y6hmh8srfdimr5rl9mk3sj08rbvlljxv3kqv5ajczj",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151202.406",
+ "deps": []
+ },
+ "ac-octave": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "coldnew",
+ "repo": "ac-octave",
+ "sha256": "16bg2zg08223x7q54rmfjziaccgm64h9vc8z59sjljkw1bgx9m7q",
+ "rev": "28dfce296dd2aa0ea46b51803109f3fdd1e5c379"
+ },
+ "recipe": {
+ "sha256": "1g5s4dk1rcgkjn17jfw6g201pw0vfhqcx1nhigmnizpnzy0man9z",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150111.1908",
+ "deps": [
+ "auto-complete"
+ ]
+ },
+ "color-moccur": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "myuhe",
+ "repo": "color-moccur.el",
+ "sha256": "1p1f30qz4nd5a8ym2iwrgp6vhws0dls2qlc0apblj9nj3b0ziv0x",
+ "rev": "4f1c59ffd1ccc2ab1a171cd6b721e8cb9e002fb7"
+ },
+ "recipe": {
+ "sha256": "17b9walfc5c9qfdvl9pcwb2gjikc3wxk1d3v878ckypmxd38vciq",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20141222.1835",
+ "deps": []
+ },
+ "simple-mpc": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "jorenvo",
+ "repo": "simple-mpc",
+ "sha256": "1y6lgkrhyzc79ss3wb3gaf4z8gqd4yjjwmwjligrs38ly66y48h5",
+ "rev": "fdf0ccb2a157325386e6997c119d87a9aa0865d1"
+ },
+ "recipe": {
+ "sha256": "05x2xyys5mf6k7ndh0l6ykyiygaznb4f8bx3npbhvihrsz9ilf8r",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150802.406",
+ "deps": []
+ },
+ "ansi": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "rejeep",
+ "repo": "ansi",
+ "sha256": "19k71dj83kvc8mks6zhl45vsrsb61via53dqxjv9bny1ybh2av85",
+ "rev": "12b4c5d91b3da1902838f421e5af6d40e2cd57dd"
+ },
+ "recipe": {
+ "sha256": "04n0kvaqq8214prdk20bplqyzlsnlzfzsg23ifkrzjgqjjpdcyi1",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150703.326",
+ "deps": [
+ "dash",
+ "s"
+ ]
+ },
+ "evil-magit": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "justbur",
+ "repo": "evil-magit",
+ "sha256": "0g7a7djdzwm15n51384571xfmwzbf7ibldbzki6s64g5yf3yd69d",
+ "rev": "8f07cf1382c9715cf3c735087794460f92b4b114"
+ },
+ "recipe": {
+ "sha256": "10mhq6mzpklk5sj28lvd478dv9k84s81ax5jkwwxj26mqdw1ybg6",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151216.1858",
+ "deps": [
+ "evil",
+ "magit"
+ ]
+ },
+ "ido-describe-bindings": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "danil",
+ "repo": "ido-describe-bindings",
+ "sha256": "19chkraanp4fbg5a7mrrjycqd87y5z4a65psy5wdhrp30ykhm7iq",
+ "rev": "a4048d5d1a6aad93c0206dbe4f34f4edb21a04d2"
+ },
+ "recipe": {
+ "sha256": "1lsa09h025vd908r9q571iq2ia0zdpnq04mlihb3crpp5v9n9ws2",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150828.1438",
+ "deps": [
+ "dash",
+ "ido-vertical-mode"
+ ]
+ },
+ "birds-of-paradise-plus-theme": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "jimeh",
+ "repo": "birds-of-paradise-plus-theme.el",
+ "sha256": "1n5icy29ks5rxrxp7v4sf0523z7wxn0fh9lx4y6jb7ppdjnff12s",
+ "rev": "bb9f9d4ef7f7872a388ec4eee1253069adcadb6f"
+ },
+ "recipe": {
+ "sha256": "0vdv2siy30kf1qhzrc39sygjk17lwm3ix58pcs3shwkg1y5amj3m",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20130419.1629",
+ "deps": []
+ },
+ "term+": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "tarao",
+ "repo": "term-plus-el",
+ "sha256": "1ayr34smxf94c09ssdwl4hyhzgahsmbj7j4h25cdm6wcwii2br86",
+ "rev": "090807985673755720c5533b2fc684f88a3554ad"
+ },
+ "recipe": {
+ "sha256": "12lvfspqmyrapmbz3x997vf160927d325y50kxdx3s6p81r7n2n8",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20130612.852",
+ "deps": []
+ },
+ "elixir-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "elixir-lang",
+ "repo": "emacs-elixir",
+ "sha256": "00rl76bsyzq6dh9z65n894z1rsj483yclyndw515j4gvfqqlxcd9",
+ "rev": "25f3995ea34b23b7ffa304159a2508dbf9b3d075"
+ },
+ "recipe": {
+ "sha256": "1dba3jfg210i2rw8qy866396xn2xjgmbcyl006d6fibpr3j4lxaf",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151211.612",
+ "deps": [
+ "emacs",
+ "pkg-info"
+ ]
+ },
+ "jbeans-theme": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "synic",
+ "repo": "jbeans-emacs",
+ "sha256": "0yx64jrq1br0aylfn4mm26f71gyyw6kad97kv40sb0ashm3di96h",
+ "rev": "282f4236b11d42b2927f18b4e0b458bf61550867"
+ },
+ "recipe": {
+ "sha256": "0y7ccycfnpykgzr88968w7dl45qazf8b9zlf7ydw3ghkl4f6lbwl",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151217.954",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "fakespace": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "skeeto",
+ "repo": "elisp-fakespace",
+ "sha256": "11fm0h9rily5731s137mgv8rdbfqi99s6f36bgr0arwbq3f2j3fs",
+ "rev": "d1bd1f4b14b2690d7a67f9a52622ec51ed84813a"
+ },
+ "recipe": {
+ "sha256": "09dsmrqax4wfcw8fd5jf07bjxm5dizpc2qvjkqwg74j2n352wv27",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20120817.1906",
+ "deps": []
+ },
+ "auto-complete-chunk": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "tkf",
+ "repo": "auto-complete-chunk",
+ "sha256": "1zhbpxpl443ghpkl9i68jcjfcw1vnf8ky06pf5qjjmqbxlcyd9li",
+ "rev": "a9aa77ffb84a1037984a7ce4dda25074272f13fe"
+ },
+ "recipe": {
+ "sha256": "1937j1xm20vfcqm9ig4nvciqfkz7rpw0nsfhlg69gkmv0nqszdr3",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140225.346",
+ "deps": [
+ "auto-complete"
+ ]
+ },
+ "hookify": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "Silex",
+ "repo": "hookify",
+ "sha256": "1yvz9d5h7npxhsdf6s9fgxpmqk5ixx91iwivbhzcz935gs2886hc",
+ "rev": "e76127230716f7fab6662410c03c3872d17a172b"
+ },
+ "recipe": {
+ "sha256": "0prls539ifk2fsqklcxmbrwmgbm9hya50z486d7sw426lh648qmy",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20141216.1609",
+ "deps": [
+ "dash",
+ "s"
+ ]
+ },
+ "gntp": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "tekai",
+ "repo": "gntp.el",
+ "sha256": "1nvyjjjydrimpxy4cpg90si7sr8lmldbhlcm2mx8npklp9pn5y3a",
+ "rev": "767571135e2c0985944017dc59b0be79af222ef5"
+ },
+ "recipe": {
+ "sha256": "1ywj3p082g54dcpy8q4jnkqfr12npikx8yz14r0njxdlr0janh4f",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20141024.2150",
+ "deps": []
+ },
+ "github-browse-file": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "osener",
+ "repo": "github-browse-file",
+ "sha256": "07vgnmfn0kbg3h3vhf3xk443yi1b55761x881xlmw9sr9nraa578",
+ "rev": "fa5cc00a40869430fb44596792961a4cddf9c265"
+ },
+ "recipe": {
+ "sha256": "03xvgxlw7wmfby898din7dfcg87ihahkhlav1n7qklw6qi7skjcr",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151112.1825",
+ "deps": [
+ "cl-lib"
+ ]
+ },
+ "diminish": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "myrjola",
+ "repo": "diminish.el",
+ "sha256": "03kpwmm3pfh32jkxs6z10ghj66kn0vkhi92b0mxjrm82cql6k5cf",
+ "rev": "18d9730f48f1f775b38ec8390cc644bc3f3d8de5"
+ },
+ "recipe": {
+ "sha256": "1h6a31jllypk47akjflz89xk6h47na96pim17d6g4rpqcafc2k43",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151215.1115",
+ "deps": []
+ },
+ "easy-kill-extras": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "knu",
+ "repo": "easy-kill-extras.el",
+ "sha256": "18fn9qnm0cwdy47nv6wafiy6cf7rnv4av4w8zmjwjj0n8ql4jl08",
+ "rev": "aff957b4fd699331d21648780b2f0f6ffc3cb70b"
+ },
+ "recipe": {
+ "sha256": "0xzlzv57nvrc142saydwfib51fyqcdzjccc1hj6xvgcdbwadlnjy",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151209.2117",
+ "deps": [
+ "easy-kill"
+ ]
+ },
+ "projekt": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "tekai",
+ "repo": "projekt",
+ "sha256": "0hvvlh24157qjxz82sbg22d4cbrf95xyx202cybp0n1vyxsmjcmw",
+ "rev": "a65e554e5d8b0def08c5d06f3fe34fec40bebd83"
+ },
+ "recipe": {
+ "sha256": "1bhb24701flihl54w8xrj6yxhynpq4dk0fp5ciac7k28n4930lw8",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150324.348",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "ob-ipython": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "gregsexton",
+ "repo": "ob-ipython",
+ "sha256": "0r5p2gr7ri4w79lmhil4fgh6g8cmxs1qp8glkbvycvlaxwrzszhs",
+ "rev": "15011a8e1694d09a74094c5361a588bf586458f6"
+ },
+ "recipe": {
+ "sha256": "06llf365k8m81ljmlajqvxlh84qg6h0flp3m6gb0zx71xilvw186",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151010.507",
+ "deps": [
+ "dash",
+ "dash-functional",
+ "emacs",
+ "f",
+ "s"
+ ]
+ },
+ "naked": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/naked.el",
+ "sha256": "0fr7l8ab6wmffyjs7vc38x6ca37w8c00fjhi3br3g7cgi0bna0wi"
+ },
+ "recipe": {
+ "sha256": "06p6dzhn34dva3677mrvwq2a2x3bhw7f486y654hszla7i75pilq",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150104.1832",
+ "deps": []
+ },
+ "flex-isearch": {
+ "fetch": {
+ "tag": "fetchhg",
+ "url": "https://bitbucket.com/jpkotta/flex-isearch",
+ "sha256": "02z1w8z9fqdshyyf03c26zjwhmmclb02caw3b6nhhk4w1rkbh6is",
+ "rev": "bb9c3502057d"
+ },
+ "recipe": {
+ "sha256": "1msgrimi2a0xm5h23p78jflh00bl5bx44xpc3sc9pspznjv1d0k3",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20130508.1703",
+ "deps": []
+ },
+ "ranger": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "ralesi",
+ "repo": "ranger.el",
+ "sha256": "0yw61vnkljr6kba9bhldjgsbq5m9z1dg9f1jhxh5p1alcwk1vb7i",
+ "rev": "bec7f51db0aa2fd6c08304b61475352ee54b6692"
+ },
+ "recipe": {
+ "sha256": "14g4r4iaz0nzfsklslrswsik670pvfd0605xfjghvpngn2a8ych4",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151201.36",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "jq-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "ljos",
+ "repo": "jq-mode",
+ "sha256": "014qfzl0qc23pa9w9f3v4yi80jr7nxpd0pz6d615x5mq3zi6l0gp",
+ "rev": "305ead8f087b1b817291d5f0365e5226199ec58c"
+ },
+ "recipe": {
+ "sha256": "1xvh641pdkvbppb2nzwn1ljdk7sv6laq29kdv09kxaqd89vm0vin",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151030.651",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "jedi-direx": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "tkf",
+ "repo": "emacs-jedi-direx",
+ "sha256": "1pgi5vnwz5agrpvy7nwg3gv2nfbbmimhk8dxkg81k6yf1iiqxcap",
+ "rev": "7a2e677400717ed12b959cb5988e7b3fb1c12117"
+ },
+ "recipe": {
+ "sha256": "1y4n4c2imnm3f1q129bvbi4gzk0iazd8qq959gvq9j9fl1aziiz1",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140310.436",
+ "deps": [
+ "direx",
+ "jedi"
+ ]
+ },
+ "yascroll": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "m2ym",
+ "repo": "yascroll-el",
+ "sha256": "08wa97hsfy1rc8ify3rz2ncfij4z6l16p4s20naygqccjv3ir6z5",
+ "rev": "f7743df1cf6d8e55607141d1ea5f50b562582c51"
+ },
+ "recipe": {
+ "sha256": "11g7wn4hgdwnx3n7ra0sh8gk6rykwvrg9g2cihvcv7mjbqgcv53f",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150315.805",
+ "deps": [
+ "cl-lib"
+ ]
+ },
+ "general-close": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "emacs-berlin",
+ "repo": "general-close",
+ "sha256": "1nz6rlp0d6knx2f8703yjmnyiqy7sdg7y52r6xn5g4904fn4ndf4",
+ "rev": "77aac6f98a7c136c88794b0e3d50915a027e185f"
+ },
+ "recipe": {
+ "sha256": "17v0aprfvxbygx5517a8hrl88qm5lb9k7523yd0ps5p9l5x96964",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150922.213",
+ "deps": []
+ },
+ "date-at-point": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "alezost",
+ "repo": "date-at-point.el",
+ "sha256": "0l4z9rjla4xvm2hmp07xil69q1cg0v8iff0ya41svaqr944qf7hf",
+ "rev": "65733210479812a70a6dd5978ba0e2a4a6fcd08b"
+ },
+ "recipe": {
+ "sha256": "0r26df6px6q5jlxj29nhl3qbp6kzy9hs5vd72kpiirgn4wlmagp0",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150108.618",
+ "deps": []
+ },
+ "boogie-friends": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "boogie-org",
+ "repo": "boogie-friends",
+ "sha256": "11m0w8i2nq0nqrpg6m7vnn9sd3v1ln5b3rka7m9fnasadf77nmpv",
+ "rev": "d7b67730e9d4ac2ad5dc886bdc27e9b441497b96"
+ },
+ "recipe": {
+ "sha256": "0cfs7gvjxsx2027dbzh4yypz500nmk503ikiiprbww8jyvc8grk7",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151121.1549",
+ "deps": [
+ "cl-lib",
+ "company",
+ "dash",
+ "flycheck",
+ "yasnippet"
+ ]
+ },
+ "flycheck-ledger": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "purcell",
+ "repo": "flycheck-ledger",
+ "sha256": "15cgqbl6n3nyqiizgs2zvcvfs6bcnjk3bj81lhhwrzizbjvap3rv",
+ "rev": "78392ba2c0c177c47bb795a1a191c29846837f57"
+ },
+ "recipe": {
+ "sha256": "0807pd2km4r60wgd6jakscbx63ab22d9kvf1cml0ad8wynsap7jl",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140605.1346",
+ "deps": [
+ "flycheck"
+ ]
+ },
+ "killer": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "tarsius",
+ "repo": "killer",
+ "sha256": "05rbh5hkj3jsn9pw0qa4d5a5pi6367vdqkijcn9k14fdfbmyd30x",
+ "rev": "7bbb223f875402a7b2abee4baa5a54f10bd97212"
+ },
+ "recipe": {
+ "sha256": "10z4vqwrpss7mk0gq8xdsbsl0qibpp7s1g0l8wlmrsgn6kjkr2ma",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20120808.622",
+ "deps": []
+ },
+ "flycheck-tip": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "yuutayamada",
+ "repo": "flycheck-tip",
+ "sha256": "0hn3qjff1lcpd2ghjixkkq2bpmrmqab3860vy38yw201yy4xmn5r",
+ "rev": "9eefbea4ccc9e348d356faf28c9a1902ba28f29e"
+ },
+ "recipe": {
+ "sha256": "0zab1zknrnsw5xh5pwzzcpz7p40bbywkf9zx99sgsd6b5j1jz656",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150726.356",
+ "deps": [
+ "emacs",
+ "flycheck",
+ "popup"
+ ]
+ },
+ "ibuffer-rcirc": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "fgallina",
+ "repo": "ibuffer-rcirc",
+ "sha256": "15lapyj7qkkw1i1g1aizappm7gxkfnxhvd4fq66lghkzb76clz2m",
+ "rev": "8a4409b1c679d65c819dee4085faf929840e79f8"
+ },
+ "recipe": {
+ "sha256": "1y6pyc6g8j42hs103yynjsdkkxvcq0q4xsz4r93rqwsr3za3wcmc",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150215.1518",
+ "deps": [
+ "cl-lib"
+ ]
+ },
+ "tablist": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "politza",
+ "repo": "tablist",
+ "sha256": "0gy9hxm7bca0l1hfy2pzn86avpifrz3bs8xzpicj4kxw5wi4ygns",
+ "rev": "ef38312867bc0268b1584dd890b1c420bb77ec11"
+ },
+ "recipe": {
+ "sha256": "0c10g86xjhzpmc2sqjmzcmi393qskyw6d9bydqzjk3ffjzklm45p",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150619.18",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "iedit": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "victorhge",
+ "repo": "iedit",
+ "sha256": "1n2yz6jzbminrviadhd3h42fwvfrdy0v2nw7sk5plkzc8zrs3x25",
+ "rev": "2d9017daeaeb408568992f5c9cad5df5ca4f1d12"
+ },
+ "recipe": {
+ "sha256": "02gjshvkcvyr58yf6vlg3s2pzls5sd54xpxggdmqajfg8xmpkq04",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150915.2222",
+ "deps": []
+ },
+ "term-alert": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "CallumCameron",
+ "repo": "term-alert",
+ "sha256": "0sa3chk16s830lqhcd8d3bwdfmjg239ywb7jm6lhwshydssh34nk",
+ "rev": "46cc46dba6957a7081a360692e58b9bffb2cfa86"
+ },
+ "recipe": {
+ "sha256": "0x4rc1y311ivaj6mlks1j8sgzrrwqn8vx171vw7s1kgf1qzk826n",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20141121.1405",
+ "deps": [
+ "alert",
+ "term-cmd"
+ ]
+ },
+ "org-vcard": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "flexibeast",
+ "repo": "org-vcard",
+ "sha256": "1m2xdp6wfg11wi7s4i675c3m5qancm8bpizcf380r6vmkcdfkrdy",
+ "rev": "928827c1de3c90045df3ea4fb07db4af9d3b0a22"
+ },
+ "recipe": {
+ "sha256": "0l6azshvzl1wws582njqr3qx4h73gwrdqwa3jcic1qbs9hg2l4yl",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151214.22",
+ "deps": []
+ },
+ "eide": {
+ "fetch": {
+ "tag": "fetchgit",
+ "url": "git://git.tuxfamily.org/gitroot/eide/emacs-ide.git",
+ "sha256": "3f41ade3332a3f1dc5cfb0b33077396feb7b683b2cf2c235b7a5f07f0b2e3271",
+ "rev": "524494fd2b23217c6807b30b43bb95b5724f809e"
+ },
+ "recipe": {
+ "sha256": "16cf32n2l4wy1px7fm6x4vxx7pbqdp7zh2jn3bymg0b40i2321sz",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151212.1406",
+ "deps": []
+ },
+ "simple+": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/simple+.el",
+ "sha256": "0y1c87288cj7kwdq5ww6rvd4g4afssw22b7d0wa5ihl85nnf21kv"
+ },
+ "recipe": {
+ "sha256": "12fsgjk53fq2316j8nm6wvdckpyg9hq3v65j5c52i0g0cwmx62ra",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150616.1522",
+ "deps": [
+ "strings"
+ ]
+ },
+ "mbo70s-theme": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "emacsfodder",
+ "repo": "emacs-mbo70s-theme",
+ "sha256": "1vr85fdlb4zwgid1v00ndppla9fqqk25g2x2f5alm69pfqssr75z",
+ "rev": "d50414697760896dbe6b06d2a00c271c16e0e4a2"
+ },
+ "recipe": {
+ "sha256": "1abx2rw09xxp122ff7i9sry5djd4l6vn4lfzxs92rknjzkyc40pb",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20141122.842",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "weather-metno": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "ruediger",
+ "repo": "weather-metno-el",
+ "sha256": "05gfc67724b0mwg8kvk3dsazx3dld50b9xjq8h1nc6jvdz3zxb9z",
+ "rev": "bfc7137095e0ee71aad70ac46f2af677f3c051b6"
+ },
+ "recipe": {
+ "sha256": "0h7p4l8y75h27pgk45f0mk3gjd43jk8q97gjf85a9b0afd63d3f6",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150831.2007",
+ "deps": [
+ "cl-lib",
+ "emacs"
+ ]
+ },
+ "gitconfig": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "tonini",
+ "repo": "gitconfig.el",
+ "sha256": "184q3vsxa9rvhc1n57ms47r73f3zap25wswzi66rm6rmfi2k7678",
+ "rev": "7612a37ca14009cac8fb8d6b6f54adad739a5741"
+ },
+ "recipe": {
+ "sha256": "126znl1c4vwgskj7ka9id8v2bdrdn5nkyx3mmc6cz9ylc27ainm7",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20130718.435",
+ "deps": []
+ },
+ "auth-password-store": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "DamienCassou",
+ "repo": "auth-password-store",
+ "sha256": "0gi65n1np63zi2ylc4y1licwvk97jl92s1v98fv5y61kppi1d8sq",
+ "rev": "d7fc1f026c3f43190cacedfa6eff8da916e607f5"
+ },
+ "recipe": {
+ "sha256": "118ll12dhhxmlsp2mxmy5cd91166a1qsk406yhap5zw1qvyg58w5",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151112.1547",
+ "deps": [
+ "cl-lib",
+ "emacs",
+ "password-store",
+ "seq"
+ ]
+ },
+ "org-context": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "thisirs",
+ "repo": "org-context",
+ "sha256": "1sn0lhy5sb241wspv56s1snhsb8r5jwy9cwgaszcq3yibi34j38q",
+ "rev": "47d1f0c9b9fb7547dbeed5b3315102a2d3c3e16f"
+ },
+ "recipe": {
+ "sha256": "19y8aln7wix9p506ajvfkl641147c5mdmjm98jnq68cx2r4wp6zz",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150106.1506",
+ "deps": []
+ },
+ "eyuml": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "antham",
+ "repo": "eyuml",
+ "sha256": "1rgzydxv7c455vj1jm44vvs6xc4qgivqqb0g6zh5x4wdcpgdi2g9",
+ "rev": "2f259c201c6cc63ee608f75cd85c1ae27f9d2532"
+ },
+ "recipe": {
+ "sha256": "0ada2gcl8bw9nn0fz8g9lbqy8a8w1554q03fzd7lv8qla33ri3wx",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20141028.1727",
+ "deps": [
+ "request",
+ "s"
+ ]
+ },
+ "cpputils-cmake": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "redguardtoo",
+ "repo": "cpputils-cmake",
+ "sha256": "0kjkqylg0fncizrgcr8xx2qgjr8id41904n2pip0gicbry1n8bqg",
+ "rev": "9a496c9c14d1f287d9819aa0ed017be9fad9d3f4"
+ },
+ "recipe": {
+ "sha256": "0fswmmmrjv897n51nidmn8gs8yp00595g35vwjafsq6rzfg58j60",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151030.603",
+ "deps": []
+ },
+ "anzu": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "syohex",
+ "repo": "emacs-anzu",
+ "sha256": "1d2laybz1igrr9nnkmfsnrvsjw7qmrgby4wnrxprins9gq263lra",
+ "rev": "6fded24b366efc4cf27166104c1928f7d1fedaa7"
+ },
+ "recipe": {
+ "sha256": "0i2ia0jisj31vc2pjx9bhv8jccbp24q7c406x3nhh9hxjzs1f41i",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151015.605",
+ "deps": [
+ "cl-lib",
+ "emacs"
+ ]
+ },
+ "tj-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "katspaugh",
+ "repo": "tj-mode",
+ "sha256": "152yrxridh4b3k808lmky4p6zm8q4jpff8hmnywqhfbrvwv1n6ah",
+ "rev": "492b271c3736616c84a99c5b43897848bc350c96"
+ },
+ "recipe": {
+ "sha256": "1i7dvxgj00p4n2fh8irgdfsjl2dpvfjjnkkv0cw71441f79p79mf",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150826.1051",
+ "deps": [
+ "emacs",
+ "js2-mode",
+ "tern"
+ ]
+ },
+ "speechd-el": {
+ "fetch": {
+ "tag": "fetchgit",
+ "url": "git://git.freebsoft.org/git/speechd-el",
+ "sha256": "2c1bff3e5a182b8150c6ba6c3be7e70ab2b733cac0a758521c0b941dff215c32",
+ "rev": "3d729817296b2ed8ad414a6aa044a8aa762259eb"
+ },
+ "recipe": {
+ "sha256": "07g6jwymmwkx26p3as3r370viz1cqq360cagw9ji6i0hvgrr66a0",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20141025.1112",
+ "deps": []
+ },
+ "web": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "nicferrier",
+ "repo": "emacs-web",
+ "sha256": "03xcadplw1hg5hxw6bfrhw5xkkxk3i4105f114c6m3d2525jq4y5",
+ "rev": "483188dac4bc6b409b985c9dae45f3324a425efd"
+ },
+ "recipe": {
+ "sha256": "0ynnmqw0vsf7wyhp9m5a05dfb19vkj8dnj5glhjdzjvg30dhjp3a",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20141231.1401",
+ "deps": [
+ "dash",
+ "s"
+ ]
+ },
+ "python-django": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "fgallina",
+ "repo": "python-django.el",
+ "sha256": "1qckn5bi1ib54hgqbym5qqwzvbv70ria1w3c2x543xlr0l7zga6h",
+ "rev": "fc54ad74f0309670359b939f64d0f1fff68aeac4"
+ },
+ "recipe": {
+ "sha256": "02whx8g8r02mzng7d7bnbkz5n7gyzp5hcnmvd6a3lq106c0h7w9k",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150821.2304",
+ "deps": []
+ },
+ "helm-google": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "steckerhalter",
+ "repo": "helm-google",
+ "sha256": "0ml5mv282dz73hmgjalcsypdvc30pwhsfbamyz46744j7wxn6ik2",
+ "rev": "21443456eefab39a2bfef00f1387c015e7dfac51"
+ },
+ "recipe": {
+ "sha256": "0d1y7232rm888car3h40fba1m1pna2nh1a3fcvpra74igwarfi32",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20141228.540",
+ "deps": [
+ "google",
+ "helm"
+ ]
+ },
+ "format-sql": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "paetzke",
+ "repo": "format-sql.el",
+ "sha256": "0mikksamljps1czacgqavlnzzhgs8s3f8q4jza6v3csf8kgp5zd0",
+ "rev": "97f475c245cd6c81a72a265678e2087cee66ac7b"
+ },
+ "recipe": {
+ "sha256": "0684xqzs933vj9d3n3lv7afk4gii41kaqykbb05cribaswapsanj",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150422.833",
+ "deps": []
+ },
+ "writegood-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "bnbeckwith",
+ "repo": "writegood-mode",
+ "sha256": "1nnjn1r669hvvzfycllwap4w04m8rfsk4nzcg8057m1f263kj31b",
+ "rev": "4302169c1563cab9319745083f9b9a7f5f4af0bd"
+ },
+ "recipe": {
+ "sha256": "1lxammisaj04g5vr5lwms64ywf39w8knrq72x4i94wwzwx5ywi1d",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150325.1315",
+ "deps": []
+ },
+ "simpleclip": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "rolandwalker",
+ "repo": "simpleclip",
+ "sha256": "09286h2q9dqghgfj9a4cniz6djw7867vcy3ixs7cn4wghvhyxm8s",
+ "rev": "7079086ec09a148fcc9146ba9bd10e12fb011861"
+ },
+ "recipe": {
+ "sha256": "07qkfwlg8vw5kb097qbsv082hxir047q2bcvc8scbak2dr6pl12s",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150804.1210",
+ "deps": []
+ },
+ "pallet": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "rdallasgray",
+ "repo": "pallet",
+ "sha256": "03mlg6dmpjw8fq2s3c4gpqj20kjhzldz3m51bf6s0mxq9bclx2xw",
+ "rev": "0e1ae11e1ebfe644cbf832df62ac2dbf6ecd0501"
+ },
+ "recipe": {
+ "sha256": "0q50cdwnn2w1n5h4bappncjjyi5yaixxannwgy23fngdrz1mxwd7",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150512.202",
+ "deps": [
+ "cask",
+ "dash",
+ "f",
+ "s"
+ ]
+ },
+ "org-sync": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "arbox",
+ "repo": "org-sync",
+ "sha256": "14zn0b8qs740ls1069kg2lwm0b9yc4qv525fg8km0hgi0yp8qw7z",
+ "rev": "1e9045e38cd6f12dc0d60e2f7bd2d414a49a5722"
+ },
+ "recipe": {
+ "sha256": "0n8fz2d1vg9r8dszgasbnb6pgaxr2i8mqrp953prf1nhmfpjpxad",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150817.954",
+ "deps": [
+ "cl-lib",
+ "emacs",
+ "org"
+ ]
+ },
+ "rcirc-styles": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "aaron-em",
+ "repo": "rcirc-styles.el",
+ "sha256": "18b74bdkly0zqfi7q7b4sn7rpzhhczap4rl5r5i8vrawwc03bswb",
+ "rev": "a1a166ad34e6096d6b5dde9ea4312b3104899a75"
+ },
+ "recipe": {
+ "sha256": "01dxhnzsnljig769dk9axdi970b3lw2s6p1z3ljf29qlb5j4548r",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150720.2031",
+ "deps": [
+ "cl-lib"
+ ]
+ },
+ "jasminejs-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "stoltene2",
+ "repo": "jasminejs-mode",
+ "sha256": "1zcrxijcwqfs6r1cd6w4jq8g3ly0a69nf0cbx93w5v86x2kjpz0l",
+ "rev": "9f8044bf81ab5b4841a30b0bd099916e1b7ff54a"
+ },
+ "recipe": {
+ "sha256": "1a70j3aglrwmaw9g8m99sxad2vs53y4swxh97gqjsgx1rrx03g52",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150526.1905",
+ "deps": []
+ },
+ "key-chord": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/key-chord.el",
+ "sha256": "03m44pqggfrd53nh9dvpdjgm0rvca34qxmd30hr33hzprzjambxg"
+ },
+ "recipe": {
+ "sha256": "0cr9lx1pvr0qc762nn5pbh8w93dx1hh1zzf806cag2b9pgk6d4an",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151209.304",
+ "deps": []
+ },
+ "twilight-theme": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "developernotes",
+ "repo": "twilight-theme",
+ "sha256": "0d7vd1h0rwwgrh7f9kmdgy2ni0p20da9c8ylwlg33nsb26345wfs",
+ "rev": "77c4741cb3dcf16e53d06d6c2ffdc660c40afb5b"
+ },
+ "recipe": {
+ "sha256": "1wkca66q4k94h9njsy15n83wjzn90rcbmv44x0hdwqj92yxjf3y7",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20120412.803",
+ "deps": []
+ },
+ "apel": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "wanderlust",
+ "repo": "apel",
+ "sha256": "0sdxnf4b8rqs1cbjxh23wvxmj7ll3zddv8yfdgif6zmgyy8xhc9m",
+ "rev": "8402e59eadb580f59969114557b331b4d9364f95"
+ },
+ "recipe": {
+ "sha256": "0zhlm8lfri3zkhj62cycvdhkkgrn72lqb0dalh8qgr049bdv816y",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20141024.1842",
+ "deps": []
+ },
+ "cn-outline": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "mori-dev",
+ "repo": "cn-outline",
+ "sha256": "1635k51ppivq6v2702fihq8dvi33445smds9zhqm0drnpv9rv5cr",
+ "rev": "47d33a99b7ae26b1cd456441970b4bab2173d981"
+ },
+ "recipe": {
+ "sha256": "0cw1rr56hdngvhmx59j76hvkfzgybasn0fwhd6vwm709jqiiiwiz",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20100321.1114",
+ "deps": []
+ },
+ "yatemplate": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "mineo",
+ "repo": "yatemplate",
+ "sha256": "1gxn302kwjfq6s6rxxvy0jpp37r2vh4ry899giqbdfr0cc1qnw0c",
+ "rev": "499e7f2ea245686c09915523657fa95905f70561"
+ },
+ "recipe": {
+ "sha256": "05gd9sxdiqpw2p1kdagwgxd94wiw1fmmcsp9v4p74i9sqmf6qn6q",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151125.107",
+ "deps": [
+ "yasnippet"
+ ]
+ },
+ "nginx-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "ajc",
+ "repo": "nginx-mode",
+ "sha256": "08bpyk0brx0x2l0y8hn8zpkaxb2ndmxz22kzxxypj6hdz303wf38",
+ "rev": "8a296e30b01adbc40d1aa9ccde369a972ac5ceab"
+ },
+ "recipe": {
+ "sha256": "07k17m64zhv6gik8v4n73d8l1k6fsp4qp8cl94r384ny0187y65c",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150824.1611",
+ "deps": []
+ },
+ "anything-git-grep": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "mechairoi",
+ "repo": "anything-git-grep",
+ "sha256": "06fyvk7cjz1aag6fj52qraqmr23b0fqwml41yyid8gjxl4ygmkpv",
+ "rev": "6ee26e68bb8ec23ffacf5c5f9698c451a4bc905c"
+ },
+ "recipe": {
+ "sha256": "1kw88fvxil9l80w8zn16az7avqplyf2m0l7kp431wb5b1b1508jl",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20130608.2140",
+ "deps": [
+ "anything"
+ ]
+ },
+ "emoji-fontset": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "zonuexe",
+ "repo": "emoji-fontset.el",
+ "sha256": "0qi7p1grann3mhaq8kc0yc27cp9fm983g2gaqddljchn7lmgagrr",
+ "rev": "3b8c2204284b95934383836b5b36efeefb65663b"
+ },
+ "recipe": {
+ "sha256": "19affsvlm1rzrzdh1k6xsv79icdkzx4izxivrd2ia6y2wcg9wc5d",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151107.2247",
+ "deps": []
+ },
+ "ergoemacs-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "ergoemacs",
+ "repo": "ergoemacs-mode",
+ "sha256": "0h46k3wjcrizb45j8xcr5chk30lvzn2v9892k4m4xcgp6jdhzycm",
+ "rev": "6b105ec09b45d8f67549b7c23ecf4cca26e27a40"
+ },
+ "recipe": {
+ "sha256": "0h99m0n3q41lw5fm33pc1405lrxyc8rzghnc6c7j4a6gr1d82s62",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151218.930",
+ "deps": [
+ "emacs",
+ "undo-tree"
+ ]
+ },
+ "cyphejor": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "mrkkrp",
+ "repo": "cyphejor",
+ "sha256": "1vkwm1n0amf0y0jdyvqskp00b6aijqhd7wclzkzrq7glrvj2z1xw",
+ "rev": "1025d82a9abaca132f5855e72d56c0c2ccc0eef4"
+ },
+ "recipe": {
+ "sha256": "18l5km4xm5j3vv19k3fxs8i3rg4qnhrvx7b62vmyfcqmpiasrh6g",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150914.627",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "motion-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "ainame",
+ "repo": "motion-mode",
+ "sha256": "17570labnwdnwca2cg4ga0mrrm00n0h3wlxry823k5yn3k93rnj1",
+ "rev": "4c94180e3ecea611a61240a0c0cd48f1032c4a55"
+ },
+ "recipe": {
+ "sha256": "1lfsc8ayiz2v3dfn8c0mmfch8vpzqyddxw8kscan2lzl2lcj50h0",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140919.2056",
+ "deps": [
+ "flymake-cursor",
+ "flymake-easy"
+ ]
+ },
+ "guide-key-tip": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "aki2o",
+ "repo": "guide-key-tip",
+ "sha256": "1s6p4ysdbqx5fk68s317ckj5rjmpkwwb0324sbqqa6byhw3j0xyj",
+ "rev": "d1773156b62566e1245f39936abd151844bd471c"
+ },
+ "recipe": {
+ "sha256": "0h2vkkbxq361dkn6irm1v19qj7bkhxcjljiksd5wwlq5zsq6bd06",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140406.2020",
+ "deps": [
+ "guide-key",
+ "pos-tip"
+ ]
+ },
+ "apache-mode": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/apache-mode.el",
+ "sha256": "1jndhcjvj6s1clmyyphl5ss5267c7b5a58fz8gbp1ffk1d9ylfik"
+ },
+ "recipe": {
+ "sha256": "1a1pj3bk0gplfx217yd6qdn7qrhfbkx2bhkk33k0gq5sia6rzs44",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150828.914",
+ "deps": []
+ },
+ "ac-racer": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "syohex",
+ "repo": "emacs-ac-racer",
+ "sha256": "0g7xbfsfqpmcay56y8xbmif52ccz430s3rjxf5bgl9ahkk7zgkzl",
+ "rev": "2708b0a49afc89fb99a6d74a016cff6b94138ed0"
+ },
+ "recipe": {
+ "sha256": "1vkvh8y3ckvzvqxj4i2k6jqri94121wbfjziybli74qba8dca4yp",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150831.341",
+ "deps": [
+ "auto-complete",
+ "cl-lib",
+ "racer"
+ ]
+ },
+ "iregister": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "atykhonov",
+ "repo": "iregister.el",
+ "sha256": "1ch610b3d0x3nxglp749305syliivamc108rgv9if4ihb67gp8b5",
+ "rev": "6a48c66187289de5f300492be11c83e98410c018"
+ },
+ "recipe": {
+ "sha256": "0iq1nlj5czi4nblrszfv3grkl1fni7blh8bhcfccidms8v9r3mdm",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150515.1607",
+ "deps": []
+ },
+ "nemerle": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "rsdn",
+ "repo": "nemerle",
+ "sha256": "0sybgk7pbqx6l3q1jk5x562m3rn3lg5i21qw8h522hfp7pk6i7p5",
+ "rev": "d57f26b57601a8092f0a9c95470931fbdeb0afa5"
+ },
+ "recipe": {
+ "sha256": "0698hbgk80w7wp0ssx9pl13aapm7rc6l3y2zydfkyqdfwy5y71v6",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20130328.946",
+ "deps": []
+ },
+ "tango-plus-theme": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "tmalsburg",
+ "repo": "tango-plus-theme",
+ "sha256": "1gfn1yyyb9p2fi17wra1yf2j96cfjw0sifgk3c0vl63h3vmiyvjf",
+ "rev": "99c3484eeb4e6f7f62a6dacfd665a4d46f4cbdaf"
+ },
+ "recipe": {
+ "sha256": "1bx9qcwvybgd0rg8a9rag8xvb5ljrwfnm5nvq793ncvbdvq6vrh5",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140425.1711",
+ "deps": []
+ },
+ "debpaste": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "alezost",
+ "repo": "debpaste.el",
+ "sha256": "1wzjdyadm8x63r874x8qi4p9ni1wdq28v3m9hca9jizkfqv9xxzz",
+ "rev": "c296c063e5a75da1ebeea84ee35c6988651de416"
+ },
+ "recipe": {
+ "sha256": "1vgirfy4vdqkhllnnmcplhwmzqqwca3la5jfvvansykqriwbq9lw",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140618.58",
+ "deps": [
+ "xml-rpc"
+ ]
+ },
+ "kerl": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "correl",
+ "repo": "kerl.el",
+ "sha256": "1kkzs7nrcr74qn1m456vaj52a9j3ah4biakimz06hls415l56yk9",
+ "rev": "1732ee26213f021bf040919c45ad276aafcaae14"
+ },
+ "recipe": {
+ "sha256": "0f8n7cm5c432pwj28bcpv2jj5z3br3k164xj6nwfis3dvijwsgss",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150424.1505",
+ "deps": []
+ },
+ "haskell-emacs": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "knupfer",
+ "repo": "haskell-emacs",
+ "sha256": "1qgqsy7wnqyzkc3b0wixxb8mapmgpi36dignvf8w2raw9ma3q2n0",
+ "rev": "f242ac4d0312aee5d162be82ae14b7154bb0db19"
+ },
+ "recipe": {
+ "sha256": "1wkh7qws35c32hha0p9rpjz5pls2844920nh919lvp2wmq9l6jd6",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151004.1230",
+ "deps": []
+ },
+ "terraform-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "syohex",
+ "repo": "emacs-terraform-mode",
+ "sha256": "00yvgpw16i6kncxrs4vvky131c8gwmvf43vjkhblai2cag6s6bfq",
+ "rev": "06b06b415f05f73d1d8bb1a8ba236e8ffe45793b"
+ },
+ "recipe": {
+ "sha256": "1m3s390mn4pba7zk17xfk045dqr4rrpv5gw63jm18fyqipsi6scn",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151006.945",
+ "deps": [
+ "cl-lib",
+ "hcl-mode"
+ ]
+ },
+ "octopress": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "aaronbieber",
+ "repo": "octopress.el",
+ "sha256": "1fc9iabxfmyqb41j31rgbzxdmnjrzqh1pp9s15q6s7b2d7mc0a0y",
+ "rev": "2e068887b17b72a69e29349d477333d067867eec"
+ },
+ "recipe": {
+ "sha256": "0zsir6chjvn5i1irmf5aj6mmb401c553r5wykq796sz7jnjhrjg0",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151006.514",
+ "deps": []
+ },
+ "helm-dired-recent-dirs": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "akisute3",
+ "repo": "helm-dired-recent-dirs",
+ "sha256": "14sifdrfg8ydvi9mj8qm2bfphbffglxrkb5ky4q5b3j96bn8v110",
+ "rev": "3bcd125b44f5a707588ae3868777d91192351523"
+ },
+ "recipe": {
+ "sha256": "0kh0n5674ksswjzi9gji2qmx8v8g0axx8xbi0m3zby9nwcpv4qzs",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20131228.814",
+ "deps": [
+ "helm"
+ ]
+ },
+ "gap-mode": {
+ "fetch": {
+ "tag": "fetchhg",
+ "url": "https://bitbucket.com/gvol/gap-mode",
+ "sha256": "1jdaysi5rbl0m2lmz41xldxbh3z5b89cnxka7r2ndldcqiq5j9q7",
+ "rev": "38e9eb6cbd0f"
+ },
+ "recipe": {
+ "sha256": "07whab3gi4b8gsvy5ijmjnj700lw0rm3bnr1769byhnpi7qpqin2",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140913.1458",
+ "deps": []
+ },
+ "elpa-audit": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "purcell",
+ "repo": "elpa-audit",
+ "sha256": "1dadf24x6v1vk57bp6w0g2dysigy5cqjzwldc8dn129f4pfrhipy",
+ "rev": "1ca4e6073f8c4cbb41688b69d3b3feaa1a392efc"
+ },
+ "recipe": {
+ "sha256": "0l8har14zrlh9kdkh9vlmkmzg49vb0r8j1wnznryaidalvk84a52",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20141023.831",
+ "deps": []
+ },
+ "sublimity": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "zk-phi",
+ "repo": "sublimity",
+ "sha256": "0xg8ahjh1mkh555q645c9rhacv85iz6s83n2dpj4rhb45g9if6pc",
+ "rev": "45fabc1a63625bd0181f2bd4f39f154df5110338"
+ },
+ "recipe": {
+ "sha256": "1xwggaalad65cxcfvmy30f141bxhpzc3fgvwziwbzi8fygbdv4nw",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150918.1417",
+ "deps": []
+ },
+ "helm-w3m": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "emacs-helm",
+ "repo": "helm-w3m",
+ "sha256": "0d47mqib4zkfadq26vpy0ih7j18d6n5v4c21wvr4hhg6hg205iiz",
+ "rev": "280673470672c9fbc57fd6a91defeb9f6641fc8a"
+ },
+ "recipe": {
+ "sha256": "1rr83ija93iqz74k236hk3v75jk0iwcccwqpqgys7spvrld0b9pz",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150722.1024",
+ "deps": [
+ "cl-lib",
+ "emacs",
+ "helm",
+ "w3m"
+ ]
+ },
+ "ietf-docs": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "choppsv1",
+ "repo": "ietf-docs",
+ "sha256": "0b86x675g95yrlc0alffx0z9fmficlwv3gpy5cy86z1xvvyh3nzw",
+ "rev": "ede30d6d26044069e1731fd20c0ab2324552c0b4"
+ },
+ "recipe": {
+ "sha256": "0wnk36z9g7lksmynd04hb2m6rx45wpxnxj1lhrlpjnzsrknhf4k3",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150928.457",
+ "deps": []
+ },
+ "ruby-block": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/ruby-block.el",
+ "sha256": "0c4vy9xsw44g6q9nc8aaav5avgp34h24mvgcnww468afiimivdcq"
+ },
+ "recipe": {
+ "sha256": "0jfimjq1xpwxkxya452kp27h0fdiy87aj713w3zsm04k7l6i12hm",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20131210.2131",
+ "deps": []
+ },
+ "inline-crypt": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "Sodel-the-Vociferous",
+ "repo": "inline-crypt-el",
+ "sha256": "0jipds844432a8m4d5gxbbkk2h1rsq9fg748g6bxy2q066kyzfz6",
+ "rev": "497ce9dc29a8ccac0b6dd6854f5d120514350282"
+ },
+ "recipe": {
+ "sha256": "04mcyyqa9h6g6wrzphzqalpqxsndmzxpavlpdc24z4a2c5s3yz8n",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20130409.707",
+ "deps": []
+ },
+ "fsharp-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "rneatherway",
+ "repo": "emacs-fsharp-mode-bin",
+ "sha256": "126pd75673q61zi65p2z4x77fz6rd6rh8hlbv1lw8cv4al1bx7rh",
+ "rev": "6c6111980b2bfa0664bf4032039d6dca3d00b4f4"
+ },
+ "recipe": {
+ "sha256": "07pkj30cawh0diqhrp3jkshgsd0i3y34rdnjb4af8mr7dsbsxb6z",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151124.936",
+ "deps": [
+ "auto-complete",
+ "dash",
+ "popup",
+ "pos-tip",
+ "s"
+ ]
+ },
+ "mmm-mako": {
+ "fetch": {
+ "tag": "fetchhg",
+ "url": "https://bitbucket.com/pjenvey/mmm-mako",
+ "sha256": "0rpp748ym79sxccp9pyrwri14m7624zzb80srfgjfdpysrrs0jrr",
+ "rev": "5c9ff92137b5"
+ },
+ "recipe": {
+ "sha256": "0a4af5q9wxafrid8visp30cz6073ig0c961b78vmmgqrwvvxd3kn",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20121020.151",
+ "deps": [
+ "mmm-mode"
+ ]
+ },
+ "auto-complete-pcmp": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "aki2o",
+ "repo": "auto-complete-pcmp",
+ "sha256": "1hf2f903hy9afahrgy2fx9smgn631drs6733188zgqi3nkyizj26",
+ "rev": "2595d3dab1ef3549271ca922f212928e9d830eec"
+ },
+ "recipe": {
+ "sha256": "1mpgkwj8jwpvxphlm6iaprwjrldmihbgg97jav0fbm1kjnm4azna",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140227.51",
+ "deps": [
+ "auto-complete",
+ "log4e",
+ "yaxception"
+ ]
+ },
+ "regex-tool": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "jwiegley",
+ "repo": "regex-tool",
+ "sha256": "1wr12j16hckvc8bxxgxw280frl12h23cp44sxg28lczl16d9693l",
+ "rev": "62b292d93f29e4c4767b0800d53c656b9f626892"
+ },
+ "recipe": {
+ "sha256": "1nd23vjij5h5gk5l7hbd5ks9ljisn054wp138jx2v6i51izxvh2v",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20131104.1634",
+ "deps": []
+ },
+ "macrostep": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "joddie",
+ "repo": "macrostep",
+ "sha256": "0j95lv4b01p8a5fpxnj5qs2ajg1yxnsg97vw3184dfy9r5hy7ryb",
+ "rev": "a3338d351e18bfbacd970d371735f840e7d5fe38"
+ },
+ "recipe": {
+ "sha256": "1wjibxbdsp5qfhq8xy0mcf3ms0q74qhdrhqndprn6jh3kcn5q63c",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151213.345",
+ "deps": [
+ "cl-lib"
+ ]
+ },
+ "keydef": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "emacsorphanage",
+ "repo": "keydef",
+ "sha256": "0dkc51bmix4b8czs2wg6vz8vk32qlll1b9fjmx6xshrxm85cyhvv",
+ "rev": "dff2be9f58d12d8c6a490ad0c1b2b10b55528dc0"
+ },
+ "recipe": {
+ "sha256": "0yb2vgj7abyg8j7qmv74nsanv50lf350q1m58rjv8wm31yykg992",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20090428.1431",
+ "deps": []
+ },
+ "flymake-coffee": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "purcell",
+ "repo": "flymake-coffee",
+ "sha256": "10i0rbvk6vyifgbgskdyspmw9q64x99fzi8i1h8bgv58xhfx6pm7",
+ "rev": "325ab379592fdf9017d7c19625c7a978f6f3af3b"
+ },
+ "recipe": {
+ "sha256": "1aig1d4fgjdg31vrg8k43z5hbqiydgfvxi45p1695s3kbdm8pr2d",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140809.524",
+ "deps": [
+ "flymake-easy"
+ ]
+ },
+ "magit-svn": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "magit",
+ "repo": "magit-svn",
+ "sha256": "0gzlis72xan2njk0cx0x6dbw1cz883l3lmn2hv117ch7b5v0dfns",
+ "rev": "04ade0b554a7c3e326860989ccc0da03ea6f9bcf"
+ },
+ "recipe": {
+ "sha256": "02n732z06f0bhxqkxzlvm36bpqr40pas09zbzpfdk4pb6f9f80s0",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151118.257",
+ "deps": [
+ "emacs",
+ "magit"
+ ]
+ },
+ "scion": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "nominolo",
+ "repo": "scion",
+ "sha256": "0ark720g0nrdqri5bjdpss6kn6k3hz3w3zdvy334wws05mkb17y4",
+ "rev": "99b4589175665687181a932cd836850205625f71"
+ },
+ "recipe": {
+ "sha256": "17qmc7fpvbamqkzyk8jspp2i0nw93iya4iwddvas7vdpjy7mk81d",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20130315.755",
+ "deps": []
+ },
+ "hl-defined": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/hl-defined.el",
+ "sha256": "19pvwdkw833c84j9ynn2x8s8lv1bi98gkkmppn01v08yyzi3kr7y"
+ },
+ "recipe": {
+ "sha256": "1y7vbhvpwxz70kja5hfm4i57mdd1cv43m4y9fr978y3nk265p8xx",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150104.1620",
+ "deps": []
+ },
+ "company-arduino": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "yuutayamada",
+ "repo": "company-arduino",
+ "sha256": "067xb4mwfnmbqjyfv4717417fg7ysvz9flnx1nrk6iv96gnf4vfx",
+ "rev": "fd31103ab73acd6c77e4361db86e472619903f80"
+ },
+ "recipe": {
+ "sha256": "1bch447lllikip1xd90kdgssgc67sl04a70fxqkqlrc1bs6gkkws",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150614.326",
+ "deps": [
+ "arduino-mode",
+ "cl-lib",
+ "company",
+ "company-c-headers",
+ "company-irony",
+ "emacs",
+ "irony"
+ ]
+ },
+ "diffview": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "mgalgs",
+ "repo": "diffview-mode",
+ "sha256": "0diw887x4q7kbgdvxbbnxdw51z33kqwxw3v9m45fczxbywyi4cxf",
+ "rev": "031b70913e755c5e55222680f80185032a7d1728"
+ },
+ "recipe": {
+ "sha256": "0vlzmykvxjwjww313brl1nr13kz41jypsk0s3l8q3rbsnkpfic5k",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150929.11",
+ "deps": []
+ },
+ "tree-mode": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/tree-mode.el",
+ "sha256": "0hffnzvzbvmzf23z9z7n7y53l5i7kza9hgfl39qqcnw4njg48llx"
+ },
+ "recipe": {
+ "sha256": "0xwyhlc5lagj46nd70l81rvb43hs08pic96grk62zknig8354c24",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151104.731",
+ "deps": []
+ },
+ "scf-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "lewang",
+ "repo": "scf-mode",
+ "sha256": "0m7hanpc2skmsz783m0212xd10y31gkj5n6w8gx9s989l1y4i1b8",
+ "rev": "dbfcdcd89034f208d65e181af58e0d73ad09f8b2"
+ },
+ "recipe": {
+ "sha256": "0acbrw94q6cr9b29mz1wcbwi1g90pbm7ly2xbaqb2g8081r5rgg0",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151121.2048",
+ "deps": []
+ },
+ "go-projectile": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "dougm",
+ "repo": "go-projectile",
+ "sha256": "16n8655i7qidakxijymx1n84pnkn3hxpj7lsr901j03blxdrij5y",
+ "rev": "0a974097ef74b6045585c6120309c208b002f6e6"
+ },
+ "recipe": {
+ "sha256": "07diik27gr82n11a8k62v1jxq8rhi16f02ybk548f6cn7iqgp2ml",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151215.1058",
+ "deps": [
+ "go-eldoc",
+ "go-mode",
+ "go-rename",
+ "projectile"
+ ]
+ },
+ "align-cljlet": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "gstamp",
+ "repo": "align-cljlet",
+ "sha256": "11vi1qjj1187gkdqrzblrl26xnj7vcpzgbq8py29k94szjrlyasp",
+ "rev": "eb8d18058838167a13e3272ac9fd597d7c183b35"
+ },
+ "recipe": {
+ "sha256": "0pnhhv33rvlmb3823xpy9v5h6q99fa7fn38djbwry4rymi4jmlih",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151106.154",
+ "deps": [
+ "clojure-mode"
+ ]
+ },
+ "framesize": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "nicferrier",
+ "repo": "emacs-framesize",
+ "sha256": "11h9xw6jnw7dacyv1jch2a77xp7hfb93690m7hhazy6l87xmm4dk",
+ "rev": "f2dbf5d2513b2bc45f2085370a55c1754b6025da"
+ },
+ "recipe": {
+ "sha256": "1rwiwx3n7gkpfihbf6ndl1lxza4zi2rlj5av6lfp5qypbw9wddkf",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20131017.1632",
+ "deps": [
+ "key-chord"
+ ]
+ },
+ "helm-cscope": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "alpha22jp",
+ "repo": "helm-cscope.el",
+ "sha256": "0nhi8xhcf7qpsibpyy5v364xx7lqkhskzai7awkg0xcdq8b5090x",
+ "rev": "ddc3f750a92044d6712585e29d3dbaface2e34db"
+ },
+ "recipe": {
+ "sha256": "13a76wc1ia4c0v701dxqc9ycbb43d5k09m5pfsvs8mccisfzk9y4",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150609.849",
+ "deps": [
+ "cl-lib",
+ "emacs",
+ "helm",
+ "xcscope"
+ ]
+ },
+ "cil-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "ForNeVeR",
+ "repo": "cil-mode",
+ "sha256": "1w0ya0446rqsg1j59fd1mp4wavv2f3h1k3mw9svm5glymdirw4d1",
+ "rev": "fcd2e407aeefab9ae465b072eea33dc115506fff"
+ },
+ "recipe": {
+ "sha256": "1h18r086bqspyn5n252yzw8x2zgyaqzdd8pbcf5gqlh1w8kapq4y",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150223.450",
+ "deps": []
+ },
+ "dylan-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "dylan-lang",
+ "repo": "dylan-mode",
+ "sha256": "011423kvbfcd7jifg9425j89hlzmnw4j751s4mdz9wyr979k19ny",
+ "rev": "2a5b8a65a3e3e9543e935dceea1a121e69e78c8e"
+ },
+ "recipe": {
+ "sha256": "0kimvz8vmcvgxi0wvf7dqv6plj31xlksmvgip8h3bhyy7slxj3yy",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140611.37",
+ "deps": []
+ },
+ "babel": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "juergenhoetzel",
+ "repo": "babel",
+ "sha256": "140lbpqq4qz45ykycdn8nvcn8pv0xqfwpapgprvyg8z5fjkyc4sg",
+ "rev": "9bc1c3cf6de50b0e34fa1a7640eb68c650e72fd6"
+ },
+ "recipe": {
+ "sha256": "0sdpp4iym61ni32zv75n48ylj4jib8ca6n9hyqwj1b7nqg76mm1c",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20131231.925",
+ "deps": []
+ },
+ "hide-lines": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/hide-lines.el",
+ "sha256": "1q87yp1pr62cza3pqimqd09a39yyij4c7pncdww84zz7cii9qrn2"
+ },
+ "recipe": {
+ "sha256": "146sgvd88w20rqvd8y8kc76cb1nqk6dvqsz9rgl4rcrf0xfqvp7q",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151127.1240",
+ "deps": []
+ },
+ "todotxt": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "rpdillon",
+ "repo": "todotxt.el",
+ "sha256": "0ms4mapjg9mbpmcmpn68r0mhwaibwfr4v25sin74b2281h4q7gal",
+ "rev": "fc83f954aea75065aa9788ee07027c94e76a9364"
+ },
+ "recipe": {
+ "sha256": "13jcbkasvcczf7qnrh89ncqp6az6hm1s0ycrv7msva145n5bk1kr",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150513.2129",
+ "deps": []
+ },
+ "helm-firefox": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "emacs-helm",
+ "repo": "helm-firefox",
+ "sha256": "0pvc163pd1jh8f4ym5yymspd0ppkq0ni05gjh45plr8yaw32n2y4",
+ "rev": "73d2dc49f4f3efa3f68881cf7cb5da27419d13a9"
+ },
+ "recipe": {
+ "sha256": "0677nj0zsk11vvp3q3xl9nk8dhz3ki9yl3kfb57wgnmprp109wgs",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150720.1318",
+ "deps": [
+ "cl-lib",
+ "emacs",
+ "helm"
+ ]
+ },
+ "nanowrimo": {
+ "fetch": {
+ "tag": "fetchhg",
+ "url": "https://bitbucket.com/gvol/nanowrimo.el",
+ "sha256": "1nzkamy53kl1g4y1jm7j5zgpkdsyg5ykp8zp1f0bg5mhy8mmf75w",
+ "rev": "25e2ca20ed34"
+ },
+ "recipe": {
+ "sha256": "1nhyj38qyn1x6a5rbrwhcxwfwzyqqjm3dvksdnmam6vfwn3s2r31",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151104.2028",
+ "deps": []
+ },
+ "engine-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "hrs",
+ "repo": "engine-mode",
+ "sha256": "1k17z1dy9m9lx2fy78ack8fyf5vqb79fwjn078f93bcjl5mc7d4k",
+ "rev": "98020c5c8fcc3c675999fc6215af6a6259c5c017"
+ },
+ "recipe": {
+ "sha256": "1gg7i93163m7k7lr3pnal1svymnhzwrfpfcdc0798d7ybv26gg8c",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150902.1235",
+ "deps": []
+ },
+ "company-c-headers": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "randomphrase",
+ "repo": "company-c-headers",
+ "sha256": "16cva7ccc0hrc6yf659kpsznlk1bkgv525lqr4nj8a12q0avjdxf",
+ "rev": "0b8c63cdc7864c3e3939c4b8cda314d05ae0a352"
+ },
+ "recipe": {
+ "sha256": "1715vnjr5cjiq8gjcd3idnpnijg5cg3sw3f8gr5x2ixcrip1hx3a",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150801.1101",
+ "deps": [
+ "company",
+ "emacs"
+ ]
+ },
+ "textmate": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "defunkt",
+ "repo": "textmate.el",
+ "sha256": "1b7xxz1i84azmbz8rqpxdn18avmnqlj87hfrpbngbf6pj5h9jqjh",
+ "rev": "350918b070148f0ace6d9d3cd4ebcaf15c1a8781"
+ },
+ "recipe": {
+ "sha256": "119w944pwarpqzcr9vys17svy1rkfs9hiln8903q9ff4lnjkpf1v",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20110816.1646",
+ "deps": []
+ },
+ "flycheck-clojure": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "clojure-emacs",
+ "repo": "squiggly-clojure",
+ "sha256": "0zldhxlbp6m2gnqbb3dgmj32hnx1lh7wvjcpw1s4gz980ncgc8k8",
+ "rev": "308044d58c4e16567ae818cc1d1e90f29947ada3"
+ },
+ "recipe": {
+ "sha256": "1b20gcs6fvq9pm4nl2qwsf34sg6wxngdql921q2pyh5n1xsxhm28",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150831.831",
+ "deps": [
+ "cider",
+ "emacs",
+ "flycheck",
+ "let-alist"
+ ]
+ },
+ "sotclojure": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "Malabarba",
+ "repo": "speed-of-thought-clojure",
+ "sha256": "19zh8gijrvggwqaxxd9w2dbxvysjdyz8zvvnvbdys2xz6xwyq2ik",
+ "rev": "8396cdb4c479ef0c12d3786bc8356746e7ffb354"
+ },
+ "recipe": {
+ "sha256": "12byqjzg0pffqyq958265qq8yxxmf3iyy4m7zib492qcj8ccy090",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150914.1856",
+ "deps": [
+ "cider",
+ "clojure-mode",
+ "emacs",
+ "sotlisp"
+ ]
+ },
+ "modeline-char": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/modeline-char.el",
+ "sha256": "0z3izd0wvnqh3r8535rzxi0xab6hz46njw4m24nl6xps2n7fcwmi"
+ },
+ "recipe": {
+ "sha256": "1cb6pm69db0jbksmc4mkawf643i74is9v7ka34pv3mb21nj095qp",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150710.2153",
+ "deps": []
+ },
+ "el-autoyas": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "mattfidler",
+ "repo": "el-autoyas.el",
+ "sha256": "0dbp2zz993cm7mrd58c4iflbzqwg50wzgn2cpwfivk14w1mznh4n",
+ "rev": "bde0251ecb504f585dfa27c205c8e312655310cc"
+ },
+ "recipe": {
+ "sha256": "0hh5j79f3z82nmb3kqry8k8lgc1qswk6ni3g9jg60pasc3wkbh6c",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20120918.817",
+ "deps": []
+ },
+ "px": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "aaptel",
+ "repo": "preview-latex",
+ "sha256": "10g4imxgpv7a0j40qkx7xf2qnyz80ypd0mv0lf47n9dwln5byln3",
+ "rev": "c698a650997a1d5b06b92acc8f30d620342e1f37"
+ },
+ "recipe": {
+ "sha256": "0xjmz18m2dslh6yq5z32r43zq3svfxn8mhrfbmihglyv2mkwxw44",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20141006.748",
+ "deps": []
+ },
+ "osx-pseudo-daemon": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "DarwinAwardWinner",
+ "repo": "osx-pseudo-daemon",
+ "sha256": "1j601gzizxjsvkw6bvih4a49iq05yfkw0ni77xbc5klc7x7s80hk",
+ "rev": "0b9f330a66b4e8d2ff9bcd57e09b8d304dfb5841"
+ },
+ "recipe": {
+ "sha256": "150fxj2phj5axnh5i8ws5fv2qzzmpyisch452wgxb604p56j7vy8",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20131026.1930",
+ "deps": []
+ },
+ "system-specific-settings": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "DarwinAwardWinner",
+ "repo": "emacs-system-specific-settings",
+ "sha256": "1hixilnnybv2v3p1wpn7a0ybwah17grawszs3jycsjgzahpgckv7",
+ "rev": "0050d85b2175095aa5ecf580a2fe43c069b0eef3"
+ },
+ "recipe": {
+ "sha256": "1ydmxi8aw2lf78wv4m39yswbqkmcadqg0wmzg9s8b5h9bxxwvppp",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140818.957",
+ "deps": []
+ },
+ "haskell-emacs-base": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "knupfer",
+ "repo": "haskell-emacs",
+ "sha256": "1qgqsy7wnqyzkc3b0wixxb8mapmgpi36dignvf8w2raw9ma3q2n0",
+ "rev": "f242ac4d0312aee5d162be82ae14b7154bb0db19"
+ },
+ "recipe": {
+ "sha256": "1fwkds6qyhbxxdgxfzmgd7dlcxr08ynrrg5jdp9r7f924pd536vb",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150714.1059",
+ "deps": [
+ "haskell-emacs"
+ ]
+ },
+ "leerzeichen": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "fgeller",
+ "repo": "leerzeichen.el",
+ "sha256": "0yrrlwmxg1wy65bqyacjpzd5ksljgp41x4zyizl7h0zx9rmqcdvn",
+ "rev": "e67e59a0e15bc4a41006fdd9822c4b3e6d7da626"
+ },
+ "recipe": {
+ "sha256": "0h7zpskcgkswr110vckfdbxggz5b3g9grk1j1cbd98pmrpgfqrvp",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151106.28",
+ "deps": []
+ },
+ "rcirc-groups": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "dimitri",
+ "repo": "rcirc-groups",
+ "sha256": "0b09qx30iy82c2zs7b7g1a4ij7qa0ic830ip0j37mrb0hpxym634",
+ "rev": "af15e550339c1b8b2971eb2958e0029c353abfb2"
+ },
+ "recipe": {
+ "sha256": "1iws3f8vkwrflcj6ni8nmf1wcw1jrlnssm76kzzhag77ry3iswgx",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151207.1113",
+ "deps": []
+ },
+ "windata": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/windata.el",
+ "sha256": "0dcbnqcqw7jzwwdn0rxxlixga1zw1x3a2zbpxvd90xp7zig4f0yz"
+ },
+ "recipe": {
+ "sha256": "0xq51rdanq5as6kfyi97hsqmig5g35w7xv8c96bhzyflranw7jw5",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20080412.955",
+ "deps": []
+ },
+ "clues-theme": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "jasonm23",
+ "repo": "emacs-clues-theme",
+ "sha256": "0fnl3b62clg9llcs2l511sxp4yishan4pqk45sqp8ih4rdzvy7ar",
+ "rev": "69d873c90fbf24590c765309b7fb55cd14bb6bda"
+ },
+ "recipe": {
+ "sha256": "12g7373js5a2fa0m396k9kjhxvx3qws7n1r435nr9zgwaw7xvciy",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140922.2256",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "ert-async": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "rejeep",
+ "repo": "ert-async.el",
+ "sha256": "0hn9i405nfhjd1h9vnwj43nxbbz00khrwkjq0acfyxjaz1shfac9",
+ "rev": "f64a7ed5b0d2900c9a3d8cc33294bf8a79bc8526"
+ },
+ "recipe": {
+ "sha256": "004798ckri5j72j0xvzkyciss1iz4lw9gya2749hkjxlamg14cn5",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151011.859",
+ "deps": []
+ },
+ "http": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "emacs-pe",
+ "repo": "http.el",
+ "sha256": "0k9ksbpcdx5asjcvnivm8hpkm55qjz348gb8ihx5q5448h89ksrz",
+ "rev": "3984230ea8b413bc634fb72d097c7f3b8c92b988"
+ },
+ "recipe": {
+ "sha256": "1176jhm8m7s1pzp0zv1sqawcgn4m5zvxghypmsrjyyb5p7m6dalm",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150716.959",
+ "deps": [
+ "cl-lib",
+ "emacs",
+ "request"
+ ]
+ },
+ "textmate-to-yas": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "mattfidler",
+ "repo": "textmate-to-yas.el",
+ "sha256": "1idhhfp0jhnykyms7dp3lfk6imddg6a315pfklbjpcys4y3fdz89",
+ "rev": "74cbf0877ab6391f920d2d7a588e363423d61227"
+ },
+ "recipe": {
+ "sha256": "04agz4a41h0givfdw88qjd3c7pd418qyigsij4la5f37j5rh338l",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150914.746",
+ "deps": []
+ },
+ "password-vault": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "PuercoPop",
+ "repo": "password-vault",
+ "sha256": "0984pzlfxsgi2060spjxw7livfh8013ffrk4x8m4sjifhniqgjqk",
+ "rev": "e47d99bb092e150472f1989ab3ac5a4752863515"
+ },
+ "recipe": {
+ "sha256": "17i556xwq6yaxv9v18l1abcpbaz6hygsa4vf4b68fc98vcy7396a",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151121.2141",
+ "deps": [
+ "cl-lib",
+ "emacs"
+ ]
+ },
+ "mustache": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "Wilfred",
+ "repo": "mustache.el",
+ "sha256": "1n2ymd92qpvsby6ms0l3kjhdzzc47rri2aiscc6bs07hm4mjpr9q",
+ "rev": "b0ea352813592424164520a49e86c04600242752"
+ },
+ "recipe": {
+ "sha256": "1pjr00xx77mlfw1myxaz6i3y2gbivhbiq5hyjxxbjlfrkm1vxc8g",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20131117.1607",
+ "deps": [
+ "dash",
+ "ht",
+ "s"
+ ]
+ },
+ "dracula-theme": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "zenorocha",
+ "repo": "dracula-theme",
+ "sha256": "1x7hyj5qi9f222zwhwjqr98zzcvqjqfwxlglph8nsbadkv4s8c3v",
+ "rev": "ee065fed126eecdfe33a1a578d9f1e20687d2f3a"
+ },
+ "recipe": {
+ "sha256": "0ayv00wvajia8kbfrqkrkpb3qp3k70qcnqkav7am16p5kbvzp10r",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151109.1045",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "sibilant-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "jbr",
+ "repo": "sibilant-mode",
+ "sha256": "0cjqh6qbbmgxd6zgqnikw6bh8wpjydydkkqs5wcmblpi5awqmnb6",
+ "rev": "bc1b5d8cd597918bafc9b2880ee49024740e54ab"
+ },
+ "recipe": {
+ "sha256": "0jd6dsk93nvwi5yia3623hfc4v6zz4s2n8m1wx9bw8x6kv3h3qbq",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151119.1545",
+ "deps": []
+ },
+ "elixir-yasnippets": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "hisea",
+ "repo": "elixir-yasnippets",
+ "sha256": "1sdq4372i19wdxpdp3347a1rf5zf5w6sa0da6lr511m7ri0lj6hd",
+ "rev": "980ca7626c14ef0573bec0035ec7942796062783"
+ },
+ "recipe": {
+ "sha256": "0927znqd9j91wc51hdwcl2rxb66i1h549nyr1h39r13353gbwk3a",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150417.739",
+ "deps": [
+ "yasnippet"
+ ]
+ },
+ "misc-cmds": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/misc-cmds.el",
+ "sha256": "0akrb0gd4ywrib9bg3q5qjf991gnkggivmg1nsn9snc6il8yjaxq"
+ },
+ "recipe": {
+ "sha256": "0bylb84icddgznmim18fwq1mhh3qz8yh8ch6lpadf9p3h420qgcl",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150602.1427",
+ "deps": []
+ },
+ "drupal-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "arnested",
+ "repo": "drupal-mode",
+ "sha256": "0am3n25qcfjkqfp4wjj1d2zigrmi8hg7p5sy2h91zg3blypqmpsr",
+ "rev": "b4a66092bddc471884b2746d69fd7e8853b4b79f"
+ },
+ "recipe": {
+ "sha256": "14jvk4phq3wcff3yvhygix0c9cpbphh0dvm961i93jpsx7g9awgn",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150830.1427",
+ "deps": [
+ "php-mode"
+ ]
+ },
+ "livid-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "pandeiro",
+ "repo": "livid-mode",
+ "sha256": "178ldzpk8a9m9abn8xlplxn5jgcca71dpkp82bs5g7bsccp3rx6p",
+ "rev": "dfe5212fa64738bc4138bfebf349fbc8bc237c26"
+ },
+ "recipe": {
+ "sha256": "0jy16m6injqznx4gmxzvhys480pclw9g07z4qll2dna37177ww9d",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20131116.744",
+ "deps": [
+ "s",
+ "skewer-mode"
+ ]
+ },
+ "company-flx": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "PythonNut",
+ "repo": "company-flx",
+ "sha256": "0qvscm1r7c1apj8cj8qvrqfiki7xfaxg4hpw2kynbg7v7lynj94j",
+ "rev": "da73fc0d306fdb7335a801353b9798d1e1cfc1c1"
+ },
+ "recipe": {
+ "sha256": "1r4jcfzrhdpclblfrmi4qbl8dnhc2d7d4c1425xnslg7bhwd2vxn",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151020.1301",
+ "deps": [
+ "company",
+ "emacs",
+ "flx"
+ ]
+ },
+ "org-pandoc": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "robtillotson",
+ "repo": "org-pandoc",
+ "sha256": "022qqas919aziq4scs5j1wdbvd0qyw8kkirn2vzfb5k2fjl8z7iq",
+ "rev": "84b5df1f5516704540e19e048e18f437dc090a7d"
+ },
+ "recipe": {
+ "sha256": "1r6j6rkwfv7fv7kp73gh1bdz3y5ffwk5f2wyv4mpxs885cfbsm8v",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20130729.2050",
+ "deps": []
+ },
+ "company-jedi": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "syohex",
+ "repo": "emacs-company-jedi",
+ "sha256": "1ihqapp4dv92794rsgyq0rmhwika60cmradqd4bn9b72ss6plxs1",
+ "rev": "ad49407451c7f28fe137f9c8f3a7fc89e8693a1b"
+ },
+ "recipe": {
+ "sha256": "1krrgrjq967c3j02y0i345yx6w4crisnj1k3bhih6j849fvy3fvj",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151216.2121",
+ "deps": [
+ "cl-lib",
+ "company",
+ "emacs",
+ "jedi-core"
+ ]
+ },
+ "hoa-mode": {
+ "fetch": {
+ "tag": "fetchgit",
+ "url": "https://gitlab.lrde.epita.fr/spot/emacs-modes.git",
+ "sha256": "bf4056192044808554a5dfd537512ec939cbcf628a9becd61736d6409f7e7ce8",
+ "rev": "3c608e15b655d2375c5f81323ac561c7848dc029"
+ },
+ "recipe": {
+ "sha256": "06rfqn7sqvmgpvwhfmk17qqs4q0frfzhm597z3p1q7kys2035kiv",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151203.1050",
+ "deps": []
+ },
+ "termbright-theme": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "bmastenbrook",
+ "repo": "termbright-theme-el",
+ "sha256": "0gfsqpza8phvma5y3ck0n6p197x1i33w39m3c7jmja4ml121n73d",
+ "rev": "bec6ab14336c0611e85f45486276004f16d20607"
+ },
+ "recipe": {
+ "sha256": "14q88qdbnyzxr8sr8i5glj674sb4150b9y6nag0dqrxs629is6xj",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151030.2135",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "jape-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "tanzoniteblack",
+ "repo": "jape-mode",
+ "sha256": "0xmv7gw5xms6nhjcl51cw33yvjgw0c6bpnlyca3195x7g34sg1zj",
+ "rev": "85b9182850707b5d107391f6caee5bd401507a7d"
+ },
+ "recipe": {
+ "sha256": "1gd685r86h0kr36msw81gfgwv7d35hihz6h0jkc6vd22wf6qc3ly",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140903.1006",
+ "deps": []
+ },
+ "list-utils": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "rolandwalker",
+ "repo": "list-utils",
+ "sha256": "0b6pnkhm5hnim2lpari93la08ic8qyh4nv0d7mw0cyfyk8phzzvn",
+ "rev": "36ade42f7cac835d1b8e3dcaf6beeba55ce89832"
+ },
+ "recipe": {
+ "sha256": "0bknprr4jb1d20i9lj2aa17vpg1kqwdyzzwmy1kfydnkpf5scnr3",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140508.1541",
+ "deps": []
+ },
+ "helm-ack": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "syohex",
+ "repo": "emacs-helm-ack",
+ "sha256": "04rvbafa77blps7x7cmlsciys8fgmvhfhq4v51pk8z5q3j1lrgc5",
+ "rev": "889bc225318d14c6e3be80e73b1d9d6fb30e48c3"
+ },
+ "recipe": {
+ "sha256": "1a8sc5gd2g57dl9g18wyydfmihy74yniwhjr27h7vxylnf2g3pni",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20141030.726",
+ "deps": [
+ "cl-lib",
+ "helm"
+ ]
+ },
+ "fasd": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "steckerhalter",
+ "repo": "emacs-fasd",
+ "sha256": "0m2qn3rd16s7ahyw6f9a4jb73sdc8bqp6d03p450yzcn36lw78z5",
+ "rev": "8726a367048054add81ecea7543de00688056735"
+ },
+ "recipe": {
+ "sha256": "0i49z50bpi7fx0dm5jywlndnq9hb0dm5a906k4017w8y7sfpfl6c",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151208.116",
+ "deps": [
+ "grizzl"
+ ]
+ },
+ "packed": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "tarsius",
+ "repo": "packed",
+ "sha256": "0743scd1g5xf3k9fbqv1qd9w421vfxwjlnb0vwix0ypahd83r3db",
+ "rev": "9d77e39c9df29c6224302cb7973b2de7e05f8bd7"
+ },
+ "recipe": {
+ "sha256": "0sw7d2l17bq471i4isrf2xf0z85nqqiciw25whw0c0chdzwzai6z",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150723.638",
+ "deps": [
+ "dash",
+ "emacs"
+ ]
+ },
+ "guide-key": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "kai2nenobu",
+ "repo": "guide-key",
+ "sha256": "14sx5m6fpkm2q8ljkicl1yy1sw003k4rzz9hi7lm1nfqr2l4n6q0",
+ "rev": "9236d287a7272e307fb941237390a96037c8c0a2"
+ },
+ "recipe": {
+ "sha256": "0zjrdvppcg8b2k6hfdj45rswc1ks9xgimcr2yvgpc8prrwk1yjsf",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150108.35",
+ "deps": [
+ "dash",
+ "popwin",
+ "s"
+ ]
+ },
+ "jabber-otr": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "legoscia",
+ "repo": "emacs-jabber-otr",
+ "sha256": "0yv86nadp6dfzl05vhk8c1kahg2pcrhfmd3mnfjrngp7ksac5lyf",
+ "rev": "2692b1530234e0ba9a0d6c1eaa1cbe8679f193c0"
+ },
+ "recipe": {
+ "sha256": "114z5bwhkza03yvfa4nmicaih2jdq83lh6micxjimpddsc8fjgi0",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150918.644",
+ "deps": [
+ "emacs",
+ "jabber"
+ ]
+ },
+ "pip-requirements": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "Wilfred",
+ "repo": "pip-requirements.el",
+ "sha256": "05ix3xwqhnxjvc6cr006hhcgzhrp88jz9x4iswb0sidwysidpgnx",
+ "rev": "f8d3ecaee9090cee267476d4551c905c412d6017"
+ },
+ "recipe": {
+ "sha256": "1wsjfyqga7pzp8gsm5x53qrkn40srairbjpifyrqbi2fpzmwhrnz",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150423.1558",
+ "deps": [
+ "dash"
+ ]
+ },
+ "flx-isearch": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "PythonNut",
+ "repo": "flx-isearch",
+ "sha256": "0ajc3vvgswqk57z7nmcx7npryi8ph9kzvw588bvqcg37a8l3nzh0",
+ "rev": "1c44a76bb6f9af925db6cee4102c635ef8d76318"
+ },
+ "recipe": {
+ "sha256": "14cshv5xb57ch5g3m3hfhawnnabdnbacp4kx40d0pw6jxw677gqd",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151016.2259",
+ "deps": [
+ "cl-lib",
+ "emacs",
+ "flx"
+ ]
+ },
+ "runner": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "thamer",
+ "repo": "runner",
+ "sha256": "17dzr5w12ai2q15yv81gchk360yjs71w74vsgs2fyy2yznvclpq9",
+ "rev": "f5983931899282cf8b10ad197d61860a61cf070d"
+ },
+ "recipe": {
+ "sha256": "09apmk22swj05z77ziij31jj6b3g221qv3mw3mymffzxn5ap2rbx",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151118.416",
+ "deps": []
+ },
+ "cliphist": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "redguardtoo",
+ "repo": "cliphist",
+ "sha256": "11c0zpk8gg70d4xiiyjc7v13knwb2ihbrxnlaxzh3rdg2c12676q",
+ "rev": "c0db2da95fa3d3a58160f465c636989bb4b251d5"
+ },
+ "recipe": {
+ "sha256": "0mg6pznijba3kvp3r57pi54v6mgih2vfwj2kg6qmcy1abrc0xq29",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151012.729",
+ "deps": [
+ "popup"
+ ]
+ },
+ "chinese-fonts-setup": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "tumashu",
+ "repo": "chinese-fonts-setup",
+ "sha256": "08ln66kx73019klzw0rsvlz3cs4ch8wxjfljmkyswjjd179h882c",
+ "rev": "bac9c65f7a78b0c70a6cce9658395d3bc24b02fa"
+ },
+ "recipe": {
+ "sha256": "141ri6a6mnxf7fn17gw48kxk8pvl3khdxkb4pw8brxwrr9rx0xd5",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151208.259",
+ "deps": [
+ "cl-lib"
+ ]
+ },
+ "mark-multiple": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "magnars",
+ "repo": "mark-multiple.el",
+ "sha256": "1x3anvy3hlmydxyfzr1rhaiy502yi1yz3v54sg8wc1w7jrvwaj29",
+ "rev": "f6a53c7c5283d640ae718f4548b0fda78877a375"
+ },
+ "recipe": {
+ "sha256": "179wd9g0smm76k92n7j2vgg8gz5wn9lczrns5ggq2yhbc77j0gn4",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20121118.954",
+ "deps": []
+ },
+ "zossima": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "technomancy",
+ "repo": "zossima",
+ "sha256": "0fgwxw7r3zfv0b7xi8bx7kxff2r5hdw9gxf16kwq04fnh18nhi39",
+ "rev": "991676635c374d2a12714dcf48c1ce2d6f97a375"
+ },
+ "recipe": {
+ "sha256": "11kmnbqv4s8arindg7cxcdhbvfxsckks332wn7aiyb3bjhcgzwjb",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20121123.1835",
+ "deps": [
+ "inf-ruby"
+ ]
+ },
+ "haskell-emacs-text": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "knupfer",
+ "repo": "haskell-emacs",
+ "sha256": "1qgqsy7wnqyzkc3b0wixxb8mapmgpi36dignvf8w2raw9ma3q2n0",
+ "rev": "f242ac4d0312aee5d162be82ae14b7154bb0db19"
+ },
+ "recipe": {
+ "sha256": "1j18fhhra6lv32xrq8jc6l8i56fgn68da81wymcimpmpbp0hl5fy",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150713.916",
+ "deps": [
+ "haskell-emacs"
+ ]
+ },
+ "flycheck-rust": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "flycheck",
+ "repo": "flycheck-rust",
+ "sha256": "080xvb83mcg5snk3avlhppr13srd2lba73298ygy18ziizpv0zig",
+ "rev": "e802d78a509bd8927464d29e1a8ba8ea355f6ea1"
+ },
+ "recipe": {
+ "sha256": "1k0n0y6lbp71v4465dwq7864vp1qqyx7zjz0kssszcpx5gl1596w",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151215.346",
+ "deps": [
+ "dash",
+ "emacs",
+ "flycheck"
+ ]
+ },
+ "ido-sort-mtime": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "pkkm",
+ "repo": "ido-sort-mtime",
+ "sha256": "0w3cr2yf8644i0g8w6r147vi9wanibn41sg7dzws51yb9q0y92vd",
+ "rev": "7b7c77f6856125a59aff99ba0ff8d2b369896b5e"
+ },
+ "recipe": {
+ "sha256": "1dkny9y3x49dv1vjwz78x2qhb6kdq3fa8qh1xkm30jyapvgiwdg2",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20131117.730",
+ "deps": []
+ },
+ "synosaurus": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "rootzlevel",
+ "repo": "synosaurus",
+ "sha256": "1zz9rnwaclr95fpjyabv5rlhk36n2k8f1lzz6yqh964hv8i9562s",
+ "rev": "9be71a2df0c19ddb5e0cb8cba29ded5368a0fcae"
+ },
+ "recipe": {
+ "sha256": "16i2ag4l824h1kq4cy01zf01zrms4v6ldwlsixwfyb1mh97lqljg",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151119.1249",
+ "deps": [
+ "cl-lib"
+ ]
+ },
+ "php-boris": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "tomterl",
+ "repo": "php-boris",
+ "sha256": "10lzbyr7z95mynz885k75n2ibsy92dh3mg3s5m69n03jnf9gv1jy",
+ "rev": "d2caaba8f42375b47389240c647c03c2a305d3fb"
+ },
+ "recipe": {
+ "sha256": "19yfbrlfqikix2lnnlbpzm6yakjhl84ix0zra2ycpvgg2pl88r0g",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20130527.321",
+ "deps": []
+ },
+ "flycheck-color-mode-line": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "flycheck",
+ "repo": "flycheck-color-mode-line",
+ "sha256": "11xc08xld758xx9myqjsiqz8vk3gh4d9c4yswswvky6mrx34c0y5",
+ "rev": "c85319f8d2579e770c9060bfef11bedc1370d8be"
+ },
+ "recipe": {
+ "sha256": "0hw19nsh5h2l8qbp7brqmml2fhs8a0x850vlvq3qfd7z248gvhrq",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20131125.2338",
+ "deps": [
+ "dash",
+ "emacs",
+ "flycheck"
+ ]
+ },
+ "yaml-tomato": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "RadekMolenda",
+ "repo": "yaml-tomato",
+ "sha256": "1xgqqgg4q3hrhiap8gmr8iifdr1mg4dl0j236b6alhrgmykbhimy",
+ "rev": "f9df1c9bdfcec629b03031b2d2032f9dc533cb14"
+ },
+ "recipe": {
+ "sha256": "0bja213l6mvh8ap5d04x8dik1z9px5jr52zpw1py7shw5asvp5s2",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151123.153",
+ "deps": [
+ "s"
+ ]
+ },
+ "ph": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "gromnitsky",
+ "repo": "ph",
+ "sha256": "1qxsc5wyk8l9gkgmqy3mzwxdhji1ljqw9s1jfxkax7fyv4d1v31p",
+ "rev": "ed45c371642e313810b56c45af08fdfbd71a7dfe"
+ },
+ "recipe": {
+ "sha256": "0azx4cpfdn01yrqyn0q1gg9z7w0h0rn7zl39v3dx6yidd76ysh0l",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20130312.1337",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "auto-complete-auctex": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "monsanto",
+ "repo": "auto-complete-auctex",
+ "sha256": "1wri8q5llpy1q1h4ac4kjnnkgj6fby8i9vrpr6mrb13d4gnk4gr2",
+ "rev": "855633f668bcc4b9408396742a7cb84e0c4a2f77"
+ },
+ "recipe": {
+ "sha256": "00npvryds5wd3d5a13r9prlvw6vvjlag8d32x5xf9bfmmvs0fgqh",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140223.1158",
+ "deps": [
+ "auto-complete",
+ "yasnippet"
+ ]
+ },
+ "py-smart-operator": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "rmuslimov",
+ "repo": "py-smart-operator",
+ "sha256": "05gi17n488r2n6x33nj4a23ci89c9smsbanmap4i302dy0mnmwgd",
+ "rev": "be4e32572d4128143f46e1874eaa6f3da94fdffe"
+ },
+ "recipe": {
+ "sha256": "1n0bdr9z2s1ikhmfz642k94gjzb88anwlb61mh27ay8wqdgm74c4",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150824.2110",
+ "deps": [
+ "s"
+ ]
+ },
+ "es-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "dakrone",
+ "repo": "es-mode",
+ "sha256": "1cc2k52vq2m4hzmrpb51xd5pjnxzv3iy8rf2y02c6f3a5xpilj9k",
+ "rev": "c5dd41e453e83da2e841894d9a51598f03318f7c"
+ },
+ "recipe": {
+ "sha256": "1541c7d8gbi4mgxwk886hgsxhq7bfx8is7hjjg80sfn40z6kdwcp",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150916.2233",
+ "deps": [
+ "dash"
+ ]
+ },
+ "flymake-ruby": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "purcell",
+ "repo": "flymake-ruby",
+ "sha256": "13yk9cncp3zw6d7zkgdpgprpw6wrirk2gxgjvkr15dwcyx1g3109",
+ "rev": "8dc4ca44ec2acfaab25f5501fca1bd687fae94f2"
+ },
+ "recipe": {
+ "sha256": "1shr6d03vx85nmyxnysglzlc1pz0zy3n28nrcmxqgdm02g197bzr",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20121104.1259",
+ "deps": [
+ "flymake-easy"
+ ]
+ },
+ "projector": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "waymondo",
+ "repo": "projector.el",
+ "sha256": "0y8zbywin99nhcrs5nzx4d179r84rdy39admajpi0j76v0b9pwl3",
+ "rev": "fd9553a27d665889646b881b64a8f1577b47882b"
+ },
+ "recipe": {
+ "sha256": "0hrinplk607wcc2ibn05pl8ghikv9f3zvymncp6nz95jw9brdapf",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151201.1441",
+ "deps": [
+ "alert",
+ "cl-lib",
+ "projectile"
+ ]
+ },
+ "font-lock-studio": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "Lindydancer",
+ "repo": "font-lock-studio",
+ "sha256": "04n32rgdz7m24jji8p0j42zmf2r60sdbbr4mkr6435fqyvmdd20k",
+ "rev": "35d510e4b16939621d7200bf67021f773cdb4ae5"
+ },
+ "recipe": {
+ "sha256": "0swwbfaypc78cg4ak24cc92kgxmr1x9vcpaw3jz4zgpm2wzbgmrq",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20141201.1858",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "commander": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "rejeep",
+ "repo": "commander.el",
+ "sha256": "06y7ika4781gkh94ygdaz7a760s7ahrma6af6n7cqhgjyikz7lg1",
+ "rev": "2a4f1fd6cf9aa1798559dbdd5fbd9dcd327cd859"
+ },
+ "recipe": {
+ "sha256": "17y0hg6a90hflgwn24ww23qmvc1alzivpipca8zvpf0nih4fl393",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140120.1252",
+ "deps": [
+ "cl-lib",
+ "dash",
+ "f",
+ "s"
+ ]
+ },
+ "olivetti": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "rnkn",
+ "repo": "olivetti",
+ "sha256": "1rj97yg2n9fi80qlb4z6iahqid3yinlhx9mrbh6gi1niz58ws69h",
+ "rev": "26f3db0bc37324444e41a1d4797056b61b56b004"
+ },
+ "recipe": {
+ "sha256": "0fkvw2y8r4ww2ar9505xls44j0rcrxc884p5srf1q47011v69mhd",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151117.2129",
+ "deps": []
+ },
+ "gmpl-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "cute-jumper",
+ "repo": "gmpl-mode",
+ "sha256": "08d6j5wws2ngngf3p31ic0lrsrp9i9lkpr3nxgmiiadm617x8hv4",
+ "rev": "c4cf8896aef89b4c08c0c8764c9f2330fc987f9e"
+ },
+ "recipe": {
+ "sha256": "1f60xim8h85jmqpvgfg402ff8mjd66gla8fa0cwi7l18ijnjblpz",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151116.1349",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "helm-ag-r": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "yuutayamada",
+ "repo": "helm-ag-r",
+ "sha256": "1rifdkhzvf7xd2npban0i8v3rjcji69063dw9rs1d32w4n7fzlfa",
+ "rev": "67de4ebafe9b088db950eefa5ef590a6d78b4ac8"
+ },
+ "recipe": {
+ "sha256": "0ivh7f021lbmbaj6gs4y8m99s63js57w04q7cwx7v4i32cpas7r9",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20131123.931",
+ "deps": [
+ "helm"
+ ]
+ },
+ "back-button": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "rolandwalker",
+ "repo": "back-button",
+ "sha256": "0rj6a8rdwa0h2ckz7h4d91hnxqcin98l4ikbfyak2whfb47z909l",
+ "rev": "98d92984a740acd1547bd7ed05cca0affdb21c3e"
+ },
+ "recipe": {
+ "sha256": "0vyhvm445d0rs14j5xi419akk5nd88d4hvm4251z62fmnvs50j85",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150804.1504",
+ "deps": [
+ "list-utils",
+ "nav-flash",
+ "pcache",
+ "persistent-soft",
+ "smartrep",
+ "ucs-utils"
+ ]
+ },
+ "evil-indent-plus": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "TheBB",
+ "repo": "evil-indent-plus",
+ "sha256": "1g6r1ydscwjvmhh1zg4q3nap4avk8lb9msdqrh7dff6pla0r2qs6",
+ "rev": "0c7501e6efed661242c3a20e0a6c79a6455c2c40"
+ },
+ "recipe": {
+ "sha256": "15vnvch0qsaram22d44k617bqhr9rrf8qc86sf20yvdyy3gi5j12",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151109.1306",
+ "deps": [
+ "cl-lib",
+ "evil"
+ ]
+ },
+ "flymake-puppet": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "benprew",
+ "repo": "flymake-puppet",
+ "sha256": "1r3yjqxig2j7l50l787qsi96mkvjcgqll9vb4ci51j7b43d53c5m",
+ "rev": "fc4cd25aeac37ed5722bc586d5350fd06ee3067c"
+ },
+ "recipe": {
+ "sha256": "1izq6s33p74dy4wzfnjii8wjs723bm5ggl0w6hkvzgbmyjc01hxv",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20141006.2055",
+ "deps": [
+ "flymake-easy"
+ ]
+ },
+ "nclip": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "maio",
+ "repo": "nclip.el",
+ "sha256": "178gjv7kq97p9i4naxql7xabvmchw5x8idkpyjqqky3b24v5wkis",
+ "rev": "af88e38b1f04be02bf2e57affc662dbd0f828e67"
+ },
+ "recipe": {
+ "sha256": "016jp1rqrf1baxlxbi3476m88a0l3r405dh6pmly519wm2k8pipw",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20130617.1515",
+ "deps": []
+ },
+ "tango-2-theme": {
+ "fetch": {
+ "tag": "fetchgit",
+ "url": "https://gist.github.com/2024464.git",
+ "sha256": "7342a670559cd296dba4b676607641a05d6203255951b17473ccdda4e35713d3",
+ "rev": "64e44c98e41ebbe3b827d54280e3b9615787daaa"
+ },
+ "recipe": {
+ "sha256": "1a9qmz99h99gpd0sxqb71c08wr8pm3bzsg3p4cvf3vcirvav9lq6",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20120312.1525",
+ "deps": []
+ },
+ "ox-twbs": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "marsmining",
+ "repo": "ox-twbs",
+ "sha256": "0pms1xj7kkmk7c6vd9xjc2bggdji3ipbphqrxddarz3pck2ji9vr",
+ "rev": "20b97120eed058a03312157c6646c4569c0168ac"
+ },
+ "recipe": {
+ "sha256": "15csgnph5wh2dvcc2dnvrlm7whh428rq8smqji1509ib7aw9y5mx",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151025.1248",
+ "deps": []
+ },
+ "mediawiki": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "hexmode",
+ "repo": "mediawiki-el",
+ "sha256": "1cdr5p9x9bxnfy9mgz7l70zfzfwcjdhydw0jhdvs6qlqaqmm4qqq",
+ "rev": "47875f753599e309f1c3da5beb4805487ab75636"
+ },
+ "recipe": {
+ "sha256": "17cbrzfdp6jbbf74mn2fi1cwv7d1hvdbw9j84p43jzscnaa5ikx6",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150711.1934",
+ "deps": []
+ },
+ "jknav": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "aculich",
+ "repo": "jknav.el",
+ "sha256": "1idby2rjkslw85593qd4zy6an9zz71yzwqc6rck57r54xyfs8mij",
+ "rev": "861245715c728503dad6573278fdd75c271dbf8b"
+ },
+ "recipe": {
+ "sha256": "0c0a8plqrlsw8lhmyj9c1lfkj2b48cjkbw9pna8qcizvwgym9089",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20121006.1525",
+ "deps": []
+ },
+ "oldlace-theme": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "mswift42",
+ "repo": "oldlace-theme",
+ "sha256": "0y9fxrsxp1158fyjp4f69r7g2s7b6nbxlsmsb8clwqc8pmmg2z82",
+ "rev": "5c6f437203b0783b36a7aff4a578de4a0c8c4ee6"
+ },
+ "recipe": {
+ "sha256": "1pxiqqh5x4wsayqgwplzvsbalbj44zvby7x0pijdvwcnsh74znj8",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150705.800",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "0blayout": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "etu",
+ "repo": "0blayout-mode",
+ "sha256": "1xigpz2aswlmpcsc1f7gfakyw7041pbyl9zfd8nz38iq036n5b96",
+ "rev": "e256da71d4e0f126a0fd8a9b8fb77f54931f4dfc"
+ },
+ "recipe": {
+ "sha256": "027k85h34998i8vmbg2hi4q1m4f7jfva5jm38k0g9m1db700gk92",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151021.549",
+ "deps": []
+ },
+ "afternoon-theme": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "osener",
+ "repo": "emacs-afternoon-theme",
+ "sha256": "19d5d6qs5nwmpf26rsb86ranb5p4236qp7p2b4i88cimcmzspylb",
+ "rev": "89b1d778a1f8b385775c122f2bd1c62f0fbf931a"
+ },
+ "recipe": {
+ "sha256": "13xgdw8px58sxpl7nyhkcdxwqdpp13i8wghvlb3l4471plw3vqgj",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140104.1259",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "helm-pydoc": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "syohex",
+ "repo": "emacs-helm-pydoc",
+ "sha256": "1hlbyw6jvh6pm3ivmhd6qvs9j7km322fki9g4yd4qw7w15a3wkyy",
+ "rev": "d4f409127bc77e7c79dcc87320b2db10466caed2"
+ },
+ "recipe": {
+ "sha256": "0cnbhjw951f8sci63cvzcc65d0ffdx3rb8l1g38qql5rzkam48fn",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151008.924",
+ "deps": [
+ "cl-lib",
+ "helm-core"
+ ]
+ },
+ "visual-regexp-steroids": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "benma",
+ "repo": "visual-regexp-steroids.el",
+ "sha256": "03jggsnz5j0c36inxqa16vrdwlzn3wrniyl2i9b8c5bx7az7210m",
+ "rev": "2a50710dea5be872b31ea56f74b4cd57d6e61461"
+ },
+ "recipe": {
+ "sha256": "1xkrzyyll8wmb67m75lfm9k8qcm068km8r1k8hcsadpkd01bx1lr",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150411.616",
+ "deps": [
+ "visual-regexp"
+ ]
+ },
+ "org-pdfview": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "markus1189",
+ "repo": "org-pdfview",
+ "sha256": "07xcibpqkr0kmwqvz9sfcd3bizscksvc7jw48zg6k79hb90vp1i0",
+ "rev": "8f66629e883e0d490584bbf4610cc91938694889"
+ },
+ "recipe": {
+ "sha256": "1z4gb5lw7ngphixw06b5484kwlxbc098w2xshzml5sywr16a4iab",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151125.1544",
+ "deps": [
+ "org",
+ "pdf-tools"
+ ]
+ },
+ "company-edbi": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "proofit404",
+ "repo": "company-edbi",
+ "sha256": "1fymxqdch9qnn68h3x4gq6f5fq9i4z6blsqyry2xmdvfrp407160",
+ "rev": "38758829b7fd9c1bb152b4d54b5317a20a96e411"
+ },
+ "recipe": {
+ "sha256": "067ff1xdyqy4qzgk5pmqf4kksfjk1glkrslcj3rk4zmhcalwrfrm",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150525.414",
+ "deps": [
+ "cl-lib",
+ "company",
+ "edbi",
+ "s"
+ ]
+ },
+ "flyparens": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "jiyoo",
+ "repo": "flyparens",
+ "sha256": "07hy1kyw4cbxydmhp4scsy3dcbk2s50rmdp8rch1vbcjk5lj4mvb",
+ "rev": "af9b8cfd647d0e5f97684d613dc2eea7cfc19398"
+ },
+ "recipe": {
+ "sha256": "1mvbfq062qj8vmgzk6rymg3idlfc1makfp1scmjvpw98h30j2a0a",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140723.1346",
+ "deps": []
+ },
+ "aozora-view": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "kawabata",
+ "repo": "aozora-view",
+ "sha256": "0528z3axjmplg2fdbv4jxgy1p39vr4rnsm4a3ps2fanf8bwsyx3l",
+ "rev": "b0390616d19e45f15f9a2f5d5688274831e721fd"
+ },
+ "recipe": {
+ "sha256": "0pd2574a6dkhrfr0jf5gvv34ganp6ddylyb6cfpg2d4znwbc2r2w",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140310.817",
+ "deps": []
+ },
+ "tinkerer": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "yyr",
+ "repo": "tinkerer.el",
+ "sha256": "0rf177kr0qfhg8g5xrpi405dhp2va1yk170zm3f8hghi2575ciy2",
+ "rev": "1125780d1fba0330435fcbe943716032ed543a57"
+ },
+ "recipe": {
+ "sha256": "0qh6pzjn98jlpxcm9zf25ga0y3d3v53275a9zgswyhz33mafd7pd",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150220.49",
+ "deps": [
+ "s"
+ ]
+ },
+ "readability": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "ShingoFukuyama",
+ "repo": "emacs-readability",
+ "sha256": "0kg18ybgwcxhv5fiya5d3wn5w9si4914q946gjannk67d6jcq08g",
+ "rev": "6c220ab8e0ca63946574ed892add5c8fd14002ce"
+ },
+ "recipe": {
+ "sha256": "0kg91ma9k3p5ps467jjz2lw13rv1l8ivwc3zpg6c1rl474ds0qqv",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140715.1927",
+ "deps": [
+ "emacs",
+ "oauth",
+ "ov"
+ ]
+ },
+ "pushbullet": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "theanalyst",
+ "repo": "revolver",
+ "sha256": "03ivg3ddhy5zh410wgwxa17m98wywqhk62jgijhjd00b6l8i4aym",
+ "rev": "73c59a0f1dc04875b3e5a2c8afbc26c32128e445"
+ },
+ "recipe": {
+ "sha256": "1swzl25rcw7anl7q099qh14yhnwlbn3m20ib9kis0l1rv59kkarl",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140809.732",
+ "deps": [
+ "grapnel",
+ "json"
+ ]
+ },
+ "git-blame": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "tsgates",
+ "repo": "git-emacs",
+ "sha256": "0g839pzmipjlv32r0gh166jn3na5d0wh2w1sia2k4yx1w0ch1bsx",
+ "rev": "5c7e8c546c7e99a2424d484b253c1581bfd7ff7d"
+ },
+ "recipe": {
+ "sha256": "0glmnj77vya8ivjin4qja7lis67wyibzy9k6z8b54z7mqf9ikx06",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20110509.1126",
+ "deps": []
+ },
+ "io-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "superbobry",
+ "repo": "io-mode",
+ "sha256": "10xpxmbzhmi0lmby2rpmxrbr3qf1vlbif2inmfsvkj85wyh8a7rp",
+ "rev": "79f2de13d8a448892266da26642525747d048aa8"
+ },
+ "recipe": {
+ "sha256": "1fpiml7lvbl4s2xw4wk2y10iifvfza24kd9j8qvi1bgd85qkx42q",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140814.521",
+ "deps": []
+ },
+ "command-log-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "lewang",
+ "repo": "command-log-mode",
+ "sha256": "0fnyksbynlmmvl39f4is0xjp6b13yshfazigbksv012hxp0whslm",
+ "rev": "7408c0cb96709b8449f25a58a2203ed90bb5b850"
+ },
+ "recipe": {
+ "sha256": "11jq6055bvpwvrm0b8cgab25wa2mcyylpz4j56h1nqj7cnhb6ppj",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150615.916",
+ "deps": []
+ },
+ "vline": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/vline.el",
+ "sha256": "1ys6928fgk8mswa4gv10cxggir8acck27g78cw1z3pdz5gakbgnj"
+ },
+ "recipe": {
+ "sha256": "0p59xhyrv7fmcn3qi51sp8v9v2y71ray2s756zbhzgzg63h3nbjp",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20120108.645",
+ "deps": []
+ },
+ "helm-wordnet": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "raghavgautam",
+ "repo": "helm-wordnet",
+ "sha256": "0jaj513nnmbmlj8if84k5k0k7a6b24hzpzi0kbzj5vbr010cwnjd",
+ "rev": "71fe718cccdb172614b5e2e55192301a44f6d7d4"
+ },
+ "recipe": {
+ "sha256": "0di8gxsa9r8mzja4akhz0wpgrhlidqyn1s1ix5szplwxklwf2r2f",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150921.1633",
+ "deps": [
+ "cl-lib",
+ "emacs",
+ "helm"
+ ]
+ },
+ "artbollocks-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "sachac",
+ "repo": "artbollocks-mode",
+ "sha256": "133c1n4ra7z3vb6y47400y71a6ac19pyji0bgd4kr9fcbx0flx91",
+ "rev": "583c7048a1b09cd79554423d5115f5ddd129d190"
+ },
+ "recipe": {
+ "sha256": "0dlnxicn6nzyiz44y92pbl4nzr9jxfb9a99wacjrwq2ahdrwhhjp",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20141212.1532",
+ "deps": []
+ },
+ "firefox-controller": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "cute-jumper",
+ "repo": "emacs-firefox-controller",
+ "sha256": "0pyk9qg7rb69bcbkbc6vf47ziyyxz9gapvkisi5h9kfx3frbix04",
+ "rev": "aeed30509fefc78463531b9e006a795d868d4e74"
+ },
+ "recipe": {
+ "sha256": "03y96b3l75w9al8ylijnlb8pcfkwddyfnh8xwig1b6k08zxfgal6",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151212.1440",
+ "deps": [
+ "cl-lib",
+ "moz",
+ "popwin"
+ ]
+ },
+ "org-elisp-help": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "tarsius",
+ "repo": "org-elisp-help",
+ "sha256": "0va8wm319vvw7w0j102mx656icy3fi4mz3b6bxira6z6xl9b92s0",
+ "rev": "df319441e528a0cad42d29e71fc3547a61dde1c5"
+ },
+ "recipe": {
+ "sha256": "0a4wvz52hkcw5nrml3h1yp8w97vg5jw22wnpfbb827zh7iwb259h",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20130423.1745",
+ "deps": [
+ "cl-lib",
+ "org"
+ ]
+ },
+ "pinboard-api": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "danieroux",
+ "repo": "pinboard-api-el",
+ "sha256": "0wy9c37g6m5khchlp8qvfnjgkwq4r38659adcm5prvzjgzqhlfja",
+ "rev": "b7b5214d0c35178f8dca08cf22d6ef3c21f0fce4"
+ },
+ "recipe": {
+ "sha256": "0yzvgnpkj2fhl01id36nc5pj8vyb05bllraiz3lwwcc66y98h9n0",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140324.648",
+ "deps": []
+ },
+ "elpy": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "jorgenschaefer",
+ "repo": "elpy",
+ "sha256": "0kzara7r6gvgf3p06xswxbhq01dbhmwx1pldx3mmv7knvm2mdxq8",
+ "rev": "96fa05708629600fd79c4b0fcafe63ec97f5ce07"
+ },
+ "recipe": {
+ "sha256": "051irp7k0cp1hqp3hzrmapllf2iim7cq0iz38489g4fkh2ybk709",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151101.601",
+ "deps": [
+ "company",
+ "find-file-in-project",
+ "highlight-indentation",
+ "pyvenv",
+ "yasnippet"
+ ]
+ },
+ "fcitx": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "cute-jumper",
+ "repo": "fcitx.el",
+ "sha256": "1q1ka1k6xca30lr7sl0dkiv1rcfmmvfh0igwrk3mhw79bxr9pyzz",
+ "rev": "5c4ec4181226b9846bc227e20c61645280fc26c1"
+ },
+ "recipe": {
+ "sha256": "0a8wd588c26p3czfp5hn2n46f2vwyg5v301sv0y07b55b1i3ynmx",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151103.901",
+ "deps": []
+ },
+ "smart-window": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "dryman",
+ "repo": "smart-window.el",
+ "sha256": "15834lnh7dq9kz31k06ifpnc0vz86rycz0ryildi5qd2nb7s3lw9",
+ "rev": "a87e0d2007de40033deee39496f791f4b047f138"
+ },
+ "recipe": {
+ "sha256": "1x1ncldl9njil9hhvzj5ac1l5aiyfm0f7j0d7lw8ady7xx2cy26m",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20130214.1342",
+ "deps": []
+ },
+ "avy-zap": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "cute-jumper",
+ "repo": "avy-zap",
+ "sha256": "0s7lhls6gs055kw0893nkb9myv7m2q2p251lq9wh2r3bmia9d6pg",
+ "rev": "ee3a2ad9911384e21537bc641a2f794dd192bbe8"
+ },
+ "recipe": {
+ "sha256": "1zbkf21ggrmg1w0xaw40i3swgc1g4fz0j8p0r9djm9j120d94zkx",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151211.1348",
+ "deps": [
+ "avy"
+ ]
+ },
+ "inf-ruby": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "nonsequitur",
+ "repo": "inf-ruby",
+ "sha256": "0rg7md4b8chqfh565l9dhsjyiiqrbhm2xcaf88h2zian2rp0p1wh",
+ "rev": "24c08fca2a18b76a3a200c79bdb5e41b50e04296"
+ },
+ "recipe": {
+ "sha256": "02f01vwzr6j9iqcdns4l579bhia99sw8hwdqfwqjs9gk3xampfpp",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151104.1437",
+ "deps": []
+ },
+ "confluence": {
+ "fetch": {
+ "tag": "fetchsvn",
+ "url": "http://confluence-el.googlecode.com/svn/trunk/",
+ "sha256": "1l6970ng046hw2izzb15cbbbf83l6m8c9mvic8fzjixfi3g1dl55",
+ "rev": "170"
+ },
+ "recipe": {
+ "sha256": "003lykwd3ya0xwlahmm35nx9p6mk8vylq57yxrmgdcc64630bdpf",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140410.1923",
+ "deps": [
+ "xml-rpc"
+ ]
+ },
+ "tea-time": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "krick",
+ "repo": "tea-time",
+ "sha256": "0b4cwkwkc4i8lc4j30xc9d6xskm3gqrc2dij60ya75h92aj0lj40",
+ "rev": "1f6cf0bdd27c5eb3508989c5095427781f858eca"
+ },
+ "recipe": {
+ "sha256": "18fsbh78c5408zg5bk44gxdynp6kn8253xdg7ap2pr3mjknq9kld",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20120331.320",
+ "deps": []
+ },
+ "dictionary": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "myrkr",
+ "repo": "dictionary-el",
+ "sha256": "0gz03hji6mcrzvxd74qim63g159sc8ggb6hq3x42x5l01g980fbm",
+ "rev": "a23b8f4a422d0de69a006ed010eff5795319db98"
+ },
+ "recipe": {
+ "sha256": "0zr9sm5rmr0frxdr0za72wiffip9391fn9dm5y5x0aj1z4c1n28w",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140717.2229",
+ "deps": [
+ "connection",
+ "link"
+ ]
+ },
+ "cargo": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "attichacker",
+ "repo": "cargo.el",
+ "sha256": "1khdwj443rw6l47r8j49a7wfg5qfdn9n8viz1fbk56v33kgj2lav",
+ "rev": "1b28b29d641a52d23861f241c54c098d6f070e76"
+ },
+ "recipe": {
+ "sha256": "0kr8mj3i4fd2x6ymaikzmj1m4q0s4lfvnafcpi7jch0za0qixjcq",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151017.1620",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "helm-flymake": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "tam17aki",
+ "repo": "helm-flymake",
+ "sha256": "1liaid4l4x8sb133lj944gwwpqngsf8hzibdwyfdmsi4m4abh73h",
+ "rev": "afb1089d6a0dc9a63bc2aa1df19d80830cc33c6a"
+ },
+ "recipe": {
+ "sha256": "0h87yd56nhxpahrcpk6hin142hzv3sdr5bvz0injbv8a2lwnny3b",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20130717.44",
+ "deps": [
+ "helm"
+ ]
+ },
+ "scratch-ext": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "kyanagi",
+ "repo": "scratch-ext-el",
+ "sha256": "0ng0by647r49mia7vmjqc97gwlwgs8kmaz0lw2y54jdz8m0bbngp",
+ "rev": "388c53cddd0466b451264894667ed64a6947ad67"
+ },
+ "recipe": {
+ "sha256": "031wxz10k1q4bi5hywhcw1vzi41d5pv5hc09x8jk9s5nzyssvc0y",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140103.2316",
+ "deps": []
+ },
+ "backup-each-save": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/backup-each-save.el",
+ "sha256": "0b9vvi2m0fdv36wj8mvawl951gjmg3pypg08a8n6rzn3rwg0fwz7"
+ },
+ "recipe": {
+ "sha256": "1fv9sf6vkjyv93vil4l9hjm2fg73zlxbnif0xfm3kpmva9xin337",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20130704.932",
+ "deps": []
+ },
+ "cl-lib-highlight": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "skeeto",
+ "repo": "cl-lib-highlight",
+ "sha256": "1mc8kayw8fmvpl0z09v6i68s2lharlwpzff0cvcsfn0an2imj2d0",
+ "rev": "fd1b308e6e989791d1df14438efa6b77d20f7c7e"
+ },
+ "recipe": {
+ "sha256": "13qdrvpxq928p27b1xdcbsscyhqk042rwfa17037gp9h02fd42j8",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140127.1512",
+ "deps": [
+ "cl-lib"
+ ]
+ },
+ "hlint-refactor": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "mpickering",
+ "repo": "hlint-refactor-mode",
+ "sha256": "02mkfrs55d32948x739f94v35343gw6a0f7fknbcigbz56mzsvsp",
+ "rev": "695d39b3434a5e35fab70aa5251f824ffaa30d6b"
+ },
+ "recipe": {
+ "sha256": "1311z6y7ycwx0mj67bya7a39j5hiypg72y6yg93dhgpk23wk7frq",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151124.1441",
+ "deps": []
+ },
+ "ob-http": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "zweifisch",
+ "repo": "ob-http",
+ "sha256": "1yv1i646ll9wnmarcwcmx3nvscq3sv22rmnphvqcr0whrd9vb7rb",
+ "rev": "d9af67c6726c50447d8cf21b9c1c25a3a07dc0ce"
+ },
+ "recipe": {
+ "sha256": "0b7ghz9pqbyn3b52cpmnwa2wnd4svj23p6gc48ybwzwiid42wiss",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151128.430",
+ "deps": [
+ "cl-lib",
+ "s"
+ ]
+ },
+ "wiki-nav": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "rolandwalker",
+ "repo": "button-lock",
+ "sha256": "06qjvybf65ffrcnhhbqs333lg51fawaxnva3jvdg7zbrsv4m9acl",
+ "rev": "f9082feb329432fcf2ac49a95e64bed9fda24d58"
+ },
+ "recipe": {
+ "sha256": "19mabz0y3fcqsm68ijwwbbqylxgp71anc0a31zgc1blha9jivvwy",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150223.754",
+ "deps": [
+ "button-lock",
+ "nav-flash"
+ ]
+ },
+ "ac-clang": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "yaruopooner",
+ "repo": "ac-clang",
+ "sha256": "0n9zagwh3rz7b76irj4ya8wskffns9v1c1pivsdqgpd76spvl7n5",
+ "rev": "6b3365063ddfb88d5527618217bb56166349ad4e"
+ },
+ "recipe": {
+ "sha256": "070s06xhkzaqfc3j8c4i44rks6gn8z66lwd54j17p8d91x3qjpr4",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150906.1208",
+ "deps": [
+ "auto-complete",
+ "cl-lib",
+ "emacs",
+ "pos-tip",
+ "yasnippet"
+ ]
+ },
+ "ert-modeline": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "chrisbarrett",
+ "repo": "ert-modeline",
+ "sha256": "08yfq3qzscxvzyxvyvdqpkrm787278yhkdd9prbvrgjj80p8n7vq",
+ "rev": "e7be2b81191afb437b70368a819770f8f750e4af"
+ },
+ "recipe": {
+ "sha256": "06pc50q9ggin20cbfafxd53x35ac3kh85dap0nbws7514f473m7b",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140115.415",
+ "deps": [
+ "dash",
+ "emacs",
+ "projectile",
+ "s"
+ ]
+ },
+ "pc-bufsw": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "ibukanov",
+ "repo": "pc-bufsw",
+ "sha256": "1jj5h92qakrn9d5d88dvl43b7ppw96rm11hqg3791i6k48nx1d1m",
+ "rev": "a76120bca9821c355069f135b4e6978351b66bc2"
+ },
+ "recipe": {
+ "sha256": "01d7735ininlsjkql7dy57irgwgk4k9br8bl18wq51vgkg90i5k5",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150923.213",
+ "deps": []
+ },
+ "stekene-theme": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "Fanael",
+ "repo": "stekene-theme",
+ "sha256": "0w1qb8r6nrxi5hbf8l4247yqq754zfbxz64pqqcnw43cxk0qd4j3",
+ "rev": "45b643a5af7dac70997d6a60e69c2f2473337d98"
+ },
+ "recipe": {
+ "sha256": "0v1kwlnrqaygzaz376a5njg9kv4yf5l35k87xga4wdd2mxfwrmf1",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20141108.1411",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "git-annex": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "jwiegley",
+ "repo": "git-annex-el",
+ "sha256": "0yxmrcrvl9pbwhd7w4vnrv2jqyskzvqp17sr3vzjlvv694jd4dms",
+ "rev": "a37648ae83783bb48221ef6299aa4ef5ceccf51b"
+ },
+ "recipe": {
+ "sha256": "0194y24vq1w6m2cjgqgx9dqp99cq8y9licyry2zxa5brbrsxi94l",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20131119.1645",
+ "deps": []
+ },
+ "checkbox": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "camdez",
+ "repo": "checkbox.el",
+ "sha256": "0660ix17ksxy5a5v8yqy7adr9d4bs6p1mnkc6lpyw96k4pn62h45",
+ "rev": "335afa4404adf72973195a580458927004664d98"
+ },
+ "recipe": {
+ "sha256": "17gw6w1m6bs3sfx8nqa8nzdq26m8w85a0fca5qw3bmd18bcmknqa",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20141116.1858",
+ "deps": [
+ "cl-lib",
+ "emacs"
+ ]
+ },
+ "color-theme-modern": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "emacs-jp",
+ "repo": "replace-colorthemes",
+ "sha256": "0q9ss11i31iiv0vn8238922fkic7j6d02f9ykbip04sm46p5k6kj",
+ "rev": "0a804c611da57b2d7c02c95f26eb8a7fc305f159"
+ },
+ "recipe": {
+ "sha256": "0f662ham430fgxpqw96zcl1whcm28cv710g6wvg4fma60sblaxcm",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151109.2106",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "jtags": {
+ "fetch": {
+ "tag": "fetchgit",
+ "url": "git://git.code.sf.net/p/jtags/code",
+ "sha256": "4fce3cbd26e010869736aae584753dca0b2201d31efaa8e52ee04b885edd859a",
+ "rev": "89eca29499dd9516e6d70456dcd9f163777c786d"
+ },
+ "recipe": {
+ "sha256": "0in5ybgwmghlpa5d7wz0477ba6n14f1mwp5dxcl4y11f1lsq041r",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20111208.1222",
+ "deps": []
+ },
+ "opam": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "lunaryorn",
+ "repo": "opam.el",
+ "sha256": "1yqrp9icci5snp1485wb6y8mr2hjp9006ahch58lvmnq98bn7j45",
+ "rev": "4d589de5765728f56af7078fae328b6792de8600"
+ },
+ "recipe": {
+ "sha256": "004r93nn1ranvxkcc0y5m3p8gh4axgghgnsvim38nc1sqda5h6xa",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150719.720",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "jira-markup-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "mnuessler",
+ "repo": "jira-markup-mode",
+ "sha256": "1ack7dmapva3wc2gm22prd5wd3cmq19sl4xl9f04a3nk2msr6ksx",
+ "rev": "4fc534c47df26a2f402bf835ebe2ed89474a4062"
+ },
+ "recipe": {
+ "sha256": "0f3sw41b4wl0aajq0ap66942rb2015d9iks0ss016jgzashw7zsp",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150601.1609",
+ "deps": []
+ },
+ "number": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "chrisdone",
+ "repo": "number",
+ "sha256": "045m83rdqryjpqh6y9s6x0yf9fw9xrwmxbm4qgg8ka164x9szv0n",
+ "rev": "f483365c330392b3e9362481b145acf3db040baf"
+ },
+ "recipe": {
+ "sha256": "1nwcdv5ibirxx3sqadh6mnpj40ni3wna7wnjh343mx38dk2dzncf",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20141127.1204",
+ "deps": []
+ },
+ "org-drill-table": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "chrisbarrett",
+ "repo": "org-drill-table",
+ "sha256": "0m5c9x0vazciq6czpg5y9nr5yzjf6nl0qp5cfajv49cw2h0cwqyy",
+ "rev": "d7b5b3743ac04f8cb1087c5c049c0520058fa89c"
+ },
+ "recipe": {
+ "sha256": "1gb5b4hj4xr8nv8bxfar145i38zcic6c34gk98wpshvwzvb43r69",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140117.337",
+ "deps": [
+ "cl-lib",
+ "dash",
+ "emacs",
+ "org-plus-contrib",
+ "s"
+ ]
+ },
+ "crappy-jsp-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "magnars",
+ "repo": "crappy-jsp-mode",
+ "sha256": "12g6l6xlbs9h24q5lk8yjgk91xqd7r3v7r6czy10r09cmfjmkxbb",
+ "rev": "6c45ab92b452411cc0fab9bcee2f456276b4fc40"
+ },
+ "recipe": {
+ "sha256": "00wj61maib77qldzq06l9v0pbvp9jih75w1xw0ry9mij0r6ca8ii",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140311.431",
+ "deps": []
+ },
+ "peep-dired": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "asok",
+ "repo": "peep-dired",
+ "sha256": "1qi9qzcvclyw9wiamsw0z8q09hs0mfhaj2giny42nd6sqacvfr7m",
+ "rev": "6c18727fc58e2a19638f133810e35bd5d918a559"
+ },
+ "recipe": {
+ "sha256": "16k5y3h2ip96k071vhx83avg4r4nplnd973b1271vvxbx2bly735",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150518.900",
+ "deps": []
+ },
+ "docker-tramp": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "emacs-pe",
+ "repo": "docker-tramp.el",
+ "sha256": "1mh28210a85yy1b4lic3ijv7xhjk3z9nxjq55b7mqflgjna1ih3c",
+ "rev": "8e9ae1b170fc320e38806c3957c6f01dbb46c26e"
+ },
+ "recipe": {
+ "sha256": "19kky80qm68n2izpjfyiy4gjywav7ljcmp101kmziklpqdldgh1w",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150908.2155",
+ "deps": [
+ "cl-lib",
+ "emacs"
+ ]
+ },
+ "ycmd": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "abingham",
+ "repo": "emacs-ycmd",
+ "sha256": "09h7k4dir6rpcaarv8k69szssy8iyj67g44zpbgph9yp9cvfm9yx",
+ "rev": "b801275e0cc9e0a70d78c61e3fb8ed6b3bbb0c93"
+ },
+ "recipe": {
+ "sha256": "06psmcr5132vn72l0amzj14dy43aradnbmlvvms55srvici6r60q",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151129.625",
+ "deps": [
+ "dash",
+ "deferred",
+ "emacs",
+ "f",
+ "popup"
+ ]
+ },
+ "springboard": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "jwiegley",
+ "repo": "springboard",
+ "sha256": "14py5amh66jzhqyqjz5pxq0g19vzlmqnrr5wij1ix64xwfr3xdy8",
+ "rev": "d12119d9dd2b0b64f0af0ba82c273326c8c12268"
+ },
+ "recipe": {
+ "sha256": "17rmsidsbb4p08vr07mfn25m17wnpadcwr4nxvp79glp5a0wyyib",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150505.1211",
+ "deps": [
+ "helm"
+ ]
+ },
+ "zone-nyan": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "wasamasa",
+ "repo": "zone-nyan",
+ "sha256": "1lrgirfvcvbir7csshkhhwj99jj1x5aprhw7xfiicv7nan9m6gjy",
+ "rev": "e36875d83ad3dce14f23864688959fa0d98ba410"
+ },
+ "recipe": {
+ "sha256": "165sgjaahz038isii971m02hr2g5iqhbhiwf5kdn8c739cjaa17b",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151208.1514",
+ "deps": [
+ "esxml"
+ ]
+ },
+ "cursor-chg": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/cursor-chg.el",
+ "sha256": "1mvfg2m3wq5rbbxs2a84pd69yb82dag4g5mpzr16xi0gn6ybj4s7"
+ },
+ "recipe": {
+ "sha256": "0d1ilall8c1y4w014wks9yx4fz743hvx5lc8jqxxlrq7pmqyqdxk",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150104.1539",
+ "deps": []
+ },
+ "haste": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "rlister",
+ "repo": "emacs-haste-client",
+ "sha256": "1gmh455ahd9if11f8mrqbfky24c784bb4fgdl3pj8i0n5sl51i88",
+ "rev": "22d05aacc3296ab50a7361222ab139fb4d447c25"
+ },
+ "recipe": {
+ "sha256": "0wz15p58g4mxvwbpy9k60gixs1g4jw7pay5pbxnlggc39x1py8nf",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20141030.1534",
+ "deps": [
+ "json"
+ ]
+ },
+ "gitattributes-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "magit",
+ "repo": "git-modes",
+ "sha256": "1ipr51v7nhbbgxbbz0fp3i78ypp73kyxgc4ni8nnr7yirjhsksfd",
+ "rev": "9d8f6eda6ee97963e4085da8988cad2c0547b8df"
+ },
+ "recipe": {
+ "sha256": "1gjs0pjh6ap0h54savamzx94lq6vqrg58jxqaq5n5qplrbg15a6x",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150330.1248",
+ "deps": []
+ },
+ "emojify": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "iqbalansari",
+ "repo": "emacs-emojify",
+ "sha256": "0zd47b4i03ypbydiaap20vpr79gybmsk26q2xh4krci311n8mmgb",
+ "rev": "ad0bbe452c223c95a85262e16c7e0e7d2d18e2de"
+ },
+ "recipe": {
+ "sha256": "15v2h5jfksfc208qphiczplg56yka07qv4w4482c10yzwq76zp17",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151214.2155",
+ "deps": [
+ "emacs",
+ "ht",
+ "seq"
+ ]
+ },
+ "sx": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "vermiculus",
+ "repo": "sx.el",
+ "sha256": "0kfjaqydpm1c9l3k58zfjdy7wpqvsm7rirsnizwidg8lhca28b2b",
+ "rev": "75db6c18ceee1e75f8be0c312c6241d359b7a28b"
+ },
+ "recipe": {
+ "sha256": "1ml1rkhhk3hkd16ij2zwng591rxs2yppsfq9gwd4ppk02if4v517",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151111.2046",
+ "deps": [
+ "cl-lib",
+ "emacs",
+ "json",
+ "let-alist",
+ "markdown-mode"
+ ]
+ },
+ "mykie": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "yuutayamada",
+ "repo": "mykie-el",
+ "sha256": "0a9a6hmv8vjmp6h9mnzin9vc0sncg79v5z72pasvbrplfxijzan0",
+ "rev": "7676f0e883af1d1054e404e97691f3c13aba196f"
+ },
+ "recipe": {
+ "sha256": "12ram39fp3m9ar6q184rsnpkxb14y0ajibng7ia2ck54ck7n36cj",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150808.1705",
+ "deps": [
+ "cl-lib",
+ "emacs"
+ ]
+ },
+ "esup": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "jschaf",
+ "repo": "esup",
+ "sha256": "1hvf022ag23rmsk7whz8mnlswk5d89249pmc0p3pnaycykw8imxp",
+ "rev": "733cec953d88657f3fcf0b3d9efe48f95821be86"
+ },
+ "recipe": {
+ "sha256": "0cv3zc2zzm38ki3kxq58g9sp4gsk3dffa398wky6z83a3zc02zs0",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151203.2111",
+ "deps": [
+ "cl-lib",
+ "emacs"
+ ]
+ },
+ "evil-rsi": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "linktohack",
+ "repo": "evil-rsi",
+ "sha256": "1ygrpffa847144i74z2yy5r5vcvd334gad5mg18ffydacddcyqmq",
+ "rev": "4e0cb07d0e1c2a5e463ea1ea146f019c47a29e61"
+ },
+ "recipe": {
+ "sha256": "0mc39n72420n36kwyf9zpw1pgyih0aigfnmkbywb0yxgj7myc345",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151027.1719",
+ "deps": [
+ "evil"
+ ]
+ },
+ "letcheck": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "Fuco1",
+ "repo": "letcheck",
+ "sha256": "1l9qjmyb4a3f6i2iimpmjczbx890cd1p24n941s13sg67xfbm7hn",
+ "rev": "e85b185993a2eaeec6490709f4c131fde2edd672"
+ },
+ "recipe": {
+ "sha256": "1sjwi1ldg6b1qvj9cvfwxq3qlkfas6pm8zasf43baljmnz38mxh2",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150726.1112",
+ "deps": []
+ },
+ "zoom-frm": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/zoom-frm.el",
+ "sha256": "0y424lw7j0p0i0s7az7fabk9k4d0shcp4mimlkfl3whci24rbq6y"
+ },
+ "recipe": {
+ "sha256": "111lr29zhj8w8j7dbzl58iisqxjhccxpw4spfxx08zxh4623g5mk",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151101.1224",
+ "deps": [
+ "frame-cmds",
+ "frame-fns"
+ ]
+ },
+ "ido-exit-target": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "waymondo",
+ "repo": "ido-exit-target",
+ "sha256": "1s93q47cadanynvm1y4y08s68yq0l8q8vfasdk7w39vrjsxxsj3x",
+ "rev": "322520c665284ce6547eb9dcd3aa888a02a51489"
+ },
+ "recipe": {
+ "sha256": "17vmg47xwk6yjlbcsswirl8s2q565k291ajzjglnz7qg2fwx6spi",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150904.937",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "find-file-in-repository": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "hoffstaetter",
+ "repo": "find-file-in-repository",
+ "sha256": "090m5647dpc8r8fwi3mszvc8kp0420ma5sv0lmqr2fpxyn9ybkjh",
+ "rev": "8a8c84a6dbe7a2bba4564c3b58c92d157abfa3f8"
+ },
+ "recipe": {
+ "sha256": "0q1ym06w2yn3nzpj018dj6h68f7rmkxczyl061mirjp8z9c6a9q6",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151113.719",
+ "deps": []
+ },
+ "auto-install": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/auto-install.el",
+ "sha256": "043pb2wk7jh0jgxphdl4848rjyabna26gj0vlhpiyd8zc361pg9d"
+ },
+ "recipe": {
+ "sha256": "1gaxc2ya4r903k0jf3319wg7wg5kzq7k8rfy8ac9b0wfzv247ixk",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150418.1902",
+ "deps": []
+ },
+ "clojure-snippets": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "mpenet",
+ "repo": "clojure-snippets",
+ "sha256": "1w8izhrj23b8kqcsqalgrzxqnq18nvdxl48305p8cnwll646xjl2",
+ "rev": "24ebfd34665e1a3b74aaa823f8b2e3e4a5e0b827"
+ },
+ "recipe": {
+ "sha256": "15622mdd6b3fpwp22d32p78yap08pyscs2vc83sv1xz4338i0lij",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150504.344",
+ "deps": [
+ "yasnippet"
+ ]
+ },
+ "zonokai-theme": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "ZehCnaS34",
+ "repo": "zonokai-emacs",
+ "sha256": "0ls9x2r12z9ki2fy3cbf05mp28x4ws2gk3knacvw7gvvg4sjdq5w",
+ "rev": "b6f9eb7eb7e3f9954d786144e74dc6e392df3a69"
+ },
+ "recipe": {
+ "sha256": "1hrpgh03mp7yynqamgzkw7fa70c5pmyjfmfblkfhspnsif8j4v29",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150408.2202",
+ "deps": []
+ },
+ "helm-lobsters": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "julienXX",
+ "repo": "helm-lobste.rs",
+ "sha256": "0nkmc17ggyfi7iz959mvzh6q7116j44zqwi7ydm9i8z49xfpzafy",
+ "rev": "4121b232aeded2f82ad2c8a85c7dda17ef9d97bb"
+ },
+ "recipe": {
+ "sha256": "0dkb78n373kywxj8zba2s5a2g85vx19rdswv9i78xjwv1lqh8cpp",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150213.946",
+ "deps": [
+ "cl-lib",
+ "helm"
+ ]
+ },
+ "moe-theme": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "kuanyui",
+ "repo": "moe-theme.el",
+ "sha256": "0dyp8jpznb9ivzkka2cgydzcldc275238p0f1c9pcrxjf7mjglmx",
+ "rev": "56b0833e3549e1b2f008388549972971936b053f"
+ },
+ "recipe": {
+ "sha256": "1nqvj8spvffgjvqlf25rcm3dc6w1axb6qlwwsjhq401a6xhw67f6",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151124.1709",
+ "deps": []
+ },
+ "sproto-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "m2q1n9",
+ "repo": "sproto-mode",
+ "sha256": "11igl9n2zwwar1xg651g5v0r0w6xl0grm8xns9wg80351ijrci7x",
+ "rev": "0583a88273204dccd884b7edaa3590cefd31e7f7"
+ },
+ "recipe": {
+ "sha256": "19l6si3sx2i542r5lyr9axby9hblx76m77f17vnsjf32n3r0qgma",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151115.1205",
+ "deps": []
+ },
+ "helm-commandlinefu": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "xuchunyang",
+ "repo": "helm-commandlinefu",
+ "sha256": "0fxrmvb64lav4aqs61z3a4d2mcp9s2nw7fvysyjn0r1291pkzk9j",
+ "rev": "9ee7e018c5db23ae9c8d1c8fa969876f15b7280d"
+ },
+ "recipe": {
+ "sha256": "150nqib0sr4n35vdj1xrxcja8gkv3chzhdbgkjxqgkz2yq10xxnd",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150611.45",
+ "deps": [
+ "emacs",
+ "helm",
+ "json",
+ "let-alist"
+ ]
+ },
+ "ac-emoji": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "syohex",
+ "repo": "emacs-ac-emoji",
+ "sha256": "19981mzxnqqdb8dsdizy2i8byb8sx9138x3nrvi6ap2qbcsabjmz",
+ "rev": "f4b3a5b3548dc36f69daeff742f53b5bda538bae"
+ },
+ "recipe": {
+ "sha256": "0msh3dh89jzk6hxva34gp9d5pazchgdknxjbi72z26rss9bkp1mw",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150823.211",
+ "deps": [
+ "auto-complete",
+ "cl-lib"
+ ]
+ },
+ "gh-md": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "emacs-pe",
+ "repo": "gh-md.el",
+ "sha256": "0g3bjpnwgqczw6ddh4mv7pby0zyqzqgywjrjz2ib6hwmdqzyp1s0",
+ "rev": "693cb0dcadff70e813e1a9d303d227aff7898557"
+ },
+ "recipe": {
+ "sha256": "0b72fl1hj7gkqlqrr8hklq0w3ryqqqfn5qpb7a9i6q0vh98652xm",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151207.1140",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "badger-theme": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "ccann",
+ "repo": "badger-theme",
+ "sha256": "0g8smx6pi2wqv78mhxfgwg51mx5msqsgcc55xcz29aq0q3naw4z1",
+ "rev": "80fb9f8ace37b2e8807da639f7da499a53ffefd4"
+ },
+ "recipe": {
+ "sha256": "01h5bsqllgn6gs0wpl0y2h041007mn3ldjswkz6f3mayrgl4c6yf",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140716.2132",
+ "deps": []
+ },
+ "ox-asciidoc": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "yashi",
+ "repo": "org-asciidoc",
+ "sha256": "1q7jlz0f09mwymq8m6x9fiariww7rwiy4wkqkbbc296wm7impr75",
+ "rev": "e34b1df9fa061d395e600660620ab6c3b7e59ac1"
+ },
+ "recipe": {
+ "sha256": "07b549dqyh1gk226d7zbls1mw6q4mas7kbfwkansmyykax0r2zyr",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150919.1459",
+ "deps": [
+ "org"
+ ]
+ },
+ "ember-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "madnificent",
+ "repo": "ember-mode",
+ "sha256": "0cv8y6hr719648yxr2fbgb1hyg36m60bsbd57f2vvvqvg87si4jz",
+ "rev": "e82d88eee1882ac104857ec42a4fed731a99c13e"
+ },
+ "recipe": {
+ "sha256": "0fwd34cim29dg802ibsfd120px9sj54d4wzp3ggmjjzwkl9ky7dx",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151103.421",
+ "deps": [
+ "cl-lib"
+ ]
+ },
+ "ido-load-library": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "rolandwalker",
+ "repo": "ido-load-library",
+ "sha256": "0l69sr3g1n2x61j6sv6hnbiyk8a2qra6y2kh413qp0sfpx4fzchv",
+ "rev": "e03b55957c93aa1a7dd190e173e16ec59dbb2ba7"
+ },
+ "recipe": {
+ "sha256": "13f83gqh39p3yjy7r7qc7kzgdcmqh4b5c07zl7rwzb8y9rz59lhj",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140611.1100",
+ "deps": [
+ "pcache",
+ "persistent-soft"
+ ]
+ },
+ "therapy": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "abingham",
+ "repo": "therapy",
+ "sha256": "12kz4alyf3y2i7lkvi26hcxy55v0blsrxv5srx9fv5jhxkdz1vq1",
+ "rev": "775a92bb7b6b0fcc5b38c0b5198a9d0a1bef788a"
+ },
+ "recipe": {
+ "sha256": "0y040ghb0y6aq0nchqr09vapz6h6112rkwxkqsx0v7xmqrqfjvhh",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151113.1353",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "isend-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "ffevotte",
+ "repo": "isend-mode.el",
+ "sha256": "022j39r2vvppnh3p5rp9i4cgc3lg24ksjcmcjmbmna1vf624izn0",
+ "rev": "274163f5c42834ce0391fcc8800e169104ad518f"
+ },
+ "recipe": {
+ "sha256": "0sk80a08ny9vqw94klqfgii297qm633000wlcldha76ip8viikdv",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20130419.458",
+ "deps": []
+ },
+ "cd-compile": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "jamienicol",
+ "repo": "emacs-cd-compile",
+ "sha256": "1a93cim1w96aaj81clhjv25r7v9bwqm9a818mn8lk4aj1bmhgc4c",
+ "rev": "10284ccae86afda4a37b09ba90acd1e2efedec9f"
+ },
+ "recipe": {
+ "sha256": "1a24rv1jbb883vwhjkw6qxv3h3qy039iqkhkx3jkq1ydidr9f0hv",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20141108.1357",
+ "deps": []
+ },
+ "flycheck-irony": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "Sarcasm",
+ "repo": "flycheck-irony",
+ "sha256": "1ax55yhf9q8i8z1f97zp3r08dqv8npd2llllbwa67d1bj49bsf2h",
+ "rev": "b92e881fdf9c9cea192bfb8fa228784af5e27ea4"
+ },
+ "recipe": {
+ "sha256": "0qk814m5s7mjba659llml0gy1g3045w8l1g73w2pnm1pbpqdfn3z",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150728.1431",
+ "deps": [
+ "emacs",
+ "flycheck",
+ "irony"
+ ]
+ },
+ "tabula-rasa": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "idomagal",
+ "repo": "tabula-rasa",
+ "sha256": "1dbjfq9a7a5s9c18nrp4kcda64jkg5cp8na31kxw0hjcn98dgqa8",
+ "rev": "e85fff9de18dc31bc6a7aca726e34a95cc5459f5"
+ },
+ "recipe": {
+ "sha256": "186lph964swg7rs5gvby3p1d0znq9x3xzsmirfb3cdbazvz6hhxi",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20141215.2347",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "auctex-lua": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "vermiculus",
+ "repo": "auctex-lua",
+ "sha256": "0lgfgvnaln5rhhwgcrzwrhbj0gz8sgaf6xxdl7njf3sa6bfgngsz",
+ "rev": "799cd8ac10c96991bb63d9aa60528ae5d8c786b5"
+ },
+ "recipe": {
+ "sha256": "0v999jvinljkvhbn205p36a6jfzppn0xvflvzr8mid1hnqlrpjhf",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151121.1010",
+ "deps": [
+ "auctex",
+ "lua-mode"
+ ]
+ },
+ "elmacro": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "Silex",
+ "repo": "elmacro",
+ "sha256": "181hcyg5v62nxrgmb7pl9672rm9fy8crc4lqhdwvdvd7ngki1fiz",
+ "rev": "ff5d8a0d7f5154707f1d0a2b22894c6c0b0b9f94"
+ },
+ "recipe": {
+ "sha256": "0644rgwawivrq1shsjx1x2p53z7jgr6bxqgn2smzql8pp6azy7xz",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20141109.1006",
+ "deps": [
+ "dash",
+ "s"
+ ]
+ },
+ "fit-frame": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/fit-frame.el",
+ "sha256": "15697xc2gr5x9wj472jyzjhnim1jlx3ai3anzx8apngpqa9caiq1"
+ },
+ "recipe": {
+ "sha256": "1xcq4n9gj0npjjl98vqacms0a0wnzw62a9iplyf7bgj7n77pgkjb",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150104.1604",
+ "deps": []
+ },
+ "helm-make": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "abo-abo",
+ "repo": "helm-make",
+ "sha256": "05z1s01wgdj2s7qln42cg7nnjq0hmq2ji4xjldzj6w770a5nvb7g",
+ "rev": "0f29d09002653a2b3cb21ffdecaf33e7911747d8"
+ },
+ "recipe": {
+ "sha256": "1r6jjy1rlsii6p6pinbz7h6gcw4vmcycd3vj338bfbnqp5rrf2mc",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151117.1120",
+ "deps": [
+ "helm",
+ "projectile"
+ ]
+ },
+ "go-autocomplete": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "nsf",
+ "repo": "gocode",
+ "sha256": "0p3abkqllgy1b5l08wgxjywvvbcjiyjdf00azh1r1nyc81m4krni",
+ "rev": "2b99fc4d372b017483b7596c4577bf5f15479772"
+ },
+ "recipe": {
+ "sha256": "1v9fsyaby77fr30nnhr7dmlrmrlyz2grkhzg62illln66b9m5nlr",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150903.2140",
+ "deps": [
+ "auto-complete"
+ ]
+ },
+ "beeminder": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "sodaware",
+ "repo": "beeminder.el",
+ "sha256": "1ckbl8z59p81jsq8xsgcwqqrpzv1apzjr594w3dyp9bzqb7h2acm",
+ "rev": "92fa1a8d1df3e2fd0698192008f604b1794ee5f8"
+ },
+ "recipe": {
+ "sha256": "0aj7ix7nrsl89f9c449kik8fbzhfk9li50wrh50cdwgfh8gda0fx",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150104.1634",
+ "deps": [
+ "org"
+ ]
+ },
+ "idris-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "idris-hackers",
+ "repo": "idris-mode",
+ "sha256": "16gk7ry4yiaxk9dp6s2m4g79klw344yvr86d7hr0qdjkkf229m56",
+ "rev": "f2f0a19f1a23fac618442d7d2187cc3ac5d9e445"
+ },
+ "recipe": {
+ "sha256": "0hiiizz976hz3z3ciwg1gs9y10qhxbs8givhz89kvyn4s4861a1s",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151030.607",
+ "deps": [
+ "cl-lib",
+ "emacs",
+ "prop-menu"
+ ]
+ },
+ "bliss-theme": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "emacsfodder",
+ "repo": "emacs-bliss-theme",
+ "sha256": "0dn0i3nxrqd82b9d17p1v0ddlpxnlfclkc8sqzrwq6cf19wcrmdr",
+ "rev": "2c6922cb24118722819bea79a981f066039d34a3"
+ },
+ "recipe": {
+ "sha256": "1kzvi6zymfgirr41l8r2kazfz1y4xkigbp5qa1fafcdmw81anmdh",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20141116.101",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "mozc": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "google",
+ "repo": "mozc",
+ "sha256": "0ijx66xx0nv4xwf91403qc1s8mksnpkl5d5pv8gwck0dr2abz2nd",
+ "rev": "b499f9e8adac54f03d310ea17c3751c321084f91"
+ },
+ "recipe": {
+ "sha256": "0nslh4xyqpvzdxcgrd1bzaqcdz77bghizh6n2w6wk46cflir8xba",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150815.503",
+ "deps": []
+ },
+ "drill-instructor-AZIK-force": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "myuhe",
+ "repo": "drill-instructor-AZIK-force.el",
+ "sha256": "0lzq0mkhhj3s5yrcbs576qxkd8h0m2ikc4iplk97ddpzh4nz4127",
+ "rev": "008cea202dc31d7d6fb1e7d8e6334d516403b7a5"
+ },
+ "recipe": {
+ "sha256": "1bb698r11m58csd2rm17fmiw691p25npphzqgjiiqbn4vx35ja7f",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151122.2314",
+ "deps": [
+ "popup"
+ ]
+ },
+ "exec-path-from-shell": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "purcell",
+ "repo": "exec-path-from-shell",
+ "sha256": "085vmpxk99mvxa5k3fwr5x443434gh0iy3qp272fyks85yccrayl",
+ "rev": "673f1fc0606ca9a30eb62cb1ac2094d15ab9377e"
+ },
+ "recipe": {
+ "sha256": "1j6f52qs1m43878ikl6nplgb72pdbxfznkfn66wyzcfiz2hrvvm9",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151125.1333",
+ "deps": []
+ },
+ "highlight-symbol": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "nschum",
+ "repo": "highlight-symbol.el",
+ "sha256": "0d7scpgn9wnq9r72vjv68nnk6qgk0x1bxlm070hj2iz51pdqda7x",
+ "rev": "c2e15fee52aebf5c8e618460b8f924331d0df2a3"
+ },
+ "recipe": {
+ "sha256": "0gw8ffr64s58qdbvm034s1b9xz1hynzvbk8ld67j06fxpc98qaj4",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151005.651",
+ "deps": []
+ },
+ "ppd-sr-speedbar": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "rdallasgray",
+ "repo": "ppd-sr-speedbar",
+ "sha256": "0pv671j8g09pn61kkfb3pa9axfa9zd2jdrkgr81rm2gqb2vh1hsq",
+ "rev": "19d3e924407f40a6bb38c8fe427a159af755adce"
+ },
+ "recipe": {
+ "sha256": "1m2918hqvb9c6rgb5szs95ds99gdjdxggcbdfqzmbb5sz2936av8",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151108.624",
+ "deps": [
+ "project-persist-drawer",
+ "sr-speedbar"
+ ]
+ },
+ "reveal-next": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/reveal-next.el",
+ "sha256": "0bpcx6jlv0m5bg1zrkak471fa2yj4m517zn72ajvp5r9y408i82y"
+ },
+ "recipe": {
+ "sha256": "0fp6ssd4fad0s2pbxbw75bnx7fcgasig8xvcx7nls8m9p6zbbmh2",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150104.1843",
+ "deps": []
+ },
+ "vbasense": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "aki2o",
+ "repo": "emacs-vbasense",
+ "sha256": "19j5q2f6pybvjq3ryjcyihzlw348hqyjhfcy3qflry6w786dqcgn",
+ "rev": "8c61a492d7c15218ae1a96e2aebfe6f78bfff6db"
+ },
+ "recipe": {
+ "sha256": "1440q2bi4arpl5lbqh7zscg7v3884clqx54p2fdfcfkz47ky4z9n",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140221.1753",
+ "deps": [
+ "auto-complete",
+ "log4e",
+ "yaxception"
+ ]
+ },
+ "lively": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/lively.el",
+ "sha256": "1z9b0arn7vby4fkwzgj3ml537lh94gvf61vs03cqfkc95lv14r76"
+ },
+ "recipe": {
+ "sha256": "1wjd6kfnknhw9lc2p9iipaxfm9phpkqqmjw43bhc70ybsq1xaln7",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20120728.913",
+ "deps": []
+ },
+ "org-redmine": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "gongo",
+ "repo": "org-redmine",
+ "sha256": "1q99b9l6y97iic46xqj7rqnkrzk8f0qq4qy81jv9wz54hq51w07v",
+ "rev": "4289eb06c506f19ef8c467acb2a05bcf04f187c9"
+ },
+ "recipe": {
+ "sha256": "0y2pm18nnyzm9wjc0j15v46nf3xi7a0wvspfzi360qv08i54skqv",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151021.931",
+ "deps": [
+ "anything"
+ ]
+ },
+ "creds": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "ardumont",
+ "repo": "emacs-creds",
+ "sha256": "0l4bvk3m355b25d7pdnhczn3fckbq0rg2l4r0a0d94004ksvylqa",
+ "rev": "b059397a7d59481f05fbb1bb9c8d3c2c69226482"
+ },
+ "recipe": {
+ "sha256": "0n11xxaf93bbc9ih25wj09zzw4sj32wb99qig4zcy8bpkl5y3llk",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140510.1206",
+ "deps": [
+ "dash",
+ "s"
+ ]
+ },
+ "helm-project-persist": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "Sliim",
+ "repo": "helm-project-persist",
+ "sha256": "0j54c1kzsjgr05qx25rg3ylawvyw6n6liypiwaas47vpyfswbxhv",
+ "rev": "357950fbac18090985a750e40d5d8b10ee9dcd53"
+ },
+ "recipe": {
+ "sha256": "1n87kn1n3453mpdj6amyrgivslskmnzdafpspvkz7b0smf9mv2ld",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151210.943",
+ "deps": [
+ "helm",
+ "project-persist"
+ ]
+ },
+ "phabricator": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "ajtulloch",
+ "repo": "phabricator.el",
+ "sha256": "0y77ld1cmfpv9p7yx2mlbvjm5ivsrf2j0g0h4zabfrahz22v39d4",
+ "rev": "b1450350cc3c45c732252bb13860156d824ead10"
+ },
+ "recipe": {
+ "sha256": "07988f2xyp76xjs25b3rdblhmijs2piriz4p0q92jw69bdvkl14c",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151115.307",
+ "deps": [
+ "dash",
+ "emacs",
+ "f",
+ "projectile",
+ "s"
+ ]
+ },
+ "make-it-so": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "abo-abo",
+ "repo": "make-it-so",
+ "sha256": "00j5n9pil1qik4mrzvam4rp6213w8jm4qw7c4z8sxpq57xa0b679",
+ "rev": "ed83b8b9787441cc6be4994d571529852a8cce4a"
+ },
+ "recipe": {
+ "sha256": "0a8abz54mb60mfr0bl9ry8yawq99vx9hjl4fm2sivns58qjgfy73",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150319.1407",
+ "deps": [
+ "emacs",
+ "helm"
+ ]
+ },
+ "eval-sexp-fu": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "hchbaw",
+ "repo": "eval-sexp-fu.el",
+ "sha256": "1syqakdyg3ydnq9gvkjf2rw9rz3kyhzp7avhy6dvyy65pv2ndyc2",
+ "rev": "6cffd33155d10c3e58b39cbb170f42e910fd8595"
+ },
+ "recipe": {
+ "sha256": "17cazf81z4cszflnfp66zyq2cclw5sp9539pxskdf267cf7r0ycs",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20131230.1551",
+ "deps": [
+ "highlight"
+ ]
+ },
+ "mustang-theme": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "mswift42",
+ "repo": "mustang-theme",
+ "sha256": "19qd34dcfspv621p4y07zhq2pr8pwss3lcssm9sfhr6w2vmvgcr4",
+ "rev": "79c3381dd50601775402fe2fddd16fffa9218837"
+ },
+ "recipe": {
+ "sha256": "0771l3x6109ki914nwpfz3fj7pbvpcg9vf485mrccq2wlxymr5dr",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20141017.1823",
+ "deps": []
+ },
+ "httprepl": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "gregsexton",
+ "repo": "httprepl.el",
+ "sha256": "0wd4wmy99mx677x4sdbp57bxxll1fsnnf8hk97r85xdmmjsmrkld",
+ "rev": "cfa3693267a8ed1c96a86a126823f37dbfe077d8"
+ },
+ "recipe": {
+ "sha256": "0899qb1yfnsyf04hhvnk47qnq4d1f4vd5ghj43x4743wd2b9qawh",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20141101.1234",
+ "deps": [
+ "dash",
+ "emacs",
+ "s"
+ ]
+ },
+ "tern-auto-complete": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "marijnh",
+ "repo": "tern",
+ "sha256": "07b96yjv8jns8d18mciqchpfbhcd8w0lgy3p4msl24rk4hmv56z7",
+ "rev": "f585fe7d6f4da28770fdd3dc7ddf88a39ad9b105"
+ },
+ "recipe": {
+ "sha256": "0lq924c5f6bhlgyqqzc346n381qf0fp66h50a0zqz2ch66kanni1",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151123.853",
+ "deps": [
+ "auto-complete",
+ "cl-lib",
+ "emacs",
+ "tern"
+ ]
+ },
+ "ox-ioslide": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "coldnew",
+ "repo": "org-ioslide",
+ "sha256": "12c170m04yk0acllkvrbl3kpl5z91gh0z8d09hpqpdmfs2gmpbm9",
+ "rev": "79fb2c161ded934c3a4ddf623100103212a4d2d8"
+ },
+ "recipe": {
+ "sha256": "0z0qnvpw64wxbgz8203rphswlh9hd2i11pz2mlay8l3bzz4gx4vc",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151018.2352",
+ "deps": [
+ "cl-lib",
+ "emacs",
+ "f",
+ "makey",
+ "org"
+ ]
+ },
+ "hungry-delete": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "nflath",
+ "repo": "hungry-delete",
+ "sha256": "1vy521ljn16a1lcmpj09mr9y0m15lfjhl6xk04sb7nisps3vljyl",
+ "rev": "ed1694ca3bd1fe7d117b0176d417341915ad4f1f"
+ },
+ "recipe": {
+ "sha256": "0hcsm3yndkyfqzb77ibx7df6bjppc34x5yabi6nd389pdscp9rpz",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151203.1514",
+ "deps": []
+ },
+ "n3-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "doriantaylor",
+ "repo": "n3-mode-for-emacs",
+ "sha256": "1lp1bx9110vqzjww94va8pdks39qvqzl8rf0p8na1q0qn06rnk9h",
+ "rev": "0145e7938c30183edb03a55a4f16390dabd191ec"
+ },
+ "recipe": {
+ "sha256": "0hasxq39phgyc259dgxskhqxjsp0yi98vx1bs8ynvwa26la4ddzh",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20141027.1257",
+ "deps": []
+ },
+ "quasi-monochrome-theme": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "lbolla",
+ "repo": "emacs-quasi-monochrome",
+ "sha256": "09vw8nf9yj3v2ks25n39fbn2qk1fld0hmaq1dpzaqsavsbd4dwc1",
+ "rev": "b2456aaa71b51d4f9b06c5dfb529e60732574fc7"
+ },
+ "recipe": {
+ "sha256": "0h5pqrklyga40jg8qc47lwmf8khn0vcs5jx2sdycl2ipy0ikmfs0",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150801.1525",
+ "deps": []
+ },
+ "rfringe": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/rfringe.el",
+ "sha256": "02i5znln0aphvmvaia3sz75bvjhqwyjq1blf5qkcbprnn95lm3yh"
+ },
+ "recipe": {
+ "sha256": "171gzfciz78l6b653acgfailxpwmh8m1dm0dzpg0b1k0ny3aiwf6",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20110405.1020",
+ "deps": []
+ },
+ "projectile-codesearch": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "abingham",
+ "repo": "codesearch.el",
+ "sha256": "105g2a9d0rb1qaph276qyj2gq9k9zkvrz5wzic9r06mjiywk1s9a",
+ "rev": "9a887f8d440ba98a72a7619dd744c0a9e3892919"
+ },
+ "recipe": {
+ "sha256": "0jgvs9is59q45wh2a7k5sb6vj179ixqgj5dlndj9r6fh59qgrzdk",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150419.45",
+ "deps": [
+ "codesearch",
+ "projectile"
+ ]
+ },
+ "editorconfig": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "editorconfig",
+ "repo": "editorconfig-emacs",
+ "sha256": "0af6r0qn6gy3ww5cf3cvvbwyqpvx5xv08gxkjsj92z9h2x5rfz7f",
+ "rev": "301d67b26098d048ff7235c0878252e80becc7e0"
+ },
+ "recipe": {
+ "sha256": "0na5lfi9bs4k1q73pph3ff0v8k8vzrfpzh47chyzk8nxsmvklw35",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151208.1035",
+ "deps": [
+ "editorconfig-core"
+ ]
+ },
+ "bbyac": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "baohaojun",
+ "repo": "bbyac",
+ "sha256": "1cdm4d6fjf3m495phynq0dzvv0wc0gfsw6fdq4d47iyxs0p4q2dl",
+ "rev": "8dc5a7c0ada7ac729a87343149970ced139bb659"
+ },
+ "recipe": {
+ "sha256": "19s9fqcdyqz22m981vr0p8jwghbs267yrlxsv9xkfzd7fccnx170",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150316.501",
+ "deps": [
+ "browse-kill-ring",
+ "cl-lib"
+ ]
+ },
+ "evil-anzu": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "syohex",
+ "repo": "emacs-evil-anzu",
+ "sha256": "0cnj91lwpmk4c8nf3xi80yvv6anvkg8h1kbzbp16glkgmy6jpmy8",
+ "rev": "a041db15bd6e2eb353b24f6f984f6c5ee618d460"
+ },
+ "recipe": {
+ "sha256": "19cmc61l370mm4h2m6jw5pdcsvj4wcv9zpa8z7k1fjg57mwmmn70",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150124.1809",
+ "deps": [
+ "anzu",
+ "evil"
+ ]
+ },
+ "cloc": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "cosmicexplorer",
+ "repo": "cloc-emacs",
+ "sha256": "1rflc00yrbb7xzfh8c54ajf4qnhsp3mq07gkr257gjyrwsdw762v",
+ "rev": "15e63b83dd6261f543d25aac4c72e764e3274d53"
+ },
+ "recipe": {
+ "sha256": "1ny5wixa9x4fq5jvhs01jmyvwkfvwwi9aamrcqsl42s9sx6ygz7a",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151007.401",
+ "deps": [
+ "cl-lib"
+ ]
+ },
+ "hl-anything": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "boyw165",
+ "repo": "hl-anything",
+ "sha256": "0889dzrwizpkyh3wms13k8zx27ipsrsxfa4j4yzk4cwk3aicckcr",
+ "rev": "018da4cdf891529b4769d59c0400b6cf3456b9c4"
+ },
+ "recipe": {
+ "sha256": "15n998nhirvg3f719b7x9s7jpqv6gzkr22kp4zbbq99lbx2wfc1k",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150219.731",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "restart-emacs": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "iqbalansari",
+ "repo": "restart-emacs",
+ "sha256": "0gbm208hmmmpjyj0x3z0cszphawkgvjqzi5idbdca3gikyiqw80n",
+ "rev": "f0e8e1ae1bb5f4e50a99d220c39913ef300f44c8"
+ },
+ "recipe": {
+ "sha256": "03aabz7fmy99nwimvjn7qz6pvc94i470hfgiwmjz3348cw02k0n6",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151203.1035",
+ "deps": []
+ },
+ "lispxmp": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/lispxmp.el",
+ "sha256": "1m07gb3v1a7al0h4nj3914y8lqrwzi8fwb1ih66nxzn6kb0qj3mf"
+ },
+ "recipe": {
+ "sha256": "02gfbyng3dh2445jfkasxzjc9dlk02dafbfkjm40iwmb8h0fzji4",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20130824.707",
+ "deps": []
+ },
+ "dummyparens": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "snosov1",
+ "repo": "dummyparens",
+ "sha256": "0g72nnz0j6dvllyxyrw20z1vg6p7sy46yy0fq017pa77sgqm0xzh",
+ "rev": "9798ef1d0eaa24e4fe66f8aa6022a8c62714cc89"
+ },
+ "recipe": {
+ "sha256": "1yah8kpqkk9ygm73iy51fzwc8q5nw0xlwqir2qld1fc5y1lkb7dk",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20141009.524",
+ "deps": []
+ },
+ "clean-aindent-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "pmarinov",
+ "repo": "clean-aindent-mode",
+ "sha256": "1h6k6kzim1zb87y1kzpqjzk3ip9bmfxyg54kdh2sfp4xy0g5h3p0",
+ "rev": "9ae15997cd75c5625a4f759a3aff39bf202fc36f"
+ },
+ "recipe": {
+ "sha256": "1whzbs2gg2ar24kw29ffv94dgvrlfy2v4zdn0g7ksjjmmdr8ahh4",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150816.2229",
+ "deps": []
+ },
+ "passthword": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "pidu",
+ "repo": "passthword",
+ "sha256": "0yckh61v9a798gpyk8x2z9990h3b61lwsw0kish571pygfyqhjkq",
+ "rev": "30bace842eaaa6b48cb2251fb84868ebca0467d6"
+ },
+ "recipe": {
+ "sha256": "076jayziipjx260yk3p37pf5k0qsagalidah3y6hiflrlq4sfgjn",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20141201.323",
+ "deps": [
+ "cl-lib"
+ ]
+ },
+ "tab-jump-out": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "cheunghy",
+ "repo": "tab-jump-out",
+ "sha256": "0h7sfbca1nzcjylwl7zp25yj6wxnlx8g8a50zc6sg6jg4rggi2fm",
+ "rev": "1c3fec1826d2891177ea78e4e7cce1dc67e83e51"
+ },
+ "recipe": {
+ "sha256": "0nlbyzym8l8g9w2xvykpcl5r449v30gal2k1dnz74rq4y8w4rh7n",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151005.2030",
+ "deps": [
+ "dash",
+ "emacs"
+ ]
+ },
+ "smyx-theme": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "tacit7",
+ "repo": "smyx",
+ "sha256": "1z2sdnf11wh5hz1rkrbg7fs4ha3zrbj9qnvfzq9005y89d7cs95x",
+ "rev": "6263f6b401bbabaed388c8efcfc0be2e58c51401"
+ },
+ "recipe": {
+ "sha256": "1r85yxr864df5akqknl3hsrmzikr4085bqr6ijrbdj27nz00vl61",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20141127.228",
+ "deps": []
+ },
+ "evil-cleverparens": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "luxbock",
+ "repo": "evil-cleverparens",
+ "sha256": "1pzybq12m1p28x8p173s4hdagv7654k0z5vj3a1wj1nww31978m6",
+ "rev": "28fc9a9b465b908cb01bf99b538d50069bda8107"
+ },
+ "recipe": {
+ "sha256": "10zkyaxy52ixh26hzm9v1y0gakcn5sdwz4ny8v1vcmjqjphnk799",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151201.2238",
+ "deps": [
+ "dash",
+ "emacs",
+ "evil",
+ "paredit",
+ "smartparens"
+ ]
+ },
+ "s": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "magnars",
+ "repo": "s.el",
+ "sha256": "1zn8n3mv0iscs242dbkf5vmkkizfslq5haw9z0d0g3wknq18286h",
+ "rev": "372e94c1a28031686d75d6c52bfbe833a118a72a"
+ },
+ "recipe": {
+ "sha256": "0b2lj6nj08pk5fnxvjkc1d9hvi29rnjjy4n5ns4pq6wxpfnlcw64",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150924.606",
+ "deps": []
+ },
+ "sweetgreen": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "CestDiego",
+ "repo": "sweetgreen.el",
+ "sha256": "10blwlwg1ry9jznf1a6iss5s0z8sj9gc02ayf5qv92mgxvjhrhdn",
+ "rev": "a456dd7948a25da8ff007a142cf1325b4855d908"
+ },
+ "recipe": {
+ "sha256": "1v75wk0gq5fkz8i1r8pl4gqnxbv1d80isyn48w2hxj2fmdn2xhpy",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151207.1116",
+ "deps": [
+ "cl-lib",
+ "dash",
+ "helm",
+ "request"
+ ]
+ },
+ "transpose-mark": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "attichacker",
+ "repo": "transpose-mark",
+ "sha256": "03wc50vn1kmrgnzzhs06pwpap2p2rx84wwzxw0hawsg1f1l35m2x",
+ "rev": "667327602004794de97214cf336ac61650ef75b7"
+ },
+ "recipe": {
+ "sha256": "16xn9d33nylbb4pr65i8x4rbf5ncd4vxhmcbd136k5b6hj62mg7i",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150405.216",
+ "deps": []
+ },
+ "javadoc-lookup": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "skeeto",
+ "repo": "javadoc-lookup",
+ "sha256": "10x10d0y8lr2a4kxq6pmvl5a1nzkfayg9qlzwh5v5is17wxr7399",
+ "rev": "e580d85b2ae37900672b6b2fd3381919b47a5a2f"
+ },
+ "recipe": {
+ "sha256": "1fffs0iqkk9rg5vbxifvn09j4i2751p81bzcvy5fslr3r1r2nv79",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150425.1203",
+ "deps": [
+ "cl-lib"
+ ]
+ },
+ "immutant-server": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "leathekd",
+ "repo": "immutant-server.el",
+ "sha256": "0rbamm9qvipgswxng8g1d7rbdbcj7sgwrccg7imcfapwwq7xhj4h",
+ "rev": "2a21e65588acb6a976f2998e30b21fdabdba4dbb"
+ },
+ "recipe": {
+ "sha256": "15vcxag1ni41ja4b3q0444sq5ysrisis59la7li6h3617wy8r02i",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140311.1708",
+ "deps": []
+ },
+ "git-ps1-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "10sr",
+ "repo": "git-ps1-mode-el",
+ "sha256": "1hbpcsyivvdjf16znbhzykn9hci73jl77n4wrxy4v8vhkdajgkd1",
+ "rev": "18f143cfcc7163606daefdaae8ab6b8d81536aa0"
+ },
+ "recipe": {
+ "sha256": "15gswi9s0m3hrsl1qqyjnjgbglsai95klbdp51h3pcq7zj22wkn6",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150421.2301",
+ "deps": []
+ },
+ "evil-textobj-anyblock": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "noctuid",
+ "repo": "evil-textobj-anyblock",
+ "sha256": "1v4z2snllgg32cy8glv7xl0m9ib7rwi5ixgdydz1d0sx0z62jyhw",
+ "rev": "a9e1fdd546312fa787cd0a0acc7ca5e0253de945"
+ },
+ "recipe": {
+ "sha256": "03vk30s2wkcszcjxmh5ww39rihnag9cp678wdzq4bnqy0c6rnjwa",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151017.1617",
+ "deps": [
+ "cl-lib",
+ "evil"
+ ]
+ },
+ "osx-plist": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "emacsmirror",
+ "repo": "osx-plist",
+ "sha256": "0830kkmvc3ss7ygqfwz3j75s7mhxfxyadaksrp0v2cc4y6wn6nfv",
+ "rev": "5e6de2622fdfe552d4902904f05ea03bc5a6ebd0"
+ },
+ "recipe": {
+ "sha256": "0zaqmhf5nm6jflwgxnknhi8zn97vhsia2xv8jm677l0h23pk2va8",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20101130.648",
+ "deps": []
+ },
+ "cyberpunk-theme": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "n3mo",
+ "repo": "cyberpunk-theme.el",
+ "sha256": "1zx93qb83ji2jf3dya9m7prii58aj4y94h10ynldls45cqk3chz4",
+ "rev": "5fee81bccb07d40ff1d41aa2342ca29639b057b0"
+ },
+ "recipe": {
+ "sha256": "0l2bwb5afkkhrbh99v2gns1vil9s5911hbnlq5w35nmg1wvbmbc9",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151215.1153",
+ "deps": []
+ },
+ "ido-migemo": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "myuhe",
+ "repo": "ido-migemo.el",
+ "sha256": "15iajhrgy989pn91ijcd1mq2015bkaacaplm79rmb0ggxhh8vq38",
+ "rev": "e71114a92dd69cb46abf3fb71a09ce27506fcf77"
+ },
+ "recipe": {
+ "sha256": "02hbwchwx2bcwdxz7gz555699l7n9wisfikax1j6idn167n4wdpi",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150921.1744",
+ "deps": [
+ "migemo"
+ ]
+ },
+ "elwm": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "Fuco1",
+ "repo": "elwm",
+ "sha256": "1k7npf93xbmrsq607x8zlgrpzqvplgia3ixz5w1lr1jlv1m2m8x2",
+ "rev": "c33b183f006ad476c3a44dab316f580f8b369930"
+ },
+ "recipe": {
+ "sha256": "0rf663ih3lfg4n4pj4dpp133967zha5m1wr46riaxpha7xr59al9",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150817.507",
+ "deps": [
+ "dash"
+ ]
+ },
+ "airline-themes": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "AnthonyDiGirolamo",
+ "repo": "airline-themes",
+ "sha256": "00j9gx0lmh34pmm19909g1pj1hfz0g4jxw4f0wvcsqzsj6zdz8nx",
+ "rev": "8355460678b95a2ef38d6ef6c046b451e4a0255e"
+ },
+ "recipe": {
+ "sha256": "0jkhb6nigyjmwqny7g59h4ssfy64vl3qnwcw46wnx5k9i73cjyih",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151211.2135",
+ "deps": [
+ "powerline"
+ ]
+ },
+ "shackle": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "wasamasa",
+ "repo": "shackle",
+ "sha256": "1v8pm8rfqkfbx8ifj2ra78h64zxcl15rpwgaw99xl88j388xyfsl",
+ "rev": "7542039876325d9b2051b77a0cbe15986154ac1a"
+ },
+ "recipe": {
+ "sha256": "159z0cwg7afrmym0xk902d8z093sqv39jig25ds7z4a224yrv5w6",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151213.816",
+ "deps": [
+ "cl-lib"
+ ]
+ },
+ "scpaste": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "technomancy",
+ "repo": "scpaste",
+ "sha256": "1jgg116rhhgs5qrngrmqi8ir7yj1h470f57dc7fyijw0ly5mp6ii",
+ "rev": "677f9b7c5a1b533bef44747d6331b671ffcb8a9c"
+ },
+ "recipe": {
+ "sha256": "02dqmx6v3jxdn5yz1z74624sc6sz2bm4qjyi78w9akhp2jplwlk1",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151208.1935",
+ "deps": [
+ "htmlize"
+ ]
+ },
+ "helm-themes": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "syohex",
+ "repo": "emacs-helm-themes",
+ "sha256": "0a9h6rmjc6c6krkvxbgrzv35if260d9ma9a2k47jzm9psnyp9s2w",
+ "rev": "a6449a40c5a219b43a92c975917a07337f864b4f"
+ },
+ "recipe": {
+ "sha256": "1j64w6dnxmq0rfycci9wfy2z5lbddsggf486pknxfgwwqgvns90l",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151009.121",
+ "deps": [
+ "helm-core"
+ ]
+ },
+ "gnuplot": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "bruceravel",
+ "repo": "gnuplot-mode",
+ "sha256": "1gm116479gdwc4hr3nyv1id692dcd1sx7w2a80pvmgr35ybccn7c",
+ "rev": "21f9046e3f5caad41b750b5c9cee02fa4fd20fb9"
+ },
+ "recipe": {
+ "sha256": "06c5gqf02fkra8c52xck1lqvf4yg45zfibyf9zqmnbwk7p2jxrds",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20141231.1537",
+ "deps": []
+ },
+ "brainfuck-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "tom-tan",
+ "repo": "brainfuck-mode",
+ "sha256": "1nzgjgzidyrplfs4jl8nikd5wwvb4rmrnm51qxmw9y2if0hpq0jd",
+ "rev": "36e69552bb3b97a4f888d362c59845651bd0d492"
+ },
+ "recipe": {
+ "sha256": "08jzx329mrr3c2pifs3hb4i79dsw606b0iviagaaja8s808m40cd",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150113.242",
+ "deps": [
+ "langdoc"
+ ]
+ },
+ "auto-complete-rst": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "tkf",
+ "repo": "auto-complete-rst",
+ "sha256": "107svb82cgfns9kcrmy3hh56cab81782jkbz5i9959ms81xizfb8",
+ "rev": "4803ce41a96224e6fa54e6741a5b5f40ebed7351"
+ },
+ "recipe": {
+ "sha256": "0dazkpnzzr0imb2a01qq8l60jxhhlknzjx7wccnbm7d2rk3338m6",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140225.344",
+ "deps": [
+ "auto-complete"
+ ]
+ },
+ "ess-smart-equals": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "genovese",
+ "repo": "ess-smart-equals",
+ "sha256": "0ici253mllqyzcbhxrazfj2kl50brr8qid99fk9nlyfgh516ms1x",
+ "rev": "e0f5f18f01ed252fde50d051adf1fa6254a254c9"
+ },
+ "recipe": {
+ "sha256": "0mfmxmsqr2byj56psx4h08cjc2j3aac3xqr04yd47k2mlivnyrxp",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150202.1",
+ "deps": [
+ "emacs",
+ "ess"
+ ]
+ },
+ "gom-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "syohex",
+ "repo": "emacs-gom-mode",
+ "sha256": "1anjzlg53kjdqfjcdahbxy8zk9hdha075c1f9nzrnnbbqvmirbbb",
+ "rev": "972e33df1d38ff323bc97de87477305826013701"
+ },
+ "recipe": {
+ "sha256": "07zr38gzqb3ds9mpf94c1vhl1rqd0cjh4g4j2bz86q16c0rnmp7m",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20131007.2153",
+ "deps": []
+ },
+ "ac-etags": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "syohex",
+ "repo": "emacs-ac-etags",
+ "sha256": "140i02b2ipyfmki945l1xd1nsqdpganhmi3bmwj1h9w8cg078bd4",
+ "rev": "e53cb3a8dd44e41fba3d2b737f90a8cfc529e2a6"
+ },
+ "recipe": {
+ "sha256": "0ag49k9izrs4ikzac9lifvvwhcn5n89lr2vb20pngsvg1czdyhzb",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151031.2121",
+ "deps": [
+ "auto-complete"
+ ]
+ },
+ "rect+": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "mhayashi1120",
+ "repo": "Emacs-rectplus",
+ "sha256": "1vpsihrl03hkd6n6b7mrjccm0a023qf3154a8rw4chihikxw27pj",
+ "rev": "299b742faa0bc4448e0d5fe9cb98ab1eb93b8dcc"
+ },
+ "recipe": {
+ "sha256": "0vk0jwpl6yp2md9nh0ghp2qn883a8lr3cq8c9mgq0g552dwdiv5m",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150620.1944",
+ "deps": []
+ },
+ "flymake-hlint": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "purcell",
+ "repo": "flymake-hlint",
+ "sha256": "003fdrgxlyhs595ndcdzhmdkcpsf9bpw53hrlrrrh07qlnqxwrvp",
+ "rev": "fae0c16f938129fb933e4c4625287816e8e160f0"
+ },
+ "recipe": {
+ "sha256": "0wq1ijhn3ypy31yk8jywl5hnz0r0vlhcxjyznzccwqbdc5vf7b2x",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20130309.345",
+ "deps": [
+ "flymake-easy"
+ ]
+ },
+ "flycheck-ycmd": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "abingham",
+ "repo": "emacs-ycmd",
+ "sha256": "09h7k4dir6rpcaarv8k69szssy8iyj67g44zpbgph9yp9cvfm9yx",
+ "rev": "b801275e0cc9e0a70d78c61e3fb8ed6b3bbb0c93"
+ },
+ "recipe": {
+ "sha256": "0m99ssynrqxgzf32d35n17iqyh1lyc6948inxpnwgcb98rfamchv",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150727.231",
+ "deps": [
+ "dash",
+ "emacs",
+ "flycheck",
+ "ycmd"
+ ]
+ },
+ "ansible-doc": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "lunaryorn",
+ "repo": "ansible-doc.el",
+ "sha256": "1h3rqrjrl8wx7xvvd631jkbbczq3srd4mgz7y9wh3cvz1njdpy62",
+ "rev": "d0ce210674b5bee9836e6773c4e823747a6f1946"
+ },
+ "recipe": {
+ "sha256": "03idvnn79fr9id81aivkm7g7cmlsg0c520wcq4da8g013xvi342w",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150524.1205",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "ido-vertical-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "creichert",
+ "repo": "ido-vertical-mode.el",
+ "sha256": "1vl87phswkciijq0j07lqlgmha5dmff8yd4j4jn7cfrkrdjp6jbx",
+ "rev": "0beaf1eaa8509bece9419b663826665322b22b4c"
+ },
+ "recipe": {
+ "sha256": "1vg5s6nd6v2g8ychz1q9cdqvsdw6vag7d9w68sn7blpmlr0nqhfm",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151003.2033",
+ "deps": []
+ },
+ "hemisu-theme": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "andrzejsliwa",
+ "repo": "hemisu-theme",
+ "sha256": "178dvigiw162m01x7dm8pf61w2n3bq51lvk5q7jzpb9s35pz1697",
+ "rev": "5c206561aa2c844ecdf3e3b672c3235e559ddd7f"
+ },
+ "recipe": {
+ "sha256": "0byzrz74yvk12m8dl47kkmkziwrrql193q72qx974zbqdj8h2sph",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20130508.1344",
+ "deps": []
+ },
+ "naquadah-theme": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "jd",
+ "repo": "naquadah-theme",
+ "sha256": "0mxf61ky1dd7r2qd4j7k6bdppmkilkq5l9gv257a12539wkw5yq2",
+ "rev": "f6308bb7d110f1e6d6a91db901f8fb3f99da12ac"
+ },
+ "recipe": {
+ "sha256": "1aml1f2lgn530i86218nrc1pk3zw5n3qd2gw4gylwi7g75i0cqn1",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150923.341",
+ "deps": []
+ },
+ "stan-snippets": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "stan-dev",
+ "repo": "stan-mode",
+ "sha256": "09xgwrgb4a348fchcn24k51lh8cq1sj6lzfx8v76gkkhp7sn3l1r",
+ "rev": "58826c65f3351eb69bf999f3364afe50dc31645e"
+ },
+ "recipe": {
+ "sha256": "021skkvak645483s7haz1hsz98q3zd8hqi9k5zdzaqlabwdjwh85",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150728.2254",
+ "deps": [
+ "stan-mode",
+ "yasnippet"
+ ]
+ },
+ "emacsql-mysql": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "skeeto",
+ "repo": "emacsql",
+ "sha256": "0ld5qpl7b3iksgxcfysznf88wj019l5271kdz4nalqi4kchf5xad",
+ "rev": "74bd11bc0998d7019a05eecc0486fee09c84a93b"
+ },
+ "recipe": {
+ "sha256": "1c20zhpdzfqjds6kcjhiq1m5ch53fsx6n1xk30i35kkg1wxaaqzy",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151004.915",
+ "deps": [
+ "cl-lib",
+ "emacs",
+ "emacsql"
+ ]
+ },
+ "cdlatex": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "cdominik",
+ "repo": "cdlatex",
+ "sha256": "1jj9vmhc4s3ych08bjm1c2xwi81z1p20rj7bvxrgvb5aga2ghi9d",
+ "rev": "b7183c2200392b6d85fca69390f4a65fac7a7b19"
+ },
+ "recipe": {
+ "sha256": "1jsfmzl13fykbg7l4wv9si7z11ai5lzvkndzbxh9cyqlvznq0m64",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140707.626",
+ "deps": []
+ },
+ "yalinum": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "tm8st",
+ "repo": "emacs-yalinum",
+ "sha256": "12dd4ahg9f1493982d49g7sxx0n6ss4xcfhxwzyaqxckwzfranp0",
+ "rev": "d3e0cbe3f4f5ca311e3298e684901d6fea3ad973"
+ },
+ "recipe": {
+ "sha256": "0jzsvkcvy2mkfmri4bzgrlgw2y0z3hxz44md83s5zmw09mshkahf",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20130217.443",
+ "deps": []
+ },
+ "org-download": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "abo-abo",
+ "repo": "org-download",
+ "sha256": "12k3iqzmj92cvi0d99mn3ylxj00p2f2f8049dd2nxnp1gxs2k4dq",
+ "rev": "501920e273b32f96dfbafcf769d330296a612847"
+ },
+ "recipe": {
+ "sha256": "19yjx0qqpmrdwagp3d6lwwv7dcb745m9ccq3m29sin74f5p4svsi",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151030.916",
+ "deps": [
+ "async"
+ ]
+ },
+ "oberon": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "emacsorphanage",
+ "repo": "oberon",
+ "sha256": "16462cgq91jg7i97h440zss5vw2qkxgdy7gm148ns4djr2fchnf6",
+ "rev": "fb57d18ce13835a8a69b6bafecdd9193ca9a59a3"
+ },
+ "recipe": {
+ "sha256": "1wna7ld670r6ljdg5yx0ga0grbq1ma8q92gkari0d5czr7s9lggv",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20120715.409",
+ "deps": []
+ },
+ "inkpot-theme": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "siovan",
+ "repo": "emacs24-inkpot",
+ "sha256": "063v3a783si5fi8jrnysss60qma1c3whvyb48i10qbrrrx750cmv",
+ "rev": "374a72794ebcb92bd7b50b5578d4c2ffa6049966"
+ },
+ "recipe": {
+ "sha256": "0w4q74w769n88zb2q7x326cxji42278lf95wnpslgjybnaxycgw7",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20120505.908",
+ "deps": []
+ },
+ "pixie-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "johnwalker",
+ "repo": "pixie-mode",
+ "sha256": "0nnvf2p593gn8sbyrvczyll030xgnkxn900a2hy7ia7xh0wmvddp",
+ "rev": "f32d5d812c7b5b72d7ff7bad52b41035f9ef6e96"
+ },
+ "recipe": {
+ "sha256": "16z15yh78837k548xk5widdmy6fv03vym6q54i40knmgf5cllsl8",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150121.2324",
+ "deps": [
+ "clojure-mode",
+ "inf-clojure"
+ ]
+ },
+ "sourcekit": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "nathankot",
+ "repo": "company-sourcekit",
+ "sha256": "1xzwalchl9lnq9848dlvhhbzyh1wkwbciz20d1iw0fsigj5g156c",
+ "rev": "5e1adf8d201fd94a942b40983415db1b28b6eef1"
+ },
+ "recipe": {
+ "sha256": "1lvk3m86awlinivpg89h6zvrwrdqa5ljdp563k3i4h9384w82pks",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151209.714",
+ "deps": [
+ "dash",
+ "dash-functional",
+ "emacs"
+ ]
+ },
+ "gandalf-theme": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "ptrv",
+ "repo": "gandalf-theme-emacs",
+ "sha256": "0sn3y1ilbg532mg941qmzipvzq86q31x86ypaf0h0m4015r7l59v",
+ "rev": "4e472fc851431458537d458d09c1f5895e338536"
+ },
+ "recipe": {
+ "sha256": "0wkmsg3pdw98gyp3q508wsqkzw821qsqi796ynm53zd7a4jfap4p",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20130809.447",
+ "deps": []
+ },
+ "guru-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "bbatsov",
+ "repo": "guru-mode",
+ "sha256": "16h1g88y4q737sxcjkm1kxirv5m2x3l9wgmz0s4hlxjzli8fc7jr",
+ "rev": "062a41794431d5e263f9f0e6ae1ec4a8d79980dd"
+ },
+ "recipe": {
+ "sha256": "0j25nxs3ndybq1ik36qyqdprmhav4ba8ny7v2z61s23id8hz3xjs",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151028.28",
+ "deps": []
+ },
+ "msvc": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "yaruopooner",
+ "repo": "msvc",
+ "sha256": "1draiwbwb8zfi6rdr5irv8091xv2pmnifq7pzi3rrvjb8swb28z3",
+ "rev": "e7a61fa5b98a129637f970ac6db9163e330b3d02"
+ },
+ "recipe": {
+ "sha256": "04gq2klana557qvsi3bv6416l0319jsqb6bdfs7y6729qd94hlq3",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150530.351",
+ "deps": [
+ "ac-clang",
+ "cedet",
+ "cl-lib",
+ "emacs"
+ ]
+ },
+ "phi-search-migemo": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "zk-phi",
+ "repo": "phi-search-migemo",
+ "sha256": "1k8hjnkinzdxy9qxldsyvj6npa2sv48m905d1cvxr8lyzpc5hikh",
+ "rev": "57623e4b67ee766cbb299da00a212f3ebf7d6fb0"
+ },
+ "recipe": {
+ "sha256": "0qk73s09sasm438w29j5z2bmlb60p1mgbv2ch43rgq8c6kjzg6h6",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150116.706",
+ "deps": [
+ "migemo",
+ "phi-search"
+ ]
+ },
+ "describe-number": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "netromdk",
+ "repo": "describe-number",
+ "sha256": "13fasbhdjwc4jh3cy25gm5sbbg56hq8la271098qpx6dhqm2wycq",
+ "rev": "40618345a37831804b29589849a785ef5aa5ac24"
+ },
+ "recipe": {
+ "sha256": "0gvriailni2ppz69g0bwnb1ik1ghjkj341k45vllz30j0frp9iji",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151031.1955",
+ "deps": [
+ "yabin"
+ ]
+ },
+ "smex": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "nonsequitur",
+ "repo": "smex",
+ "sha256": "0xrbkpc3w7yadpjih169cpp75gilsnx4y9akgci5vfcggv4ffm26",
+ "rev": "55aaebe3d793c2c990b39a302eb26c184281c42c"
+ },
+ "recipe": {
+ "sha256": "1rwyi7gdzswafkwpfqd6zkxka1mrf4xz17kld95d2ram6cxl6zda",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151212.1609",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "fancy-battery": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "lunaryorn",
+ "repo": "fancy-battery.el",
+ "sha256": "0m7rjzl9js2gjfcaqp2n5pn5ykpqnv8qfv35l5m5kpfigsi9cbb0",
+ "rev": "bcc2d7960ba207b5b4db96fe40f7d72670fdbb68"
+ },
+ "recipe": {
+ "sha256": "03rkfdkrzyal9abdiv8c73w10sm974hxf3xg5015hibfi6kzg8ii",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150101.604",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "erc-track-score": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "jd",
+ "repo": "erc-track-score.el",
+ "sha256": "0n107d77z04ahypa7hn2165kkb6490v4vkzdm5zwm4lfhvlmp0x2",
+ "rev": "5b27531ea6b1a4c4b703b270dfa9128cb5bfdaa3"
+ },
+ "recipe": {
+ "sha256": "19wjwah2n8ri6gyrsbzxnrvxwr5cj48sxrar1226n9miqvgj5whx",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20130328.715",
+ "deps": []
+ },
+ "wgrep-ack": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "mhayashi1120",
+ "repo": "Emacs-wgrep",
+ "sha256": "075z0glain0dp56d0cp468y5y88wn82ab26aapsrdzq8hmlshwn4",
+ "rev": "7ef26c51feaef8a5ec0929737130ab8ba326983c"
+ },
+ "recipe": {
+ "sha256": "03l1a681cwnn06m77xg0a547892gy8mh415v9rg3h6lkxwcld8wh",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20141012.511",
+ "deps": [
+ "wgrep"
+ ]
+ },
+ "nameframe-perspective": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "john2x",
+ "repo": "nameframe",
+ "sha256": "07zgwyrss23yb8plnhhwmh0khdvfp539891sj1z1vs50jcllcpw5",
+ "rev": "96acff56b30f9d1145aeaf7a4c53c9a2c823ee8e"
+ },
+ "recipe": {
+ "sha256": "0wgr90m2pazc514slgdl1lin4mr3xxizasc82k7qinvdvdja515x",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151018.407",
+ "deps": [
+ "nameframe",
+ "perspective"
+ ]
+ },
+ "nrepl-eval-sexp-fu": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "samaaron",
+ "repo": "nrepl-eval-sexp-fu",
+ "sha256": "1nwj1ax2qmmlab4lik0b7japhqd424d0rb995dfv89p99gp8vmvc",
+ "rev": "3a24b7d4bca13e87c987a4ddd212da914ff59191"
+ },
+ "recipe": {
+ "sha256": "17g4nih9kz2483ylp651lwfxkvmaj7wpinpgnifwbciyrplfvx2j",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140311.541",
+ "deps": [
+ "highlight",
+ "smartparens",
+ "thingatpt"
+ ]
+ },
+ "org-trello": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "org-trello",
+ "repo": "org-trello",
+ "sha256": "0w0gw3varx8qrcfh3iwg6qqxavprm25bjv9ada34xqjdhsv537xc",
+ "rev": "ae291d19752d86d01bb21cec6fb410c1eb9145d7"
+ },
+ "recipe": {
+ "sha256": "1rm91xccvdsqghdnrnjvyp8xfvrw5ac677vzzz24rz9dssh2mz9b",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151213.936",
+ "deps": [
+ "dash",
+ "dash-functional",
+ "deferred",
+ "emacs",
+ "request-deferred",
+ "s"
+ ]
+ },
+ "codesearch": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "abingham",
+ "repo": "codesearch.el",
+ "sha256": "105g2a9d0rb1qaph276qyj2gq9k9zkvrz5wzic9r06mjiywk1s9a",
+ "rev": "9a887f8d440ba98a72a7619dd744c0a9e3892919"
+ },
+ "recipe": {
+ "sha256": "0z7zvain9n0rm6bvrh3j7z275l32fmp46p4b33mizqd1y86w89nx",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151109.754",
+ "deps": [
+ "dash"
+ ]
+ },
+ "know-your-http-well": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "for-GET",
+ "repo": "know-your-http-well",
+ "sha256": "0hkjdmaab50dk07g1825w4x9dpavyqvkm7kp4fvgi3lk2j2a67q7",
+ "rev": "139fe4e1c2d2a43f500366b8ed61d613330ec438"
+ },
+ "recipe": {
+ "sha256": "0k2x0ajxkivim8nfpli716y7f4ssrmvwi56r94y34x4j3ib3px3q",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151119.1331",
+ "deps": []
+ },
+ "homebrew-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "dunn",
+ "repo": "homebrew-mode",
+ "sha256": "1sj8pz48cilk8l6zn47fv1wkv833wrkvrf2mrmbdkvj3lqjrz0b3",
+ "rev": "767b4934c02c7b4117b6bd6cae8224848bc49db2"
+ },
+ "recipe": {
+ "sha256": "088wc5fq4r5yj1nbh7mriyqf0xwqmbxvblj9d2wwrkkdm5flc8mj",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151030.851",
+ "deps": [
+ "dash",
+ "emacs",
+ "inf-ruby"
+ ]
+ },
+ "erc-social-graph": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "vibhavp",
+ "repo": "erc-social-graph",
+ "sha256": "0k3gp4c74g5awk7v9lzb6py3dvf59nggh6dw7530cswxb6kg2psa",
+ "rev": "e6ef3416a1c5064054bf054d9f0c1c7bf54a9cd0"
+ },
+ "recipe": {
+ "sha256": "07arn3k89cqxab5x5lczv8bpgrbirmlw9p6c37fgrl3df6f46h4h",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150508.704",
+ "deps": []
+ },
+ "caml": {
+ "fetch": {
+ "tag": "fetchsvn",
+ "url": "http://caml.inria.fr/svn/ocaml/trunk/emacs/",
+ "sha256": "16qw82m87i1fcnsccqcvr9l6p2cy0jdhljsgaivq0q10hdmbgqdw",
+ "rev": "16548"
+ },
+ "recipe": {
+ "sha256": "0kxrn9s1h2l05akcdcj6fd3g6x5wbi511mf14g9glcn8azyfs698",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151009.1045",
+ "deps": []
+ },
+ "indent-guide": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "zk-phi",
+ "repo": "indent-guide",
+ "sha256": "1p54w9dwkc76nvc4m0q9a0lh4bdxp4ad1wzscadayqy8qbrylf97",
+ "rev": "0ef4813c538d5afba210681a8e81848b0927d421"
+ },
+ "recipe": {
+ "sha256": "029fj9rr9vfmkysi6lzpwra92j6ppw675qpj3sinfq7fqqlicvp7",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151119.917",
+ "deps": []
+ },
+ "deft": {
+ "fetch": {
+ "tag": "fetchgit",
+ "url": "git://jblevins.org/git/deft.git",
+ "sha256": "3073db99375de84c335c93d44d520c1a2ed471fb1a7c7f1febef014a6e2d16c1",
+ "rev": "a3e25d94424e2acd516d818e83d74c56e884b0a4"
+ },
+ "recipe": {
+ "sha256": "1c9kps0lw97nl567ynlzk4w719a86a18q697rcmrbrg5imdx4y5p",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151008.1022",
+ "deps": []
+ },
+ "autodisass-java-bytecode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "gbalats",
+ "repo": "autodisass-java-bytecode",
+ "sha256": "1pf2mwnicj5x2kksxwmrzz2vfxj9y9r6rzgc1fl8028mfrmrmg8s",
+ "rev": "3d61dbe266133c950b39e880f78d142751c7dc4c"
+ },
+ "recipe": {
+ "sha256": "1k19nkbxnysm3qkpdhz4gv2x9nnrp94xl40x84q8n84s6xaan4dc",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151005.1112",
+ "deps": []
+ },
+ "projmake-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "ericbmerritt",
+ "repo": "projmake-mode",
+ "sha256": "1sxxy0s96sgm6i743qwjs0qjpsdr03gqc1cddvvpxbryh42vw9jn",
+ "rev": "25e2f28ca2c528e42c6422735829fc77bab8b451"
+ },
+ "recipe": {
+ "sha256": "192gvmhcz1anl80hpmcjwwd08dljyrap9sk6qj0y85mcnaafm882",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150619.1620",
+ "deps": [
+ "dash",
+ "indicators"
+ ]
+ },
+ "nm": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "tjim",
+ "repo": "nevermore",
+ "sha256": "1skbjmyikzyiic470sngskggs05r35m8vzm69wbmrjapczginnak",
+ "rev": "5a3f29174b3a4b2b2e7a700a862f3b16a942687e"
+ },
+ "recipe": {
+ "sha256": "004rjbrkc7jalbd8ih170sy97w2g16k3whqrqwywh09pzrzb05kw",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151110.1310",
+ "deps": [
+ "company",
+ "emacs",
+ "notmuch",
+ "peg"
+ ]
+ },
+ "helm-bundle-show": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "masutaka",
+ "repo": "emacs-helm-bundle-show",
+ "sha256": "1w0x4bn9x16pd7s1j4max6268qd4r16709sya646sbqdkk41rcxj",
+ "rev": "6dffd602a4cc5d85eade7de3be99a22b246fc437"
+ },
+ "recipe": {
+ "sha256": "1af5g233kjf04m2fryizk51a1s2mcmj36zip5nyb8skcsfl4riq7",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151207.241",
+ "deps": [
+ "helm"
+ ]
+ },
+ "irony": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "Sarcasm",
+ "repo": "irony-mode",
+ "sha256": "00zb52qhyfzpn180x6m2ds8gfcxgcn4jiqb2kvdcrsmrv2w40fgc",
+ "rev": "eb4bf86f5984b399ccc000ad635d1de8915b179d"
+ },
+ "recipe": {
+ "sha256": "1xcxrdrs7imi31nxpszgpaywq4ivni75hrdl4zzrf103xslqpl8a",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151217.1258",
+ "deps": [
+ "cl-lib",
+ "json"
+ ]
+ },
+ "elein": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "remvee",
+ "repo": "elein",
+ "sha256": "1ijrhm9vrzh5wl1rr9ayl11dwm05bh1i43fnbz3ga58l6whgkfpw",
+ "rev": "d4c0c0491dbb7c90e953d7a16172107c37103605"
+ },
+ "recipe": {
+ "sha256": "0af263zq4xxaxhpypn769q8h1dla0ygpnd6l8xc13zlni6jjwdsg",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20120120.516",
+ "deps": []
+ },
+ "ruby-interpolation": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "leoc",
+ "repo": "ruby-interpolation.el",
+ "sha256": "1r2f5jxi6wnkmr1ssvqgshi97gjvxvf3qqc0njg1s33cy39wpqq5",
+ "rev": "1978e337601222cedf00e117bf4b5cac15d1f203"
+ },
+ "recipe": {
+ "sha256": "07idndxw8vgfrk5zfmjjhmixza35mqxwjhsrbjrq5yy72i5ivznp",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20131112.1052",
+ "deps": []
+ },
+ "elisp-sandbox": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "joelmccracken",
+ "repo": "elisp-sandbox",
+ "sha256": "1pwx0cksgf9qyd6nl1540jmp3p0adgz2sk38r5s8gbli3x109hy3",
+ "rev": "ddd669266ca36d7e4ebba73eb1ab42523787e042"
+ },
+ "recipe": {
+ "sha256": "1bazm1cf9ghh9b7jzqqgyfcalnrfg7vmxqbn4fiy2c76gbzlr2bp",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20131116.1242",
+ "deps": []
+ },
+ "swiper-helm": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "abo-abo",
+ "repo": "swiper-helm",
+ "sha256": "1fr9vs0574g93mq88d25nmj93hrx4d4s2d0im6wk156k2yb8ha2b",
+ "rev": "57012ab626486fcb3dfba0ee6720b0625e489b8c"
+ },
+ "recipe": {
+ "sha256": "011ln6vny7z5vw67cpzldxf5n6sk2hjdkllyf7v6sf4m62ws93ph",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151116.530",
+ "deps": [
+ "emacs",
+ "helm",
+ "swiper"
+ ]
+ },
+ "cal-china-x": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "xwl",
+ "repo": "cal-china-x",
+ "sha256": "039913cn4xafh533cc6zi2l5260cxvv5iv40l8ydk8zw36vm1gws",
+ "rev": "b6186a729899ae141c546dd3efde461160d8b172"
+ },
+ "recipe": {
+ "sha256": "06mh2p14m2axci8vy1hr7jpy53jj215z0djyn8h7zpr0k62ajhka",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151122.1547",
+ "deps": [
+ "cl-lib"
+ ]
+ },
+ "chinese-wbim": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "zilongshanren",
+ "repo": "chinese-wbim",
+ "sha256": "0cx1g6drkr8gyqqdxjf7j4wprxcbq30gam2racgnvdicgij0apwg",
+ "rev": "57ff61ff3895d77335709d24b40cefc4d10b0095"
+ },
+ "recipe": {
+ "sha256": "1pax3kpmvg170mpvfrjbpj9czq0xykmfbany2f7vbn96jb5xfmsb",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150623.2250",
+ "deps": []
+ },
+ "n4js": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "tmtxt",
+ "repo": "n4js.el",
+ "sha256": "1pd6c0jc1zxx3i3nk4qdx7gdf1qn8sc9jgqd72pkkpzvdwv998cp",
+ "rev": "3991ed8975151d5e8d568e952362df810f7ffab7"
+ },
+ "recipe": {
+ "sha256": "0x7smxs91ffriyxx2df61fh1abpl39gqy4m62k77h7xb6fg7af6m",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150713.2131",
+ "deps": [
+ "cypher-mode",
+ "emacs"
+ ]
+ },
+ "emoji-display": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "ikazuhiro",
+ "repo": "emoji-display",
+ "sha256": "0sh4q4sb4j58ryvvmlsx7scry9inzgv2ssa87vbyzpxq0435l229",
+ "rev": "bb4217f6400151a9cfa6d4524b8427f01feb5193"
+ },
+ "recipe": {
+ "sha256": "04cf18z26d64l0sv8qkbxjixi2wbw23awd5fznvg1cs8ixss01j9",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140117.413",
+ "deps": []
+ },
+ "e2wm-sww": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "aki2o",
+ "repo": "e2wm-sww",
+ "sha256": "0mz43mwcgyc1c9p9b7nflnjxdxjm2nxbhl0scj6llzphikicr35g",
+ "rev": "1063f9854bd34db5ac771cd1036cecc89834729d"
+ },
+ "recipe": {
+ "sha256": "0x45j62cjivf9v7jp1b41yya3f9akp92md6cbv0v7bwz98g2vsk8",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140524.358",
+ "deps": [
+ "e2wm"
+ ]
+ },
+ "pomodoro": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "baudtack",
+ "repo": "pomodoro.el",
+ "sha256": "1dlk0ypw8316vgvb7z2p7fvaiz1wcy1l8crixypaya1zdsnh9v1z",
+ "rev": "4a299b8f5e6623010224dcb3e524ff288c6a082c"
+ },
+ "recipe": {
+ "sha256": "075sbypas8xlhsw8wg3mgi3fn5yf7xb3klyjgyy8wfkgdz0269f8",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150716.1246",
+ "deps": []
+ },
+ "wisp-mode": {
+ "fetch": {
+ "tag": "fetchhg",
+ "url": "https://bitbucket.com/ArneBab/wisp",
+ "sha256": "0ppj8mrlc20i2syyiwvj5rp53swrm929h0ksxxlqvn3nvl9gsajd",
+ "rev": "34fc6f12d740"
+ },
+ "recipe": {
+ "sha256": "10zkp1qbvl8dmxij7zz4p1fixs3891xr1nr57vyb3llar9fgzglc",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150623.1234",
+ "deps": []
+ },
+ "syntactic-sugar": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "rolandwalker",
+ "repo": "syntactic-sugar",
+ "sha256": "0zi11540wwcl93xcgd2yf6b72zv01zkaqbf1jfbksg82k9038m2d",
+ "rev": "7ddc4502c831abe1c4ad4c7d1ca628a2c9e13968"
+ },
+ "recipe": {
+ "sha256": "12b2vpvz5h4wzxrk8jrbgc8v0w6bzzvxcyfs083fi1791qq1rw7r",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140508.1541",
+ "deps": []
+ },
+ "savekill": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/savekill.el",
+ "sha256": "1qfq83cb4qixdl15j28rlslkq6g88ig55ydg747jqb3dqyp3qaah"
+ },
+ "recipe": {
+ "sha256": "1l14p6wkzfhlqxnd9fpw123vg9q5k20ld7rciyzbfdb99pk9z02i",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140417.2134",
+ "deps": []
+ },
+ "ido-at-point": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "katspaugh",
+ "repo": "ido-at-point",
+ "sha256": "1bii7vj8pmmijcpvq3a1scky4ais7k6d7zympb3m9dmz355m9rpp",
+ "rev": "e5907bbe8a3d148d07698b76bd994dc3076e16ee"
+ },
+ "recipe": {
+ "sha256": "0jpgq2iiwgqifwdhwhqv0cd3lp846pdqar6rxqgw9fvvb8bijqm0",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151021.257",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "smartrep": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "myuhe",
+ "repo": "smartrep.el",
+ "sha256": "1sjwqi8w83qxihqmcm7z0vwmrz1az0y266qgj2nwfv39bri6y4i6",
+ "rev": "f0ff5a6d7b8603603598ae3045c98b011e58d86e"
+ },
+ "recipe": {
+ "sha256": "1ypls52d51lcqhz737rqg73c6jwl6q8b3bwb29z51swyamf37rbn",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150508.2130",
+ "deps": []
+ },
+ "prodigy": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "rejeep",
+ "repo": "prodigy.el",
+ "sha256": "18j0jwp8z4ff7xfiijyh09cvb14mbjfaygin2qjp6bxgx3c1mpin",
+ "rev": "1f3b5a3309122bae01150738c3d8da910ffbee71"
+ },
+ "recipe": {
+ "sha256": "032868bgy2wmb2ws48lfibs4118inpna7mmml8m7i4m4y9ll6g85",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20141109.452",
+ "deps": [
+ "dash",
+ "emacs",
+ "f",
+ "s"
+ ]
+ },
+ "toggle-quotes": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "toctan",
+ "repo": "toggle-quotes.el",
+ "sha256": "1w1lmqgzn9bp59h9y9plv80y53k6qhjgfmnnlqyyqfl45z3si7kg",
+ "rev": "33abc221d6887f0518337851318065cd86c34b03"
+ },
+ "recipe": {
+ "sha256": "16w453v4g7ww93bydim62p785x7w4vssp9l5liy0h3ppfmgvmxhp",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140710.426",
+ "deps": []
+ },
+ "scss-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "antonj",
+ "repo": "scss-mode",
+ "sha256": "113pi7nsaksaacy74ngbvrvr6qcl7199xy662nj58bz5307yi9q0",
+ "rev": "b010d134f499c4b4ad33fe8a669a81e9a531b0b2"
+ },
+ "recipe": {
+ "sha256": "1g27xnp6bjaicxjlb9m0njc6fg962j3hlvvzmxvmyk7gsdgcgpkv",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150107.1600",
+ "deps": []
+ },
+ "unipoint": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "apgwoz",
+ "repo": "unipoint",
+ "sha256": "1wl9rzys1zr2c41h5i57y6hxsavix1b26f453l2izmb6r0b1dvh0",
+ "rev": "5da04aebac35a5c9e1d8704f2231808d42f4b36a"
+ },
+ "recipe": {
+ "sha256": "1nym2wlr50wk62cbagq1qyjczzf56nb6i9dfzcwikdck8p4p2dr7",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140113.1624",
+ "deps": []
+ },
+ "buttercup": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "jorgenschaefer",
+ "repo": "emacs-buttercup",
+ "sha256": "03zmxfql9hb31n2qf3vs4kv69kffrazlmzji8hkcf86i2wa4hqrf",
+ "rev": "14718c0087b7b2b5e0ff8a1a377a9e4d9f310c60"
+ },
+ "recipe": {
+ "sha256": "1grrrdk5pl9l1jvnwzl8g0102gipvxb5qn6k2nmv28jpl57v8dkb",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150927.506",
+ "deps": []
+ },
+ "jdee": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "jdee-emacs",
+ "repo": "jdee",
+ "sha256": "1p8dzsxlm3rd425ahkjdpv1gbxiw8bg22lakgq8lfdv4mxi389ap",
+ "rev": "f3d1204c448d5406c3c51c01518afcf914d8f1fa"
+ },
+ "recipe": {
+ "sha256": "1yn8vszj0hs2jwwd4x55f11hs2wrxjjvxpngsj7lkcwax04kkvq3",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151218.1443",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "maude-mode": {
+ "fetch": {
+ "tag": "fetchsvn",
+ "url": "svn://svn.code.sf.net/p/maude-mode/code/trunk",
+ "sha256": "06k07qvhm2mbqasn72649lx3pwzb0r466854a18g6lciwhiww7vy",
+ "rev": "63"
+ },
+ "recipe": {
+ "sha256": "04b6q328hj0w33z4c50nqyark0pn5sqi0s8096m9di4rjwxaw0ma",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140212.502",
+ "deps": []
+ },
+ "display-theme": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "kawabata",
+ "repo": "emacs-display-theme",
+ "sha256": "0r560bpgw5p2pfcgkgcrlpp1bprv1f23dl4y5fjk06dg93fgaysa",
+ "rev": "b180b3be7a74ae4799a14e7e4bc2fe10e3ff7a15"
+ },
+ "recipe": {
+ "sha256": "07nqscmfa6iykll1m6gyiqca1g5ncx3rx468iyf2ahygpvqvnbxa",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140115.956",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "list-register": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/list-register.el",
+ "sha256": "1sv1x2bc1xg7z3q4r9pbvjspj041q4zn883w9m071h7dgx8i9a6l"
+ },
+ "recipe": {
+ "sha256": "06q7q3j9qvqbp25cx9as2ckmgcz2myfvi2n34jp60v3ayhna79r4",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20130824.700",
+ "deps": []
+ },
+ "scratch-pop": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "zk-phi",
+ "repo": "scratch-pop",
+ "sha256": "1yvmfiv1s83r0jcxzbxyrx3b263d73lbap6agansmrhkxp914xr1",
+ "rev": "2c9648a669ce8e3a9e35e8e1e3c808531d20c549"
+ },
+ "recipe": {
+ "sha256": "0s7g1fbnc5hgz8gqmp1lynj5g7vvxisj7scxx5wil9qpn2zyggq1",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150820.339",
+ "deps": [
+ "popwin"
+ ]
+ },
+ "erc-image": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "kidd",
+ "repo": "erc-image.el",
+ "sha256": "03r13x2hxy4hk0n0ri5wld8rp8frx4j3mig6mn2v25k0cr52689f",
+ "rev": "270a60706e3e0669350bb7aaea465570ef5074cf"
+ },
+ "recipe": {
+ "sha256": "1cgzygkysjyrsdr6jwqkxlnisxccsvh4kxgn19rk4n61ms7bafvf",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150914.514",
+ "deps": []
+ },
+ "thingatpt+": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/thingatpt+.el",
+ "sha256": "1fyx4z7ci5yisfng0ps2q1nwvziidamam1m2n53rkfmm2gprxqhb"
+ },
+ "recipe": {
+ "sha256": "0w031lzjl5phvzsmbbxn2fpziwkmdyxsn08h6b9lxbss1prhx7aa",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150823.1911",
+ "deps": []
+ },
+ "mysql2sqlite": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "echosa",
+ "repo": "emacs-mysql2sqlite",
+ "sha256": "0q5809hq22hyzxx5xr2hwwf3jh3qlpf3mkbl3fxqq93gm16plh1i",
+ "rev": "07415c5fcd895ebccf1b774d0eab175f2700652f"
+ },
+ "recipe": {
+ "sha256": "1jblrbw4rq2jwpb8d1dyna0fiv52b9va3sj881cb17rqx200y3nd",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151123.1539",
+ "deps": []
+ },
+ "hide-comnt": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/hide-comnt.el",
+ "sha256": "1xvchpbrfwnqlh32pj0fg7n0x8csfm0mn09z7p45w3wf1mz0ckbn"
+ },
+ "recipe": {
+ "sha256": "181kns2rg4rc0pyyxw305qc06d10v025ad7v2m037y72vfwb0igx",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150801.1120",
+ "deps": []
+ },
+ "emms-player-mpv": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "dochang",
+ "repo": "emms-player-mpv",
+ "sha256": "1yy4dmjp53l2df5qix31g4vizhv80wm88vjqq6qqa9p822732n0m",
+ "rev": "a1be1d266530ede3780dd69a7243d898f1016127"
+ },
+ "recipe": {
+ "sha256": "175rmqx3bgys4chw8ylyf9rk07sg0llwbs9ivrv2d3ayhcz1lg9y",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151208.102",
+ "deps": [
+ "emms"
+ ]
+ },
+ "decl": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "preetpalS",
+ "repo": "decl.el",
+ "sha256": "1njmsdgzknz844g0ydssg034pvrpvrhb0lx6rqyjkps2m74llzq1",
+ "rev": "75cca6bb1203f4d00cf10f7c4e87400f7c456e75"
+ },
+ "recipe": {
+ "sha256": "0wdhmp226wmrjvjgpbz8ihvhxxv3rrxh97sdqm3mgsav3n071n6k",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151204.2249",
+ "deps": [
+ "cl-lib",
+ "dash",
+ "emacs"
+ ]
+ },
+ "flatland-black-theme": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "emacsfodder",
+ "repo": "emacs-flatland-black-theme",
+ "sha256": "0ib6r6q4wbkkxdwgqsd25nx7ccxhk16lqkvwikign80j9n11g7s1",
+ "rev": "75fc4f1815feb23563a60477c02d70326b45c59e"
+ },
+ "recipe": {
+ "sha256": "0cl2qbry56nb4prbsczffx8h35x91pgicw5pld0ndw3pxid9h2da",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20141116.30",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "kibit-helper": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "brunchboy",
+ "repo": "kibit-helper",
+ "sha256": "0s2hb2lvfmcvm3n1fg4biaafc1p7j7w990d7w15gicaw6rr2j4nr",
+ "rev": "16bdfff785ee05d8e74a5780f6808506d990cef7"
+ },
+ "recipe": {
+ "sha256": "15viybjqksylvm5ash2kzsil0cpdka56wj1rryixa8y1bwlj8y4s",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150508.1033",
+ "deps": [
+ "emacs",
+ "s"
+ ]
+ },
+ "recompile-on-save": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "maio",
+ "repo": "recompile-on-save.el",
+ "sha256": "0wk28blnfks987iby0p3qpd4nxnz6sqn4fx8g59gyddjhav51lri",
+ "rev": "92e11446869d878803d4f3dec5d2101380c12bb2"
+ },
+ "recipe": {
+ "sha256": "0bg2p7pk4jlpqc7lg48mxd6zkwnx15r0r7lmsxgx9dv1ilfwrmgn",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151126.846",
+ "deps": [
+ "cl-lib",
+ "dash"
+ ]
+ },
+ "slime": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "slime",
+ "repo": "slime",
+ "sha256": "18iz4cn209xri420hrsl7dmaf0mqr87rc870kwn63pddrqffzqa8",
+ "rev": "137a6bf990c5a9db72716ee15aa2bd86b77ba0cb"
+ },
+ "recipe": {
+ "sha256": "04zcvjg0bbx5mdbsk9yn7rlprakl89dq6jmnq5v2g0n6q0mh6ign",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151213.1342",
+ "deps": [
+ "cl-lib"
+ ]
+ },
+ "audio-notes-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "Malabarba",
+ "repo": "audio-notes-mode",
+ "sha256": "0q79kblcbz5vlzj0f49vpc1902767ydmvkmwwjs60x3w2f3aq3cm",
+ "rev": "2158b2e8d20df3184bbe273a7fd5aa693e98baa9"
+ },
+ "recipe": {
+ "sha256": "0q88xmi7jbrx47nvbbmwggbm6i7agzpnv5y7cpdh73lg165xsz2h",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140204.1354",
+ "deps": []
+ },
+ "define-word": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "abo-abo",
+ "repo": "define-word",
+ "sha256": "02i621yq2ih0zp7mna8iykj41prv77hvcadz7rx8c942zyvjzxqd",
+ "rev": "64d98b7748686c51261fe6e8d42078c6284feb13"
+ },
+ "recipe": {
+ "sha256": "035fdfwnxw0mir1dyvrimygx2gafcgnvlcsmwmry1rsfh39n5b9a",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150709.1423",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "zeitgeist": {
+ "fetch": {
+ "tag": "fetchbzr",
+ "url": "lp:zeitgeist-datasources",
+ "sha256": "0f80fxh0y9lfa08fnic7ln0jn8vngfbiygy6sizdmrcxz67559vc",
+ "rev": "181"
+ },
+ "recipe": {
+ "sha256": "0gzmiwxmzcrl5mf0s7vs09p2wl7slq8xbl6ynl76iwzwjxjizahk",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20131228.1209",
+ "deps": []
+ },
+ "ecukes": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "ecukes",
+ "repo": "ecukes",
+ "sha256": "0h6vh719ai0cxyja6wpfi6m76d42vskj56wg666j0h6j0qw6h3i2",
+ "rev": "7dad2da09da33d8540f25bf7bb7dd62900669b80"
+ },
+ "recipe": {
+ "sha256": "0ava8hrc7r1mzv6xgbrb84qak5xrf6fj8g9qr4i4g0cr7843nrw0",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150717.848",
+ "deps": [
+ "ansi",
+ "commander",
+ "dash",
+ "espuds",
+ "f",
+ "s"
+ ]
+ },
+ "shell-switcher": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "DamienCassou",
+ "repo": "shell-switcher",
+ "sha256": "0ia7sdip4hl27avckv3qpqgm3k4ynvp3xxq1cy53bqfzzx0gcria",
+ "rev": "2c5575ae859a82041a4bacd1793b844bfc24c34f"
+ },
+ "recipe": {
+ "sha256": "07g9naiv2jk9jxwjywrbb05dy0pbfdx6g8pkra38rn3vqrjzvhyx",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151011.815",
+ "deps": []
+ },
+ "dash": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "magnars",
+ "repo": "dash.el",
+ "sha256": "1g7vrfhafmkqwdpfllfiwirl4pi437pyaws38jsd8laxmsa4m4wb",
+ "rev": "8a46d3c7c126d3e979f7f9b36867a413694cd8df"
+ },
+ "recipe": {
+ "sha256": "0azm47900bk2frpjsgy108fr3p1jk4h9kmp4b5j5pibgsm26azgz",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151216.1515",
+ "deps": []
+ },
+ "haml-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "nex3",
+ "repo": "haml-mode",
+ "sha256": "0fmcm4pcivigz9xhf7z9wsxz9pg1yfx9qv8na2dxj426bibk0a6w",
+ "rev": "7717db6fa4a90d618b4a5e3fef2ac1d24ce39be3"
+ },
+ "recipe": {
+ "sha256": "0ih0m7zr6kgn6zd45zbp1jgs1ydc5i5gmq6l080wma83v5w1436f",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150508.2211",
+ "deps": [
+ "ruby-mode"
+ ]
+ },
+ "sentence-navigation": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "noctuid",
+ "repo": "emacs-sentence-navigation",
+ "sha256": "0ikiv12ahndvk5w9pdayqlmafwj8d1vkcshfnqmgy6ykqbcdpqk6",
+ "rev": "8b6bf8af180c95f516bda9285da3fe940a2ab740"
+ },
+ "recipe": {
+ "sha256": "1p3ch1ab06v038h130fsxpbq45d1yadl67i2ih4l4fh3xah5997m",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150914.2346",
+ "deps": [
+ "ample-regexps",
+ "emacs"
+ ]
+ },
+ "helm-github-stars": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "Sliim",
+ "repo": "helm-github-stars",
+ "sha256": "1sbhh3dmb47sy3r2iw6vmvbq5bpjac4xdg8i5a0m0c392a38nfqn",
+ "rev": "9211be3fbb65ca8819e0d1a54524ed8abbfaa4fa"
+ },
+ "recipe": {
+ "sha256": "1r4mc4v71171sq9rbbhm346s92fb7jnvvl91y2q52jqmrnzzl9zy",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150625.1723",
+ "deps": [
+ "emacs",
+ "helm"
+ ]
+ },
+ "elmine": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "leoc",
+ "repo": "elmine",
+ "sha256": "1463y4zc6yabd30k6806yw0am18fjv0bkxm56p2siqrwn9pbsh8k",
+ "rev": "60639f46a5f45653f490cdd30732beb2dca47ada"
+ },
+ "recipe": {
+ "sha256": "1gi94dyz9x50swkvryd4vj36rqgz4s58nrb4h4vwwviiiqmc8fvz",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151121.623",
+ "deps": [
+ "s"
+ ]
+ },
+ "ace-jump-zap": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "waymondo",
+ "repo": "ace-jump-zap",
+ "sha256": "0z0rblr41r94l4b2gh9fcw50nk82ifxrr3ilxqzbb8wmvil54gh4",
+ "rev": "c60af83a857955b68c568c274a3c80cbe93f3150"
+ },
+ "recipe": {
+ "sha256": "07bkmly3lvlbby2m13nj3m1q0gcnwy5sas7d6ws6vr9jh0d36byb",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150330.1542",
+ "deps": [
+ "ace-jump-mode",
+ "dash"
+ ]
+ },
+ "anchored-transpose": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/anchored-transpose.el",
+ "sha256": "1hklypbp79pgaf1yklbm3qx4skm3xlml0cm1r9b9js3dbqyha651"
+ },
+ "recipe": {
+ "sha256": "19dgj1605qxc2znvzj0cj6x29zyrh00qnzk2rlwpn9hvzypg9v7w",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20080905.54",
+ "deps": []
+ },
+ "toxi-theme": {
+ "fetch": {
+ "tag": "fetchhg",
+ "url": "https://bitbucket.com/postspectacular/toxi-theme",
+ "sha256": "0hfzbrw9ik3yxdwmgsm80k0n045z6az6pgvxc1nqcjmiwh80h9mk",
+ "rev": "fc4274055149"
+ },
+ "recipe": {
+ "sha256": "032m3qbxfd0qp81qwayd5g9k7vz55g4yhw0d35qkxzf4qf58x9sd",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20130418.1439",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "pyfmt": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "aheaume",
+ "repo": "pyfmt.el",
+ "sha256": "1rp8zchvclh29rl9a1i82pcqghnhpaqnppaydxc2qx23y9pdgz9i",
+ "rev": "cb92be2cf0804cc53142dc5edb36f8e0ef5cec32"
+ },
+ "recipe": {
+ "sha256": "112kjsp763c2plhqlhydpngrabhc58ya7cszvi4119xqw2s699g6",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150521.1556",
+ "deps": []
+ },
+ "ruby-dev": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "Mon-Ouie",
+ "repo": "ruby-dev.el",
+ "sha256": "1cy5zmdfwsjw8jla8mxjm1cmvrv727fwq1kqhjr5nxj0flwsm4x1",
+ "rev": "3a6f6e489697916dd554852492bd325879be2e44"
+ },
+ "recipe": {
+ "sha256": "0mf2ra3p5976qn4ryc2s20vi0nrzwcg3xvsgppsc0bsirjw2l0fh",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20130811.351",
+ "deps": []
+ },
+ "flappymacs": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "taksatou",
+ "repo": "flappymacs",
+ "sha256": "07hv6l80ka10qszm16fpan8sas4b0qvl5s6qixxlz02fm7m0s7m5",
+ "rev": "bbc69405f62e1bc488533709d4ab0b5eba919dbd"
+ },
+ "recipe": {
+ "sha256": "0dcpl5n7wwsk62ddgfrkq5dkm91569y4i4f0yqa61pdmzhgllx7d",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140715.1101",
+ "deps": []
+ },
+ "helm-company": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "manuel-uberti",
+ "repo": "helm-company",
+ "sha256": "189qmc6fdj5a01a7w45r0qpn9qjf2q9g83qic9sgnrccc841zpyg",
+ "rev": "13f87befb1a427295eeeeb49f0c2e4847bc81e10"
+ },
+ "recipe": {
+ "sha256": "1pbsg7zrz447siwd8pasw2hz5z21wa1xpqs5nrylhbghsk076ld3",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151216.209",
+ "deps": [
+ "company",
+ "helm"
+ ]
+ },
+ "smeargle": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "syohex",
+ "repo": "emacs-smeargle",
+ "sha256": "1smv91ggvaw37597ilvhra8cnj4p71n6v5pfazii8k85kvs6x460",
+ "rev": "67466d5214a681430db8cb59a2a1bca771ff0024"
+ },
+ "recipe": {
+ "sha256": "1dy87ah1w21csvrkq5icnx7g7g7nxqkcyggxyazqwwxvh2silibd",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151014.42",
+ "deps": [
+ "cl-lib",
+ "emacs"
+ ]
+ },
+ "table": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "byplayer",
+ "repo": "table.el",
+ "sha256": "06asy1mwp9yyvzck1n5xrl1c4zzf1vf3k2xmlcb262nllfsh4gmc",
+ "rev": "d3718985d1103490c140690ead37d65b0e427c63"
+ },
+ "recipe": {
+ "sha256": "0jayhjvs5pkacw8r7z7fy0i732a1zpkcmirkzjpx3wqk0bs5fga6",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140722.15",
+ "deps": []
+ },
+ "epc": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "kiwanami",
+ "repo": "emacs-epc",
+ "sha256": "1ayhknqv1wmar2j2r4n7nqcp69i7k222qx524x4wv61ys324d004",
+ "rev": "dbae585622fa7b556945cc7475f354976d26b065"
+ },
+ "recipe": {
+ "sha256": "1l9rcx07pa4b9z5654gyw6b64c95lcigzg15amphwr56v2g3rbzx",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140610.34",
+ "deps": [
+ "concurrent",
+ "ctable"
+ ]
+ },
+ "suomalainen-kalenteri": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "tlikonen",
+ "repo": "suomalainen-kalenteri",
+ "sha256": "1b637p2cyc8a83qv9vba4yamzhk08f62zykqh5p35jwvym8wkann",
+ "rev": "b7991cb35624ebc04a89bbe759d40f186c9c097e"
+ },
+ "recipe": {
+ "sha256": "1wzijbgcr3jc47ccr7nrdkqha16s6gw0xiccnmdczi48cvnvvlkh",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151129.504",
+ "deps": []
+ },
+ "init-loader": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "emacs-jp",
+ "repo": "init-loader",
+ "sha256": "1zykh80k2sy0as1rn7qaa2hyvkagcvzzmxik4jpb0apw0ha1bf6s",
+ "rev": "1f28a0b801cbb08aa9b47fd15ceab243a2bc064c"
+ },
+ "recipe": {
+ "sha256": "0rq7759abp0ml0l8dycvdl0j5wsxw9z5y9pyx68973a4ssbx2i0r",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20141031.133",
+ "deps": []
+ },
+ "font-lock+": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/font-lock+.el",
+ "sha256": "1w159k5hn9z7ydx5gq4hph7gvbqs4ml4qbfgpsib5z39v7x6wkv4"
+ },
+ "recipe": {
+ "sha256": "1wn99cb53ykds87lg9mrlfpalrmjj177nwskrnp9wglyqs65lk4g",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150104.1605",
+ "deps": []
+ },
+ "session": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "emacsorphanage",
+ "repo": "session",
+ "sha256": "0sp952abz7dkq8b8kkzzmnwnkq5w15zsx5dr3h8lzxb92lnank9v",
+ "rev": "19ea0806873daac3539a4b956e15655e99e3dd6c"
+ },
+ "recipe": {
+ "sha256": "0fghxbnf1d5iyrx1q8xd0lbw9nvkdgg2v2f89j6apnawisrsbhwx",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20120510.1900",
+ "deps": []
+ },
+ "bundler": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "tobiassvn",
+ "repo": "bundler.el",
+ "sha256": "0cldbyc7qsyxszzfbdcw8n8a15hvj343acsjir29n6d9nnpmvjgp",
+ "rev": "9be0c4601a4d1a35de22f818637ce029830272d3"
+ },
+ "recipe": {
+ "sha256": "0i5ybc6i8ackxpaa75kwrg44zdq3jkvy48c42vaaafpddjwjnsy4",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151111.912",
+ "deps": [
+ "cl-lib",
+ "inf-ruby"
+ ]
+ },
+ "undohist": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "m2ym",
+ "repo": "undohist-el",
+ "sha256": "1c0daw246ky7b1x5b8h55x79pl1pjqk1k348l487bdd8zdj4w9wx",
+ "rev": "d2239a5f736724ceb9e3b6bcaa86f4064805cda0"
+ },
+ "recipe": {
+ "sha256": "0zzfzh8sf2dkz8h3kidv7zmwz2c2qq9n9qz2mab2lk0y44njzwhn",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150315.742",
+ "deps": [
+ "cl-lib"
+ ]
+ },
+ "jsfmt": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "brettlangdon",
+ "repo": "jsfmt.el",
+ "sha256": "0h9gx5cl3lashk0n8pv9yzb0mm8dyziddfbwfqfm70638p93ylhc",
+ "rev": "68109120f553fbc651fafb6fc35ed83c3e79f8a6"
+ },
+ "recipe": {
+ "sha256": "1syy32sv2d57b3gja0ly65h36mfnyq6hzf5lnnl3r58yvbdzngqd",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150727.1725",
+ "deps": []
+ },
+ "rdp": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "skeeto",
+ "repo": "rdp",
+ "sha256": "08l96bhghmnckar4i6afj9csqglasmpmby1r7j38ic9bp37z2yqd",
+ "rev": "b620192afada04aec33b38cc130fef0765f41ca9"
+ },
+ "recipe": {
+ "sha256": "0lj3idwv4fxz8pi8mnxkbhwhzaa1gs6ib4nzly3fc6yiix9ampkz",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20120928.2054",
+ "deps": []
+ },
+ "go-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "dominikh",
+ "repo": "go-mode.el",
+ "sha256": "14h5fgh4bksll4h61pkximydddpww1pq7kr9j2f8akr06gmwcdfl",
+ "rev": "15d227ae1cf8d55ae4395108bccc8ad6ca7d1eba"
+ },
+ "recipe": {
+ "sha256": "1852zjxandmq0cpbf7m56ar3rbdi7bx613gdgsf1bg8hsdvkgzfx",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151214.1129",
+ "deps": []
+ },
+ "xtest": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "promethial",
+ "repo": "xtest",
+ "sha256": "09mn8s7gzzxgs7kskld8l68zjrcgnvml3fqj69wrfq7b1g62hhxy",
+ "rev": "2c2bdf32667506dd9ddf6eb311832add616bdf1c"
+ },
+ "recipe": {
+ "sha256": "1vbs4sb4frzg8d3l96ip9cc6lc86nbj50vpdfqazvxmdfd1sg4i7",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20141214.1106",
+ "deps": [
+ "cl-lib"
+ ]
+ },
+ "noccur": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "NicolasPetton",
+ "repo": "noccur.el",
+ "sha256": "0wk86gm0by9c8mfbvydz5va07qd30n6wx067inqfa7wjffaq0xr7",
+ "rev": "6cc02ce07178a61ae38a849f80472c01969272bc"
+ },
+ "recipe": {
+ "sha256": "0a8l50v09bgap7rsls808k9wyjpjbcxaffsvz7hh9rw9s7m5fz5g",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150514.1620",
+ "deps": []
+ },
+ "speck": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/speck.el",
+ "sha256": "1i2z57aasljia6xd2xn1mryklc2gc9c2q1fad8wn7982sl277d10"
+ },
+ "recipe": {
+ "sha256": "19h3syk4kjmcy7jy9nlsbq6gyxwl4xsi84dy66a3cpvmknm25kyg",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140901.1335",
+ "deps": []
+ },
+ "lispyscript-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "krisajenkins",
+ "repo": "lispyscript-mode",
+ "sha256": "0n0mk01h9c3f24gzpws5xf6syrdwkq4kzs9mgwl74x9l0x904rgf",
+ "rev": "d0e67ee734919d7ff14c72712e909149cb9604bd"
+ },
+ "recipe": {
+ "sha256": "02biai45l5xl2m9l1drphrlj6r01msmadhyg774ijdk1x4gm5nhr",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20130828.919",
+ "deps": []
+ },
+ "pacmacs": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "codingteam",
+ "repo": "pacmacs.el",
+ "sha256": "07w3w3ms18kas637z6n86nnd9xqi73c6cbrmni99jbwqq7jhgi29",
+ "rev": "98816141d5d47db8d5c9c04aaf1c9a30a045a88f"
+ },
+ "recipe": {
+ "sha256": "13pgxwwigb0h709xrs2h1l957n4vcjz59qkrs8aa12czcg291599",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151217.803",
+ "deps": [
+ "cl-lib",
+ "dash",
+ "dash-functional",
+ "emacs",
+ "f"
+ ]
+ },
+ "bbdb": {
+ "fetch": {
+ "tag": "fetchgit",
+ "url": "git://git.savannah.nongnu.org/bbdb.git",
+ "sha256": "e20dfe8085782948c1411685d45bad0cb7ff088bc2d1d2c1654c276356382b26",
+ "rev": "8fce6df3ab09250d545a2ed373ae64e68d12ff4c"
+ },
+ "recipe": {
+ "sha256": "0zhs4psa9b9yf9hxm19q5znsny11cdp23pya3rrlmj39j4jfn73j",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151114.1741",
+ "deps": []
+ },
+ "ac-anaconda": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "proofit404",
+ "repo": "ac-anaconda",
+ "sha256": "0vrd6g9cl02jjxrjxpshq4pd748b5xszhpmakywrw8s08nh8jf44",
+ "rev": "d0dec5c026235f65f9fd6594540df8886ed1b6a8"
+ },
+ "recipe": {
+ "sha256": "124nvigk6y3iw0lj2r7div88rrx8vz59xwqph1063jsrc29x8rjf",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150912.308",
+ "deps": [
+ "anaconda-mode",
+ "auto-complete",
+ "dash"
+ ]
+ },
+ "fliptext": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/fliptext.el",
+ "sha256": "1viigj04kla20dk46xm913jzqrmx05rpjrpghnc0ylbqppqdwzpw"
+ },
+ "recipe": {
+ "sha256": "0cmyan9hckjsv5wk1mvjzif9nrc07frhzkhhl6pkgm0j0f1q30ji",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20131113.2018",
+ "deps": []
+ },
+ "cljsbuild-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "kototama",
+ "repo": "cljsbuild-mode",
+ "sha256": "1cdim8fancrsrm9avzv4m2v384i7n4632nibyfnxkhq03bj00j1z",
+ "rev": "7edfc199b5daf972f6b2110d13a96e0bd974cd65"
+ },
+ "recipe": {
+ "sha256": "0qvb990dgq4v75lwnd661wxszbdbhlgxpsyv4zaj6h10gp1vi214",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140619.326",
+ "deps": []
+ },
+ "magit": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "magit",
+ "repo": "magit",
+ "sha256": "0hy9a1rjl3vs6ysb2913li1zim7wcziaiv609g7dadfyl89c2d4v",
+ "rev": "6b595ac224f512cf672c56600e136714875a940f"
+ },
+ "recipe": {
+ "sha256": "0kcx8pqzvl7xgx7f8q7xck83ghkx6cjsa2nczxj1virap1nkfhkw",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151215.1708",
+ "deps": [
+ "async",
+ "dash",
+ "emacs",
+ "git-commit",
+ "magit-popup",
+ "with-editor"
+ ]
+ },
+ "sly": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "capitaomorte",
+ "repo": "sly",
+ "sha256": "0qmayk1691wpa8bczxaarp17q3g1rpkkh12v90814h9kjnd05wx6",
+ "rev": "247c4125ec42e75cbcf0e680bb3c975302ad266e"
+ },
+ "recipe": {
+ "sha256": "1pmyqjk8fdlzwvrlx8h6fq0savksfny78fhmr8r7b07pi20y6n9l",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151217.522",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "delim-kill": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "thomas11",
+ "repo": "delim-kill",
+ "sha256": "06a20sd8nc273azrgha40l1fbqvv9qmxsmkjiqbf6dcf1blkwjyf",
+ "rev": "1dbe47344f2d2cbc8c54beedf0cf0bf10fd203c1"
+ },
+ "recipe": {
+ "sha256": "1pplc456771hi52ap1p87y7pabxlvm6raszcxjvnxff3xzw56pig",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20100517.120",
+ "deps": []
+ },
+ "magit-stgit": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "magit",
+ "repo": "magit-stgit",
+ "sha256": "1mk8g8rr9vf8jm0mmsj33p8gc71nhlv3847hvqywy6z40nhcjnyb",
+ "rev": "d1793345a8d32b2c509077d634ca73148a68de4b"
+ },
+ "recipe": {
+ "sha256": "12wg1ig2jzy2np76brpwxdix9pwv75chviq3c24qyv4y80pd11sv",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151120.1744",
+ "deps": [
+ "emacs",
+ "magit"
+ ]
+ },
+ "shelltest-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "rtrn",
+ "repo": "shelltest-mode",
+ "sha256": "1ns2w7zhbi96a3gilmzs69187jngqhcvik17ylsjdfrk42hw5s6r",
+ "rev": "e2513832ce6b994631335be299736cabe291d0f7"
+ },
+ "recipe": {
+ "sha256": "1inb0vq34fbwkr0jg4dv2lljag8djggi8kyssrzhfawri50m81nh",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20141227.448",
+ "deps": []
+ },
+ "maker-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "fommil",
+ "repo": "maker-mode",
+ "sha256": "0w3kar52yf8clf9801c4jzfrixi10clc8fs8ni2d4pzhdwwca2zw",
+ "rev": "335c43b08eff589040129dae1ea13c88793b069e"
+ },
+ "recipe": {
+ "sha256": "03q09jxmhwqy7g09navj08z9ir0rbh7w26c1av7hwhmq4i6xwg8a",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150116.554",
+ "deps": [
+ "dash",
+ "s"
+ ]
+ },
+ "tagedit": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "magnars",
+ "repo": "tagedit",
+ "sha256": "00hjc6ax4659ww6vygpzzsb3zzr2ddz2z33mkp5j6hmj2s4g2viy",
+ "rev": "458ff5bb23aa4816a2d5ff5d66c4e95996b4a4e1"
+ },
+ "recipe": {
+ "sha256": "0vfkbrxmrw4fwdz324s734zxdxm2nj3df6i8m6lgb9pizqyp2g6z",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150727.424",
+ "deps": [
+ "dash",
+ "s"
+ ]
+ },
+ "lorem-ipsum": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "jschaf",
+ "repo": "emacs-lorem-ipsum",
+ "sha256": "0grzl4kqpc1x6569yfh9xdzzbgmhcskxwk6f7scjpl32acr88cmx",
+ "rev": "893a27505734a1497b79bc26e0736a78221b35d9"
+ },
+ "recipe": {
+ "sha256": "0p62yifbrknjn8z0613wy2aaknj44liyrgbknhpa0qn0d4fcrp4h",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140911.1608",
+ "deps": []
+ },
+ "db": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "nicferrier",
+ "repo": "emacs-db",
+ "sha256": "0syv4kr319d34yqi4q61b8jh5yy22wvd148x1m3pc511znh2ry5k",
+ "rev": "b3a423fb8e72f9013009cbe033d654df2ce31438"
+ },
+ "recipe": {
+ "sha256": "05jhga9n6gh1bmj8gda14sb703gn7jgjlvy55mlr5kdb2z3rqw1n",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140421.1611",
+ "deps": [
+ "kv"
+ ]
+ },
+ "tinysegmenter": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "myuhe",
+ "repo": "tinysegmenter.el",
+ "sha256": "1n8cn6mr26hgmsm2mkbj5gs6dv61d0pap8ija4g0n1vsibfhzd8j",
+ "rev": "872134704bd25c13a4c59552433da4c6881b5230"
+ },
+ "recipe": {
+ "sha256": "005yy2f8vghvwdcwakz5sr9n1gzk6cfyglm6d8b74y90d8fng0r6",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20141124.413",
+ "deps": [
+ "cl-lib"
+ ]
+ },
+ "org-ref": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "jkitchin",
+ "repo": "org-ref",
+ "sha256": "0clz78kcvibiic3igy0dik5bv0jvmngr7jnq2g93lq0dbxcy1d3f",
+ "rev": "d7bee0742f4f2807e5a464120cac4ae4d7768aff"
+ },
+ "recipe": {
+ "sha256": "0sxhq603zq55lfq2z7jdfka7d5jphgnn2xfhw8n6ihzynx0lsjzx",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151218.503",
+ "deps": [
+ "dash",
+ "emacs",
+ "helm",
+ "helm-bibtex",
+ "hydra",
+ "key-chord"
+ ]
+ },
+ "flymake-jshint": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "Wilfred",
+ "repo": "flymake-jshint.el",
+ "sha256": "0ywm9fpb7d7ry2fly8719fa41q97yj9za3phqhv6j1chzaxvcv3a",
+ "rev": "79dd554c227883c487db38ac111306c8d5382c95"
+ },
+ "recipe": {
+ "sha256": "0j4djylz6mrq14qmbm35k3gvvsw6i9qc4gd9ma4fykiqzkdjsg7j",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140319.1700",
+ "deps": [
+ "flymake-easy"
+ ]
+ },
+ "navi-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "tj64",
+ "repo": "navi",
+ "sha256": "1yywbfa0syhb8zmn2qjjw2hxy7vz9ky3xd7kv3nz3gd2x989nb9a",
+ "rev": "78c0c227d06254d1aec9d8a1301b9a5a785b8b31"
+ },
+ "recipe": {
+ "sha256": "0f5db983w9kxq8mcjr22zfrm7cpxydml4viac62lvab2kwbpbrmi",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151203.957",
+ "deps": [
+ "outorg",
+ "outshine"
+ ]
+ },
+ "smarty-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "emacsorphanage",
+ "repo": "smarty-mode",
+ "sha256": "1vl3nx0y2skb8sibqxvmc3wrmmd6z88hknbry348d0ik3cbr0ijx",
+ "rev": "3dfdfe1571f5e9ef55a29c51e5a80046d4cb7568"
+ },
+ "recipe": {
+ "sha256": "06cyr2330asy2dlx81g3h9gq0yhd4pbnmzfvmla7amh4pfnjg14v",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20100703.658",
+ "deps": []
+ },
+ "flymake-sass": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "purcell",
+ "repo": "flymake-sass",
+ "sha256": "0rwjiplpqw3rrh76llnx2fn78f6avxsg0la5br46q1rgw4n8r1w1",
+ "rev": "748f13caa399c27c41ba797da9e214b814f5a30f"
+ },
+ "recipe": {
+ "sha256": "0sz6n5r9pdphgvvaljg9zdwj3dqayaxzxmb4s8x4b05c8yx3ba0d",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140308.525",
+ "deps": [
+ "flymake-easy"
+ ]
+ },
+ "shimbun": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "emacsorphanage",
+ "repo": "w3m",
+ "sha256": "1lgvdaghzj1fzh8p6ans0f62zg1bfp086icbsqmyvbgpgcxia9cs",
+ "rev": "5986b51c7c77500fee3349fb0b3f4764d3fc727b"
+ },
+ "recipe": {
+ "sha256": "0k54886bh7zxsfnvga3wg3bsij4bixxrah2rrkq1lj0k8ay7nfxh",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20120718.2238",
+ "deps": []
+ },
+ "sackspace": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "cofi",
+ "repo": "sackspace.el",
+ "sha256": "06gqqbkn85l2p05whmr4wkg9axqyzb7r7sgm3r8wfshm99kgpxvl",
+ "rev": "fd0480eaaf6d3d11fd30ac5feb2da2f4f7572708"
+ },
+ "recipe": {
+ "sha256": "1m10iw83k6m7v7sg2dxzdy83zxq6svk8h9fh4ankyn3baqrdxg5z",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20130719.456",
+ "deps": []
+ },
+ "bind-chord": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "waymondo",
+ "repo": "use-package-chords",
+ "sha256": "100py4x10nd8w0l87lc7wpa8nmg7yg6pwxln0wcyal7vpwycmhjz",
+ "rev": "e5f7a43fd0a63a4a0bf7dabc2c223f615ea71eca"
+ },
+ "recipe": {
+ "sha256": "01a3c298kq8cfsxsscpic0shkjm77adiamgbgk8laqkbrlsrrcsb",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151111.1007",
+ "deps": [
+ "bind-key",
+ "key-chord"
+ ]
+ },
+ "org2blog": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "punchagan",
+ "repo": "org2blog",
+ "sha256": "1cy4bglfxq87iwz4iflyc5mswa2381b5z3gv9ps3sww1kbkm3njx",
+ "rev": "c97bb3d0f3e3816581b04394c6d9c55a2c2cfc5c"
+ },
+ "recipe": {
+ "sha256": "0ancvn4ji4552k4nfd2ijclsd027am93ngg241ll8f6h6k0wpmzq",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151208.1028",
+ "deps": [
+ "metaweblog",
+ "org",
+ "xml-rpc"
+ ]
+ },
+ "ample-regexps": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "immerrr",
+ "repo": "ample-regexps.el",
+ "sha256": "18cicz11i19cpabrq6khnl9ks1khn6gw5a4ckaq4y65r40x0cr6g",
+ "rev": "884c712a82773d3af500e71d20bebe52340352c5"
+ },
+ "recipe": {
+ "sha256": "00y07pd438v7ldkn5f1w84cpxa1mvcnzjkj6sf5l5pm97xqiz7j2",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151023.500",
+ "deps": []
+ },
+ "mhc": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "yoshinari-nomura",
+ "repo": "mhc",
+ "sha256": "0z34x254z79acslxzn35mg9nsxh0cpmb540k90vlp7am7g4d4sra",
+ "rev": "0204160474bdb01e62c89364b5f720b2c42afb0d"
+ },
+ "recipe": {
+ "sha256": "02ikn9hx0kcfc2xrx4f38zpkfi6vgz7chcxk6q5d0vcsp93b4lql",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151210.238",
+ "deps": [
+ "calfw"
+ ]
+ },
+ "company-ghc": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "iquiw",
+ "repo": "company-ghc",
+ "sha256": "06ljm0ysz8czdr32gfq1y3nm3jcywihdszgnc2alx1hcgqiq0ds6",
+ "rev": "d78fcee6c8fa4f786a1e15a3bb78d2dd2c56b6af"
+ },
+ "recipe": {
+ "sha256": "07adykza4dqs64bk8vjmgryr54khxmcy28hms5z8i1qpsk9vmvnn",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151217.859",
+ "deps": [
+ "cl-lib",
+ "company",
+ "emacs",
+ "ghc"
+ ]
+ },
+ "evil": {
+ "fetch": {
+ "tag": "fetchhg",
+ "url": "https://bitbucket.com/lyro/evil",
+ "sha256": "0m1nd5v0f72lvispjrsfph8iyv2z7gsf8awwmfdghag348bmvjn3",
+ "rev": "73ad80e8fea1"
+ },
+ "recipe": {
+ "sha256": "09qrhy7l229w0qk3ba1i2xg4vqz8525v8scrbm031lqp30jp54hc",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151128.1302",
+ "deps": [
+ "goto-chg",
+ "undo-tree"
+ ]
+ },
+ "flycheck-css-colorguard": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "Simplify",
+ "repo": "flycheck-css-colorguard",
+ "sha256": "073vkjgcyqp8frsi05s6x8ml3ar6hwjmn2c7ryfab5b35kp9gmdi",
+ "rev": "8c2061c11d5465eec77ad471bef413eb14d122da"
+ },
+ "recipe": {
+ "sha256": "1n56j5nicac94jl7kp8fbqxmd115vbhzklzgfz5jbib2ab8y60jc",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151122.347",
+ "deps": [
+ "emacs",
+ "flycheck"
+ ]
+ },
+ "ruby-end": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "rejeep",
+ "repo": "ruby-end",
+ "sha256": "1x4nvrq5nk50c1l3b5wcr4g1n5nmwafcz1zzc12qzsl5sya7si55",
+ "rev": "ea453f5ac6259f09667fa26b865b6afacd06aa97"
+ },
+ "recipe": {
+ "sha256": "0cx121hji8ws6s3p2xfdgidm363y05g2n880fqrmzyz27cqkljis",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20141215.623",
+ "deps": []
+ },
+ "openstack-cgit-browse-file": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "chmouel",
+ "repo": "openstack-cgit-browse-file",
+ "sha256": "0086pfk4pq6xmknk7a42fihcjgzkcplqqc1rk9fhwmn9j7djbq70",
+ "rev": "244219288b9aef41155044697bb114b7af83ab8f"
+ },
+ "recipe": {
+ "sha256": "05dl28a4npnnzzipypfcqb21sdww715lwji2xnsabx3fb1h1w5jl",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20130819.427",
+ "deps": []
+ },
+ "addressbook-bookmark": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "thierryvolpiatto",
+ "repo": "addressbook-bookmark",
+ "sha256": "0bzg8qi188rybk0a4lsdal0788iia0ymr5gdbz41c42f59a6y49d",
+ "rev": "784df4fa06f90214ddba127391ef4fcb6b699468"
+ },
+ "recipe": {
+ "sha256": "15p00v4ndrsbadal0ss176mks4ynj39786bmrnil29b6sqibd43r",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20141205.2308",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "magnatune": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "eikek",
+ "repo": "magnatune.el",
+ "sha256": "1hqz26zm4bdz5wavna4j9yia3ns4z19dnszl7k0lcpgbgmb0wh8y",
+ "rev": "605b01505ba30589c77ebb4c96834b5072ccbdd4"
+ },
+ "recipe": {
+ "sha256": "0fmxlrq5ls6fpbk5fv67aan8gg1c61i1chfw5lhf496pwqzq901d",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151030.1435",
+ "deps": [
+ "dash",
+ "s"
+ ]
+ },
+ "f": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "rejeep",
+ "repo": "f.el",
+ "sha256": "0lzqfr5xgc3qvpbs6vf63yiw7pc2mybfvsrhczf9ghlmlawqa6k1",
+ "rev": "e0259ee060ff9a3f12204adcc8630869080acd68"
+ },
+ "recipe": {
+ "sha256": "0s7fqav0dc9g4y5kqjjyqjs90gi34cahaxyx2s0kf9fwcgn23ja2",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151113.323",
+ "deps": [
+ "dash",
+ "s"
+ ]
+ },
+ "fortpy": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "rosenbrockc",
+ "repo": "fortpy-el",
+ "sha256": "1nqx2igxmwswjcrnzdjpx5qcjr60zjy3q9cadq5disms17wdcr6y",
+ "rev": "c614517e9396ef7a78be3b8786fbf303879cf43b"
+ },
+ "recipe": {
+ "sha256": "1nn5vx1rspfsijwhilnjhiy0mjw154ds3lwxvkpwxpchygirlyxj",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150715.1532",
+ "deps": [
+ "auto-complete",
+ "epc",
+ "pos-tip",
+ "python-environment"
+ ]
+ },
+ "dired-ranger": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "Fuco1",
+ "repo": "dired-hacks",
+ "sha256": "15jri9cj5jgr3ff423izd8idd7djay238c9pa3ccy05djl9z2hdx",
+ "rev": "6647825dbca4269afa76302e345d6bd15b222e42"
+ },
+ "recipe": {
+ "sha256": "19lbbzqflqda5b0alqfzdhpbgqssghqb4n4viq8x4l1fac8mby6h",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150819.1148",
+ "deps": [
+ "dash",
+ "dired-hacks-utils"
+ ]
+ },
+ "ac-cider": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "clojure-emacs",
+ "repo": "ac-cider",
+ "sha256": "1k4zk27zvxmcffwwg0zx19rcy2ysd65nnrifwspdw699glpwx2l5",
+ "rev": "eeb4b3ae1e91d03d765f6c39994792e4f05f6600"
+ },
+ "recipe": {
+ "sha256": "1dszpb706h34miq2bxqyq1ycbran5ax36vcniwp8vvhgcjsw5sz6",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151012.508",
+ "deps": [
+ "auto-complete",
+ "cider",
+ "cl-lib"
+ ]
+ },
+ "project-root": {
+ "fetch": {
+ "tag": "fetchhg",
+ "url": "https://bitbucket.com/piranha/project-root",
+ "sha256": "08dd2y6hdsj1rxcqa2hnjypnn9c2z43y7z2hz0fi4vny547qybz8",
+ "rev": "fcd9df2eadca"
+ },
+ "recipe": {
+ "sha256": "0xjir204zk254y2x70k9vqwirx2ljmrikpsgn5kn170d1bxvhwmb",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20110206.1430",
+ "deps": []
+ },
+ "heroku": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "technomancy",
+ "repo": "heroku.el",
+ "sha256": "0c45pib8qpwgyr271g5ddnsn7hzq68mqflv0yyc8803ni06w9vhj",
+ "rev": "92af1c073b593c4def99c8777c869992aa4d0b3a"
+ },
+ "recipe": {
+ "sha256": "1kadmxmqhc60cb5k14943rad1gbril2hlcnqxnsy4h3j2ykmcdyy",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20120629.1313",
+ "deps": []
+ },
+ "otter-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "scvalex",
+ "repo": "script-fu",
+ "sha256": "0a6i3jqdmpsfllwifqwpd1ncwp8m09m2yhx9b2fzsyycd8yslnns",
+ "rev": "da9438b58b6b95bb75fcd5f55a48b8a53eed368b"
+ },
+ "recipe": {
+ "sha256": "197r0sfbmwygvzsiv0bjjfsngwp79qi365z762y8gbf8f3hjp45i",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20121202.1103",
+ "deps": []
+ },
+ "zombie": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "zk-phi",
+ "repo": "zombie",
+ "sha256": "1gm3ly6czbw4vrxcslm50jy6nxf2qsl656cjwbyhw251wppn75cg",
+ "rev": "ff8cd1b4cdbb4b0b9b8fd1ec8f6fb93eba249345"
+ },
+ "recipe": {
+ "sha256": "0ji3nsxwbxmmygd6plpbc1lkw6i5zw4y6x3r5n2ah3ds4vjr7cnv",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20141222.1016",
+ "deps": []
+ },
+ "irfc": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/irfc.el",
+ "sha256": "197ybqwbj8qjh2p9pkf5mvqnrkpcgmv8c5s2gvl6msyrabk0mnca"
+ },
+ "recipe": {
+ "sha256": "0186l6zk5l427vjvmjvi0xhwk8a4fjhsvw9kd0yw88q3ggpdl25i",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20130824.707",
+ "deps": []
+ },
+ "basic-theme": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "fgeller",
+ "repo": "basic-theme.el",
+ "sha256": "1pbnw6ccphxynbhnc4g687jfcg33p1sa7a0mfxc2ai0i3z59gn78",
+ "rev": "e3c32e1285749b4135d4d593f06566c631c26456"
+ },
+ "recipe": {
+ "sha256": "16rgff1d0s65alh328lr93zc06zmgbzgwx1rf3k3l4d10ki4cc27",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151010.307",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "swbuff-x": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/swbuff-x.el",
+ "sha256": "1fkicyjvanh8yk2y27sq075sarcyqhsdz0r4xhillpnv34ji98r5"
+ },
+ "recipe": {
+ "sha256": "1wglcxgfr839lynwsl8i7fm70sxxjidy3ib6ibz0kgiwr41rh49y",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20130607.514",
+ "deps": [
+ "swbuff"
+ ]
+ },
+ "ibuffer-tramp": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "svend",
+ "repo": "ibuffer-tramp",
+ "sha256": "1mfrbr725p27p3s5nxh7xhm81pdr78ysz8l3kwrlp97bb6dmljmq",
+ "rev": "41fab2ad174f53a4cf5ef7d2ebef518dede82ab4"
+ },
+ "recipe": {
+ "sha256": "11a9b9g1jk2r3fldi012zka4jzy68kfn4991xp046qm2fbc7la32",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151118.1139",
+ "deps": []
+ },
+ "sound-wav": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "syohex",
+ "repo": "emacs-sound-wav",
+ "sha256": "1h6h65gwxb07pscyhhhdn11h3lx3jgyfw8v1kw5m2qfrv5kh6ylq",
+ "rev": "254d3a7180a65cb33a808c43b70d4e6daa121ac9"
+ },
+ "recipe": {
+ "sha256": "1vrwzk6zqma7r0w5ivbx16shys6hsifj52fwlf5rxs6jg1gqdb4f",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140303.657",
+ "deps": [
+ "cl-lib",
+ "deferred"
+ ]
+ },
+ "psession": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "thierryvolpiatto",
+ "repo": "psession",
+ "sha256": "1b8w9wnrwk4j2gn543phz9qp8813ksqakr5pi509m6ijwcv0cp7b",
+ "rev": "e46ddd05c8d3a6e4cbcc11b62aa275e5de66f475"
+ },
+ "recipe": {
+ "sha256": "18va6kvpia5an74vkzccs72z02vg4vq9mjzr5ih7xbcqxna7yv3a",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151114.1306",
+ "deps": [
+ "cl-lib",
+ "emacs"
+ ]
+ },
+ "elfeed-web": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "skeeto",
+ "repo": "elfeed",
+ "sha256": "1z0i4cb09xq37y77zdans29lsqwk2asc9ix6cca9bf8rdwiq665b",
+ "rev": "8a38a4c81496d40d3b7c45a6df5e41258a52843c"
+ },
+ "recipe": {
+ "sha256": "14ydwvjjc6wbhkj4g4xdh0c3nh4asqsz8ln7my5vjib881vmaq1n",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151130.1724",
+ "deps": [
+ "elfeed",
+ "emacs",
+ "simple-httpd"
+ ]
+ },
+ "osx-lib": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "raghavgautam",
+ "repo": "osx-lib",
+ "sha256": "1s2bv4sypf910wq62d5nfzdlmp54y1igqx8l7gzm1c6fnaz4fway",
+ "rev": "ca4b85dbebff97c3a0630d7f1140b1418cec2671"
+ },
+ "recipe": {
+ "sha256": "12wvki8jhzqsanxv5yqzjmfx6ifwz9ab9zh6r8nss86bk8864ix4",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151214.1857",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "wgrep-pt": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "mhayashi1120",
+ "repo": "Emacs-wgrep",
+ "sha256": "075z0glain0dp56d0cp468y5y88wn82ab26aapsrdzq8hmlshwn4",
+ "rev": "7ef26c51feaef8a5ec0929737130ab8ba326983c"
+ },
+ "recipe": {
+ "sha256": "1gphdf85spsywj3s3ypb7dwrqh0zd70n2vrbgjqkbnfbwqjp9qbg",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140510.1731",
+ "deps": [
+ "wgrep"
+ ]
+ },
+ "cljr-helm": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "philjackson",
+ "repo": "cljr-helm",
+ "sha256": "0ydv2prnw1j3m5nk23fqn4iv202kjswr8z0ip4zacdm8bl0q25ln",
+ "rev": "99c6dcc5228ecd2fe9e6e28a9512cbc3df0770ef"
+ },
+ "recipe": {
+ "sha256": "108a1xgnc6qy088vs41j3npwk25a5vny0xx4r3yh76jsmpdpcgnc",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150425.1507",
+ "deps": [
+ "clj-refactor",
+ "helm"
+ ]
+ },
+ "tt-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "davorg",
+ "repo": "tt-mode",
+ "sha256": "1gvqxk67cf779szyg907815i4m9jzrpmn5cnsmnwd62k3r3z4nxm",
+ "rev": "85ed3832e7eef391f7879d9990d59c7a3493c15e"
+ },
+ "recipe": {
+ "sha256": "02dzyycn5znbibbz50b243bh1kcccp8xwknjqwljk00gpf196vzf",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20130804.610",
+ "deps": []
+ },
+ "ansible": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "k1LoW",
+ "repo": "emacs-ansible",
+ "sha256": "03d240jngxw51ybrsjw8kdxygrr0ymdckzwga2jr1bqf26v559j2",
+ "rev": "e9b9431738de4808d8ef70871069f68885cc0d98"
+ },
+ "recipe": {
+ "sha256": "1xdc05fdglqfbizra6s1zl6knnvaq526dkxqnw9g7w269j8f4z8g",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151123.1953",
+ "deps": [
+ "f",
+ "s"
+ ]
+ },
+ "japanlaw": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "mhayashi1120",
+ "repo": "japanlaw.el",
+ "sha256": "08gkxxaw789g1r0dql11skz6i8bdrrz4wp87fzs9f5rgx99xxr6h",
+ "rev": "d90b204b018893d5d75286c92948c0bddf94cce2"
+ },
+ "recipe": {
+ "sha256": "1pxss1mjk5660k80r1xqgslnbrsr6r4apgp9abjwjfxpg4f6d0sa",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150621.2341",
+ "deps": []
+ },
+ "smart-cursor-color": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "7696122",
+ "repo": "smart-cursor-color",
+ "sha256": "1xbd42q60pmg0hw4bn2fndjwgrfgj6ggm757fyp8m08jqh0zkarn",
+ "rev": "1d190f49ca77734b55ac58f1b6276e42ada967b0"
+ },
+ "recipe": {
+ "sha256": "11875pwlx2rm8d86541na9g3yiq0j472vg63mryqv6pzq3n8q6jx",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20141124.1119",
+ "deps": []
+ },
+ "link-hint": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "noctuid",
+ "repo": "link-hint.el",
+ "sha256": "0flskfrbq66wbygbp7x9da3fm88gf1nc92500jg6skks48w00xqn",
+ "rev": "cec4e90ffc9794fc9e25cbfcde9b5e1dd8328d09"
+ },
+ "recipe": {
+ "sha256": "12fb2zm9jnh92fc2nzmzmwjlhi64rhakwbh9lsydx9svsvkgcs89",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151031.1845",
+ "deps": [
+ "avy",
+ "emacs"
+ ]
+ },
+ "ox-gfm": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "larstvei",
+ "repo": "ox-gfm",
+ "sha256": "0gfkb12rn40m71xv292dn3nj3h1bnn81698pinirp0nd8p4bvnin",
+ "rev": "dc324f0f4239e151744d59e784da748d4db4f6b8"
+ },
+ "recipe": {
+ "sha256": "065ngmzfd3g2h8n903hc4d363hz4z5rrdgizh2xpz03kf3plca6q",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150604.226",
+ "deps": []
+ },
+ "ibuffer-git": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "jrockway",
+ "repo": "ibuffer-git",
+ "sha256": "1s5qvlf310b0z7q9k1xhcf4qmyfqd37jpqd67ciahaxk7cp224rd",
+ "rev": "d326319c05ddb8280885b31f9094040c1b365876"
+ },
+ "recipe": {
+ "sha256": "048888y07bzmi9x5i43fg6bgqbzdqi3nfjfnn6zr29jvlx366r5z",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20110508.231",
+ "deps": []
+ },
+ "golden-ratio-scroll-screen": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "jixiuf",
+ "repo": "golden-ratio-scroll-screen",
+ "sha256": "18a7dv8yshspyq4bi30j0l4ap9qp696syfc29mgvly4xyqh9x4qm",
+ "rev": "585ca16851ac543da75d6ff61872565fb851a118"
+ },
+ "recipe": {
+ "sha256": "1ygh104vr65s7frlkzyhrfi6shrbvp2b2j3ynj5dip253v85xki5",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151211.430",
+ "deps": []
+ },
+ "ewmctrl": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "flexibeast",
+ "repo": "ewmctrl",
+ "sha256": "1frhcgkiys0pqrlcsi5zcl3ngblr38wrwfi6wzqk75x21rnwnbqv",
+ "rev": "4e1ad0d54bccf2eddb7844eefb8253440aa80f28"
+ },
+ "recipe": {
+ "sha256": "1w60pb7szai1kh06jd3qvgpzq3z1ci4a77ysnpqjfk326s6zv7hl",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150630.338",
+ "deps": []
+ },
+ "git-commit": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "magit",
+ "repo": "magit",
+ "sha256": "0hy9a1rjl3vs6ysb2913li1zim7wcziaiv609g7dadfyl89c2d4v",
+ "rev": "6b595ac224f512cf672c56600e136714875a940f"
+ },
+ "recipe": {
+ "sha256": "1i7122fydqga68cilgzir80xfq77hnrw75zrvn52mjymfli6aza2",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151111.618",
+ "deps": [
+ "dash",
+ "emacs",
+ "with-editor"
+ ]
+ },
+ "flycheck-dedukti": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "rafoo",
+ "repo": "flycheck-dedukti",
+ "sha256": "1hw875dirz041vzw1pxjpk5lr1zmrp2kp9m6pazs9j19d686hyn6",
+ "rev": "717977c0ead0dc6e267ba2164781d92ee016b7b2"
+ },
+ "recipe": {
+ "sha256": "00nc18w4nsi6vicpbqqpr4xcdh48g95vnay3kirb2xp5hc2rw3x8",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150106.851",
+ "deps": [
+ "dedukti-mode",
+ "flycheck"
+ ]
+ },
+ "json-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "joshwnj",
+ "repo": "json-mode",
+ "sha256": "0sxkp9m68rvff8dbr8jlsx85w5ngifn19lwhcydysm7grbwzrdi3",
+ "rev": "ce275e004dc7265047a80dec68b24eb058b200f0"
+ },
+ "recipe": {
+ "sha256": "014j10wgxsqy6d6aksnkz2dr5cmpsi8c7v4a825si1vgb4622a70",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151116.2200",
+ "deps": [
+ "json-reformat",
+ "json-snatcher"
+ ]
+ },
+ "tbx2org": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "istib",
+ "repo": "tbx2org",
+ "sha256": "1jp80qywcphql1ngd4fr24lqdfwrw0bw6q9hgq5vmzgjwfxwxwd4",
+ "rev": "08e9816ba6066f56936050b58d07ceb2187ae6f7"
+ },
+ "recipe": {
+ "sha256": "1yvkw65la4w12c4w6l9ai73lzng170wv4b8gry99m2bakw3wr8m8",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140224.959",
+ "deps": [
+ "cl-lib",
+ "dash",
+ "s"
+ ]
+ },
+ "edbi-minor-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "proofit404",
+ "repo": "edbi-minor-mode",
+ "sha256": "1lndz0qlmjvi9r2f1yzw217b971ym5jzfrddcd6rind1asrzl32a",
+ "rev": "afcbaf9e8264278e8526ca7509e6fc6bfd0d7937"
+ },
+ "recipe": {
+ "sha256": "0p7vdf9cp6i7mhjxj82670pfflf1kacalmakb7ssgigs1nsf3spi",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150421.703",
+ "deps": [
+ "edbi"
+ ]
+ },
+ "fountain-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "rnkn",
+ "repo": "fountain-mode",
+ "sha256": "07rmg994vhxws6r0sj27kipf6qvmz2qn5zr7z1mwfj4gkjh0c1cr",
+ "rev": "934243afbfa042643a973af1b6f26d7353517526"
+ },
+ "recipe": {
+ "sha256": "1i55gcjy8ycr1ww2fh1a2j0bchx1bsfs0zd6v4cv5zdgy7vw6840",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151203.2321",
+ "deps": [
+ "emacs",
+ "s"
+ ]
+ },
+ "erc-tweet": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "kidd",
+ "repo": "erc-tweet.el",
+ "sha256": "118q4zj9dh5xnimcsi229j5pflhcd8qz0p212kc4p9dmyrx2iw0n",
+ "rev": "91fed61e139fa788d66a7358f0d50acc896414b8"
+ },
+ "recipe": {
+ "sha256": "0bazwq21mah4qrzwaji6w13m91l6v9dqh9svxrd13ij8yycr184b",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150920.758",
+ "deps": []
+ },
+ "ace-jump-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "winterTTr",
+ "repo": "ace-jump-mode",
+ "sha256": "17axrgd99glnl6ma4ls3k01ysdqmiqr581wnrbsn3s4gp53mm2x6",
+ "rev": "8351e2df4fbbeb2a4003f2fb39f46d33803f3dac"
+ },
+ "recipe": {
+ "sha256": "0yk0kppjyblr5wamncrjm3ym3n8jcl0r0g0cbnwni89smvpngij6",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140616.315",
+ "deps": []
+ },
+ "tommyh-theme": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "wglass",
+ "repo": "tommyh-theme",
+ "sha256": "0pwbd5gzmpr6js20438870w605671930291070nhmhswvxfcdvay",
+ "rev": "46d1c69ee0a1ca7c67b569b891a2f28fed89e7d5"
+ },
+ "recipe": {
+ "sha256": "0nb9r407h08yxxdihxqx0c645bcz6qywbh2l654s3zfzdsqi1aj4",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20131004.1830",
+ "deps": []
+ },
+ "ob-translate": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "krisajenkins",
+ "repo": "ob-translate",
+ "sha256": "1yaqs6zcx8228pwzsm19h6272bw9lhib6xz5xzzq8x8n54l81225",
+ "rev": "c068f8710ec3019a345b7dc5a5433bee23c87afb"
+ },
+ "recipe": {
+ "sha256": "1hi0rxbyxvk9sbk2fy3kqw7l4lgri921vya1mn4i1q2i1979r2gz",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20130718.929",
+ "deps": [
+ "google-translate",
+ "org"
+ ]
+ },
+ "lush-theme": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "andre-richter",
+ "repo": "emacs-lush-theme",
+ "sha256": "0mv73s89n59m44szc37086wq55py5sx0lc0jxncfybawhsqyd0ar",
+ "rev": "3b80004f33cdce9f4db69e9ccf2041561e98985d"
+ },
+ "recipe": {
+ "sha256": "03kqws8dzm0ay5k86f4v7g2g2ygwk4fzmz2vyzhzhbsj8hrniq9p",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20141107.1006",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "meacupla-theme": {
+ "fetch": {
+ "tag": "fetchgit",
+ "url": "https://gitlab.com/jtecca/meacupla-theme.git",
+ "sha256": "fb8399ef9c3975b9c536e6b458d5cd151da9a1d355bfd0b2219d4f05d380d48c",
+ "rev": "f57542222a3a43af9aae665e05a84a61637ab22a"
+ },
+ "recipe": {
+ "sha256": "09q88q2xghj5vn5y3mjrcparfwdzavkgjyg2ay55h7wf5f2zpw2d",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151027.1717",
+ "deps": []
+ },
+ "jumblr": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "mkmcc",
+ "repo": "jumblr",
+ "sha256": "1f0kai4cz3r25fqlnryyvnyf80cf57xa655dvv1rx8si3xd20x4j",
+ "rev": "705c7286e09a307b2b7f60072a12ed45325657c0"
+ },
+ "recipe": {
+ "sha256": "1wnawz1m6x95iyzac453p55h7hlr5q0ry5437aqqx0bw7gdwg3dp",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140908.1552",
+ "deps": [
+ "dash",
+ "s"
+ ]
+ },
+ "ox-trac": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "JalapenoGremlin",
+ "repo": "ox-trac",
+ "sha256": "0w6963jvz1sk732nh18735dxivd6nl59jd4m26ps6l4wqhqby0db",
+ "rev": "2f2f70eefb9679025ae5812e221f0c118da36012"
+ },
+ "recipe": {
+ "sha256": "0f8b3i83vzxzfa91p4ahlqz6njql18xy5nk265sjxpy9zr898rsa",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151102.1155",
+ "deps": [
+ "org"
+ ]
+ },
+ "plim-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "dongweiming",
+ "repo": "plim-mode",
+ "sha256": "07hspp4bkb3f5dm0l1arm0w1m04cq4glg81x4a9kf7bl601wzki2",
+ "rev": "92e39190286f172567ceb02c80e1df3b81abfa2d"
+ },
+ "recipe": {
+ "sha256": "0247fpvxki5jhxw6swv7pcw0qwxrqnp75acnfss2lf984vggzhxi",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140812.1913",
+ "deps": []
+ },
+ "default-text-scale": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "purcell",
+ "repo": "default-text-scale",
+ "sha256": "1ysv1q7n7k2l4x8x7hlzmxmawyxl5lx627sbdv3phkvjh5zccsm8",
+ "rev": "c680861a459e5a1b4cea0da1b99d2a22f08fdcd2"
+ },
+ "recipe": {
+ "sha256": "18r90ic38fnlsbg4gi3r962vban398x2bf3rqhrc6z4jk4aiv3mi",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150227.1156",
+ "deps": []
+ },
+ "shm": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "chrisdone",
+ "repo": "structured-haskell-mode",
+ "sha256": "1cr83az4xm20i2v8bd5dbqll3d8vhjb3m2ypzwbxlizjcxpa638c",
+ "rev": "a305ca94059d31c60d549494756d5b4eabec20b0"
+ },
+ "recipe": {
+ "sha256": "1qmp8cc83dcz25xbyqd4987i0d8ywvh16wq2wfs4km3ia8a2vi3c",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151127.133",
+ "deps": []
+ },
+ "strings": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/strings.el",
+ "sha256": "0svvgrssd4r027d25g167lf9cpks3la5zhvyd50gjrhryyxkf225"
+ },
+ "recipe": {
+ "sha256": "0n3239y7biq3rlg74m7nqimhf654w4snnw2zm7z84isgwzz2dphk",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150805.1752",
+ "deps": []
+ },
+ "ssh-tunnels": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "death",
+ "repo": "ssh-tunnels",
+ "sha256": "10a5havjg4yjshpfzkhgjdwbrvl44narg09ddzynczmyzm4f01wh",
+ "rev": "b08ba7a560ba5b16aa95c3cc17ed6fea59529cc4"
+ },
+ "recipe": {
+ "sha256": "0zlf22wg9adkhycsasv6bfim2h0cknsvihyi1q2l2l4pjdp9ypqj",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20141219.518",
+ "deps": [
+ "cl-lib",
+ "emacs"
+ ]
+ },
+ "tramp-hdfs": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "raghavgautam",
+ "repo": "tramp-hdfs",
+ "sha256": "057a3z42j4s0npl35p5rl6n767s2wq0a3c49wii3f1w8p40fh7qc",
+ "rev": "4a3ccaf931ecffeae283cb1766425afbc0f81101"
+ },
+ "recipe": {
+ "sha256": "1l7s2z8yk3cbnffig9fds75jkjlkng76qglx5ankzva61dz1kf2b",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151028.2236",
+ "deps": []
+ },
+ "handlebars-sgml-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "jacott",
+ "repo": "handlebars-sgml-mode",
+ "sha256": "1z37di9vk1l35my8kl8jnyqlkr1rnp0iz13hpc0r065mib67v58k",
+ "rev": "c76df93a9a8c1b1b3efdcc4add32bf93304192a4"
+ },
+ "recipe": {
+ "sha256": "10sxm7v94yxa92mqbwj3shqjs6f3zbxjvwgbvg9m2fh3b7xj617w",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20130623.1833",
+ "deps": []
+ },
+ "iy-go-to-char": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/iy-go-to-char.el",
+ "sha256": "19l9d5gp1xj40iyy35r8hh7v6bjnzjx7pb8dvwrmndzg0rlsp7mi"
+ },
+ "recipe": {
+ "sha256": "055qj2pc32l824vyjl2w2j8c3rpd9g4x0sazi8svqf923lgcs5s8",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20141029.1049",
+ "deps": []
+ },
+ "git-gutter-fringe": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "syohex",
+ "repo": "emacs-git-gutter-fringe",
+ "sha256": "0vc1da72vwlys723xi7xvv4ii43sjxgsywb2ss0l0kcm0rays6lv",
+ "rev": "62accbd227b17073d623faa4cc472280fc45f53e"
+ },
+ "recipe": {
+ "sha256": "14wyiyyi2rram2sz3habvmygy5a5m2jfi6x9fqcyfr3vpcjn1k4i",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150331.2339",
+ "deps": [
+ "cl-lib",
+ "emacs",
+ "fringe-helper",
+ "git-gutter"
+ ]
+ },
+ "flim": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "wanderlust",
+ "repo": "flim",
+ "sha256": "1w913kw4b3dipawn567847jxl89j0prnf6656yqi2rp96axx3lhp",
+ "rev": "60fa2c74a72358658603480addc75b1d23f6431a"
+ },
+ "recipe": {
+ "sha256": "1gkaq549svflx8qyqrk0ccb52b7wp17wmd5jgzkw1109bpc4k6jc",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151213.150",
+ "deps": [
+ "apel"
+ ]
+ },
+ "molokai-theme": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "alloy-d",
+ "repo": "color-theme-molokai",
+ "sha256": "1hqa59pdrnwfykyl58lr8pfbh2f13sygvmrh707hbwc2aii0jjv2",
+ "rev": "04a44f21184b6a26caae4f2c92db9019d883309c"
+ },
+ "recipe": {
+ "sha256": "0srdh3yx7j6xs7rgpzmsyzz6ds00kq887rs2sfa0nvk0j0ga6baf",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151016.1045",
+ "deps": []
+ },
+ "emms": {
+ "fetch": {
+ "tag": "fetchgit",
+ "url": "git://git.sv.gnu.org/emms.git",
+ "sha256": "6e653c3b44442e21ec6e4410d8b9c0e51b2f03ed1ae62c1bb1a2ffa6c8c144da",
+ "rev": "489df29303fc89d4f80bffae91ad53f937ccd59a"
+ },
+ "recipe": {
+ "sha256": "0kzli8b0z5maizfwhlhph1f5w3v6pwxvs2dfs90l8c0h97m4yy2m",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151211.1353",
+ "deps": []
+ },
+ "diffscuss-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "hut8labs",
+ "repo": "diffscuss",
+ "sha256": "14ccak3cmv36pd085188lypal9gd3flyikcrxn0wi6hn60w2dgvr",
+ "rev": "e0aacd8b3d9f886f27222c1397f0655e849e0af7"
+ },
+ "recipe": {
+ "sha256": "06jd7wh4yzryz0yjwa4a0xddz7srl5mif8ff1wvcpxsb66m2zbvh",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20141014.1857",
+ "deps": []
+ },
+ "flyspell-lazy": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "rolandwalker",
+ "repo": "flyspell-lazy",
+ "sha256": "1g09s57b773nm9xqslzbin5i2h18k55nx00s5nnkvx1qg0n0mzkm",
+ "rev": "31786fe04a4732d2f845e1c7e96fcb030182ef10"
+ },
+ "recipe": {
+ "sha256": "0lzazrhsfh5m7n57dzx0v46d5mg87wpwwkjzf5j9gpv1mc1xfg1y",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20141222.852",
+ "deps": []
+ },
+ "insert-shebang": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "psachin",
+ "repo": "insert-shebang",
+ "sha256": "1np3ih2bz9831p97rx5bssq78grjxj7f9241z372l6ggimrqhkbx",
+ "rev": "a6e520280b1cb64d70adba2ba38dd9b728960b36"
+ },
+ "recipe": {
+ "sha256": "0z88l1q925v9lwzr6nas9qjy0f57qxilg6smgpx9wj6lll3f7p5v",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20141119.627",
+ "deps": []
+ },
+ "anything-exuberant-ctags": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "k1LoW",
+ "repo": "anything-exuberant-ctags",
+ "sha256": "0dbf510gcd0m191samih0r4lx6d7sgk0ls0sx2jrdkyacy82ridy",
+ "rev": "8ed688fd526751e044435bb77135f5315c8167e5"
+ },
+ "recipe": {
+ "sha256": "0p0jq2ggdgaxv2gd9m5iza0y3mjjc82xmgp899yr15pfffa4wihk",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140316.1837",
+ "deps": [
+ "anything"
+ ]
+ },
+ "py-autopep8": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "paetzke",
+ "repo": "py-autopep8.el",
+ "sha256": "06xdq2slwhkcqlbv7x86zmv55drzif9cwjlj543cwhncphl2x9rd",
+ "rev": "685414b19106b99a4384fa0c9ce4817c659e0e81"
+ },
+ "recipe": {
+ "sha256": "1argjdmh0x9c90zkb6cr4z3zkpgjp2mkpsw0dr4v6gg83jcggfpp",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150420.621",
+ "deps": []
+ },
+ "syntax-subword": {
+ "fetch": {
+ "tag": "fetchhg",
+ "url": "https://bitbucket.com/jpkotta/syntax-subword",
+ "sha256": "1p9bp09nibw7rra3r6nj496zdx09db6k82dxnxs1lfgdiswfdq2h",
+ "rev": "a1e0accb754d"
+ },
+ "recipe": {
+ "sha256": "1as89ffqz2h69fdwybgs5wibnrvskm7hd58vagfjkla9pjlpffpm",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150415.1426",
+ "deps": []
+ },
+ "nyan-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "TeMPOraL",
+ "repo": "nyan-mode",
+ "sha256": "1v8ndr8hdbqhd7nca8882g05y36pigv6lj7hpxl50lr1lvp1kmmf",
+ "rev": "eb940664cbca6165644d97989f402c8c5bd0e384"
+ },
+ "recipe": {
+ "sha256": "1z2wnsbjllqa533g1ab5cgbv3d9hjix7fsd7z9c45nqh5cmadmyv",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151018.35",
+ "deps": []
+ },
+ "repeatable-motion": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "willghatch",
+ "repo": "emacs-repeatable-motion",
+ "sha256": "007lqahjbig6yygqik6fgbq114784z6l40a3vrc4qs9361zqizck",
+ "rev": "e664b0a4a3e39c4085378a28b5136b349a0afb22"
+ },
+ "recipe": {
+ "sha256": "12z4z8apd8ksf6dfvqm54l71mx68j0yg4hrjypa9p77fpcd6p0zw",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150629.1312",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "libmpdee": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "andyetitmoves",
+ "repo": "libmpdee",
+ "sha256": "0hazcizn8cjk9casax6xav19yi850ip7xwcasj597lmlmk0p01an",
+ "rev": "3f057bf21f5d2e4b70ee551a970aa49d67042db8"
+ },
+ "recipe": {
+ "sha256": "0z4d8y8jlsjw20b31akkaikh5xl0c05lj77d2i1xbgzam4iixma0",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150131.1557",
+ "deps": []
+ },
+ "abc-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "mkjunker",
+ "repo": "abc-mode",
+ "sha256": "1h4gwp2gyd4jhbkb8ai1zbzhhmlhmihbwzr0wsxg5yq074n72ifs",
+ "rev": "1dd6e1217136a6f986917a3e5f41c1007bac908d"
+ },
+ "recipe": {
+ "sha256": "0qf5lbszyscmagiqhc0d05vzkhdky7ini4w33z1h3j5417sscrcx",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140225.1144",
+ "deps": []
+ },
+ "enotify": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "laynor",
+ "repo": "enotify",
+ "sha256": "0v5p97dvzrk3j59yjc6iny71j3fdw9bb8737wnnzm098ff42dfmd",
+ "rev": "7fd2f48ef4ff32c8f013c634ea2dd6b1d1409f80"
+ },
+ "recipe": {
+ "sha256": "0mii6m6zw9y8njgzi79rcf1n251iw7qz3yqjjij3c19rk3zpm5qi",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20130407.848",
+ "deps": []
+ },
+ "unidecode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "sindikat",
+ "repo": "unidecode",
+ "sha256": "1jvr1k8zd40m1rvwmxzidz1dvr4j8cbh78nqgc3vfb410fj619gw",
+ "rev": "9e279e88a689584027d5a1b088fe5def25d0f75c"
+ },
+ "recipe": {
+ "sha256": "0h058mvb6x53zywpwg85dzhaynlgq577yyqhrn5qqyqjg1n8lhc1",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140317.2318",
+ "deps": [
+ "cl-lib"
+ ]
+ },
+ "org-outlook": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "mattfidler",
+ "repo": "org-outlook.el",
+ "sha256": "10dddbs9jppqqzwwv5y6pj2szdkw3223gvzzd4pzn9biv5d9kzsb",
+ "rev": "b7978fedb0d50c1a3e499bf7e98b5cc526028cd4"
+ },
+ "recipe": {
+ "sha256": "0cn8h6yy67jr5h1yxsfqmr8q7ii4f99pgghfp821m01pj55qyjx9",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150914.747",
+ "deps": []
+ },
+ "highlight2clipboard": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "Lindydancer",
+ "repo": "highlight2clipboard",
+ "sha256": "06nnqry36ncqacfzd8yvc4q59bwk3vgf9a14rkpph2hk2rfvq2m6",
+ "rev": "6ce58a060d9c5843ccb8c79ec2bba7858c68ac15"
+ },
+ "recipe": {
+ "sha256": "19r7abbpm31b0azf2v3xn0rjagg9h01i8g72qapp8dhqb4d9n9r0",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151020.1340",
+ "deps": [
+ "htmlize"
+ ]
+ },
+ "orgtbl-ascii-plot": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "tbanel",
+ "repo": "orgtblasciiplot",
+ "sha256": "1vbnp37xz0nrpyi0hah345928zsb1xw915mdb0wybq1fzn93mp1z",
+ "rev": "cd91f6ae26a7402e192a1f4fd6248f5797edf19e"
+ },
+ "recipe": {
+ "sha256": "1ssjbdprbn34nsfx1xjc382l2195rbh8mybpn31d4kcjx6fqf78h",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151215.1551",
+ "deps": []
+ },
+ "kill-ring-search": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "nschum",
+ "repo": "kill-ring-search.el",
+ "sha256": "0yrc09k64rv5is4wvss938mkj2pkvbr98lr3ahsi7p0aqn7s444v",
+ "rev": "23535b4a01a1cb1574604e36c49614e84e85c883"
+ },
+ "recipe": {
+ "sha256": "1pg4j1rrji64rrdv2xpwz33vlyk8r0hz4j4fikzwpbcbmni3skan",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140422.1055",
+ "deps": []
+ },
+ "soothe-theme": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "jasonm23",
+ "repo": "emacs-soothe-theme",
+ "sha256": "10gh1hvxq9gm29r6qzlnva7vjidd7n4kih4z2ihyvbvy9za20xqw",
+ "rev": "0786fe70c6c1b4ddcfb932fdc6862b9611cfc09b"
+ },
+ "recipe": {
+ "sha256": "000hikpsmqpbb6v13az2dv319d0f7jjpkkpgi4vzv59z6cdlrlp3",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20141027.941",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "cider-spy": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "jonpither",
+ "repo": "cider-spy",
+ "sha256": "1hvvfp58x269yapnayxwyclgqy52azf76rb703mlfqivj1gzd7p3",
+ "rev": "6913a52c4ee781c5325074af05fcdfab864d6c41"
+ },
+ "recipe": {
+ "sha256": "0478jlg76h0mrjwk2b1kdj16s1q1b03b7ygacai45jh89bc025fh",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151123.946",
+ "deps": [
+ "cider",
+ "cl-lib",
+ "dash"
+ ]
+ },
+ "plan9-theme": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "john2x",
+ "repo": "plan9-theme.el",
+ "sha256": "18i8n0v1a3z82dbn29m2h1vb5anvpbvzd9zwn7ffaq01pi0fj2p9",
+ "rev": "0136d0bf1074cf64f305b4396edcf0f54a90436f"
+ },
+ "recipe": {
+ "sha256": "0bvr877mc79s1shr82b33ipspz09jzc3809c6pkbw0jqpfid44cc",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151214.745",
+ "deps": []
+ },
+ "visual-ascii-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "Dewdrops",
+ "repo": "visual-ascii-mode",
+ "sha256": "1cv8mf3l92a9p8qmkfiphk3r81f2ihg2gyw2r4jbbd5ppwbxkl0n",
+ "rev": "99285a099a17472ddd9f1b4f74e9d092dd8c5947"
+ },
+ "recipe": {
+ "sha256": "1h0143h39dq61afswlzlgpknk0gv574x91ar6klqmnaf1snab59g",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150129.446",
+ "deps": []
+ },
+ "helm-go-package": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "yasuyk",
+ "repo": "helm-go-package",
+ "sha256": "1r01nl1k9jjb70214rkmbqaa4qrkyd3apiyq00w02wsymy12wwic",
+ "rev": "1909156510a4e73697a86b8c040d38e4d352851a"
+ },
+ "recipe": {
+ "sha256": "102yhn1xg83l67yaq3brn35a03fkvqqhad10rq0h39n4i1slq3z6",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150603.804",
+ "deps": [
+ "deferred",
+ "go-mode",
+ "helm"
+ ]
+ },
+ "scala-outline-popup": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "ancane",
+ "repo": "scala-outline-popup",
+ "sha256": "1wf3d5spvi9kr4q2w7f18g1bm10fh2zbh4sdbqkf78afv6sbqzrz",
+ "rev": "47e92a1a7738738164d7657ee324bc382a383985"
+ },
+ "recipe": {
+ "sha256": "1fq0k6l57wkya1ycm4cc190kg90j2k9clnl0sc70achp4i47qbk7",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150702.1137",
+ "deps": [
+ "dash",
+ "flx-ido",
+ "popup",
+ "scala-mode2"
+ ]
+ },
+ "http-twiddle": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "hassy",
+ "repo": "http-twiddle",
+ "sha256": "008iq5fhsw4qklw2l457a1cfqq8diadpnf1c1di5p07sc0za5562",
+ "rev": "bbf025b0f57068fe0fb3f1fbc2f6fd7bf0d65992"
+ },
+ "recipe": {
+ "sha256": "153qavpcwvk2g15w5a814xjsnsv54xksx4iz6yjffvvzq14a08ry",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151121.744",
+ "deps": []
+ },
+ "vagrant-tramp": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "dougm",
+ "repo": "vagrant-tramp",
+ "sha256": "075q3ib1skk0437hb4wmmhf6sz1g72bj12qcf5waj2xk09swqfgy",
+ "rev": "dc9202c1420d5d6eaf0efde4a9b548248ce42d33"
+ },
+ "recipe": {
+ "sha256": "0ij7k27zj22sl7inx141l4dg0ymywnvyabjvaqzc0xjdj0cky5c5",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151018.1723",
+ "deps": [
+ "dash"
+ ]
+ },
+ "typing-game": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "lujun9972",
+ "repo": "el-typing-game",
+ "sha256": "0i5pipciwsl6cj3inxiz6ybkv5jglacjwhcyqdfzi4mrbic7g848",
+ "rev": "b58c19a4a14895cc24ce01a73cf624b5c54a12b8"
+ },
+ "recipe": {
+ "sha256": "0k85j9bcqp0gbzdh44q5a9wlkv5mc0g0m42ziq1bzmp6993wkmy2",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151111.940",
+ "deps": []
+ },
+ "symon": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "zk-phi",
+ "repo": "symon",
+ "sha256": "1mb068vgf0bbj0bdxjhd6c794bwc3wp7r6q1s49w8b24g1pfrjkq",
+ "rev": "48dfbd86981e709ebcf055832bb48a7f212ac842"
+ },
+ "recipe": {
+ "sha256": "11llnvngyc3xz8nd6nj86ism0hhs8p54wkscvs4yycbakbyn61lz",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151118.300",
+ "deps": []
+ },
+ "edbi-django": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "proofit404",
+ "repo": "edbi-django",
+ "sha256": "0jlr1da26jkrgadaznxjynjqbg4cpnq7gda3qab2qqrjzzi8cfia",
+ "rev": "9cdf6d7a45402d41551c1e17edd7a29a8520f102"
+ },
+ "recipe": {
+ "sha256": "1s59hab35hwnspyklxbhi0js0sgdn0rc7y33dqjk0psjcikqymg1",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150115.1301",
+ "deps": [
+ "edbi",
+ "emacs",
+ "f"
+ ]
+ },
+ "smart-tabs-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "jcsalomon",
+ "repo": "smarttabs",
+ "sha256": "1s65hr7b8aggvdd1i6gkkpz6j1kqilggfnf46xvjnvdw9awmwk6b",
+ "rev": "cd19892677ec9a2c378c828aa7cef9a2b2bd1c0e"
+ },
+ "recipe": {
+ "sha256": "1fmbi0ypzhsizzb1vm92hfaq23swiyiqvg0pmibavzqyc9lczhhl",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140331.1829",
+ "deps": []
+ },
+ "amd-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "NicolasPetton",
+ "repo": "amd-mode.el",
+ "sha256": "12vjjdyxmm6ky8d7xbsg0pmfam12vzghzzr3j6klji01i8lxmh74",
+ "rev": "17eefc009e26769fa0e81936bcbea9d9ea42954f"
+ },
+ "recipe": {
+ "sha256": "17ry6vm5xlmdfs0mykdyn05cik38yswq5axdgn8hxrvvb6f58d06",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151214.318",
+ "deps": [
+ "dash",
+ "f",
+ "js2-mode",
+ "js2-refactor",
+ "makey",
+ "projectile",
+ "s"
+ ]
+ },
+ "lua-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "immerrr",
+ "repo": "lua-mode",
+ "sha256": "1psk4202rmkkfy1ir1ax4x4djfngd5pfry7x30ybq2ifqzymb9qb",
+ "rev": "bdf121b2c05bc74d3d7961a91d7afeb6176e0f45"
+ },
+ "recipe": {
+ "sha256": "0gyi7w2h192h3pmrhq39lxwlwd9qyqs303lnp2655pikdzk9js94",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151025.730",
+ "deps": []
+ },
+ "ace-window": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "abo-abo",
+ "repo": "ace-window",
+ "sha256": "053074jyinr3a2zkr1jfgmizdbhk5s37vrvf490x2hwf19dzis4a",
+ "rev": "f6653fb5d8bfe8d7bcad94fc72ca9561e28180f0"
+ },
+ "recipe": {
+ "sha256": "1k0x8m1phmvgdxb5aj841iai9q96a5lfq8i4b5vnlbc3w888n3xa",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150803.1037",
+ "deps": [
+ "avy"
+ ]
+ },
+ "origami": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "gregsexton",
+ "repo": "origami.el",
+ "sha256": "0p53l0s8rxr8v77kj83qjrbln7nck16q0zgdp4sqmqb1121ily48",
+ "rev": "56140b4d3f9f2694ab1e8869972a19bd7f3e12e1"
+ },
+ "recipe": {
+ "sha256": "0rkb55zcvsgxzp190vrnbzdfbcjd8zi6vhbhwpqxi0qmyq6a08pr",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150822.650",
+ "deps": [
+ "dash",
+ "emacs",
+ "s"
+ ]
+ },
+ "ace-popup-menu": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "mrkkrp",
+ "repo": "ace-popup-menu",
+ "sha256": "0ffkdq94slfy8w73bznc7bcy4amylhsh2nk2vvdwwqmxmviirlnq",
+ "rev": "92cac2f656b5000d2f267ffaa92a275f40a2719d"
+ },
+ "recipe": {
+ "sha256": "1cq1mpv7v98bqrpsm598krq1741b6rwih71cx3yjifpbagrv4m5s",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150910.727",
+ "deps": [
+ "avy",
+ "cl-lib",
+ "emacs"
+ ]
+ },
+ "zoom-window": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "syohex",
+ "repo": "emacs-zoom-window",
+ "sha256": "1kl01dlggsrffvakmwixw9j8cncdmlsw805wvzls6l1711r1zjwj",
+ "rev": "45ae8d0f47af351d73daeb6cecc366ea7eb49a88"
+ },
+ "recipe": {
+ "sha256": "0l9683nk2bdm49likk9c55c23qfy6f1pn04drqwd1vhpanz4l4b3",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151206.2305",
+ "deps": []
+ },
+ "shell-current-directory": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "metaperl",
+ "repo": "shell-current-directory",
+ "sha256": "1w42j5cdddr0riz1xjq3wiz5i9f71i9jdzd1l92ir0mlj05wjyic",
+ "rev": "bf843771bf9a4aa05e054ade799eb8862f3be89a"
+ },
+ "recipe": {
+ "sha256": "0bj2gs96ivm5x8l7gwvfckyalr1amh4cb1v2dbl323zmrqddhgkd",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140101.1754",
+ "deps": []
+ },
+ "ghc-imported-from": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "david-christiansen",
+ "repo": "ghc-imported-from-el",
+ "sha256": "1ywwyc2kz1c1s26c412nmzh55cinh84cfiazyyi3jsy5zzwhrbhi",
+ "rev": "fcff08628a19f5d26151564659218cc677779b79"
+ },
+ "recipe": {
+ "sha256": "10cxz4c341lknyz4ns63bri00mya39278xav12c73if03llsyzy5",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20141124.1332",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "elhome": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "demyanrogozhin",
+ "repo": "elhome",
+ "sha256": "0rdhnnyn0xsmnshnf289kxk974r57i6nx0vii1w36j6p6q0b7f9h",
+ "rev": "af112592fbc41a625d1d17828db78357df23c127"
+ },
+ "recipe": {
+ "sha256": "1k7936wxgslr29511dz9az38i9vi35rcxk68gzv35v9lpj89lalh",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20131202.1308",
+ "deps": [
+ "initsplit"
+ ]
+ },
+ "company-emoji": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "dunn",
+ "repo": "company-emoji",
+ "sha256": "1lm26av6z18p70gxz23h87l25airawljr5lm7hw6krg706cp3aq6",
+ "rev": "c3665bf150c43a1c9830e817cf6de950be8c0fde"
+ },
+ "recipe": {
+ "sha256": "1mflqqw9gnfcqjb6g8ivdfl7s4mdyjg7j0457hamgyvgvpxsh8x3",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151108.20",
+ "deps": [
+ "cl-lib",
+ "company"
+ ]
+ },
+ "stickyfunc-enhance": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "tuhdo",
+ "repo": "semantic-stickyfunc-enhance",
+ "sha256": "16dxjsr5nj20blww4xpd4jzgjprzzh1nwvb810ggdmp9paf4iy0g",
+ "rev": "13bdba51fcd83ccbc3267959d23afc94d458dcb0"
+ },
+ "recipe": {
+ "sha256": "13dh19c3bljs83l847syqlg07g33hz6sapg6j4s4xv4skix8zfks",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150429.1314",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "pylint": {
+ "fetch": {
+ "tag": "fetchhg",
+ "url": "https://bitbucket.com/logilab/pylint",
+ "sha256": "0rgik6478hbvnjdvhyfvp0kz4g80jig1cbvxaqp3amc4nhxqbcpb",
+ "rev": "467e659fd2eb"
+ },
+ "recipe": {
+ "sha256": "1y8xz04spn7a4fjnfv82hamk1mrc3a1iilf5nrl40nlg2xgp1h63",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150123.1800",
+ "deps": []
+ },
+ "org-password-manager": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "leafac",
+ "repo": "org-password-manager",
+ "sha256": "0v2b7byr56v4pffva93d80cppp3xk8nj3987vpwmczqiq5by1pc8",
+ "rev": "b13f63aa4efca47e92cfe52865e99f230851fa03"
+ },
+ "recipe": {
+ "sha256": "1l3h0qhv0ad9l933d47as8y3h9x94zw315ax4qsgiw3046nzkdwv",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150729.1715",
+ "deps": [
+ "org",
+ "s"
+ ]
+ },
+ "graphene-meta-theme": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "rdallasgray",
+ "repo": "graphene-meta-theme",
+ "sha256": "1bidfn4x5lb6dylhadyf05g4l2k7jg83mi058cmv76av1glawk17",
+ "rev": "5d848233ac91c1e3560160a4eba60944f5837d35"
+ },
+ "recipe": {
+ "sha256": "1cqdr93lccdpxkzgap3r3qc92dh8vqgdlnxvqkw7lrcbs31fvf3q",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151108.400",
+ "deps": []
+ },
+ "e2wm-term": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "aki2o",
+ "repo": "e2wm-term",
+ "sha256": "0qv3kh6q3q7vgfsd8x25x8agi3fp96dkpjnxdidkwk6k8h9n0jzw",
+ "rev": "65b5ac88043d5c4048920a048f3599904ca55981"
+ },
+ "recipe": {
+ "sha256": "0wrq06yap80a96l9l0hs7x7rng7sx6vi1hz778kknb6il4f2f45g",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20141009.808",
+ "deps": [
+ "e2wm",
+ "log4e",
+ "yaxception"
+ ]
+ },
+ "files+": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/files+.el",
+ "sha256": "0yl98k1yxmqidyc08dn20dmqkb450xnanqr0iqs01z3q6agpqc0v"
+ },
+ "recipe": {
+ "sha256": "1m1pxf6knrnyc9ygmyr27gm709ydxf0kkh1xrfcza6n476frmwr8",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151215.858",
+ "deps": []
+ },
+ "tracwiki-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "merickson",
+ "repo": "tracwiki-mode",
+ "sha256": "1m25l1lyff4h0h4vjrcsziwbf8svqg2llvvgl8i2b4jbh7k7pk5f",
+ "rev": "6a620444d59b438f42383b48cd4c19c03105dba6"
+ },
+ "recipe": {
+ "sha256": "1k983f0lj42rxr5szpq9l9harykfn8jr13y3y6fav86zzd1fb8j0",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150119.1021",
+ "deps": [
+ "xml-rpc"
+ ]
+ },
+ "x86-lookup": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "skeeto",
+ "repo": "x86-lookup",
+ "sha256": "13id1vf590gc0kwkhh6mgq2gj2bra2kycxjlvql7v0s7cdvamjhq",
+ "rev": "cac42bd9f27bff92e0b1cf6fb20563061885239f"
+ },
+ "recipe": {
+ "sha256": "1clv1npvdkzsy0a08xrb880yflwzl4d5cc2c5xrs7b837mqpj8hd",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151118.732",
+ "deps": [
+ "cl-lib",
+ "emacs"
+ ]
+ },
+ "badwolf-theme": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "bkruczyk",
+ "repo": "badwolf-emacs",
+ "sha256": "1plh7i4zhs5p7qkv7p7lnfrmkszn8b3znwvbxgp7wpxay5safc5j",
+ "rev": "24a557f92a702f632901a5b7bee59945a0a8cde9"
+ },
+ "recipe": {
+ "sha256": "03plkzpmlh0pgfp1c9padsh4w2g23clsznym8x4jabxnk0ynhq41",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151215.1125",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "cursor-test": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "ainame",
+ "repo": "cursor-test.el",
+ "sha256": "0wmnhizv4jfcl1w9za4ydxf6xwxgm5vwmn1zi5vn70zmv4d6r49l",
+ "rev": "e09956e048b88fd2ee8dd90b5678baed8b04d31b"
+ },
+ "recipe": {
+ "sha256": "1c1d5xq4alamlwyqxjx557aykz5dw87acp0lyglsrzzkdynbwlb1",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20131207.1132",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "sunshine": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "aaronbieber",
+ "repo": "sunshine.el",
+ "sha256": "1x3ivhwyapxw7v3ygam3bn2i9djrsp9mcd5zdn8q84c583ppanll",
+ "rev": "8783923f0aa4b835b90359443b941b10758c28d7"
+ },
+ "recipe": {
+ "sha256": "1lxiqw7k8cpq0v6p5whgxgzqrbx3sd9174r0d4qlkrpn6rcp44vv",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151013.814",
+ "deps": [
+ "cl-lib"
+ ]
+ },
+ "smart-mark": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "cheunghy",
+ "repo": "smart-mark",
+ "sha256": "0sqvm7iwdjk057fwid4kz6wj71igiqhdarj59s17pzy6xz34afhg",
+ "rev": "04b522a23e3aae8381c6a976fc978532fcb2e7d0"
+ },
+ "recipe": {
+ "sha256": "1vv65sa0pwl407mbxcp653kycgx8jz87n6wshias1dp9lv21pj6v",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150911.2110",
+ "deps": []
+ },
+ "region-bindings-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "fgallina",
+ "repo": "region-bindings-mode",
+ "sha256": "02kfi3c6ydnr7xw611ck66kfjyl5w86dr9vfjv3wjl6ad9jya4zy",
+ "rev": "3fa5dbdbd7c000bebff6d9d14a4be326ec24b6fc"
+ },
+ "recipe": {
+ "sha256": "141q4x6rilidpnsm9s78qks9i1v6ng0ydhbzqi39xcaccfyyjb69",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140407.1714",
+ "deps": []
+ },
+ "rspec-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "pezra",
+ "repo": "rspec-mode",
+ "sha256": "1rgy4jp1ydvwxb83qmbn1wwscgdqn9pfjw8788n4rg1l2ypb8w0s",
+ "rev": "fc3bb819136966b1d1bd31335724d702132fff0b"
+ },
+ "recipe": {
+ "sha256": "0nyib9rx9w9cbsgkcjx9n8fp77xkzxg923z0rdm3f9kc7njcn0zx",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151217.2046",
+ "deps": [
+ "cl-lib",
+ "ruby-mode"
+ ]
+ },
+ "mb-url": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "dochang",
+ "repo": "mb-url",
+ "sha256": "1qd4vya49sy7iwcpnyd91d0zx3niwsavhdcq6387rsb0j64hwybl",
+ "rev": "e1d9af92f8f3c4fc96760558ee1a4df7bbbc537c"
+ },
+ "recipe": {
+ "sha256": "1nf8ssan00qsn3d4dc6h6qzdwqzh977qb5d2m33kiwi6qb98988h",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151210.1216",
+ "deps": [
+ "cl-lib"
+ ]
+ },
+ "shell-toggle": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "knu",
+ "repo": "shell-toggle.el",
+ "sha256": "0ssaccdacabpja9nqzhr8x8ggfwmlian7y4p0fa6gvr7qsvjpgr9",
+ "rev": "0d01bd9a780fdb7fe6609c552523f4498649a3b9"
+ },
+ "recipe": {
+ "sha256": "1ai0ks7smr8b221j9hmsikswpxqraa9b13fpwv4wwagavnlah446",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150226.811",
+ "deps": []
+ },
+ "idomenu": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "birkenfeld",
+ "repo": "idomenu",
+ "sha256": "1vx2g1xgxpcabr49mkl6ggzrpa3k2zhm479j6262vb64swzx33jw",
+ "rev": "4b0152d606360c70204fb4c27f68de79ca885386"
+ },
+ "recipe": {
+ "sha256": "0mg601ak9mhp2fg5n13npcfzphgyms4vkqd18ldmv098z2z1412h",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20141123.1520",
+ "deps": []
+ },
+ "unicode-troll-stopper": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "camsaul",
+ "repo": "emacs-unicode-troll-stopper",
+ "sha256": "0ny260mr1h810fvqsfj2hpd3zql4g309m60qj4vk6kmd83p5b60f",
+ "rev": "15e4b57b78bf643bb56e5000078030cbb5c66e2a"
+ },
+ "recipe": {
+ "sha256": "0a10lq0xsfyp052iw4xjbhsdkbyg25x2gk68gys4k7p6l92la0k5",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151023.2031",
+ "deps": []
+ },
+ "ein-mumamo": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "millejoh",
+ "repo": "ein-mumamo",
+ "sha256": "1w0b3giy9ca35pp2ni4afnqas64a2vriilab7jiw9anp3ryh6570",
+ "rev": "028fefec499598add1a87b92ed991891f38f0c7b"
+ },
+ "recipe": {
+ "sha256": "029sk90xz9fhv2s56f5hp0aks1d6ybz517009vv4892bbzkpjv1w",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150301.1828",
+ "deps": [
+ "ein"
+ ]
+ },
+ "omni-quotes": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "AdrieanKhisbe",
+ "repo": "omni-quotes.el",
+ "sha256": "1x8af8jv4n83sl4rgj0d2rpmw9g78rknm1h523f3b1a5x4kdvsz6",
+ "rev": "537f7191bede7156dae94622e92cec04c6cd4bdf"
+ },
+ "recipe": {
+ "sha256": "0dqki0ibabs9cpcjvnh8lc2114x46i1xmnyjc6qqblfxa3ggdygs",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150604.1257",
+ "deps": [
+ "dash",
+ "omni-log"
+ ]
+ },
+ "helm-dictionary": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "emacs-helm",
+ "repo": "helm-dictionary",
+ "sha256": "05mb7kb4x7kzh0w9r531ppd92hzsa2v3wqcmafkcn1z5wfp7zw68",
+ "rev": "2aeafba1556c76cc5ff949ca50f341fc2aa687b0"
+ },
+ "recipe": {
+ "sha256": "1pak8qn0qvbzyclhzvr5ka3pl370i4kiykypfkwbfgvqqwczhl3n",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20141226.1336",
+ "deps": [
+ "helm"
+ ]
+ },
+ "auto-complete-clang": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "brianjcj",
+ "repo": "auto-complete-clang",
+ "sha256": "12y6f47xbjl4gy14j2f5wlisy5vl6rhx74n27w61pjv38m0a7mi1",
+ "rev": "a195db1d0593b4fb97efe50885e12aa6764d998c"
+ },
+ "recipe": {
+ "sha256": "1rnmphl7ml5ryjl5ka2l58hddir8b34iz1rm905wdwh164piljva",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140409.252",
+ "deps": [
+ "auto-complete"
+ ]
+ },
+ "ob-prolog": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "ljos",
+ "repo": "ob-prolog",
+ "sha256": "14scbds1rlmii52i0zr3s0r1wmga7qysj63c2dpinhagxa36d51n",
+ "rev": "548986d0e6f678789216a882f0a19daf1b89ab93"
+ },
+ "recipe": {
+ "sha256": "0ki8yd20yk5xwn0zpk06zjxzgrsf8paydif9n98svb9s2l9wrh1s",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150530.1137",
+ "deps": []
+ },
+ "goto-gem": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "pidu",
+ "repo": "goto-gem",
+ "sha256": "0j2hdxqfsifm0d8ilwcw7np6mvn4xm58xglzh42gigj2fxv87g99",
+ "rev": "e3206f11f48bb7e798514a4ca2c2f60649613e5e"
+ },
+ "recipe": {
+ "sha256": "06vy9m01qccvahxr5xn0plzw9knl5ig7gi5q5r1smfx92bmzkg3a",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140729.1345",
+ "deps": [
+ "s"
+ ]
+ },
+ "minibuffer-cua": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "knu",
+ "repo": "minibuffer-cua.el",
+ "sha256": "011kg76zr4hfhi2gngnc7jlmp0l0nvhmlgyc0y9bir2jbjf4yyvz",
+ "rev": "adc4979a64f8b36e05960e9afa0746dfa9e2e4c7"
+ },
+ "recipe": {
+ "sha256": "1ragvr73ykbvpgynnq3z0z4yzrlfhfqlwc1vbxclb8x2xmxq7pzw",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20130906.634",
+ "deps": []
+ },
+ "clang-format": {
+ "fetch": {
+ "tag": "fetchsvn",
+ "url": "http://llvm.org/svn/llvm-project/cfe/trunk/tools/clang-format",
+ "sha256": "1rzax55darnj4h8i3qyrm2rqdwcvqggsz7kv6gi2i174fbdkbzfr",
+ "rev": "256039"
+ },
+ "recipe": {
+ "sha256": "19qaihb0lqnym2in4465lv8scw6qba6fdn8rcbkpsq09hpzikbah",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151116.638",
+ "deps": [
+ "cl-lib"
+ ]
+ },
+ "autotest": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "zenspider",
+ "repo": "elisp",
+ "sha256": "109il2s5ynfam510yli4xmi5zgw7xhr5gv096li24idqdp0gpf9n",
+ "rev": "ec4ef9dc2d018053bed7fb44837b4c66f1a14c36"
+ },
+ "recipe": {
+ "sha256": "0f46m5pc40i531dzfnhkcn192dcs1q20y083c1c0wg2zhjcdr5iy",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150130.425",
+ "deps": []
+ },
+ "yagist": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "mhayashi1120",
+ "repo": "yagist.el",
+ "sha256": "0sqwz37y6mpc378pp8p6bq9fmhgwfr6rlbngiwgvsp30iq6vjsn4",
+ "rev": "ab19ce3607873a6c523f87fffd653a1e7fbb66c2"
+ },
+ "recipe": {
+ "sha256": "1mz86fq0pb4w54c66vd19m2492mkrzq2qi6ssnn2xwmn8vv02wdd",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150425.751",
+ "deps": [
+ "cl-lib"
+ ]
+ },
+ "magma-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "ThibautVerron",
+ "repo": "magma-mode",
+ "sha256": "0alcdr84g2gvvshpa3cws87n47n5shcryzbj947nsbicmp7f9k8j",
+ "rev": "b6ccdeb774348ef3e87cc877de9fc90405872760"
+ },
+ "recipe": {
+ "sha256": "1gq6yi51h1h7ivrm1xr6nfrpabx8ylbk0waaw04gnw3bb54dmmvc",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150923.340",
+ "deps": [
+ "cl-lib",
+ "dash",
+ "f"
+ ]
+ },
+ "maxframe": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "rmm5t",
+ "repo": "maxframe.el",
+ "sha256": "0g9kpsg6623nmxnshj49q8k952xybrkmqqy6m892m8wnm22pjdz1",
+ "rev": "174e3a0f3a716e904eba15e659096a99976ee39a"
+ },
+ "recipe": {
+ "sha256": "10cwy3gi3xb3pfdh6xiafxp3vvssawci3y26jda6550d0w5vardj",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140916.954",
+ "deps": []
+ },
+ "company-irony": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "Sarcasm",
+ "repo": "company-irony",
+ "sha256": "0y1a9wxk9w2jk4177hkqzgqzknswikxc1dc60hzj4samyp2jhvfl",
+ "rev": "09f16eade551201548455285a2d977a0889761da"
+ },
+ "recipe": {
+ "sha256": "15adamk1b9y1i6k06i5ahf1wn70cgwlhgk0x6fk8pl5izg05z1km",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150810.439",
+ "deps": [
+ "cl-lib",
+ "company",
+ "emacs",
+ "irony"
+ ]
+ },
+ "dactyl-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "luxbock",
+ "repo": "dactyl-mode",
+ "sha256": "0fp40cyamchc9qq5vbpxgq3yp6vs8p3ncg46mjzr54psy3fc86dm",
+ "rev": "cc55fe6b987271d9647492b8df4c812d884f661f"
+ },
+ "recipe": {
+ "sha256": "0ppcabddcpwshfd04x42nbrbkagbyi1bg4vslysnlxn4kaxjs7pm",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140906.1225",
+ "deps": []
+ },
+ "easy-kill": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "leoliu",
+ "repo": "easy-kill",
+ "sha256": "0i2plbvaalapx3svryn5lrc68m0qj1xm0z577xxzq7i9z91nanq7",
+ "rev": "e2b667f651a3531164d24ea4cbcd8c34fba0e17f"
+ },
+ "recipe": {
+ "sha256": "10jcv7a4vcnaj3wkabip2xwzcwlmvdlqkl409a9lnzfasxcpf32i",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151031.29",
+ "deps": [
+ "cl-lib",
+ "emacs"
+ ]
+ },
+ "dired-imenu": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "DamienCassou",
+ "repo": "dired-imenu",
+ "sha256": "088h9yn6wndq4pq6f7q4iz17f9f4ci29z9nh595idljp3vwr7qid",
+ "rev": "610e21fe0988c85931d34894d3eee2442c79ab0a"
+ },
+ "recipe": {
+ "sha256": "09yix4fkr03jq6j2rmvyg6gkmcnraw49a8m9649r3m525qdnhxs1",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140109.1010",
+ "deps": []
+ },
+ "soft-morning-theme": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "mswift42",
+ "repo": "soft-morning-theme",
+ "sha256": "06q82v1hndvznsqg0r6jrxvgxhycg9m65kay4db4yy0gmc66v2xf",
+ "rev": "c0f9c70c97ef2be2a093cf839c4bfe27740a111c"
+ },
+ "recipe": {
+ "sha256": "0lzg478ax6idzh6m5sf2ds4gbv096y0c0gn15dai19f58bs63xzr",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150918.1541",
+ "deps": []
+ },
+ "escreen": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "emacsmirror",
+ "repo": "escreen",
+ "sha256": "0id7820vjbprlpprj4fyhylkjvx00b87mw4n7jnxn1gczvjgafmc",
+ "rev": "e3fd46225fec70943024d950c6b6c2eb88e00b96"
+ },
+ "recipe": {
+ "sha256": "0yis27362jc63jkzdndz1wpysmf1b51rrbv3swvi6b36da5i6b54",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20091203.1213",
+ "deps": []
+ },
+ "nix-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "NixOS",
+ "repo": "nix",
+ "sha256": "0nfwz0p5jakf0nfxmvnqwny38cfh92nx0n7l42bj22m8hcr1gb5d",
+ "rev": "a9faa7bbce963ddb894699a7cc6ea8a3876e4d9f"
+ },
+ "recipe": {
+ "sha256": "00rqawi8zs2x79c91gmk0anfyqbwalvfwmpak20i11lfzmdsza1s",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151026.515",
+ "deps": []
+ },
+ "angular-snippets": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "magnars",
+ "repo": "angular-snippets.el",
+ "sha256": "0hdm1a323mzxjfdply8ri3addk146f21d8cmpd18r7dw3j3cdfrn",
+ "rev": "af5ae0a4a8603b040446c28afcf6ca01a8b4bd7b"
+ },
+ "recipe": {
+ "sha256": "057phgizn1c6njvdfigb23ljs31knq247gr0rcpqfrdaxsnnzm5c",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140514.23",
+ "deps": [
+ "dash",
+ "s"
+ ]
+ },
+ "helm-rubygems-local": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "f-kubotar",
+ "repo": "helm-rubygems-local",
+ "sha256": "0s4hb1fvwr9za5gkz8s5w1kh9qjyygz6g59w7vmrg2d8ds2an03d",
+ "rev": "289cb33d41c703af9791d6da46b55f070013c2e3"
+ },
+ "recipe": {
+ "sha256": "18p18bly15a8xjc34k11jbvxlmr127sll0vh5ma2p787x6a3mc7c",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20130711.2011",
+ "deps": [
+ "helm"
+ ]
+ },
+ "emacsagist": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "echosa",
+ "repo": "emacsagist",
+ "sha256": "0ciqxyahlzaxq854jm25zbrbmrhcaj5csdhxa0az9crwha8wkmw2",
+ "rev": "aba342ba59c254a88017f25e9fb7a8cd6f2fda83"
+ },
+ "recipe": {
+ "sha256": "1cyz7nf0zxa21979jf5kdmkgwiyd17vsmpcmrw1af37ly27l8l64",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140331.1330",
+ "deps": [
+ "cl-lib"
+ ]
+ },
+ "yafolding": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "zenozeng",
+ "repo": "yafolding.el",
+ "sha256": "0b252m7vb5kg5bjhpgag6nhm32cac8dhlmy4pr0kpa860lh2xlz7",
+ "rev": "0dc48073f429112b51a888e8e9285739435d3c7f"
+ },
+ "recipe": {
+ "sha256": "1z70ismfwmh9a83a7h5lbhw7iywfib5fis7y8gx8020wfjq9g2yq",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20141202.2256",
+ "deps": []
+ },
+ "term-cmd": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "CallumCameron",
+ "repo": "term-cmd",
+ "sha256": "11xk11i99d17x5bl7glrwj2dhvl3f54slipj034dbf07dd5b2jih",
+ "rev": "fc2ae638409af99c4788563ef54847636f2e23e0"
+ },
+ "recipe": {
+ "sha256": "0fn4f32zpl0p2lid159q59lzjv4xqmc23a64kcclqp9db8b1m5fy",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20141114.1514",
+ "deps": []
+ },
+ "shell-split-string": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "10sr",
+ "repo": "shell-split-string-el",
+ "sha256": "00c06y5c9iscgddrqgd1fh0y53xvjz07ylwzaaa9x0dbvx386ihl",
+ "rev": "4ad4caaea6b1c247df2f3171569d633c0d8fdefe"
+ },
+ "recipe": {
+ "sha256": "1yj1h7za4ylxh2nikj7s1qqlilpsk05x9571a2fymfyznm3iq77m",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150202.2236",
+ "deps": []
+ },
+ "evil-visual-mark-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "roman",
+ "repo": "evil-visual-mark-mode",
+ "sha256": "07cmql8zsqz1qchq2mp3qybbay499dk1yglisig6jfddcmrbbggz",
+ "rev": "094ee37599492885ff3144918fcdd9b74dadaaa0"
+ },
+ "recipe": {
+ "sha256": "1qgr2dfhfz6imnlznicl7lplajd1s8wny7mlxs1bkms3xjcjfi48",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150202.1200",
+ "deps": [
+ "dash",
+ "evil"
+ ]
+ },
+ "package+": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "zenspider",
+ "repo": "package",
+ "sha256": "1xv0ra130qg0ksgqi4npspnv0ckq77k7f5kcibavj030h578kj97",
+ "rev": "4a9618a44ec4f26a14e0136cd9d3c4855fceb25b"
+ },
+ "recipe": {
+ "sha256": "1mbsxr4llz8ny7n7w3lykld9yvbaywlfqnvr9l0aiv9rvmdv03bn",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150319.1655",
+ "deps": []
+ },
+ "helm-itunes": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "daschwa",
+ "repo": "helm-itunes",
+ "sha256": "1czgf5br89x192g3lh3x2n998f79hi1n2f309ll264qnl35kv14w",
+ "rev": "966de755a5aadbe02311a6cef77bd4790e84c263"
+ },
+ "recipe": {
+ "sha256": "15z5lgh5x1ykz5p31i994fig8v05s7ckkgw6p9jifn11sn1a39nb",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151013.148",
+ "deps": [
+ "helm"
+ ]
+ },
+ "xterm-frobs": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "emacsmirror",
+ "repo": "xterm-frobs",
+ "sha256": "10dsf2lgjjqvjzzyc5kwggfk511v8ypmx173bixry3djcc15dsf3",
+ "rev": "58fb0de21e4d1963d1398a38e1b803446fb41320"
+ },
+ "recipe": {
+ "sha256": "02v8kh2g6a2fpxy911630zsg985hyakvqbd6v2xyfbz0vnd6i1lf",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20091211.1755",
+ "deps": []
+ },
+ "faces+": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/faces+.el",
+ "sha256": "0mgj7mdadc62wpav7z138jsjvbvkxg05h5z9kmjw8jl5x4m334lq"
+ },
+ "recipe": {
+ "sha256": "0k3m434f3d3061pvir0dnykmv6r9jswl7pzybzja3afiy591hh92",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150104.1600",
+ "deps": []
+ },
+ "purple-haze-theme": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "jasonm23",
+ "repo": "emacs-purple-haze-theme",
+ "sha256": "15myw5rkbnnpgzpiipm5xl4cyzymv8hh66x9al4aalb5nf52dckc",
+ "rev": "3e245cbef7cd09e6b3ee124963e372a04e9a6485"
+ },
+ "recipe": {
+ "sha256": "0ld8k53823786y6f0dqcp0hlqlnmy323vdkanjfs5wg5ib60az1m",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20141014.2129",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "dired-subtree": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "Fuco1",
+ "repo": "dired-hacks",
+ "sha256": "15jri9cj5jgr3ff423izd8idd7djay238c9pa3ccy05djl9z2hdx",
+ "rev": "6647825dbca4269afa76302e345d6bd15b222e42"
+ },
+ "recipe": {
+ "sha256": "1vqcnkh3g6dwi2hwfkb534q0j19pkqzqk3yb7ah8ck4z4ln4ppfk",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150908.1233",
+ "deps": [
+ "dash",
+ "dired-hacks-utils"
+ ]
+ },
+ "rvm": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "senny",
+ "repo": "rvm.el",
+ "sha256": "0iblk0vagjcg3c8q9hlpwk7426ms7aq0s80izgvascfmyqycv6qm",
+ "rev": "8e45a9bad8e317ff195f384dab14d3402497dc79"
+ },
+ "recipe": {
+ "sha256": "08i7cmav2cz73jp88ww0ay2yjhk9dj8146836q4sij1bl1slbaf8",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150402.942",
+ "deps": []
+ },
+ "isgd": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "chmouel",
+ "repo": "isgd.el",
+ "sha256": "09hx28lmldm7z3x22a0qx34id09fdp3z61pdr61flgny213q1ach",
+ "rev": "764306dadd5a9213799081a48aba22f7c75cca9a"
+ },
+ "recipe": {
+ "sha256": "0yc9mkjzj3w64f48flnjvd193mk9gndrrqbxz3cvmvq3vgahhzyi",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150414.436",
+ "deps": []
+ },
+ "redis": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "emacs-pe",
+ "repo": "redis.el",
+ "sha256": "1rjpf23a8rggjmmxvm1997d3xz03kz84xams486b9ky0n2v02d57",
+ "rev": "2c33f3397bc14e7a8192867b55920492d4eead8c"
+ },
+ "recipe": {
+ "sha256": "1awnilb8bk0izp6yw0187ybh9slf1hc51014xvvmj90darxby79a",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150531.1448",
+ "deps": [
+ "cl-lib",
+ "emacs"
+ ]
+ },
+ "swift-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "chrisbarrett",
+ "repo": "swift-mode",
+ "sha256": "03pxizbw02bp9mp0b0vwiys4vncna73ymmbbmxpw9m6mn1ql2fjv",
+ "rev": "a5e1acf5826ccd489617f9255da0aab7e5e920ee"
+ },
+ "recipe": {
+ "sha256": "1imr53f8agfza9zxs1h1mwyhg7yaywqqffd1lsvm1m84nvxvri2d",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151018.120",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "logview": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "doublep",
+ "repo": "logview",
+ "sha256": "1wglgjf45rl4rl5zp1p1z318p2d1hy1w77m65wwg35v6pkl1mikr",
+ "rev": "03b2f0fc325a557ccee0dbcb9226a1d733f21c84"
+ },
+ "recipe": {
+ "sha256": "0gks3j5avx8k3427a36lv7gr95id3cylaamgn5qwbg14s54y0vsh",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151030.1649",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "facemenu+": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/facemenu+.el",
+ "sha256": "0b8all1l4v98iz1y4zbc0l9zxrdbgkljzahs2yrbl9md2qj3j91d"
+ },
+ "recipe": {
+ "sha256": "0lbggalgkj59wj67z95949jmppmqrzrp63mdhw42r2x0fz1ir0iv",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150816.2153",
+ "deps": []
+ },
+ "sicp": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "webframp",
+ "repo": "sicp-info",
+ "sha256": "102ssiz4sp7y816s1iy8i98c314jbn3sy0v87b0qgpgjiq913ffq",
+ "rev": "7d060136bf4582fa74e4aa7cb924d856eea270f4"
+ },
+ "recipe": {
+ "sha256": "1q7pbhjk8qgwvj27ianrdbmj98pwf3xv10gmpchh7bypmbyir4wz",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151130.957",
+ "deps": []
+ },
+ "dired-toggle": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "fasheng",
+ "repo": "dired-toggle",
+ "sha256": "1yx20h16hc1b04knsqhrxni0j8qgwnq7i5b0dlggq3dakcvqfxma",
+ "rev": "84efb9ec9c327e4da53cdb7cda5b51dcd0ede0e5"
+ },
+ "recipe": {
+ "sha256": "18v571kp440n5g1d7pj86rr8dgbbm324f9vblkdbdvn13c5dczf5",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140907.1549",
+ "deps": []
+ },
+ "narrow-reindent": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "emallson",
+ "repo": "narrow-reindent.el",
+ "sha256": "10yn215xb4s6kshk108y75im1xbdp0vwc9kah5bbaflp9234i0zh",
+ "rev": "87466aac4dbeb79597124dd077bf5c704872fd3d"
+ },
+ "recipe": {
+ "sha256": "0fybal70kk62zlra63x4jb72694m0mzv4cx746prx9anvq1ss2i0",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150722.1406",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "xah-elisp-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "xahlee",
+ "repo": "xah-elisp-mode",
+ "sha256": "0h46wdi6kijp8q9n7q0dvv1p9bya396pk3ywy2bkkhv20j9zsd1b",
+ "rev": "003d1dbb1edd692fee317d1852bf6bf03662bdd3"
+ },
+ "recipe": {
+ "sha256": "0cl07hw1hd3hj7wrzkh20m8vcs7mqsajxjmnlbnk2yg927yyijij",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151116.1612",
+ "deps": []
+ },
+ "epl": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "cask",
+ "repo": "epl",
+ "sha256": "0s4k2grikhibd075435giv3bmba1mx71ndxlr0k1i0q0xawpyyb4",
+ "rev": "a5ad061d0a5eb42f66c384e55d102da7d52c96b0"
+ },
+ "recipe": {
+ "sha256": "0zr3r2hn9jaxscrl83hyixznb8l5dzfr6fsac76aa8x12xgsc5hn",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150517.633",
+ "deps": [
+ "cl-lib"
+ ]
+ },
+ "control-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "stephendavidmarsh",
+ "repo": "control-mode",
+ "sha256": "1qsq543rb0z2fq716a2khs8zqyh13npzmbj58f00s8b3w3andpbh",
+ "rev": "52c43d198f423eb00e5de6e44f2f3dd70893a6bc"
+ },
+ "recipe": {
+ "sha256": "1biq4p2w8rqcbvr09gxbchjqlaixjf1fzv7xv8lpv81dlhi7dgz6",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140218.807",
+ "deps": []
+ },
+ "paradox": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "Malabarba",
+ "repo": "paradox",
+ "sha256": "1kvyfsf4dy7gss5jg2hb5hn51llq0jza9nkdxgsf7mh07v6kj9ap",
+ "rev": "6fd7161475ab3580f2113e569ef4df7431d0b1b5"
+ },
+ "recipe": {
+ "sha256": "1xq14nfvprsq18464qr4mhphq7cl1f570lji5n8z6j9vpfm9a4p2",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151211.1517",
+ "deps": [
+ "cl-lib",
+ "emacs",
+ "hydra",
+ "json",
+ "let-alist",
+ "seq",
+ "spinner"
+ ]
+ },
+ "ix": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "theanalyst",
+ "repo": "ix.el",
+ "sha256": "069alh9vs6is3hvbwxbwr9g8qq9md5c92wg5bfswi99yciqdvc4i",
+ "rev": "aea4c54a5cc5a6f26637353c16a3a0e70fc76963"
+ },
+ "recipe": {
+ "sha256": "1fl76dk8vgw3mrh5iz99lrsllwya6ij9d1lj3szcrs4qnj0b5ql3",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20131027.1129",
+ "deps": [
+ "grapnel"
+ ]
+ },
+ "dired-toggle-sudo": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "renard",
+ "repo": "dired-toggle-sudo",
+ "sha256": "0ajj8d6k5in2hclcrqckinfh80ylddplva0ryfbkzsjkfq167cv2",
+ "rev": "02449dbda4e168f99fe5352c9628df5d39e11483"
+ },
+ "recipe": {
+ "sha256": "0fy05af9aq9791ij4j9pscdk5j44pbg0kmhpqli41qiazjw7v2va",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151109.406",
+ "deps": []
+ },
+ "req-package": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "edvorg",
+ "repo": "req-package",
+ "sha256": "13hglddg4x0l5kmqplxb1ygqa4k4vxgabvjk8q8zjvkm8rwylwjh",
+ "rev": "ad4cff69412abb3ecc1ebd15946943c0cab6529a"
+ },
+ "recipe": {
+ "sha256": "1438f60dnmc3a2dh6hd0wslrh25nd3af797aif70kv6qc71h87vf",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151205.1042",
+ "deps": [
+ "dash",
+ "ht",
+ "log4e",
+ "use-package"
+ ]
+ },
+ "esh-buf-stack": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "tom-tan",
+ "repo": "esh-buf-stack",
+ "sha256": "1k8k9hl9m4vjqdw3x9wg04cy2lb9x64mq0mm0i3i6w59zrsnkn4q",
+ "rev": "ce0ea5aadca3150eaa9d2e6ec20296add4e99176"
+ },
+ "recipe": {
+ "sha256": "0zmwlsm98m9vbjk9mldfj2nf6cip7mlvb71j33ddix76yqggp4qg",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140107.418",
+ "deps": []
+ },
+ "tmmofl": {
+ "fetch": {
+ "tag": "fetchhg",
+ "url": "https://code.google.com/p/phillord-emacs-packages/",
+ "sha256": "0pq9x73hrp7qwhms7x3dvjfh9imapglba9yd7nkyw68mc0b9wlnl",
+ "rev": "e14e67d6a5b7"
+ },
+ "recipe": {
+ "sha256": "1hqv2xqnhwnbj4sqcbdial4987yj1y3ry7niaaz2hh0f5qzrzwa8",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20121025.601",
+ "deps": []
+ },
+ "cmake-project": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "alamaison",
+ "repo": "emacs-cmake-project",
+ "sha256": "0fyzi8xac80wnhnwwm1j6yxpvpg1n4diq2lcl3qkj8klvk5gpxr6",
+ "rev": "5212063b6276f8b9af8b48b4052e5ec97721c08b"
+ },
+ "recipe": {
+ "sha256": "13n6j9ljvzjzkknbm9zkhxljcn12avl39gxqq95hah44dr11rns3",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150720.1559",
+ "deps": []
+ },
+ "matlab-mode": {
+ "fetch": {
+ "tag": "fetchcvs",
+ "module": "matlab-emacs",
+ "cvsRoot": ":pserver:anonymous@matlab-emacs.cvs.sourceforge.net:/cvsroot/matlab-emacs",
+ "sha256": "694652e361b9d15a3f1542d45b43c6516f20030dbaa8a058b5fdb4c833885465"
+ },
+ "recipe": {
+ "sha256": "06s7mrbfbkk6baf8j1vc26nb2bg3ma1n7d297zqz8ay90cv81y76",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20141227.1244",
+ "deps": []
+ },
+ "org-time-budgets": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "leoc",
+ "repo": "org-time-budgets",
+ "sha256": "04adkz950vvwyzy3da468nnqsknpr5kw5369w2yqhnph16cwwfxb",
+ "rev": "baa1ce6333157fed3b3799a80e6cf8c73c9e2c18"
+ },
+ "recipe": {
+ "sha256": "0r8km586n6xdnjha7xnzlh03nw1dp066hydaz8kxfmhvygl9cpah",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151111.201",
+ "deps": [
+ "alert",
+ "cl-lib"
+ ]
+ },
+ "fancy-narrow": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "Malabarba",
+ "repo": "fancy-narrow",
+ "sha256": "1i6xq03fhkffahrlfjcds5mvk4rsipia9diaqv7qfbhzrfwvn665",
+ "rev": "5196dc6066d354883fa21090266b6cebccc9f6fd"
+ },
+ "recipe": {
+ "sha256": "15i86jz6rdpva1az7gqp1wbm8kispcfc8h6v9fqsbag9sbzvgcyv",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151021.533",
+ "deps": []
+ },
+ "rhtml-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "eschulte",
+ "repo": "rhtml",
+ "sha256": "1qlpv5lzj4yfyjgdykhm6q9izg6g0z5pf5nmynj42vsx7v8bhy1x",
+ "rev": "a6d71b38a3db867ccf82999c99805db1a3a33c33"
+ },
+ "recipe": {
+ "sha256": "038j5jkcckmhlq3vz4h07s5y2scljh1fdn9r614hiyxwgk48lc35",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20130422.811",
+ "deps": []
+ },
+ "insfactor": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "duelinmarkers",
+ "repo": "insfactor.el",
+ "sha256": "112s3c0ii8zjc6vlj2im2qd2pl3hb95pq4zibm86gjpw428wd8iy",
+ "rev": "7ef5446cebb08a17d4106d2e6f3c053e49e1e829"
+ },
+ "recipe": {
+ "sha256": "0c6q1d864qc78sqk9iadjpd01xc7myipgnf89pqa2z75yprndvyn",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20141116.1802",
+ "deps": []
+ },
+ "dirtree": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/dirtree.el",
+ "sha256": "1q03q4j0wkbg9p2nzf1kb7l517b21mskp2v52i95jbxh09igbjjx"
+ },
+ "recipe": {
+ "sha256": "0wfz9ks5iha2n0rya9yjmrb6f9lhp620iaqi92lw9smm7w83zj29",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140129.232",
+ "deps": [
+ "tree-mode",
+ "windata"
+ ]
+ },
+ "osx-org-clock-menubar": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "jordonbiondo",
+ "repo": "osx-org-clock-menubar",
+ "sha256": "1rgykby1ysbapq53lnk9yy04r9q4qirnzs2abgvz7g2qjq5fyzag",
+ "rev": "9964d2a97cc2fb6570dc4116da44f73bd8eb7cb3"
+ },
+ "recipe": {
+ "sha256": "1y5qxslxl0d93f387nyj8zngz5nh1p4rzdfx0lnbvya6shfaxaf6",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150205.1511",
+ "deps": []
+ },
+ "test-case-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "ieure",
+ "repo": "test-case-mode",
+ "sha256": "1r3fmb8cshgh9pppdvydfcrzlmb9cgz4m04rgv69c5xv8clwcmbr",
+ "rev": "6074df10ebc97ddfcc228c71c73db179e672dac3"
+ },
+ "recipe": {
+ "sha256": "1iba97yvbi5vr7gvc58gq2ah6jg2s7apc9ssq7mdzki823n8z2qi",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20130525.934",
+ "deps": [
+ "fringe-helper"
+ ]
+ },
+ "take-off": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "tburette",
+ "repo": "take-off",
+ "sha256": "13zwlb5805cpv0pbr7fj5b4crlg7lb0ibslvcpszm0cz6rlifcvf",
+ "rev": "aa9ea45566fc74febbb6ee9c409ecc4b59246215"
+ },
+ "recipe": {
+ "sha256": "05vlajmirbp62rpbdwa2bimpzyl9xc331gg0lhn2rkivc0hma2ar",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140531.417",
+ "deps": [
+ "emacs",
+ "web-server"
+ ]
+ },
+ "fiplr": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "d11wtq",
+ "repo": "fiplr",
+ "sha256": "14yy7kr2iv549xaf5gkav48lk2hzmvipwbs0rzljzw60il6k05hk",
+ "rev": "bb6b90ba3c558988c195048c4c40140b2ee17530"
+ },
+ "recipe": {
+ "sha256": "0l68rl5cy2maynny6iq6c4qr6c99y44i0i1z613k9rk08z7h0k5i",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140724.145",
+ "deps": [
+ "cl-lib",
+ "grizzl"
+ ]
+ },
+ "rainbow-blocks": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "istib",
+ "repo": "rainbow-blocks",
+ "sha256": "02x5ciyafqwak06yk813kl8p92hq03wjsk1882q8axr9q231100c",
+ "rev": "8335993563aadd4290c5fa09dd7a6a81691b0690"
+ },
+ "recipe": {
+ "sha256": "08p41wvrw1j3h7j7lyl8nxk1gcc2id9ikljmiklg0kc6s8ijhng8",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140306.1233",
+ "deps": []
+ },
+ "ucs-cmds": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/ucs-cmds.el",
+ "sha256": "0s65g6rdrjn4ypdny68fjk58yddn921xkbl811izxyc3q6q2z0k4"
+ },
+ "recipe": {
+ "sha256": "1n0f0qf8w8ark78fs67aaxnqpk0km97hy59pnxwfyahgjl2qz6d1",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150508.1745",
+ "deps": []
+ },
+ "password-generator": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "zargener",
+ "repo": "emacs-password-genarator",
+ "sha256": "1pw401ar114wpayibphv3n6m0gz68zjmiwz60r4lbar45bmxvihx",
+ "rev": "c8193d5e963bda0a2f8e51fd4a94dcf37c76f282"
+ },
+ "recipe": {
+ "sha256": "0aahpplmiwmp6a06y6hl4zvv8lvzkmakmaazlckl5r3rqbsf24cb",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150222.1440",
+ "deps": []
+ },
+ "dot-mode": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/dot-mode.el",
+ "sha256": "0xhbzq3yvfvvvl6mfihrzkd3pn5p5yxvbcyf2jhsppk7lscifsgk"
+ },
+ "recipe": {
+ "sha256": "1fik32635caq3r5f9k62qbj2dkwczz2z1v28mc7bcj7jv2p93nvh",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151029.855",
+ "deps": []
+ },
+ "ido-grid-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "larkery",
+ "repo": "ido-grid-mode.el",
+ "sha256": "051rzjxk73h8apkmn4w39bl0pz1c9gna4w3lq7j3a6fiplb0jn23",
+ "rev": "34a7412c30840c1131464781dddfb1602355766b"
+ },
+ "recipe": {
+ "sha256": "1wl1yclcxmkbfnvp0il23csdf6gprzf7fkcknpivk784fhl19acr",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151127.1135",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "anything-prosjekt": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "abingham",
+ "repo": "prosjekt",
+ "sha256": "1m8zvrv5aws7b0dffk8y6b5mncdk2c4k90mx69jys10fs0gc5hb3",
+ "rev": "a864a8be5842223043702395f311e3350c28e9db"
+ },
+ "recipe": {
+ "sha256": "15kgn0wrnbh666kchijdlssf2gp7spgbymr2nwgv6k730cb4mfa8",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140129.204",
+ "deps": [
+ "anything",
+ "prosjekt"
+ ]
+ },
+ "company-sourcekit": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "nathankot",
+ "repo": "company-sourcekit",
+ "sha256": "1xzwalchl9lnq9848dlvhhbzyh1wkwbciz20d1iw0fsigj5g156c",
+ "rev": "5e1adf8d201fd94a942b40983415db1b28b6eef1"
+ },
+ "recipe": {
+ "sha256": "0hr5j1ginf43h4qf3fvsh3z53z0c7w5a9lhrvdwmlzj396qhqmzs",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151209.714",
+ "deps": [
+ "company",
+ "dash",
+ "dash-functional",
+ "emacs",
+ "sourcekit"
+ ]
+ },
+ "kaesar-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "mhayashi1120",
+ "repo": "Emacs-kaesar",
+ "sha256": "1maab8iaf2wcjj02ibl21jlfzmi9gmcl167cgdlwj50wkig74s23",
+ "rev": "11ab63b8e6f1c4ebc5a2e54474095754a39104e5"
+ },
+ "recipe": {
+ "sha256": "0yqnlchbpmhsqc8j531n08vybwa32cy0v9sy4f9fgxa90rfqczry",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150220.505",
+ "deps": [
+ "cl-lib",
+ "kaesar"
+ ]
+ },
+ "e2wm-pkgex4pl": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "aki2o",
+ "repo": "e2wm-pkgex4pl",
+ "sha256": "1vrlfzy1wynm7x4m7pl8vim7ykqd6qkcilwz7sjc1lbckz11ig0d",
+ "rev": "7ea994450727190c4f3cb46cb429ba41b692ecc0"
+ },
+ "recipe": {
+ "sha256": "0hgdbqfw3015fr929m36kfiqqzsid6afs3222iqq0apg7gfj7jil",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140525.547",
+ "deps": [
+ "e2wm",
+ "plsense-direx"
+ ]
+ },
+ "org-linkany": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "aki2o",
+ "repo": "org-linkany",
+ "sha256": "1bggz782ci0z6aw76v51ykbmfzh5g6cxh43w798as1152sn7im3p",
+ "rev": "ed4a6614b56c9baef31647ea728b3d5fae6ed3a2"
+ },
+ "recipe": {
+ "sha256": "0arjj3c23yqm1ljvbnl7v9cqvd9lbz4381g8f3jyqbafs25bdc3c",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140314.1308",
+ "deps": [
+ "log4e",
+ "yaxception"
+ ]
+ },
+ "scheme-complete": {
+ "fetch": {
+ "tag": "fetchhg",
+ "url": "http://code.google.com/p/scheme-complete/",
+ "sha256": "13pym1kwi8ah3h2l557pvbg4lgpp5lhldj3qxyg7gyvgkwr91a7g",
+ "rev": "e2ec67dfb1ff"
+ },
+ "recipe": {
+ "sha256": "1nam7xzw8hrykz73q9x24szpjv2kpkp48lcmzf02kzj3cg6l76qm",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20130220.603",
+ "deps": []
+ },
+ "zen-and-art-theme": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "developernotes",
+ "repo": "zen-and-art-theme",
+ "sha256": "0dnaxhsw549k54j0mgydm7qbl4pizgipfyzc15f9afsxa107rpnl",
+ "rev": "a7226cbce0bca2501d69a620cb2aeabfc396c232"
+ },
+ "recipe": {
+ "sha256": "0b2lflji955z90xl9iz2y1vm04yljghbw4948gh5vv5p7mwibgf2",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20120622.937",
+ "deps": []
+ },
+ "modtime-skip-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "jordonbiondo",
+ "repo": "modtime-skip-mode",
+ "sha256": "0ri841cwx2mx8ri50lhvifmxnysdc022421mlmklql0252kn775l",
+ "rev": "c0e49523aa26b2263a8693691ac775988015f592"
+ },
+ "recipe": {
+ "sha256": "1drafwf4kqp83jp47j2ddl2n4a92zf1589fnp6c72hmjqcxv3l28",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140128.1601",
+ "deps": []
+ },
+ "autumn-light-theme": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "aalpern",
+ "repo": "emacs-color-theme-autumn-light",
+ "sha256": "1lip7282g41ghn64dvx2ab437s83cj9l8ps1rd8rbhqyz4bx5wb9",
+ "rev": "1e3b2a43a3001e4a97a5ff073ba3f0d2ea3888f9"
+ },
+ "recipe": {
+ "sha256": "0g3wqv1yw3jycq30mcj3w4sn9nj6i6gyd2ljzimf547ggcai536a",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150515.947",
+ "deps": []
+ },
+ "powershell": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "jschaf",
+ "repo": "powershell.el",
+ "sha256": "010b151wblgxlfpy590yanbl2r8qhpbqgi02v0pyir340frm9ngn",
+ "rev": "7316f44d0b528552f5a0692f778e5f0efd964299"
+ },
+ "recipe": {
+ "sha256": "162k8y9k2n48whaq93sqk86zy3p9qvsfxgyfv9n1nvk4l5wn70wk",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150428.1621",
+ "deps": []
+ },
+ "underwater-theme": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "jmdeldin",
+ "repo": "underwater-theme.el",
+ "sha256": "1ypxpv5vw2ls757iwrq3zld6k0s29q3kg3spcsl5ks4aqpnkxpva",
+ "rev": "4eb9ef014f580adc135d91d1cd68d37a310640b6"
+ },
+ "recipe": {
+ "sha256": "0ab2bcqfdi9ml3z9d511pbfwcbp8hkkd36xxp61k36gkyi3acvlr",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20131117.1802",
+ "deps": []
+ },
+ "column-marker": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/column-marker.el",
+ "sha256": "05bv198zhqw5hqq6cr11mhz02dpca74hhp1ycwq369m0yb2naxy9"
+ },
+ "recipe": {
+ "sha256": "1xgfsiw46aib2vb9bbjlgnhcgfnlfhdcxd0cl0jqj4fjfxzbz0bq",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20121128.243",
+ "deps": []
+ },
+ "magit-popup": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "magit",
+ "repo": "magit",
+ "sha256": "0hy9a1rjl3vs6ysb2913li1zim7wcziaiv609g7dadfyl89c2d4v",
+ "rev": "6b595ac224f512cf672c56600e136714875a940f"
+ },
+ "recipe": {
+ "sha256": "0w6m384bbmp3bd4qbss5h1jvcfp4qnpqvzlfykhdgjwpv2b2a2fj",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151214.705",
+ "deps": [
+ "async",
+ "dash",
+ "emacs"
+ ]
+ },
+ "rotate": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "daic-h",
+ "repo": "emacs-rotate",
+ "sha256": "0spgpq2cmckpl7j2193axy5yqws5dwrhik69d0bv0ylwzxp3npvg",
+ "rev": "04b64c6e20c465102ecafe0e099986b0808582bf"
+ },
+ "recipe": {
+ "sha256": "0dygdd24flbgqp049sl4p8rymvv8h881hz9lvz8hnfwq687yyclx",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140123.316",
+ "deps": []
+ },
+ "bbdb-vcard": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "tohojo",
+ "repo": "bbdb-vcard",
+ "sha256": "1zlf9xhpirln72xr7v6kgndkg5wyz5ipsl4gpq9lbmp92jlgbwlj",
+ "rev": "c3aafd4160854a38fd92afcdade32b9a13abe82c"
+ },
+ "recipe": {
+ "sha256": "1kn98b7mh9a28933r4yl8qfl9p92rpix4vkp71sar9cka0m71ilj",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150713.1550",
+ "deps": [
+ "bbdb"
+ ]
+ },
+ "package-build": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "milkypostman",
+ "repo": "melpa",
+ "sha256": "0mcxx69bspym4i9ky2ms9alj3a2015853s8qg86gwzyr49v0xfvz",
+ "rev": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "recipe": {
+ "sha256": "1m245q81c2jifgqxwd2fi35jrcbf6v9a1a5zy815861avq3fg9g0",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151211.1644",
+ "deps": [
+ "cl-lib"
+ ]
+ },
+ "lusty-explorer": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "sjbach",
+ "repo": "lusty-emacs",
+ "sha256": "1r1xfn0dyc4m49064g9n6hpwn4r763kpbg3dgprsv30i5ska61qa",
+ "rev": "a6e78cafc193050a493d16d07eae107a2436c293"
+ },
+ "recipe": {
+ "sha256": "0xqanmmkyvzcg2g4zvascq5j004bqz7vmz1a19c25g9cs3rdh0ps",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150508.1757",
+ "deps": []
+ },
+ "helm-hayoo": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "markus1189",
+ "repo": "helm-hayoo",
+ "sha256": "08pfzs030d8g5s7vkpgicz4srp5cr3xpd84lhrr24ncrhbszxar9",
+ "rev": "dd4c0c8c87521026edf1b808c4de01fa19b7c693"
+ },
+ "recipe": {
+ "sha256": "0xdvl6q2rpfsma4hx8m4snbd05s4z0bi8psdalixywlp5s4vzr32",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151014.151",
+ "deps": [
+ "haskell-mode",
+ "helm",
+ "json"
+ ]
+ },
+ "dpaste_de": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "theju",
+ "repo": "dpaste_de.el",
+ "sha256": "1avpg0cgzk8d6g1q0ryx41lkcdgkm0mkzr5xr32xm28dzrfmgd4z",
+ "rev": "f0c39e8864299f735642f7d9fa490689398ce39d"
+ },
+ "recipe": {
+ "sha256": "0dql9qsl5gj51i3l2grl7nhw0ign8h4xa4jnhwn196j71c0rdwwp",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20131015.725",
+ "deps": [
+ "web"
+ ]
+ },
+ "evil-terminal-cursor-changer": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "7696122",
+ "repo": "evil-terminal-cursor-changer",
+ "sha256": "10aic2r1akk38hh761hr5vp9fjlh1m5nimag0nzdq5x9g9467cc8",
+ "rev": "2735a11a2a0c8d327b730cefef2794834263c413"
+ },
+ "recipe": {
+ "sha256": "1300ch6f8mkz45na1hdffglhw0cdrrxmwnbd3g4m3sl5z4midian",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150827.2151",
+ "deps": [
+ "evil"
+ ]
+ },
+ "igrep": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/igrep.el",
+ "sha256": "0qiv69v7ig38iizif7zg8aljdmpa1jk8bsfa0iyhqqqrkvsmhc29"
+ },
+ "recipe": {
+ "sha256": "1vyhrziy29q6w8w9vvanb7d29r1n7nfkznbcd62il991n48d08i3",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20130824.707",
+ "deps": []
+ },
+ "bdo": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "chrisdone",
+ "repo": "bdo",
+ "sha256": "0d5b7zyl2vg621w1ll2lw3kjz5hx6lqxc0jivh0i449gckk5pzkm",
+ "rev": "c96cb6aa9e97fa3491185c50dee0f77a13241010"
+ },
+ "recipe": {
+ "sha256": "0vp8am2x11abxganw90025w9qxnqjdkj015592glbbzpa6338nfl",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140126.301",
+ "deps": []
+ },
+ "gnome-calendar": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "NicolasPetton",
+ "repo": "gnome-calendar.el",
+ "sha256": "160qm8xf0yghygb52p8cykhb5vpg9ww3gjprcdkcxplr4b230nnc",
+ "rev": "58c3a3c32aff9901c679bdf9091ed934897b84a0"
+ },
+ "recipe": {
+ "sha256": "00clamlm5b42zqggxywdqrf6s2dnsxir5rpd8mjpyc502kqmsfn6",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140112.559",
+ "deps": []
+ },
+ "linum-off": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "mattfidler",
+ "repo": "linum-off",
+ "sha256": "0x0k4m7nan2klvrhyzqvgpqnw99fq805hvipnrp2j755x7sv92g5",
+ "rev": "e16826e9a4cfe104d55884dc3cc4b4b1ced364ca"
+ },
+ "recipe": {
+ "sha256": "1yilsdsyxlzmh64dpzirzga9c7lhp1phps9cdgp2898zpnzaclay",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20130419.2254",
+ "deps": []
+ },
+ "multi-project": {
+ "fetch": {
+ "tag": "fetchhg",
+ "url": "https://bitbucket.com/ellisvelo/multi-project",
+ "sha256": "0lcx73vzm7zwvzzc53pfb5y16bhvq9cm9fdy63d3242s8v834z3c",
+ "rev": "f7fd0ae6819e"
+ },
+ "recipe": {
+ "sha256": "19dy2wl5ad1xldiznlw2vjvr9ja8h9wiv6igcggixq56fhngp40x",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150314.944",
+ "deps": []
+ },
+ "diredful": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "thamer",
+ "repo": "diredful",
+ "sha256": "1rx7vq6yl83fbmb76sczbb1bv972s4cyg160sm2yap1i6nzhd10p",
+ "rev": "e814fa3ffc7ec7b2455112c3d98e905674a6006b"
+ },
+ "recipe": {
+ "sha256": "0y8x6q1yfsk0srxsh4g5nbsms1g9pk9d103jx7cfdac79mcigw7x",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151118.1500",
+ "deps": []
+ },
+ "evil-org": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "edwtjo",
+ "repo": "evil-org-mode",
+ "sha256": "0pir7a3xxbcp5f3q9pi36rpdpi8pbx18afmh0r3501ynssyjfq53",
+ "rev": "61319f85979e8768c930983595caa2483c0fb319"
+ },
+ "recipe": {
+ "sha256": "18w07fbafry3wb87f55kd8y0yra3s18a52f3m5kkdlcz5zwagi1c",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151203.147",
+ "deps": [
+ "evil",
+ "evil-leader",
+ "org"
+ ]
+ },
+ "modalka": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "mrkkrp",
+ "repo": "modalka",
+ "sha256": "04c7js9jfhzcak9rgzqh1lq56i2b1g4phwjncsxkirvx97rnz4ac",
+ "rev": "67e08b9d315cfa6a2ca3b3dc3954214c68a90cf5"
+ },
+ "recipe": {
+ "sha256": "0bkjykvl6sw797h7j76dzn1viy598asly98gcl5wrq13n4w1md4c",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150924.1111",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "ac-sly": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "qoocku",
+ "repo": "ac-sly",
+ "sha256": "0mif35chyj4ai1bj4gq8qi38dyfsp72yi1xchhzy9zi2plpvqa7a",
+ "rev": "b37a1ecfaab10a6d81c6d894417176d3bb4c5285"
+ },
+ "recipe": {
+ "sha256": "1ng81b5f8w2s9mm9s7h5kwyx8fdwndnlsbzx50slmqyaz2ad15mx",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150421.1522",
+ "deps": [
+ "auto-complete",
+ "cl-lib",
+ "sly"
+ ]
+ },
+ "subshell-proc": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "andrewmains12",
+ "repo": "subshell-proc",
+ "sha256": "09izm28jrzfaj469v6yd1xgjgvy6pmxarcy0rzn2ihn3c0z7mdg4",
+ "rev": "d18b20e03fc89ee08e8c6a968aba31a16b53287f"
+ },
+ "recipe": {
+ "sha256": "1fnp49yhnhsj7paj0b25vr6r03hr5kpgcrci439ffpbd2c85fkw2",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20130122.1522",
+ "deps": []
+ },
+ "highlight-thing": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "fgeller",
+ "repo": "highlight-thing.el",
+ "sha256": "01cx05dkrshcpddciiqvbfcc0zg0awbvg3r2n1v44kiixyfdpdwr",
+ "rev": "eaf817d61d13fc97142996211222f8d54b48d3aa"
+ },
+ "recipe": {
+ "sha256": "0rvdb1lx9xn9drqw0sw9ih759n10g7k0af39w6n8g0wfr67p96w1",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151001.221",
+ "deps": []
+ },
+ "helm-bibtex": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "tmalsburg",
+ "repo": "helm-bibtex",
+ "sha256": "1nvc4ha9wj5j47qg7hdbv1xpjy8a8idc9vc2myl3xa33ywllwdwi",
+ "rev": "bfcd5064dcc7c0ac62c46985832b2a73082f96e0"
+ },
+ "recipe": {
+ "sha256": "1rsplnh18w1fqr6da79vj8x9q2lyss9sssy8pfz3hfw7p6qi6zkg",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151125.1758",
+ "deps": [
+ "cl-lib",
+ "dash",
+ "f",
+ "helm",
+ "parsebib",
+ "s"
+ ]
+ },
+ "ssh-config-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "jhgorrell",
+ "repo": "ssh-config-mode-el",
+ "sha256": "1v6srqiqq5xsjiw4d3kfgp218dks8mm6f9i88ngjri6sb3slpfb6",
+ "rev": "3d194c772d428144acd84c85be560ca96fb323ba"
+ },
+ "recipe": {
+ "sha256": "0aihyig6q3pmk9ld519f4n3kychrg3l7r29ijd2dpvs0530md4wb",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20141219.1046",
+ "deps": []
+ },
+ "imenu+": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/imenu+.el",
+ "sha256": "16f2a6jgwgczsaps55pnnyi38mw5z3fn4abybyr7hn0kf5xqip6q"
+ },
+ "recipe": {
+ "sha256": "1v2h3xs5pnv7z5qphkn2y5pa1p8pivrknkw7xihm5yr4a4dqjv5d",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150104.1748",
+ "deps": []
+ },
+ "phi-search-mc": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "knu",
+ "repo": "phi-search-mc.el",
+ "sha256": "0r6cl1ng41s6wsy5syjlkaip0mp8h491diipdc1psbhnpk4vabsv",
+ "rev": "4c6d2d39feb502febb81fc98b7b5854d88150c69"
+ },
+ "recipe": {
+ "sha256": "07hd80rbyzr5n3yd7hv1j51nl6pvcxmln20g6xvw8gh5yfl9k0m8",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150218.55",
+ "deps": [
+ "multiple-cursors",
+ "phi-search"
+ ]
+ },
+ "phi-search-dired": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "zk-phi",
+ "repo": "phi-search-dired",
+ "sha256": "1b44947hncw4q42fxxrz6fm21habzp4pyp0569xdwysrx2rca2fn",
+ "rev": "162a5e4507c72512affae22744bb606a906d4193"
+ },
+ "recipe": {
+ "sha256": "1gf3vs3vrp5kbq4ixnj7adazmnqixi63qswgc2512p10gf7inf8p",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150405.214",
+ "deps": [
+ "phi-search"
+ ]
+ },
+ "rcirc-color": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "kensanata",
+ "repo": "rcirc-color",
+ "sha256": "173lhi48dwfp9k7jmgivhcc9f38snz5xlciyjhrafpadq1pir497",
+ "rev": "a94c7811e6ab578a138eb582f7ce31d3568b5c4d"
+ },
+ "recipe": {
+ "sha256": "1a8qqwdc0gw6m1xsnwrj3xldp05p7pabyj6l4bccpg3vf5wbgkn5",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151130.958",
+ "deps": []
+ },
+ "bury-successful-compilation": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "EricCrosson",
+ "repo": "bury-successful-compilation",
+ "sha256": "1bzilpjibyyj97z5j7zz89jx0kfqr842lrjlnq1qki8r5kj18p4j",
+ "rev": "0c05c006ab5d0a7262701d003aed5cf5fc9dd621"
+ },
+ "recipe": {
+ "sha256": "1gkq4r1573m6m57fp7x69k7kcpqchpcqfcz3792v0wxr22zhkwr3",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150328.1928",
+ "deps": []
+ },
+ "html-to-markdown": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "Malabarba",
+ "repo": "html-to-markdown",
+ "sha256": "09n3zm9ivln8ng80fv5vwwzh9mj355ni685axda3m85xfxgai8gi",
+ "rev": "60c5498c801be186478cf7c05be05b4430c4a144"
+ },
+ "recipe": {
+ "sha256": "1gjh9ndqsb3nfb7w5h7carjckkgy6qh63b4mg141j19dsyx9rrjv",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151105.240",
+ "deps": [
+ "cl-lib"
+ ]
+ },
+ "emacsshot": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "marcowahl",
+ "repo": "emacsshot",
+ "sha256": "0jn4xj206idh5kgbklgcrngx6wvz9gwfm61wygar6pbfzqyx1y9b",
+ "rev": "8615aa841a37c20f8cc0f0efdc89c8d79acbb84b"
+ },
+ "recipe": {
+ "sha256": "08xqx017yfizdj8wz7nbh9i7qpar6398sri78abzf78inv828s9j",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150516.1633",
+ "deps": []
+ },
+ "folding": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "jaalto",
+ "repo": "project-emacs--folding-mode",
+ "sha256": "1z2dkyzj1gq3gp9cc3lhi240f8f3yjpjnw520xszm0wvx1rp06ny",
+ "rev": "f738e28cd90d794aff698bcd44bf4f5027c92839"
+ },
+ "recipe": {
+ "sha256": "0rb4f4llc4z502znmmc0hfi7n07lp01msx4y1iyqijvqzlq2i93y",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140401.203",
+ "deps": []
+ },
+ "srefactor": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "tuhdo",
+ "repo": "semantic-refactor",
+ "sha256": "1n5p51iy79z60fnhxklc03pp0jbs5rgyb02z3wndbyzy73bhfh7b",
+ "rev": "e0482b08425894431fa67109615d4f0c971471c8"
+ },
+ "recipe": {
+ "sha256": "01cd40jm4h00c5q2ix7cskp7klbkcd3n5763y5lqfv59bjxwdqd2",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151202.2204",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "dired-avfs": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "Fuco1",
+ "repo": "dired-hacks",
+ "sha256": "15jri9cj5jgr3ff423izd8idd7djay238c9pa3ccy05djl9z2hdx",
+ "rev": "6647825dbca4269afa76302e345d6bd15b222e42"
+ },
+ "recipe": {
+ "sha256": "1q42pvrpmd525887iicd3m5gw4w2a78xb72v7fjfl30ay1kir4bm",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20141203.932",
+ "deps": [
+ "dash",
+ "dired-hacks-utils"
+ ]
+ },
+ "dircmp": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "matthewlmcclure",
+ "repo": "dircmp-mode",
+ "sha256": "0mcsfsybpsxhzkd2m9bzc0np49azm6qf5x4x9h9lbxc8vfgh4z8s",
+ "rev": "558ee0b601c2de9d247612085aafe2926f56a09f"
+ },
+ "recipe": {
+ "sha256": "0cnj7b0s8vc83sh9sai1cldw54krk5qbz1qmlvvd1whryf2pc95c",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20141204.1156",
+ "deps": []
+ },
+ "kanban": {
+ "fetch": {
+ "tag": "fetchhg",
+ "url": "https://bitbucket.com/ArneBab/kanban.el",
+ "sha256": "14g0f51jig8b1y6zfaw7b1cp692lddqzkc0ngf4y89sw9gbmsh3w",
+ "rev": "54d855426372"
+ },
+ "recipe": {
+ "sha256": "1sif2ayb8fq5vjz9lpkaq40aw9wiciz84yipab2qczszlgw1l1hb",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150930.1117",
+ "deps": []
+ },
+ "wacspace": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "shosti",
+ "repo": "wacspace.el",
+ "sha256": "0nvlni3iy2sq76z8d4kj5492m0w7qv96shjqkynvlj0avf528hv4",
+ "rev": "4a11168d58c9c129cfcd04a1c9581962565eca4a"
+ },
+ "recipe": {
+ "sha256": "1xy0mprvyi37zmgj1yrlh5ni08j47lpag1jm3a76cgghgmlfjxrl",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140827.32",
+ "deps": [
+ "cl-lib",
+ "dash"
+ ]
+ },
+ "helm-pages": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "david-christiansen",
+ "repo": "helm-pages",
+ "sha256": "0yngs3q6142g2nn1wwdaifylyfjjs3gmmy0jck5zh8mhmdgdqr06",
+ "rev": "60f52edb11e54f553251234f4d336c0947ca0a2b"
+ },
+ "recipe": {
+ "sha256": "1v3w8100invb5wsmm3dyl41pjs7s889s3b1rlr6vlcspa1ncv3wj",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151209.1400",
+ "deps": [
+ "cl-lib",
+ "emacs",
+ "helm"
+ ]
+ },
+ "php-auto-yasnippets": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "ejmr",
+ "repo": "php-auto-yasnippets",
+ "sha256": "1l64rka9wrnwdgfgwv8xh7mq9f1937z2v3r82qcfi6il3anw4zm0",
+ "rev": "7da250a0d40f3ec44c7249997436ee8c5cae04ef"
+ },
+ "recipe": {
+ "sha256": "1hhddvpc80b6wvjpbpibsf24rp5a5p45m0bg7m0c8mx181h9mqgn",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20141128.1611",
+ "deps": [
+ "php-mode",
+ "yasnippet"
+ ]
+ },
+ "summarye": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/summarye.el",
+ "sha256": "0q5m8d6p9aqbfx17zgznkqw2jgh027xix4894wrdz91670zxd3py"
+ },
+ "recipe": {
+ "sha256": "1znd96ixg1n90yjiny84igb7m8qsbiibn7s6bky8g6n2k7zzmq65",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20130328.527",
+ "deps": []
+ },
+ "helm-ls-git": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "emacs-helm",
+ "repo": "helm-ls-git",
+ "sha256": "129mlpx5vqxyg2scrdiajxp71phxamrvijpc054k1q1an8vgn0kv",
+ "rev": "8cddd84ee4361b9d21f800adbaeeacf72645ab62"
+ },
+ "recipe": {
+ "sha256": "08rsy9479nk03kinjfkxddrq6wi4sx2a0wrz37cl2q517qi7sibj",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151101.56",
+ "deps": [
+ "helm"
+ ]
+ },
+ "hl-todo": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "tarsius",
+ "repo": "hl-todo",
+ "sha256": "0lwcvwnkbfpjw92k4qfj57nlhv8xbl614p5dfi8qy76y8bs71cvd",
+ "rev": "4a5958b90d35c0ba368778274c2a3ab9df941d1c"
+ },
+ "recipe": {
+ "sha256": "1iyh68xwldj1r02blar5zi01wnb90dkbmi67vd6h78ksghl3z9j4",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151025.1420",
+ "deps": []
+ },
+ "cython-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "cython",
+ "repo": "cython",
+ "sha256": "1kz96n6p4kspzhgaa30l3hzv5b37vf32ww715r30g68188ngcjmg",
+ "rev": "0c62e665c02b438be331e445bbde2f1c6bd9dff0"
+ },
+ "recipe": {
+ "sha256": "0asai1f1pncrfxx296fn6ky09hj1qam5j0dpxxkzhy0a34xz0k2i",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140705.1429",
+ "deps": []
+ },
+ "google": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "steckerhalter",
+ "repo": "google-el",
+ "sha256": "06p1dpnmg7lhdff1g7c04qq8f9srgkmnm42jlqy85k87j3p5ys2i",
+ "rev": "1ec11138bdd237e668ced1470c54f740e6c629a4"
+ },
+ "recipe": {
+ "sha256": "15z8l3adw8il0simk8phjgksh0v88cffb6gg3hv8a7nf5bla43my",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140330.1056",
+ "deps": []
+ },
+ "midje-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "dnaumov",
+ "repo": "midje-mode",
+ "sha256": "1cigsr0hkbi1860w38k2j8fw6j4w43pgv2bpkmdsifbqy6l8grpg",
+ "rev": "07fc6cee4f5d6aa4187636266b9681a3e455ab6b"
+ },
+ "recipe": {
+ "sha256": "0069hwy5cyrsv5b1yvjhmjasywbmc8x3daq9hkzidy3a2fmqgqv3",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150921.1950",
+ "deps": [
+ "cider",
+ "clojure-mode"
+ ]
+ },
+ "toggle-test": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "rags",
+ "repo": "toggle-test",
+ "sha256": "0sgaslqxj806byidh06h5pqmqz8jzjfz9ky8jvkif3cq3a479jby",
+ "rev": "e969321f274903d705995a7d0345a257576ec5ff"
+ },
+ "recipe": {
+ "sha256": "0n8m325jcjhz8g75ysb9whsd12gpxw8598y5065j7c7gxjzv45l1",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140723.37",
+ "deps": []
+ },
+ "cider": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "clojure-emacs",
+ "repo": "cider",
+ "sha256": "0gm9pqxi9jz615ws6vic58fq0620pa1zr3xgvx6mh7k1y2jfbljz",
+ "rev": "a80215f160c2243722039a2b484823042dfab63d"
+ },
+ "recipe": {
+ "sha256": "1a6hb728a3ir18c2dn9zfd3jn79fi5xjn5gqr7ljy6qb063xd4qx",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151217.1352",
+ "deps": [
+ "clojure-mode",
+ "emacs",
+ "pkg-info",
+ "queue",
+ "seq",
+ "spinner"
+ ]
+ },
+ "sudo-ext": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/sudo-ext.el",
+ "sha256": "0fpz73r52j7sk1w7my0002wg7isrp54w28nnrwk9xb9il4qpxag2"
+ },
+ "recipe": {
+ "sha256": "1iirrpa4rnz7rm85yjg60vdfca1ipxbk3qkld8lgwwm242pvvkw3",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20130130.1551",
+ "deps": []
+ },
+ "levenshtein": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/levenshtein.el",
+ "sha256": "0m94z18i1428bispxi285flvjf22kjm33s4sm0ad11m0w0jizir6"
+ },
+ "recipe": {
+ "sha256": "1iypnz0bw3baqxa9gldz8cikxvdhw60pvqp00kq5p3v4x3xcy4z2",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20051013.1256",
+ "deps": []
+ },
+ "ox-pukiwiki": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "yashi",
+ "repo": "org-pukiwiki",
+ "sha256": "0adj6gm39qw4ivb7csfh21qqqipcnw1sgm1xdqvrk86kbs9k1b2g",
+ "rev": "bdbde2c294f5d3de11f08a3fe19f01175d2e011a"
+ },
+ "recipe": {
+ "sha256": "10sfbri5hv5hyx9jc1bzlk4qmzfmpfgfy8wkjkpv7lv2x0axqd8a",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150124.1116",
+ "deps": [
+ "org"
+ ]
+ },
+ "ac-slime": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "purcell",
+ "repo": "ac-slime",
+ "sha256": "13yghv7p6c91fn8mrxbwrb6ldk5n3b6nj6a7pwsvks1q73i1pl88",
+ "rev": "df6c4e88b5ba2d15d47a651ecf7edc0986624112"
+ },
+ "recipe": {
+ "sha256": "0mk3k1lcbqa16xvsbgk28x09vzqyaidqaqpq934xdbrwhdgwgckg",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150729.2235",
+ "deps": [
+ "auto-complete",
+ "cl-lib",
+ "slime"
+ ]
+ },
+ "fastnav": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "gleber",
+ "repo": "fastnav.el",
+ "sha256": "0y95lrdqd9i2kbb266s1wdiim4m8vrn3br19d8s55ib6xlywf8cx",
+ "rev": "1019ba2b61d1a070204099b23da347278a61bc89"
+ },
+ "recipe": {
+ "sha256": "08hg256w8k9f5nzgpyl1jykbf28vmvv09kkhzs0s2zhwbl2158a5",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20120211.857",
+ "deps": []
+ },
+ "etags-select": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/etags-select.el",
+ "sha256": "0gmlmxlwfsfk5axn3x5cfvqy9bx26ynpbg50mdxiljk7wzqs5dyb"
+ },
+ "recipe": {
+ "sha256": "0j6mxj10n7jf087l7j86s3a8si5hzpwmvrpqisfvlnvn6a0rdy7h",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20130824.700",
+ "deps": []
+ },
+ "myterminal-controls": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "myTerminal",
+ "repo": "myterminal-controls",
+ "sha256": "0mnkhp286nrifxbrzp7lbmr4bccm7byh1f2zid4l1hac4x5wcx86",
+ "rev": "6b40d5f606dd402b80b7c93775bece1063cbf826"
+ },
+ "recipe": {
+ "sha256": "0ipk5s2whf3l68q0dydm1j6rcb6jhk61hgjwxygdphifvih7c5y2",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150427.547",
+ "deps": [
+ "cl-lib",
+ "emacs"
+ ]
+ },
+ "traad-autocomplete": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "abingham",
+ "repo": "traad",
+ "sha256": "06pvsa6m8h9j6mrq10dm6zj5jqibcm1xf3s1wkh7l6sr6hziz8rz",
+ "rev": "022cda646ec9b7102c73899e6305bfdfc0402ba5"
+ },
+ "recipe": {
+ "sha256": "0psk4gb903slcsppgplawz6gsv1w1nw1vqj4y0rfql6rxnbl3jf2",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140817.611",
+ "deps": [
+ "auto-complete",
+ "traad"
+ ]
+ },
+ "xah-find": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "xahlee",
+ "repo": "xah-find",
+ "sha256": "05dvmvh81n30l56gvlgzj0bwqd2fv1d6xvhvj5ywax6kqr9piwqv",
+ "rev": "e25eb9343fca71523ea6bf76741e6c5aab8004a4"
+ },
+ "recipe": {
+ "sha256": "1d3x9yhm7my3yhvgqnjxr2v28g5w1h4ri40sy6dqcx09bjf3jhyq",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151214.1257",
+ "deps": []
+ },
+ "wandbox": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "kosh04",
+ "repo": "emacs-wandbox",
+ "sha256": "00qzgabanmy4nkpnbc1m45j86k29plyyn408n1l0j8505fy9l7ca",
+ "rev": "cea03dec67e90a4c87eb9b6d69d1b3c68af541d0"
+ },
+ "recipe": {
+ "sha256": "0myyln82nx462bj79acvqxwvmblxild4vbygcrzw5chcwy6crvlz",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150905.1024",
+ "deps": [
+ "emacs",
+ "json",
+ "tabulated-list"
+ ]
+ },
+ "paredit-menu": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "phillord",
+ "repo": "phil-emacs-packages",
+ "sha256": "0ygckaj87swrnmsv5dhs55dngw1f22xm6238s9xb2axi3rr4w965",
+ "rev": "6e0142bae9cc3bfbea2fa134b6385af1c99ee782"
+ },
+ "recipe": {
+ "sha256": "17l05m1lg0vmahh53b2lvw316y4z7jz3nmy0zyiyiygax313y42l",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20130923.1454",
+ "deps": []
+ },
+ "el-init-viewer": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "HKey",
+ "repo": "el-init-viewer",
+ "sha256": "13cc7nnslij28fa1469s9pfmnz8j0m6bayhrqxckd0xplvwwipnx",
+ "rev": "6e1aaab3e49d87253763e5b437d4f43f445b7774"
+ },
+ "recipe": {
+ "sha256": "0kkmsml9xf2n8nlrcicfg2l78s3dlhd6ssx0s62v77v4wdpl297m",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150303.228",
+ "deps": [
+ "anaphora",
+ "cl-lib",
+ "ctable",
+ "dash",
+ "el-init",
+ "emacs"
+ ]
+ },
+ "gist": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "defunkt",
+ "repo": "gist.el",
+ "sha256": "0q3ps5f6mr9hyf6nq1wshcm1z6a5yhskqd7dbbwq5dm78552z6z8",
+ "rev": "144280f5353bceb902d5278fa64078337e99fa4d"
+ },
+ "recipe": {
+ "sha256": "053fl8aw0ram9wsabzvmlm5w2klwd2pgcn2w9r1yqfs4xqja5sd3",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150906.1154",
+ "deps": [
+ "emacs",
+ "gh"
+ ]
+ },
+ "clojure-mode-extra-font-locking": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "clojure-emacs",
+ "repo": "clojure-mode",
+ "sha256": "0mc5g44vfb8w0mhj518yxik6dg55w17vrldcw86ajhw05fww3h3n",
+ "rev": "802c1dbf3529da5a09f97cb21833e0a27ccf41d7"
+ },
+ "recipe": {
+ "sha256": "00nff9mkj61i76dj21x87vhz0bbkzgvkx1ypkxcv6yf3pfhq7r8n",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150110.705",
+ "deps": [
+ "clojure-mode"
+ ]
+ },
+ "ggo-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "mkjunker",
+ "repo": "ggo-mode",
+ "sha256": "0bwjiq4a4f5pg0ngvc3lmkk7aki8n9zqfa1dym0lk4vy6yfhcbhp",
+ "rev": "e326899d9ed8217c7a4ea6cfdc4dd7aea61d6c1b"
+ },
+ "recipe": {
+ "sha256": "1403x530n90jlfz3lq2vfiqx84cxsrhgs6hhmniq960cjj31q35p",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20130524.643",
+ "deps": []
+ },
+ "auctex-latexmk": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "tom-tan",
+ "repo": "auctex-latexmk",
+ "sha256": "1h0044zfzklc9sy0a02vcdr75ly6wlhjx3n5bvq7yiicqd012316",
+ "rev": "b7d36658c8a9102055a720e9102e1d3514089659"
+ },
+ "recipe": {
+ "sha256": "1rdlgkiwlgm06i1gjxcfciz6wgdskfhln8qhixyfxk7pnz0ax327",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151217.757",
+ "deps": [
+ "auctex"
+ ]
+ },
+ "clojure-cheatsheet": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "clojure-emacs",
+ "repo": "clojure-cheatsheet",
+ "sha256": "1ljb0g4yvrqgjqgmz8qz0c0swbx1m6gldmcdqnmxd72bs3w9p0k8",
+ "rev": "7f1ee3facf131609ac1b987439b9b14daa4d7402"
+ },
+ "recipe": {
+ "sha256": "05sw3bkdcadslpsk64ds0ciavmdgqk7fr5q3z505vvafmszfnaqv",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151112.717",
+ "deps": [
+ "cider",
+ "helm"
+ ]
+ },
+ "ioccur": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "thierryvolpiatto",
+ "repo": "ioccur",
+ "sha256": "1rz5wf19lg1lnm0h73ynhb0vl3c99k7vpipay2f8jls24pv60bra",
+ "rev": "4c0ef992a6fcd2aed62e3866d56650463108ab5a"
+ },
+ "recipe": {
+ "sha256": "1a9iy6x4lkm4wgkcb0pv86c2kvpq8ymrc4ssp109r67kwqw7lrr6",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20130822.48",
+ "deps": []
+ },
+ "shell-here": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "ieure",
+ "repo": "shell-here",
+ "sha256": "0z04z07r7p5p05zhaka37s48y82hg2dbk0ynap4inph3frn4yyfl",
+ "rev": "251309141e18978d2b8014345acc6f5afcd4d509"
+ },
+ "recipe": {
+ "sha256": "0csi70v89bqdpbsizji6c5z0jmkx4x4vk1zfclkpap4dalmxxcsh",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150728.1204",
+ "deps": []
+ },
+ "org-gnome": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "NicolasPetton",
+ "repo": "org-gnome.el",
+ "sha256": "0b57ik05iax2h3nrj96kysbk4hxmxlaabd0n6lv1xsayrlli3sj1",
+ "rev": "1012d47886cfd30eed25b73d9f18e475e0155f88"
+ },
+ "recipe": {
+ "sha256": "0c37gfs6xs0jbvg6ypd4z5ip1khm26wr5lxgmv1dzcc383ynzg0v",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150614.957",
+ "deps": [
+ "alert",
+ "gnome-calendar",
+ "telepathy"
+ ]
+ },
+ "buster-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "magnars",
+ "repo": "buster-mode",
+ "sha256": "1viq7cb41r8klr8i38c5zjrhdnww31gh4j51xdgy4v2lc3z321zi",
+ "rev": "de6958ef8369400922618b8d1e99abfa91b97ac5"
+ },
+ "recipe": {
+ "sha256": "1qndhchc8y27x49znhnc4rny1ynfcplr64rczrlbj53qmkxn5am7",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140928.713",
+ "deps": []
+ },
+ "osx-dictionary": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "xuchunyang",
+ "repo": "osx-dictionary.el",
+ "sha256": "0frv92i7rj9fbjzgwf80zngq77394wjgijggda6d8ai75n5f47g1",
+ "rev": "ffbc358a4c686ea77e8bb88319ad192b4ff1aa55"
+ },
+ "recipe": {
+ "sha256": "13033fxc5vjd1f7mm6znmprcp3mwxbvblb2d25shr8d4imqqhv82",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151108.2352",
+ "deps": [
+ "cl-lib"
+ ]
+ },
+ "phoenix-dark-pink-theme": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "j0ni",
+ "repo": "phoenix-dark-pink",
+ "sha256": "042yw44d5pwykl177sdh209drc5f17yzhq0mxrf7qhycbjs4h8cg",
+ "rev": "314602b2e68c4054159ab3f0f6f6b658f232ada5"
+ },
+ "recipe": {
+ "sha256": "0bz6iw73d85bi12qqx6fdw3paqknrxvn0asbwjmgdcrlqrfczjlr",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150406.2202",
+ "deps": []
+ },
+ "zzz-to-char": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "mrkkrp",
+ "repo": "zzz-to-char",
+ "sha256": "1ai0a9r1xdz1jcr071ivm49wl906a0jqnhfaznw37jw9j2db58zn",
+ "rev": "5d3465122342265b6ff8495c60d9a7cb457be42a"
+ },
+ "recipe": {
+ "sha256": "16vwp0krshmn5x3ry1j512g4kydx39znjqzri4j7wgg49bz1n7vh",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151030.232",
+ "deps": [
+ "avy",
+ "cl-lib",
+ "emacs"
+ ]
+ },
+ "automargin": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "zk-phi",
+ "repo": "automargin",
+ "sha256": "02nnyncfh6g0xizy7wa8721ahpnwk451kngd6n0y0249f50p3962",
+ "rev": "4901d969ad69f5244e6300baab4ba04efed800c3"
+ },
+ "recipe": {
+ "sha256": "0llqz01wmacc0f8j3h7r0j57vkmzksl9vj1h0igfxzpm347mm9q8",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20131112.214",
+ "deps": []
+ },
+ "pass": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "NicolasPetton",
+ "repo": "pass",
+ "sha256": "14zpkxnwvwdi7wnjw4827lzzn6kw8wmwr2whavpi4rlkq8ix6dv2",
+ "rev": "f43f6ada151a81f0bca4397b78382e4f6160d0ad"
+ },
+ "recipe": {
+ "sha256": "1vvyvnqf6k7wm0p45scwi6ny86slkrcbr36lnxdlkf96cqyrqzfr",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151109.603",
+ "deps": [
+ "emacs",
+ "f",
+ "password-store"
+ ]
+ },
+ "jaunte": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "kawaguchi",
+ "repo": "jaunte.el",
+ "sha256": "1bv0al89wlwdv3bhasxnwhsv84phgnixclgrh4l52385rjn8v53f",
+ "rev": "b719c2d4d5d70640d70978b661863d10d6be06fc"
+ },
+ "recipe": {
+ "sha256": "0chqiai7fv1idga71gc5dw4rdv1rblg5rrbdijh3glyi8yfr4snf",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20130413.419",
+ "deps": []
+ },
+ "monochrome-theme": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "fxn",
+ "repo": "monochrome-theme.el",
+ "sha256": "1sxhpvxapzgrwvzibkg7zd3ppmfcz5rhrbvg73b8rggjg4m5snyf",
+ "rev": "58fb4cf28c407f059b78bfd72c4dbced07638dd6"
+ },
+ "recipe": {
+ "sha256": "191ikqns1sxcz6ca6xp6mb2vyfj19x19cmcf17snrf46kmx60qk9",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140326.550",
+ "deps": []
+ },
+ "ez-query-replace": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "Wilfred",
+ "repo": "ez-query-replace.el",
+ "sha256": "15qa09x206s7rxmk35rslqniydh6hdb3n2kbspm5zrndcmsqz4zi",
+ "rev": "1c0cab96d65105b780e32fdd29d2c6933be72ef6"
+ },
+ "recipe": {
+ "sha256": "1h9ijr1qagwp9vvikh7ajby0dqgfypjgc45s7d93zb9jrg2n5cgx",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140810.717",
+ "deps": [
+ "dash"
+ ]
+ },
+ "request": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "tkf",
+ "repo": "emacs-request",
+ "sha256": "0dja4g43zfjbxqvz2cgivgq5sfm6fz1563qgrp4yxknl7bdggb92",
+ "rev": "adf7de452f9914406bfb693541f1d280093c4efd"
+ },
+ "recipe": {
+ "sha256": "0h4jqg98px9dqqvjp08vi2z1lhmk0ca59lnrcl96bi7gkkj3jiji",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140316.617",
+ "deps": []
+ },
+ "markdown-mode": {
+ "fetch": {
+ "tag": "fetchgit",
+ "url": "git://jblevins.org/git/markdown-mode.git",
+ "sha256": "b74db7308411036038e060cca7dbf6e1a6b839cc81b40dc439cfee54540f9c67",
+ "rev": "1c76d45ae30bba1e8d68b2500d0531c69dd1472d"
+ },
+ "recipe": {
+ "sha256": "02lmhihv495drv9cb40h6l0xsbx7yglbvsdzc4r0vf78j87rs33f",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151218.1349",
+ "deps": []
+ },
+ "sphinx-doc": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "naiquevin",
+ "repo": "sphinx-doc.el",
+ "sha256": "0smxpv1i9nsaam4qc683491c4jwv3vqb7wpiyvjy2p9giqr3csjh",
+ "rev": "c6f3053b83eab029c13e680b8200c704880727b1"
+ },
+ "recipe": {
+ "sha256": "00h3wx2p5hzbw6sggggdrzv4jrn1wc051iqql5y2m1hsh772ic5z",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150616.1350",
+ "deps": [
+ "cl-lib",
+ "dash",
+ "s"
+ ]
+ },
+ "evil-smartparens": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "expez",
+ "repo": "evil-smartparens",
+ "sha256": "0xwrg03w40pncdy5ppn7f77ravcbimj1ylc1r4clpqiha1d4xkhi",
+ "rev": "0e89b23924b2e0baa0d11841ea5126967a072fa8"
+ },
+ "recipe": {
+ "sha256": "1viwrd6gfqmwhlil80pk68dikn3cjf9ddsy0z781z3qfx0j35qza",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151126.324",
+ "deps": [
+ "emacs",
+ "evil",
+ "smartparens"
+ ]
+ },
+ "org-protocol-jekyll": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "vonavi",
+ "repo": "org-protocol-jekyll",
+ "sha256": "1jzp65sf1am6pz533kg1z666h4jlynvjyx1mf24gyksiiwdhypsy",
+ "rev": "f41902baaa62c8de3f81ad67a5f36d6aa5781578"
+ },
+ "recipe": {
+ "sha256": "18wg489n2d1sx9jk00ki6p2rxkqz67kqwnmy2kb1ga1rmb6x9wfs",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151119.1038",
+ "deps": [
+ "cl-lib"
+ ]
+ },
+ "autodisass-llvm-bitcode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "gbalats",
+ "repo": "autodisass-llvm-bitcode",
+ "sha256": "1fq4h5fmamyh7z8nq6pigx74p5v8k3qfm64k66vwsm8bl5jdkw17",
+ "rev": "d2579e3a1427af2dc947c343e49eb3434078bf04"
+ },
+ "recipe": {
+ "sha256": "0bh73nzll9jp7kiqfnb5dwkipw85p3c3cyq58s0nghig02z63j01",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150410.2025",
+ "deps": []
+ },
+ "sourcemap": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "syohex",
+ "repo": "emacs-sourcemap",
+ "sha256": "085xd5fqxgv9bam9k4aa3w0sa9q41cg275i60c8njy3bkbqcalh5",
+ "rev": "d50fd8d169f2d347b24276a0d28bb197400fc657"
+ },
+ "recipe": {
+ "sha256": "0cjg90y6a0l59a9v7d7p12pgmr21gwd7x5msil3h6xkm15f0qcc5",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150418.900",
+ "deps": [
+ "cl-lib",
+ "emacs"
+ ]
+ },
+ "json-snatcher": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "Sterlingg",
+ "repo": "json-snatcher",
+ "sha256": "05zsgnk7grgw9jzwl80h5sxfpifxlr37b4mkbvx7mjq4z14xc2jw",
+ "rev": "c4cecc0a5051bd364373aa499c47a1bb7a5ac51c"
+ },
+ "recipe": {
+ "sha256": "0f6j9g3c5fz3wlqa88706cbzinrs3dnfpgsr2d3h3117gic4iwp4",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150511.2247",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "dired-details": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/dired-details.el",
+ "sha256": "1ddrhj1kw0wl7jbs9jn067vfffsvqhz4izfw9f7ihxz34fdl2iza"
+ },
+ "recipe": {
+ "sha256": "1390vl3i4qbnl7lbia98wznhf6x887d24f8p7146fpqjsiwbm5ck",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20130824.658",
+ "deps": []
+ },
+ "gore-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "sergey-pashaev",
+ "repo": "gore-mode",
+ "sha256": "0l022aqpnb38q6kgdqpbxrc1r7fljwl7xq14yi5jb7qgzw2v43cz",
+ "rev": "94d7f3e99104e06167967c98fdc201049c433c2d"
+ },
+ "recipe": {
+ "sha256": "0nljybh2pw8pbbajfsz57r11rs4bvzfxmwpbm5qrdn6dzzv65nq3",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151123.1327",
+ "deps": [
+ "go-mode"
+ ]
+ },
+ "org-link-travis": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "aki2o",
+ "repo": "org-link-travis",
+ "sha256": "1797pd264zn19zk93nifyw6pwk2a7wrpfir373qclk601yv2g5h8",
+ "rev": "596615ad8373d9090bd4138da683524f0ad0bda5"
+ },
+ "recipe": {
+ "sha256": "0hj4x7cw7a3ry8xislkz9bnavy77z4cpmnvns02yi3gnib53mlfs",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140405.1827",
+ "deps": [
+ "org"
+ ]
+ },
+ "cryptol-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "thoughtpolice",
+ "repo": "cryptol-mode",
+ "sha256": "00wgbcw09xn9xi52swi4wyi9dj9p9hyin7i431xi6zkhxysw4q7w",
+ "rev": "a54d000d24757fad2a91ae2853b16a97ebe52771"
+ },
+ "recipe": {
+ "sha256": "08iq69gqmps8cckybhj9065b8a2a49p0rpzgx883qxnypsmjfmf2",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140426.1204",
+ "deps": []
+ },
+ "company-ycmd": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "abingham",
+ "repo": "emacs-ycmd",
+ "sha256": "09h7k4dir6rpcaarv8k69szssy8iyj67g44zpbgph9yp9cvfm9yx",
+ "rev": "b801275e0cc9e0a70d78c61e3fb8ed6b3bbb0c93"
+ },
+ "recipe": {
+ "sha256": "0fqmkb0q8ai605jzn2kwd585b2alwxbmnb3yqnn9fgkcvyc9f0pk",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151022.1210",
+ "deps": [
+ "company",
+ "dash",
+ "deferred",
+ "s",
+ "ycmd"
+ ]
+ },
+ "unicode-emoticons": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "hagleitn",
+ "repo": "unicode-emoticons",
+ "sha256": "015gjf8chd6h9azhyarmskk41cm0cmg981jif7q81hakl9av6rhh",
+ "rev": "fb18631f342b0243cf77cf59ed2067c47aae5233"
+ },
+ "recipe": {
+ "sha256": "15s6qjhrrqrhm87vmvd6akdclzba19613im85kfkhc24p6nxyhbn",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150204.508",
+ "deps": []
+ },
+ "literate-coffee-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "syohex",
+ "repo": "emacs-literate-coffee-mode",
+ "sha256": "16xy6251ba0ca7r3wbjdng8i7pmcsh48lziczhrs5zx5y0b2j4zr",
+ "rev": "c55d0bec31438f15e986c5ad031dff853cfd1178"
+ },
+ "recipe": {
+ "sha256": "1bll1y9q3kcg3v250asjvx2k9kb314qadaq1iwanwgdlp3qvvs40",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20141216.1719",
+ "deps": [
+ "coffee-mode"
+ ]
+ }
+}
\ No newline at end of file
diff --git a/pkgs/applications/editors/emacs-modes/melpa-packages.nix b/pkgs/applications/editors/emacs-modes/melpa-packages.nix
new file mode 100644
index 00000000000..d7e894c672a
--- /dev/null
+++ b/pkgs/applications/editors/emacs-modes/melpa-packages.nix
@@ -0,0 +1,71 @@
+/*
+
+# Updating
+
+To update the list of packages from MELPA,
+
+1. Clone https://github.com/ttuegel/emacs2nix
+2. Clone https://github.com/milkypostman/melpa
+3. Run `./melpa-packages.sh PATH_TO_MELPA_CLONE` from emacs2nix
+4. Copy the new melpa-packages.json file into Nixpkgs
+5. `git commit -m "melpa-packages $(date -Idate)"`
+
+*/
+
+{ lib }:
+
+let
+
+ inherit (lib) makeScope mapAttrs;
+
+ json = builtins.readFile ./melpa-stable-packages.json;
+ manifest = builtins.fromJSON json;
+
+ mkPackage = self: name: recipe:
+ let drv =
+ { melpaBuild, stdenv, fetchbzr, fetchcvs, fetchFromGitHub, fetchFromGitLab
+ , fetchgit, fetchhg, fetchsvn, fetchurl }:
+ let
+ unknownFetcher =
+ abort "emacs-${name}: unknown fetcher '${recipe.fetch.tag}'";
+ fetch =
+ {
+ inherit fetchbzr fetchcvs fetchFromGitHub fetchFromGitLab fetchgit fetchhg
+ fetchsvn fetchurl;
+ }."${recipe.fetch.tag}"
+ or unknownFetcher;
+ args = builtins.removeAttrs recipe.fetch [ "tag" ];
+ src = fetch args;
+ in melpaBuild {
+ pname = name;
+ inherit (recipe) version;
+ inherit src;
+ packageRequires =
+ let lookupDep = d: self."${d}" or null;
+ in map lookupDep recipe.deps;
+ meta = {
+ homepage = "http://melpa.org/#/${name}";
+ license = stdenv.lib.licenses.free;
+ };
+ };
+ in self.callPackage drv {};
+
+in
+
+self:
+
+ let
+ super = mapAttrs (mkPackage self) manifest;
+
+ markBroken = pkg: pkg.override {
+ melpaBuild = args: self.melpaBuild (args // {
+ meta = (args.meta or {}) // { broken = true; };
+ });
+ };
+
+ melpaPackages = super // {
+ # broken upstream
+ ack-menu = markBroken super.ack-menu;
+ };
+ in
+ melpaPackages // { inherit melpaPackages; }
diff --git a/pkgs/applications/editors/emacs-modes/melpa-stable-packages.json b/pkgs/applications/editors/emacs-modes/melpa-stable-packages.json
new file mode 100644
index 00000000000..bc8c2fd0b0d
--- /dev/null
+++ b/pkgs/applications/editors/emacs-modes/melpa-stable-packages.json
@@ -0,0 +1,23734 @@
+{
+ "qiita": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "gongo",
+ "repo": "qiita-el",
+ "sha256": "110z27n3h7p2yalicfhnv832ikfcf7p0hrf5qkryz1sdmz79wb3f",
+ "rev": "33b6d3450bb4b3d0186c2475f6c78269c71fd1ff"
+ },
+ "recipe": {
+ "sha256": "1kzk7pc68ks9gxm2l2d28al23gxh56z0cmkl80qwg7sh4gsmhyxl",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.0.1",
+ "deps": []
+ },
+ "outorg": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "tj64",
+ "repo": "outorg",
+ "sha256": "1v9kx5xr7xcr6i664h2g6j8824yjsjdn5pvgmawvxrrplbjmiqnp",
+ "rev": "e946cda497bae53fca6fa1579910237e216170bf"
+ },
+ "recipe": {
+ "sha256": "04swss84p33a9baa4swqc1a9lfp6wziqrwa7vcyi3y0yzllx36cx",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "2.0",
+ "deps": []
+ },
+ "cg": {
+ "fetch": {
+ "tag": "fetchsvn",
+ "url": "http://beta.visl.sdu.dk/svn/visl/tools/vislcg3/trunk/emacs",
+ "sha256": "1v8wgm3cvz4xx2jlx95ipd9340mxfxgk5hqialp76y74x03vfzq1",
+ "rev": "11156"
+ },
+ "recipe": {
+ "sha256": "0ra6mxf8l9fjn1vszjj71fs6f6l08hwypka8zsb3si96fzb6sgjh",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": []
+ },
+ "helm-ls-hg": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "emacs-helm",
+ "repo": "helm-ls-hg",
+ "sha256": "1hma79i69l8ilkr3l4b8zqk3ny62vqr1ym2blymia4ibwk4zqbda",
+ "rev": "fa709b6354d84e1c88ccef096d29410fa16f7f5f"
+ },
+ "recipe": {
+ "sha256": "0ca0xn7n8bagxb504xgkcv04rpm1vxhx2m77biqrx5886pwl25bh",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.7.8",
+ "deps": [
+ "helm"
+ ]
+ },
+ "color-theme-sanityinc-tomorrow": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "purcell",
+ "repo": "color-theme-sanityinc-tomorrow",
+ "sha256": "0w99ypq048xldl1mrgc7qr4n2770dm48aknhp7q0176l43nvxnqf",
+ "rev": "55db9979397bd66446eb1927e08c5a22df9f0eea"
+ },
+ "recipe": {
+ "sha256": "1k8iwjc7iidq5sxybs47rnswa6c5dwqfdzfw7w0by2h1id2z6nqd",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.16",
+ "deps": []
+ },
+ "focus": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "larstvei",
+ "repo": "Focus",
+ "sha256": "0aj5qxzlfxxp7z27fiw9bvir5yi2zj0xzj5kbh17ix4wnhi03bhc",
+ "rev": "0a6e9624ea5607dadd0f2cd4d3eaa2b10b788eb9"
+ },
+ "recipe": {
+ "sha256": "0jw26j8npyl3dgsrs7ap2djxmkafn2hl6gfqvi7v76bccs4jkyv8",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.1.0",
+ "deps": [
+ "cl-lib",
+ "emacs"
+ ]
+ },
+ "buffer-move": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "lukhas",
+ "repo": "buffer-move",
+ "sha256": "0xdks4jfqyhkh34y48iq3gz8swp0f526kwnaai5mhgvazvs4za8c",
+ "rev": "9bf3ff940011c7af3fdd172fa3ea2511c7a8a190"
+ },
+ "recipe": {
+ "sha256": "0wysywff2bggrha7lpl83c8x6ln7zgdj9gsqmjva6gramqb260fg",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.6.2",
+ "deps": []
+ },
+ "youdao-dictionary": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "xuchunyang",
+ "repo": "youdao-dictionary.el",
+ "sha256": "0016qff7hdnd0xkyhxakfzzscwlwkpzppvc4wxfw0iacpjkz1fnr",
+ "rev": "5b4f716ca41fa0cdb18a4949ac5cdcd470182c57"
+ },
+ "recipe": {
+ "sha256": "1qfk7s18br9jask1bpida0cjxks098qpz0ssmw8misi3bjax0fym",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.3",
+ "deps": [
+ "chinese-word-at-point",
+ "emacs",
+ "names",
+ "popup"
+ ]
+ },
+ "emacsql": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "skeeto",
+ "repo": "emacsql",
+ "sha256": "0ph0462shk00rhrkpvwgsr4biykimky2d89pvkbg377951jdga7i",
+ "rev": "03d478870834a683f433e7f0e288476748eec624"
+ },
+ "recipe": {
+ "sha256": "1x4rn8dmgz871dhz878i2mqci576zccf9i2xmq2ishxgqm0hp8ax",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "2.0.0",
+ "deps": [
+ "cl-lib",
+ "emacs",
+ "finalize"
+ ]
+ },
+ "help-fns+": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/help-fns+.el",
+ "sha256": "00x3ln7x4d6r422x845smf3h0x1z85l5jqyjkrllqcs7qijcrk5w"
+ },
+ "recipe": {
+ "sha256": "10vz7w79k3barlcs3ph3pc7914xdhcygagdk2wj3bq0wmwxa1lia",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": []
+ },
+ "cmake-ide": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "atilaneves",
+ "repo": "cmake-ide",
+ "sha256": "14z5izpgby7lak6hzjwsph31awg5126hcjzld21ihknhlg09sw7q",
+ "rev": "b6953102d022adb60678eb5c4186008de987cdce"
+ },
+ "recipe": {
+ "sha256": "0xvy7l80zw67jgvk1rkhwzjvsqjqckmd8zj6s67rgbm56z6ypmcg",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.3",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "jammer": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "wasamasa",
+ "repo": "jammer",
+ "sha256": "0x0vz7m9kn7b2aiqvrdqx8qh84ynbpzy2asz2b18l47bcwa7r5bh",
+ "rev": "1ba232b71507b468c60dc53c2bc8888bef36c858"
+ },
+ "recipe": {
+ "sha256": "01c4bii7gswhp6z9dgx4bhvsywiwbbdv7mg1zj6vp1530l74zx6z",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.1.1",
+ "deps": []
+ },
+ "dired-sort-menu+": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/dired-sort-menu+.el",
+ "sha256": "0l19xa7z4015lqw98dzb5i40na32758wxyfka2vdhn7g5iq7qday"
+ },
+ "recipe": {
+ "sha256": "19ah8qgbfdvyhfszdr6hlw8l01lbdb84vf5snldw8qh3x6lw8cfq",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": [
+ "dired-sort-menu"
+ ]
+ },
+ "go-eldoc": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "syohex",
+ "repo": "emacs-go-eldoc",
+ "sha256": "0ha07nhd2g43l84r1r5dz6c8m3fmmn4bx5mhvi6as33achhip7bn",
+ "rev": "af6bfdcbcf12c240da46412efb381a5ee6c3aec5"
+ },
+ "recipe": {
+ "sha256": "1k115dirfqxdnb6hdzlw41xdy2dxp38g3vq5wlvslqggha7gzhkk",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.26",
+ "deps": [
+ "cl-lib",
+ "go-mode"
+ ]
+ },
+ "w32browser-dlgopen": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/w32browser-dlgopen.el",
+ "sha256": "15cjfr8fknlp61mqz6377d4pprv3pddhiqqdhk1lsz2mncw8z9mq"
+ },
+ "recipe": {
+ "sha256": "0dnvsnahnbnvjlhfmb0q6agzikv9d42fbnfrwsz6hni92937gz39",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": []
+ },
+ "cerbere": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "nlamirault",
+ "repo": "cerbere",
+ "sha256": "08hqgsjvs62l1cfzshbpj80xd8365qmx2b5r5jq20d5cj68s36wl",
+ "rev": "11de1e7ec5126083ae697f5a9993facdb9895f9d"
+ },
+ "recipe": {
+ "sha256": "1g3svmh5dlh5mvyag3hmiy90dfkk6f7ppd9qpwckxqyll9vl7r06",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.1.0",
+ "deps": [
+ "f",
+ "go-mode",
+ "pkg-info",
+ "s"
+ ]
+ },
+ "grandshell-theme": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "steckerhalter",
+ "repo": "grandshell-theme",
+ "sha256": "1202fwwwdr74q6s5jv1n0mvmq4n9mra85l14hdhwh2kks513s6vs",
+ "rev": "6bf34fb1a3117244629a7fb23daf610f50854bed"
+ },
+ "recipe": {
+ "sha256": "1mnnjsw1kx40b6ws8wmk25fz9rq8rd70xia9cjpwdfkg7kh8xvsa",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.0",
+ "deps": []
+ },
+ "lacarte": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/lacarte.el",
+ "sha256": "1nlras4g3ncp1pcmkkpa2j88zvqjibmn5h6ilahgjry0dwg9qw5j"
+ },
+ "recipe": {
+ "sha256": "0a0n1lqakgsbz0scn6617rkkkvzwranzlvkzw9q4zapiz1s9xqp9",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": []
+ },
+ "mmt": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "mrkkrp",
+ "repo": "mmt",
+ "sha256": "05nmcx3f63ds31cj3qwwp03ksflkfwlcn3z2xyxbny83r0dxbgvc",
+ "rev": "e77b809e39b9ab437b662ee759e990163bc89377"
+ },
+ "recipe": {
+ "sha256": "0hal3qcw6x9658xpdaw6q9l2rr2z107pvg5bdzshf67p1b3lf9dq",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.1.1",
+ "deps": [
+ "cl-lib",
+ "emacs"
+ ]
+ },
+ "vimish-fold": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "mrkkrp",
+ "repo": "vimish-fold",
+ "sha256": "082qrbljlahkq1fz2dfl434f1xv47jc1v9k0srh7lrm14616dzq3",
+ "rev": "bf10662ff5d2ac2c0d0d84a87577c5425cff7639"
+ },
+ "recipe": {
+ "sha256": "017by9w53d8pqlsazfycmhdv16yylks308p5vxp1rcw2qacpc5m3",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.2.1",
+ "deps": [
+ "cl-lib",
+ "emacs",
+ "f"
+ ]
+ },
+ "stripe-buffer": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "sabof",
+ "repo": "stripe-buffer",
+ "sha256": "035ym1c1vzg6hjsnd258z4dkrfc11lj4c0y4gpgybhk54dq3w9dk",
+ "rev": "d9f009b92cf16fe2c40cd92b8f842a3872e6c190"
+ },
+ "recipe": {
+ "sha256": "02wkb9y6vykrn6a5nfnimaplj7ig8i8h6m2rvwv08f5ilbccj16a",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.2.5",
+ "deps": [
+ "cl-lib"
+ ]
+ },
+ "web-completion-data": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "osv",
+ "repo": "web-completion-data",
+ "sha256": "1w7jnsc6lzlrlkj0nrlfnyca78lw53144hrf9k43b0g0zl8n9zqj",
+ "rev": "3685b8c7eff06a2064b4f4304e7faf00a22a920a"
+ },
+ "recipe": {
+ "sha256": "1zzdmhyn6bjaidk808s4pdk25a5rn4287949ps5vbpyniaf6gny9",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.1",
+ "deps": []
+ },
+ "slime-company": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "anwyn",
+ "repo": "slime-company",
+ "sha256": "0rdhd6kymbzhkc96dxy3nr21ajrkc7iy6zvq1va22r90f96jj9x4",
+ "rev": "b4a770b1c1e9638f13e339e7debbdb3b25217e39"
+ },
+ "recipe": {
+ "sha256": "195s5fi2dl3h2jyy4d45q22jac35sciz81n13b4lgw94mkxx4rq2",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.9.1",
+ "deps": [
+ "company",
+ "slime"
+ ]
+ },
+ "flymake-php": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "purcell",
+ "repo": "flymake-php",
+ "sha256": "0dzyid0av9icp77wv0zcsygpw46z24qibq1ra0iwnkzl3kqvkyzh",
+ "rev": "91f867e209011af31a2ca2d8f6874b994403bcb2"
+ },
+ "recipe": {
+ "sha256": "12ds2l5kvs7fz38syp4amasbjkpqd36rlpajnb3xxll0hbk6vffk",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.5",
+ "deps": [
+ "flymake-easy"
+ ]
+ },
+ "jade-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "brianc",
+ "repo": "jade-mode",
+ "sha256": "0krbd1qa2408a97pqhl7fv0x8x1n2l3qq33zzj4w4vv0c55jk43n",
+ "rev": "4e7a20db492719062f40b225ed730ed50be5db56"
+ },
+ "recipe": {
+ "sha256": "156j0d9wx6hrhph0nsjsi1jha4h65rcbrbff1j2yr8vdsszjrs94",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.0.0",
+ "deps": []
+ },
+ "smart-mode-line-powerline-theme": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "Malabarba",
+ "repo": "smart-mode-line",
+ "sha256": "0yvlmwnhdph5qj1998jz0idcl7901j6fxa9hivr7kic57j8kbq71",
+ "rev": "d98b985c44b2c771cac1eea758f21e16e169a8a0"
+ },
+ "recipe": {
+ "sha256": "0hv3mx39m3l35xhz351zp98321ilr6qq9wzwn1f0ziiv814khcn4",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "2.9",
+ "deps": [
+ "emacs",
+ "powerline",
+ "smart-mode-line"
+ ]
+ },
+ "unfill": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "purcell",
+ "repo": "unfill",
+ "sha256": "1qy0q1fp7cmvmxynqrb086dkb727lmk5h1k98y14j75b94ilpy0w",
+ "rev": "99388d79f971db70c5d18dab4257301f750ed907"
+ },
+ "recipe": {
+ "sha256": "0b21dk45vbz4vqdbdx0n6wx30rm38w1jjqbsxfj7b96p3i5shwqv",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.1",
+ "deps": []
+ },
+ "org-page": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "kelvinh",
+ "repo": "org-page",
+ "sha256": "0zc20m63a1iz9aziid5jsvcbl86k9dg9js4k3almchh55az4a0i3",
+ "rev": "09febf89d8dcb226aeedf8164169b31937b64439"
+ },
+ "recipe": {
+ "sha256": "1326m3w7vz22zk7rx40z28fddsccy5fl1qhbb7clci8l69blcc2v",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.41",
+ "deps": [
+ "ht",
+ "htmlize",
+ "mustache",
+ "org"
+ ]
+ },
+ "grails-projectile-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "yveszoundi",
+ "repo": "grails-projectile-mode",
+ "sha256": "1rv6klh59y70shc7kwdzlksdzmy0881ss49c0h5m93cn5pd6aj1l",
+ "rev": "e6667dc737cdb224bbadc70a5fcfb82d0fce6f8f"
+ },
+ "recipe": {
+ "sha256": "0dy8v2mila7ccvb7j5jlfkhfjsjfk3bm3rcy84m0rgbqjai67amn",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.1.1",
+ "deps": [
+ "cl-lib",
+ "emacs",
+ "projectile"
+ ]
+ },
+ "inf-clojure": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "clojure-emacs",
+ "repo": "inf-clojure",
+ "sha256": "0lnxd0fxclialhwzbqry5xb2l2slg80wi2ygv51d76prc2gdvdv0",
+ "rev": "286b935b90123d5e2dd3c36c804d796413864256"
+ },
+ "recipe": {
+ "sha256": "0n8w0vx1dnbfz88j45a57z9bsmkxr2zyh6ld72ady8asanf17zhl",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.3.0",
+ "deps": [
+ "clojure-mode",
+ "emacs"
+ ]
+ },
+ "git-wip-timemachine": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "itsjeyd",
+ "repo": "git-wip-timemachine",
+ "sha256": "0igawn43i81icshimj5agv33ab120hd6182knlrn3i46p7lcs3lx",
+ "rev": "7da7f2acec0b1d1252d7474b13190ae88e5b205d"
+ },
+ "recipe": {
+ "sha256": "02fi51k6l23cgnwjp507ylkiwb8azmnhc0fips68nwn9dghzp6dw",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.0",
+ "deps": [
+ "s"
+ ]
+ },
+ "shell-pop": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "kyagi",
+ "repo": "shell-pop-el",
+ "sha256": "0fzywfdaisvvdbcl813n1shz0r8v1k9kcgxgynv5l0i4nkrgkww5",
+ "rev": "4531d234ca471ed80458252cba0ed005a0720b27"
+ },
+ "recipe": {
+ "sha256": "02s17ln0hbi9gy3di8fksp3mqc7d8ahhf5vwyz4vrc1bg77glxw8",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.63",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "j-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "zellio",
+ "repo": "j-mode",
+ "sha256": "07kbicf760nw4qlb2lkf1ns8yzqy0r5jqqwqjbsnqxx4sm52hml9",
+ "rev": "caa55dfaae01d1875380929826952c2b3ef8a653"
+ },
+ "recipe": {
+ "sha256": "0f9lsr9hjhdvmzx565ivlncfzb4iq4rjjn6a41053cjy50bl066i",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.1.1",
+ "deps": []
+ },
+ "persistent-scratch": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "Fanael",
+ "repo": "persistent-scratch",
+ "sha256": "0vzifam1a3gy27phvhgi081v99pim669xymfwd9f96pnh0pwsqbh",
+ "rev": "52be8e41fe1e23a1f2b912fc119af06cc051bd28"
+ },
+ "recipe": {
+ "sha256": "0iai65lsg3zxj07hdb9201w3rwrvdb3wffr6k2jdl8hzg5idghn1",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.2.2",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "map-regexp": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "tarsius",
+ "repo": "map-regexp",
+ "sha256": "0kk1sk3cr4dbmgq4wzml8kdf14dn9jbyq4bwmvk0i7dic9vwn21c",
+ "rev": "b8e06284ec1c593d7d2bda5f35597a63de46333f"
+ },
+ "recipe": {
+ "sha256": "0yiif0033lhaqggywzfizfia3siggwcz7yv4z7przhnr04akdmbj",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.3.0",
+ "deps": [
+ "cl-lib"
+ ]
+ },
+ "sauron": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "djcb",
+ "repo": "sauron",
+ "sha256": "1mcag7qad1npjn096byakb8pmmi2g64nlf2vcc12irzmwia85fml",
+ "rev": "a9877f0efa9418c41d25002b58d1c2f8c69ec975"
+ },
+ "recipe": {
+ "sha256": "01fk1xfh7r16fb1xg5ibbs7gci9dja49msdlf7964hiq7pnnhxgb",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.10",
+ "deps": []
+ },
+ "company-ansible": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "krzysztof-magosa",
+ "repo": "company-ansible",
+ "sha256": "1dds3fynbd6yb0874aw6g4qk5zmq3pgl3jmcp38md027qalgqmym",
+ "rev": "b9b4b22bc8c109de3ae3a5bb4c6b2be89bd644db"
+ },
+ "recipe": {
+ "sha256": "084l9dr2hvm00952y4m3jhchzxjhcd61sfn5ywj9b9a1d4sr110d",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.1.1",
+ "deps": [
+ "company",
+ "emacs"
+ ]
+ },
+ "flycheck-ocaml": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "flycheck",
+ "repo": "flycheck-ocaml",
+ "sha256": "1phfarws2aajkgcl96hqa4ydmb1yncg10q2ldzf8ff6yd6mvk51l",
+ "rev": "9b4cd83ad2a87cc94b5d4e1ac26ac235475f1e6c"
+ },
+ "recipe": {
+ "sha256": "1cv2bb66aql2kj1y1gsl4xji8yrzrq6rd8hxxs5vpfsk47052lf7",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.3",
+ "deps": [
+ "emacs",
+ "flycheck",
+ "let-alist",
+ "merlin"
+ ]
+ },
+ "eshell-z": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "xuchunyang",
+ "repo": "eshell-z",
+ "sha256": "179xqh0rs8w3d03gygg9sy4qp5xqgfgl4c0ycrknip9zrnbmph4i",
+ "rev": "cc9a4b505953a9b56222896a6f973145aeb154b9"
+ },
+ "recipe": {
+ "sha256": "14ixazj0nscyqsdv7brqnfr0q8llir1pwb91yhl9jdqypmadpm6d",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.2.1",
+ "deps": [
+ "cl-lib"
+ ]
+ },
+ "fix-word": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "mrkkrp",
+ "repo": "fix-word",
+ "sha256": "1hj5jp4vbkcmnc8l2hqsvjc76f7c9zcsq8znwcwv2nv9xj9hlbkr",
+ "rev": "256a87d4b871ead0975fa0e7f76a1ecbaa074582"
+ },
+ "recipe": {
+ "sha256": "0a8w09cx8p5pkkd4533nd199axkhdhs2a7blp7syfn40bkscx6xc",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.1.1",
+ "deps": [
+ "cl-lib",
+ "emacs"
+ ]
+ },
+ "celery": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "ardumont",
+ "repo": "emacs-celery",
+ "sha256": "07h5g905i1jglsryl0dnqxz8yya5kkyjjggzbk4nl3rcj41lyas7",
+ "rev": "163ebede3f6a7f59202ff319675b0873dd1de365"
+ },
+ "recipe": {
+ "sha256": "0m3hmvp6xz2m7z1kbb0ii0j3c95zi19652gfixq5a5x23kz8y59h",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.0.3",
+ "deps": [
+ "dash-functional",
+ "deferred",
+ "emacs",
+ "s"
+ ]
+ },
+ "lib-requires": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/lib-requires.el",
+ "sha256": "1s6969kz6hpgjdm3xp18ik116nji43md7vbya600cmq48njk44nk"
+ },
+ "recipe": {
+ "sha256": "1g22jh56z8rnq0h80wj10gs38yig1rk9xmk3kmhmm5mm6b14iwdx",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": []
+ },
+ "charmap": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "lateau",
+ "repo": "charmap",
+ "sha256": "0crnd64cnsnaj5mcy55q0sc1rnamxa1xbpwpmirhyhxz780klww6",
+ "rev": "165193d91ef96f563ae8366ed4c1a2df5a4eaed2"
+ },
+ "recipe": {
+ "sha256": "1j7762d2i17ysn9ys8j7wfv989avmax8iylml2hc26mwbpyfpm84",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.0.1",
+ "deps": []
+ },
+ "parsebib": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "joostkremers",
+ "repo": "parsebib",
+ "sha256": "0n91whyjnrdhb9bqfif01ygmwv5biwpz2pvjv5w5y1d4g0k1x9ml",
+ "rev": "9a1f60bed2814dfb5cec2b92efb5951a4b465cce"
+ },
+ "recipe": {
+ "sha256": "07br2x68scsxykdk2ajc4mfqhdb7vjkcfgz3vnpy91sirxzgfjdd",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.0.5",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "hindent": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "chrisdone",
+ "repo": "hindent",
+ "sha256": "0hb74j5137yj3rm2si16xzwmcvkiwx8ywh1qrlnrzv5gl4viyjzb",
+ "rev": "726c692d234581c853495165472c78f4c7fb9297"
+ },
+ "recipe": {
+ "sha256": "1f3vzgnqigwbwvglxv0ziz3kyp5dxjraw3vlghkpw39f57mky4xz",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "5.4.3",
+ "deps": [
+ "cl-lib"
+ ]
+ },
+ "sudden-death": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "yewton",
+ "repo": "sudden-death.el",
+ "sha256": "1kmyivsyxr6gb2k36ssyr779rpk8qsrb27q5rjsir9fgc95qhvjb",
+ "rev": "c58fb9a672f306604dde4fbb0ff079e65a5e40be"
+ },
+ "recipe": {
+ "sha256": "1wrhb3d27j07i64hvjggyajm752w4mhrhq09lfvyhz6ykp1ly3fh",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.2",
+ "deps": []
+ },
+ "simplenote2": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "alpha22jp",
+ "repo": "simplenote2.el",
+ "sha256": "04giklbd1fsw2zysr7aqg17h6cpyn4i9jbknm4d4v6581f2pcl93",
+ "rev": "9984ad77e63ae8d40e863cf1b0d8339ede986792"
+ },
+ "recipe": {
+ "sha256": "1qdzbwhzmsga65wmrd0mb3rbs71nlyqqb6f4v7kvfxzyis50cswm",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "2.2.2",
+ "deps": [
+ "request-deferred"
+ ]
+ },
+ "cake": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "k1LoW",
+ "repo": "emacs-cake",
+ "sha256": "0bvrwzjx93qyx97qqw0imvnkkx4w91yk99rnhcmk029zj1fy0kzg",
+ "rev": "a7c9f3bee71eb3865060123d4d98e5397c2f967e"
+ },
+ "recipe": {
+ "sha256": "06qlqrazz2jr08g44q73hx9vpp6xnjvkpd6ky108g0xc5p9q2hcr",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.4.3",
+ "deps": [
+ "anything",
+ "cake-inflector",
+ "historyf"
+ ]
+ },
+ "realgud": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "rocky",
+ "repo": "emacs-dbgr",
+ "sha256": "07j1grdbqv3iv5ghmgsjw678bxjajcxi27clz4krcz3ys5b1h70v",
+ "rev": "0dd37e233f315a5666eefc6a3e9fc088fcc6561f"
+ },
+ "recipe": {
+ "sha256": "15vlln4w4wlgrk5i5nhgvjcbardpahgs9kwwayb1vmj10c8a837s",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.2",
+ "deps": [
+ "list-utils",
+ "load-relative",
+ "loc-changes",
+ "test-simple"
+ ]
+ },
+ "js2-refactor": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "magnars",
+ "repo": "js2-refactor.el",
+ "sha256": "08wxsz90x5zhma3q8kqfd01avhzxjmcrjc95s757l5xaynsc2bly",
+ "rev": "ac3da94a33b714d44d4f0adc670a829fdc522e34"
+ },
+ "recipe": {
+ "sha256": "09dcfwpxxyw0ffgjjjaaxbsj0x2nwfrmxy1a05h8ba3r3jl4kl1r",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.7.1",
+ "deps": [
+ "dash",
+ "js2-mode",
+ "multiple-cursors",
+ "s",
+ "yasnippet"
+ ]
+ },
+ "ecb": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "alexott",
+ "repo": "ecb",
+ "sha256": "1s9r1qj7cjsjvvphdpyjff6y598xpbrm9qjv5ncq15w6ac7yxzvc",
+ "rev": "1e9ddf472d7b6006dc92684b82de22e6148f38b4"
+ },
+ "recipe": {
+ "sha256": "097hdskhfh255znrqamcssx4ns1sgkxchlbc7pjqwzpflsi0fx89",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "2_24",
+ "deps": []
+ },
+ "quickrun": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "syohex",
+ "repo": "emacs-quickrun",
+ "sha256": "09sdv5lf5k347415r9fzljm374rb29gq6kldx2awd164fkdnm8ds",
+ "rev": "31c61de338c7b689bbb78e0aa691bd68f7c20941"
+ },
+ "recipe": {
+ "sha256": "1szgirakfnkn9ksls16p233sr7x9ck5m1f1kbk6ancj36yja2nki",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "2.2.6",
+ "deps": [
+ "cl-lib",
+ "emacs"
+ ]
+ },
+ "rsense": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "m2ym",
+ "repo": "rsense",
+ "sha256": "0mfkq8n28lal4lqwp6v0ilz8wrwgg61sbm0jggznwisjqqy3lzrh",
+ "rev": "e4297052ef32d06237e8bd1534a0caf70a34ad28"
+ },
+ "recipe": {
+ "sha256": "1901xqlpc8fg4sl9j58jn40i2djs8s0cdcqcrzrq02lvk8ssfdf5",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.3",
+ "deps": []
+ },
+ "ocodo-svg-modelines": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "ocodo",
+ "repo": "ocodo-svg-modelines",
+ "sha256": "05ay599nc6jdw2fjss4izz1ynv2wc4svff932n8j9hvrhygipb2w",
+ "rev": "a6c5b9a7536c7a8fa3bd9d9dafdebc8d99903018"
+ },
+ "recipe": {
+ "sha256": "0fa88ns70wsr9i9gf4zx3fvmn1a32mrjsda105n0cx6c965kfmay",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.1.4",
+ "deps": [
+ "svg-mode-line-themes"
+ ]
+ },
+ "jedi-core": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "tkf",
+ "repo": "emacs-jedi",
+ "sha256": "0xbp9fcxgbf298w05hvf52z41kk7r52975ailgdn8sg60xc98fa7",
+ "rev": "8da022c8cda511428c72a6dc4c5be3c0a0c88584"
+ },
+ "recipe": {
+ "sha256": "0pzi32zdb4g9n4kvpmkdflmqypa7nckmnjq60a3ngym4wlzbb32f",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.2.7",
+ "deps": [
+ "cl-lib",
+ "emacs",
+ "epc",
+ "python-environment"
+ ]
+ },
+ "dim-autoload": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "tarsius",
+ "repo": "dim-autoload",
+ "sha256": "0bw1gkaycbbv2glnaa36gwzkl1l6lsq7i2i7jinka92b27zvrans",
+ "rev": "d68ef0d2f9204ffe0d521e2647e6d8f473588fd3"
+ },
+ "recipe": {
+ "sha256": "0lhzzjrgfvbqnzwhjywrk3skdb7x10xdq7d21q6kdk3h5r0np9f9",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.1.4",
+ "deps": []
+ },
+ "sentence-highlight": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/sentence-highlight.el",
+ "sha256": "01qj57zpqpr4rxk9bsx828c7baac1xaa58cz22fncirdx00svn2k"
+ },
+ "recipe": {
+ "sha256": "16kh6567hb9lczh8zpqwbzz5bikg2fsabifhhky8qwxp4dy07v9m",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": []
+ },
+ "pkgbuild-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "juergenhoetzel",
+ "repo": "pkgbuild-mode",
+ "sha256": "0a8qb1ldk6bjs7fpxgxrf90md7q46fhl71gmay8yafdkh6hn0kqr",
+ "rev": "6bb7cb3b0599ac0ae3c1d8d5014aefc1ecff7965"
+ },
+ "recipe": {
+ "sha256": "1lp7frjahcpr4xnzxz77qj5hbpxbxm2g28apkixrnc1xjha66v3x",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.14",
+ "deps": []
+ },
+ "erc-youtube": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "kidd",
+ "repo": "erc-youtube.el",
+ "sha256": "0p1j08rrdsqmkb8zz8h8ba24hr59nx3xh2m044ry468hfd2bp6vd",
+ "rev": "3629583031f3a59797a01e29abe9cc061e337294"
+ },
+ "recipe": {
+ "sha256": "12ylxkskkgfv5x7vlkib963ichb3rlmdzkf4zh8a39cgl8wsmacx",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0Alpha",
+ "deps": [
+ "erc"
+ ]
+ },
+ "roguel-ike": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "stevenremot",
+ "repo": "roguel-ike",
+ "sha256": "108j3106n9anas07mj26xlrvscsl5irshd39czkippla84gwmgyc",
+ "rev": "6d9322ad9d43d0c7465f125c8e08b222866e6923"
+ },
+ "recipe": {
+ "sha256": "1a7sa6nhgi0s4gjh55bhk5cg6q6s7564fk008ibmrm05gfq9wlg8",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.1.0",
+ "deps": [
+ "popup"
+ ]
+ },
+ "name-this-color": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "knl",
+ "repo": "name-this-color.el",
+ "sha256": "0amhw630hgc0j8wr8m6aav399ixi3vbwrck79hhlr3pmyh91vv7n",
+ "rev": "e37cd1291d5d68d4c8d6386eab9cb9d94fd3bcfa"
+ },
+ "recipe": {
+ "sha256": "12nrk1ww766jb4gb4iz6w485nimh2iv8wni2jq4l38v8ndh490zb",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.3.0",
+ "deps": [
+ "cl-lib",
+ "dash",
+ "emacs"
+ ]
+ },
+ "git-messenger": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "syohex",
+ "repo": "emacs-git-messenger",
+ "sha256": "139yivbxdpmv8j6qz406769b040nbmj3j8r28n9gqy54zlwblgv8",
+ "rev": "c45cdd9805d52a82bdd23907bd0f91dc7760d78d"
+ },
+ "recipe": {
+ "sha256": "1rnqsv389why13cy6462vyq12qc2zk58p01m3hsazp1gpfw2hfzn",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.16",
+ "deps": [
+ "cl-lib",
+ "popup"
+ ]
+ },
+ "maven-test-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "rranelli",
+ "repo": "maven-test-mode",
+ "sha256": "0x92b1qrhyrdh0z0xriyjc12h0wpk16x4yawj5i828ca6mz0qh5g",
+ "rev": "f79409907375591283291eb96af4754b1ccc0e6f"
+ },
+ "recipe": {
+ "sha256": "1k9w51rh003p67yalzq1w8am40nnr2khyyb5y4bwxgpms8z391fm",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.1.5",
+ "deps": [
+ "emacs",
+ "s"
+ ]
+ },
+ "help-mode+": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/help-mode+.el",
+ "sha256": "1xnlb1sn52dzpwz2hx0wr34682cl83nar7qsacsn70z9h443a30j"
+ },
+ "recipe": {
+ "sha256": "1pmb845bxa5kazjpdxm12rm2wcshmv2cmisigs3kyva1pmi1shra",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": []
+ },
+ "discover-my-major": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "steckerhalter",
+ "repo": "discover-my-major",
+ "sha256": "1wlqyl03hhnflbyay3qlvdzqzvv5rbybcjpfddggda7ias9h0pr4",
+ "rev": "57d76fd21ec54706289cf9396fc871250569951e"
+ },
+ "recipe": {
+ "sha256": "0ch2y4grdjp7pvw2kxqnqdl7jd3q609n3pm3r0gn6k0xmcw85fgg",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.0",
+ "deps": [
+ "makey"
+ ]
+ },
+ "helm": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "emacs-helm",
+ "repo": "helm",
+ "sha256": "1cl01rprns989k5gr89qjpa6sg0s2ndrsdcmcyszrnaisvz7im53",
+ "rev": "97e8ffaed3c5959e9c16e7a0e45cc0702218b2cc"
+ },
+ "recipe": {
+ "sha256": "0xsf4rg7kn0m5wjlbwhd1mc38lg2822037dyd0h66h6x2gbs3fd9",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.9.0",
+ "deps": [
+ "async",
+ "cl-lib",
+ "emacs",
+ "helm-core"
+ ]
+ },
+ "pastelmac-theme": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "bmastenbrook",
+ "repo": "pastelmac-theme-el",
+ "sha256": "1v5mpjb8kavbqhvg4rizwg8cypgmi6ngdiy8qp9pimmkb56y42ly",
+ "rev": "bead21741e3f46f6506e8aef4469d4240a819389"
+ },
+ "recipe": {
+ "sha256": "168zzqhp2dbfcnknwfqxk68rgmibfw71ksghvi6h2j2c1m08l23f",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.0",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "omni-scratch": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "AdrieanKhisbe",
+ "repo": "omni-scratch.el",
+ "sha256": "1rfs6z56pnacy6m7yvm2hrb0ykfvaiyichivcmb9ssdgqp92cbxx",
+ "rev": "517b340427d5906002234832a01d0bc1ad27bac5"
+ },
+ "recipe": {
+ "sha256": "190dkqcw8xywzrq8a99w4rqi0y1h2aj23s84g2ln1sf7jaf6d6n9",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.1.1",
+ "deps": []
+ },
+ "flycheck-hdevtools": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "flycheck",
+ "repo": "flycheck-hdevtools",
+ "sha256": "136mdg21a8sqxhijsjsvpli7r7sb40nmf80p6gmgb1ghwmhlm8k3",
+ "rev": "fbf90b9a7d2d90f69ac55b57d18f0f4a47afed61"
+ },
+ "recipe": {
+ "sha256": "0ahvai1q4x59ryiyccvqvjisgqbaiahx4gk8ssaxhblhj0sqga93",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.3",
+ "deps": [
+ "flycheck"
+ ]
+ },
+ "blank-mode": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/blank-mode.el",
+ "sha256": "1wdplnmdllbydwr9gyyq4fbkxl5xjh7220vd4iajyv74pg2jkkkv"
+ },
+ "recipe": {
+ "sha256": "1pyx5xwflnni9my5aqpgf8xz4q4rvmj67pwb4zxx1lghrca97z87",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": []
+ },
+ "sly-company": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "capitaomorte",
+ "repo": "sly-company",
+ "sha256": "11p89pz6zmnjng5177w31ilcmifvnhv9mfjy79ic7amg01h09hsr",
+ "rev": "930e14fee9cdc837ae26299c7f5e379c53cee1af"
+ },
+ "recipe": {
+ "sha256": "034gnxmcdn1f9b08gs9r8ycbam4212ip1z4kmmpwgpl9zcq9z5kj",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.8",
+ "deps": [
+ "company",
+ "emacs",
+ "sly"
+ ]
+ },
+ "ht": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "Wilfred",
+ "repo": "ht.el",
+ "sha256": "0k09n66jar0prq9aal2h3izp1y67jibdx0gjr0g4jx1p1yxig1dg",
+ "rev": "285c8752b7d3ab4b3d0c53bab6ba05d328577960"
+ },
+ "recipe": {
+ "sha256": "16vmxksannn2wyn8r44jbkdp19jvz1bg57ggbs1vn0yi7nkanwbd",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "2.0",
+ "deps": []
+ },
+ "elisp-slime-nav": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "purcell",
+ "repo": "elisp-slime-nav",
+ "sha256": "1k7kprdknqm18dc0nwl7gachm0rivcpa8ng7p7ximalja3nsg2j1",
+ "rev": "551a6045969756d4aaee9e82b44cfbcdd0670cea"
+ },
+ "recipe": {
+ "sha256": "009zgp68i4naprpjr8lcp06lh3i5ickn0nh0lgvrqs0niprnzh8c",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.8",
+ "deps": [
+ "cl-lib"
+ ]
+ },
+ "vlf": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "m00natic",
+ "repo": "vlfi",
+ "sha256": "0vl0hwxzzvgna8sysf517qq08fi1zsff3dmcgwvsgzhc47sq8mng",
+ "rev": "4eaf763cadac62d7a74f7b2d2436d7793c8f7b43"
+ },
+ "recipe": {
+ "sha256": "1ipkv5kmda0l39xwbf7ns9p0mx3kb781mxsm9vmbkhr5x577s2j8",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.7",
+ "deps": []
+ },
+ "recover-buffers": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "tripleee",
+ "repo": "recover-buffers",
+ "sha256": "114ssmby614xjs7mrpbbsdd4gj5ra6klfh8h6z8iij8xn3kii83q",
+ "rev": "a1db7f084977697081da3497628e3514e032b966"
+ },
+ "recipe": {
+ "sha256": "0g40d7440hzlc9b45v63ng0anvmgip4dhbd9wcm2sn8qjfr4w11b",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.0",
+ "deps": []
+ },
+ "evil-args": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "wcsmith",
+ "repo": "evil-args",
+ "sha256": "1nh7wa4ynr7ln42x32znzqsmh7ijzy5ymd7rszf49l8677alvazq",
+ "rev": "2a88b4d19953a11227cc1e91973b92149116f44c"
+ },
+ "recipe": {
+ "sha256": "1bwdvf1i3jc77bw2as1wr1djm8z3a7wms60694xkyqh0m909hs2w",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.0",
+ "deps": [
+ "evil"
+ ]
+ },
+ "framemove": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/framemove.el",
+ "sha256": "03ll68d0j0b55rfxymzcirdigkmxcy8556d0i67ghdzmcqfwily7"
+ },
+ "recipe": {
+ "sha256": "10qf017j0zfnzmcs1i56pznhbvgw7mv4232p8znqaaxphgh6r0ar",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": []
+ },
+ "real-auto-save": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "chillaranand",
+ "repo": "real-auto-save",
+ "sha256": "1ka5q2q18hgh7wl5yn04489121bq4nx369rz8nb7dr5l14cas0xm",
+ "rev": "879144ca7e9bfa09a4fb57d5fe92a80250311f1e"
+ },
+ "recipe": {
+ "sha256": "03dbbizpyg62v6zbq8hd16ikrifz8m2bdlbb3g67f2834xqmxha8",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.4",
+ "deps": []
+ },
+ "ebib": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "joostkremers",
+ "repo": "ebib",
+ "sha256": "159w19hx3gmhv8n2amkm6i999vdrz5132bjwk28qpiq37v1v7dd5",
+ "rev": "e9f92df575d747992e9ada768b18dee475cfee55"
+ },
+ "recipe": {
+ "sha256": "1kdqf5nk9l6mr3698nqngrkw5dicgf7d24krir5wrcfbrsqrfmid",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "2.5.2",
+ "deps": [
+ "dash",
+ "emacs",
+ "parsebib"
+ ]
+ },
+ "multiple-cursors": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "magnars",
+ "repo": "multiple-cursors.el",
+ "sha256": "10k4c9vl0bfidrry0msyqamijizjghg54g26yaqbr2vi0mbbz22k",
+ "rev": "d17c89e41847cf9292004590ba5b1c8cec0b1c50"
+ },
+ "recipe": {
+ "sha256": "0mky5p9wpd3270wr5vfna8rkk2ff81wk7vicyxli39195m0qgg0x",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.3.0",
+ "deps": []
+ },
+ "tss": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "aki2o",
+ "repo": "emacs-tss",
+ "sha256": "1ma3k9bbw427cj1n2gjajbqii482jhs2lgjggz9clpc21bn5wqfb",
+ "rev": "1f302deea3d74462c71a9c62031f48b753e8915f"
+ },
+ "recipe": {
+ "sha256": "0d16x5r2xfy6mrwy0mqzpr9b3inqmyyxgawrxlfh83j1xb903dhm",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.6.0",
+ "deps": [
+ "auto-complete",
+ "json-mode",
+ "log4e",
+ "yaxception"
+ ]
+ },
+ "isearch+": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/isearch+.el",
+ "sha256": "1cg5rvc16ljncini13fpwmzfhp3zy9rd1jvdd3jxpdkqzw07rnc6"
+ },
+ "recipe": {
+ "sha256": "1rzlsf08nmc3p3vhpwbiy8cgnnl2c10xrnsr2rlpv0g2kxkrd69r",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": []
+ },
+ "espuds": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "ecukes",
+ "repo": "espuds",
+ "sha256": "16r4j27j9yfdiy841w9q5ykkc6n3wrm7hvfacagb32mydk821ijg",
+ "rev": "1405972873339e056517217136de4ad3202d744a"
+ },
+ "recipe": {
+ "sha256": "16yzw9l64ahf5v92jzb7vyb4zqxxplq6qh0y9rkfmvm59s4nhk6c",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.3.3",
+ "deps": [
+ "dash",
+ "f",
+ "s"
+ ]
+ },
+ "nav-flash": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "rolandwalker",
+ "repo": "nav-flash",
+ "sha256": "119hy8rs83f17d6zizdaxn2ck3sylxbyz7adszbznjc8zrbaw0ic",
+ "rev": "9054a0f9b51da9e5207672efc029ba265ba28f34"
+ },
+ "recipe": {
+ "sha256": "0936kr0s6zxxmjwaqm7ywdw2im4dxai1xb7j6xa2gp7c70qvvsx3",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.1.0",
+ "deps": []
+ },
+ "persp-projectile": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "bbatsov",
+ "repo": "projectile",
+ "sha256": "1rl6n6v9f4m7m969frx8b51a4lzfix2bxx6rfcfbh6kzhc00qnxf",
+ "rev": "1159110e83490f3b30d4d39e8c48022d3006900a"
+ },
+ "recipe": {
+ "sha256": "0bqq13rr1hc7rhmw37rbrwaz9flcv3hw3hx0k5b7y9zd3qndy2cj",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.13.0",
+ "deps": [
+ "cl-lib",
+ "perspective",
+ "projectile"
+ ]
+ },
+ "osx-location": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "purcell",
+ "repo": "osx-location",
+ "sha256": "1csnxpsfnv9lv07kgvc60qx5c33sshmnz60p3qjz7ym7rnjy9b5x",
+ "rev": "110aee945b53ea550e4debe69bf3c077d940ec8c"
+ },
+ "recipe": {
+ "sha256": "1p12mmrw70p3b04zlprkdxdfnb7m3vkm6gci3fwhr5zyfvwxvn0c",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.4",
+ "deps": []
+ },
+ "unify-opening": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "DamienCassou",
+ "repo": "unify-opening",
+ "sha256": "1vbx10s2zmhpxjg26ik947bcg9f7w3g2w45wmm0shjp743fsdq8p",
+ "rev": "2812e43029cab7183197ce5e3c9577856bfd22c5"
+ },
+ "recipe": {
+ "sha256": "1gpmklbdbmv8va8d3yr94r1ydkcyvdzcgxv56rp0bxwbcgmk0as8",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.1.0",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "ghc": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "kazu-yamamoto",
+ "repo": "ghc-mod",
+ "sha256": "1wiwkp4qcgdwnr4h1bn27hh1kyl2wjlrz2bbfv638y9gzc06rgch",
+ "rev": "edfce196107dbd43958d72c174ad66e4a7d30643"
+ },
+ "recipe": {
+ "sha256": "0xqriwggd1ahla5aff7k0j4admx6q18rmqsx3ipn4nfk86wrhb8g",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "5.4.0.0",
+ "deps": [
+ "haskell-mode"
+ ]
+ },
+ "ninja-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "martine",
+ "repo": "ninja",
+ "sha256": "1wc0cvmfhpvfzdy127d1n812q93dd9sp3mmqnc8jzy8i3frqqqq6",
+ "rev": "484c16336f19bd8970bb6e75322d61b92a229899"
+ },
+ "recipe": {
+ "sha256": "1m7f25sbkz8k343giczrnw2ah5i3mk4c7csi8kk9x5y16030asik",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.6.0",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "el-x": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "sigma",
+ "repo": "el-x",
+ "sha256": "1i6j44ssxm1xdg0mf91nh1lnprwsaxsx8vsrf720nan7mfr283h5",
+ "rev": "e96541c1f32e0a3aca4ad0a0eb382bd898250163"
+ },
+ "recipe": {
+ "sha256": "1721d9mljlcbdwb5b9934q7a48y30x6706pp4bjvgys0r64dml5g",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.3.1",
+ "deps": []
+ },
+ "migemo": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "emacs-jp",
+ "repo": "migemo",
+ "sha256": "1ckb5hymwj4wmsxakalsky4mkzn9vxhxr6416b2cr6r5jxj4xgsl",
+ "rev": "97e07796573c4c47f286bfe8eeb6428cb474526e"
+ },
+ "recipe": {
+ "sha256": "0y49imdwygv5zd7cyh9ngda4gyb2mld2a4s7zh4yzlh7z5ha9qkr",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.9.1",
+ "deps": []
+ },
+ "screenshot": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/screenshot.el",
+ "sha256": "0q7yxaaa0fic4d2xwr0qk28clkinwz4xvw3wf8dv1g322s0xx2cw"
+ },
+ "recipe": {
+ "sha256": "0aw2343as38y26r2g7wpn1rq1n6xpw4y5c7ir8qh1crkc1y513hs",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": []
+ },
+ "easy-repeat": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "xuchunyang",
+ "repo": "easy-repeat.el",
+ "sha256": "18bm5ns1qrxq0rrz9sylshr62wkymh1m6b7ch2y74f8rcwdwjgnq",
+ "rev": "060f0e6801c82c40c06961dc0528a00e18947a8c"
+ },
+ "recipe": {
+ "sha256": "1vx57gpw0nbxh976s18va4ali1nqxqffhaxv1c5rhf4pwlk2fa06",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.2",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "doremi-frm": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/doremi-frm.el",
+ "sha256": "0p2wcyb1cqa6b0lvrc83wj6xwl8gnmfg12k1q36scq2y430qbmdc"
+ },
+ "recipe": {
+ "sha256": "1rj3p665q32acsxxwygv1j5nbmjqrhi0b4glzrk88xki4lyz0ihz",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": [
+ "doremi",
+ "faces+",
+ "frame-fns",
+ "hexrgb"
+ ]
+ },
+ "weblogger": {
+ "fetch": {
+ "tag": "fetchbzr",
+ "url": "lp:weblogger-el",
+ "sha256": "1z7ld9d0crwdh778fyaapx75vpnlnslsh9nf07ywkylhz4w68yyv",
+ "rev": "38"
+ },
+ "recipe": {
+ "sha256": "17ccj602cp0lrs30rcp45g7fqb7k1l1hr9h8z4gh7rqs0n7z1jad",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": [
+ "xml-rpc"
+ ]
+ },
+ "pophint": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "aki2o",
+ "repo": "emacs-pophint",
+ "sha256": "18i0kivn6prh5pwdr7b4pxfxqsc8l4mks1h6cfs7iwnfn15g5k19",
+ "rev": "28dc6a76e726f371bcca3160c27ae2017324399c"
+ },
+ "recipe": {
+ "sha256": "1chq2j79hg095jxw5z3pz4qicqrccw0gj4sxrin0a55hnprzzp72",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.9.3",
+ "deps": [
+ "log4e",
+ "popup",
+ "yaxception"
+ ]
+ },
+ "shell-command": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/shell-command.el",
+ "sha256": "0jr5sbmg4zrx2dfdrajh2didm6dxx9ri5ib9qnwhc1jlppinyi7l"
+ },
+ "recipe": {
+ "sha256": "1jxn721i4s1k5x1qldiynnl5khsl22x9k3whm698nzv8m786spxl",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": []
+ },
+ "filesets+": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/filesets+.el",
+ "sha256": "0vqmz5rac2fgry1mzg3hnp0w65x6va471f982g9i8fn70ws46ww2"
+ },
+ "recipe": {
+ "sha256": "06n8pw8c65bmrkxda2akvv57ndfijgbp95l40j7sjg8bjp385spn",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": []
+ },
+ "find-file-in-project": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "technomancy",
+ "repo": "find-file-in-project",
+ "sha256": "0bf32nhpmjvvgnr6g9xqh8pqnhr3dl24y3g40lsv4pc8ffs70ydm",
+ "rev": "908cc56c0fd715001da4d97b30cba5eb7af3a609"
+ },
+ "recipe": {
+ "sha256": "0aznnv82xhnilc9j4cdmcgh6ksv7bhjjm3pa76hynnyrfn7kq7wy",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "4.5",
+ "deps": [
+ "emacs",
+ "swiper"
+ ]
+ },
+ "paren-face": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "tarsius",
+ "repo": "paren-face",
+ "sha256": "033gdya7f6p4kkapnmnbxlm88g4rbsmym4cc4jkcmp91idh63syq",
+ "rev": "835d817295d81e2a6def9beb37f05aaf97870e86"
+ },
+ "recipe": {
+ "sha256": "0dmzk66m3rd8x0rb925pyrfpc2qsvayks4kmhpb2ccdrx68pg8gf",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.2.0",
+ "deps": []
+ },
+ "writeroom-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "joostkremers",
+ "repo": "writeroom-mode",
+ "sha256": "0f554h834p12255mhwjnxbh1ls65476k60cwddqyl844ph75w8jv",
+ "rev": "48b179879c6614afcae3fc4386fd88b52b2bcc17"
+ },
+ "recipe": {
+ "sha256": "1kpsrp3agw8bg3qbf5rf5k1a7ww30q5xsa8z5ywxajsaywjzx1bk",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "3.1",
+ "deps": [
+ "emacs",
+ "visual-fill-column"
+ ]
+ },
+ "use-package": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "jwiegley",
+ "repo": "use-package",
+ "sha256": "07vwg0bg719gb8ln1n5a33103903vvrphnkbvvfn43904pkrf14w",
+ "rev": "2b077f6e485e8c5c167413c03246068022b6bc71"
+ },
+ "recipe": {
+ "sha256": "0z7k77yfvsndql719qy4vypnwvi9izal8k8vhdx0pw8msaz4xqd8",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "2.1",
+ "deps": [
+ "bind-key",
+ "diminish"
+ ]
+ },
+ "highlight-defined": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "Fanael",
+ "repo": "highlight-defined",
+ "sha256": "08czwa165rnd5z0dwwdddn7zi5w63sdk31l47bj0598kbly01n7r",
+ "rev": "9cc03c7136b56c04ea053fbe08a3a4a6af26b90e"
+ },
+ "recipe": {
+ "sha256": "1vjxm35wf4c2qphpkjh57hf03a5qdssdlmfj0n0gwxsdw1q5rpms",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.1.5",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "historyf": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "k1LoW",
+ "repo": "emacs-historyf",
+ "sha256": "1mxicha6m61qxz1mv9z76x4g9fpqk4ch9i6jf7nnpxd6x4xz3f7z",
+ "rev": "64ab6c9d2cd6dec6982622bf675326e011373cd2"
+ },
+ "recipe": {
+ "sha256": "15pcaqfjpkfwcy46yqqw10q8kpw7aamcg0gr4frbdgzbv0yld08s",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.0.9",
+ "deps": []
+ },
+ "ess-smart-underscore": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "mattfidler",
+ "repo": "ess-smart-underscore.el",
+ "sha256": "1avb6dng4xgw3bp7bw0j60wl6s4y26alfys9vwwj29rlzvjrlh74",
+ "rev": "ef18a160aeb3b1a7ae5fe93759f8e92147da8746"
+ },
+ "recipe": {
+ "sha256": "01pki1xa8zpgvldcbjwg6vmslj7ddf44hsx976xipc95vrdk15r2",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.79",
+ "deps": []
+ },
+ "autofit-frame": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/autofit-frame.el",
+ "sha256": "14iajfdf59lc9ik6spv4sq3v0ji1dmhfl1zwhcz2bkypxlbg1v3s"
+ },
+ "recipe": {
+ "sha256": "0p24qqnfa1vfn5pgnpvbxwi11zjkd6f3cv5igwg6h0pr5s7spnvw",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": [
+ "fit-frame"
+ ]
+ },
+ "narrowed-page-navigation": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "david-christiansen",
+ "repo": "narrowed-page-navigation",
+ "sha256": "0ydxj6dc10knambma2hpimqrhfz216nbj96w1dcwgjixs4cd4nax",
+ "rev": "b215adbac4873f56fbab65772062f0f5be8058a1"
+ },
+ "recipe": {
+ "sha256": "1yrmih60dd69qnin505jlmfidm2svzpdrz46286r7nm6pk7s4pb7",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.1.0",
+ "deps": [
+ "cl-lib",
+ "emacs"
+ ]
+ },
+ "conkeror-minor-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "Malabarba",
+ "repo": "conkeror-minor-mode",
+ "sha256": "0sz3qx1bn0lwjhka2l6wfl4b5486ji9dklgjs7fdlkg3dgpp1ahx",
+ "rev": "476e81c27b056e21c192391fe674a2bf875466b0"
+ },
+ "recipe": {
+ "sha256": "1ch108f20k7xbf79azsp31hh4wmw7iycsxddcszgxkbm7pj11933",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.6.2",
+ "deps": []
+ },
+ "pycarddavel": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "DamienCassou",
+ "repo": "pycarddavel",
+ "sha256": "0qg1kjzsv2mcvlsivqy8ys3djbs5yala37r9h2zcxdicl88q0l11",
+ "rev": "6ead921066fa0156f20155b7126e5875ce11c328"
+ },
+ "recipe": {
+ "sha256": "12k2mnzkd8yv17csfhclsnd479vcabawmac23yw6dsw7ic53jf1a",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.0.1",
+ "deps": [
+ "emacs",
+ "helm"
+ ]
+ },
+ "bookmark+": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/bookmark+.el",
+ "sha256": "1qp84qzywc9nzb8n6j6cl99g7z88355ypw2fr4vpwy6n863a4b7l"
+ },
+ "recipe": {
+ "sha256": "0121xx7dp2pakk9g7sg6par4mkxd9ky746yk4wh2wrhprc9dqzni",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": []
+ },
+ "ert-expectations": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/ert-expectations.el",
+ "sha256": "0cwy3ilsid90abzzjb7ha2blq9kmv3gfp3icwwfcz6qczgirq6g7"
+ },
+ "recipe": {
+ "sha256": "094lkf1h83rc0dkvdv8923xjrzj5pnpnsb4izk8n5n7g0rbz1l9w",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": []
+ },
+ "multi-eshell": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/multi-eshell.el",
+ "sha256": "1w1jwfznpl214a1xx46zlgqbx9c5yjzpyqqrkn3xqjgnj485yhkl"
+ },
+ "recipe": {
+ "sha256": "1i0mvgqxsc99dwp9qcdrijqxsxflrbxw846rgw89p1jfs8mp4l7d",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": []
+ },
+ "emoji-cheat-sheet-plus": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "syl20bnr",
+ "repo": "emacs-emoji-cheat-sheet-plus",
+ "sha256": "1rk7am0xvpnv98yi7a62wlyh576md4n2ddj7nm201bjd4wdl2yxk",
+ "rev": "96a003127d646a2683d81ca906a17eace0a6413e"
+ },
+ "recipe": {
+ "sha256": "1ciwlbw0ihm0p5gnnl3safcj7dxwiy53bkj8cmw3i334al0gjnnv",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.2.1",
+ "deps": [
+ "emacs",
+ "helm"
+ ]
+ },
+ "helm-proc": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "markus1189",
+ "repo": "helm-proc",
+ "sha256": "0y0a18bj2k459fk51z7svnnasqkl78bx61y5ha1yv3sqnppgdw2h",
+ "rev": "babf86d7d0e1f325f18095a51116c49cda2c5fec"
+ },
+ "recipe": {
+ "sha256": "1bq60giy2bs9m3hlbc5nwvy51702a98s0vqass3b290hdgki4bnx",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.0.4",
+ "deps": [
+ "helm"
+ ]
+ },
+ "evil-lisp-state": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "syl20bnr",
+ "repo": "evil-lisp-state",
+ "sha256": "12l3gnhirq8jz0dqyj9m02l1fg5rh78fdyskslprxp5vfa4ngzkh",
+ "rev": "e5792ec68a5615bd07bf2c6e9eb3f49d1bc7810d"
+ },
+ "recipe": {
+ "sha256": "117irac05fs73n7sgja3zd7yh4nz9h0gw5b1b57lfkav6y3ndgcy",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "7.1",
+ "deps": [
+ "evil",
+ "evil-leader",
+ "smartparens"
+ ]
+ },
+ "popwin": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "m2ym",
+ "repo": "popwin-el",
+ "sha256": "0nips9npm4zmz3f37vvb4s0g1ci0p9cl6w0z4sc6agg4rybjhpdp",
+ "rev": "95dea14c60019d6cccf9a3b33e0dec4e1f22c304"
+ },
+ "recipe": {
+ "sha256": "1zp54nv8rh0b3g8y5aj4793miiw2r1ijwbzq31lkwmbdr09mixmf",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.0.0",
+ "deps": []
+ },
+ "py-isort": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "paetzke",
+ "repo": "py-isort.el",
+ "sha256": "0150q6xcnzzrkn9fa9njm973l1d49c48ad8qia71k4jwrxjjj6zr",
+ "rev": "cfbb576784fe4501909c15299607ce2a2d0bf164"
+ },
+ "recipe": {
+ "sha256": "0k5gn3bjn5pv6dn6p0m9xghn0sx3m29bj3pfrmyh6gd5ic0l00yb",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.8",
+ "deps": []
+ },
+ "paredit": {
+ "fetch": {
+ "tag": "fetchgit",
+ "url": "http://mumble.net/~campbell/git/paredit.git",
+ "sha256": "7587cd2cf6e5b245678bbca8cbad07db8576ff976a504cd8d6e52fa85cf99f8f",
+ "rev": "82bb75ceb2ddc272d6618d94874b7fc13181a409"
+ },
+ "recipe": {
+ "sha256": "1rp859y4qyqdfvp261l8mmbd62p1pw0dypm1mng6838b6q6ycakr",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "24",
+ "deps": []
+ },
+ "gh": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "sigma",
+ "repo": "gh.el",
+ "sha256": "0a5v91k9gm9vv15d3m8czicv8n39f0hvqhcr6lfw0w82n26xwsms",
+ "rev": "33b88251e8989069cc08f3f5d6886635f276f42e"
+ },
+ "recipe": {
+ "sha256": "1141l8pas3m755yzby4zsan7p81nbnlch3kj1zh69qzjpgqp30c0",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.9.2",
+ "deps": [
+ "eieio",
+ "logito",
+ "pcache"
+ ]
+ },
+ "lispy": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "abo-abo",
+ "repo": "lispy",
+ "sha256": "05iqhnhj61f30yk4ih63rimmyp134gyq18frc8qgrnwym64dsm6l",
+ "rev": "7756a8fbbadbebbd5e20768569ed92ad6c402c5c"
+ },
+ "recipe": {
+ "sha256": "12qk2gpwzz7chfz7x3wds39r4iiipvcw2rjqncir46b6zzlb1q0g",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.26.0",
+ "deps": [
+ "ace-window",
+ "emacs",
+ "hydra",
+ "iedit",
+ "multiple-cursors",
+ "swiper"
+ ]
+ },
+ "request-deferred": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "tkf",
+ "repo": "emacs-request",
+ "sha256": "0j7nakxj750rhdnm0nk075s7rx38rc9npbb55kg7r9vb2qilnvmr",
+ "rev": "b548f8bd9c4372232cb3d3633b9fcfffb2f535ff"
+ },
+ "recipe": {
+ "sha256": "1dcxqnzmvddk61dzmfx8vjbzd8m44lscr3pjdp3r7211zhwfk40n",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.1.0",
+ "deps": []
+ },
+ "second-sel": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/second-sel.el",
+ "sha256": "0ar60sqzlyrhvlg0mxfbc8c824lqglq07gf8lccjabnpwilz3ksd"
+ },
+ "recipe": {
+ "sha256": "1nzy5ms5qf5big507kg3z5m6d6zgnsv2fswn359r2j59cval3fvr",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": []
+ },
+ "ace-flyspell": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "cute-jumper",
+ "repo": "ace-flyspell",
+ "sha256": "1pzh5l8dybrrmglj55nbff6065pxlbx14501p3a1qx1wvf24g1sv",
+ "rev": "a850fa913b3d1bab4c00bacee41da934929cef52"
+ },
+ "recipe": {
+ "sha256": "0f24qrpcvyg7h6ylyggn4zrbydci537iigshac1d8yywsr0j47gd",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.1.2",
+ "deps": [
+ "ace-jump-mode"
+ ]
+ },
+ "list-unicode-display": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "purcell",
+ "repo": "list-unicode-display",
+ "sha256": "05nn4db8s8h4mn3fxhwsa111ayvlq1raf6bifh7jciyw7a2c3aww",
+ "rev": "59770cf3572bd36c3e9ba044846dc420c0dca09b"
+ },
+ "recipe": {
+ "sha256": "01x9i5k5vhjscmkx0l6r27w1cdp9n6xk1pdjf98z3y88dnsmyfha",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.1",
+ "deps": [
+ "cl-lib"
+ ]
+ },
+ "import-popwin": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "syohex",
+ "repo": "emacs-import-popwin",
+ "sha256": "0ycsdwwfb27g85aby4jix1aj41a4vq6bf541iwla0xh3wsyxb01w",
+ "rev": "34c3b34ffcadafea71600acb8f4e5ba385e6da19"
+ },
+ "recipe": {
+ "sha256": "0vkw6y09m68bvvn1wzah4gzm69z099xnqhn359xfns2ljm74bvgy",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.09",
+ "deps": [
+ "cl-lib",
+ "popwin"
+ ]
+ },
+ "company-tern": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "proofit404",
+ "repo": "company-tern",
+ "sha256": "11cinjsyf24d4a682ikniprxd1vkwn6mynsp5dzab6yzq09np78i",
+ "rev": "9a2cb8427a1a93c9c5021c01df1b47c69d79e176"
+ },
+ "recipe": {
+ "sha256": "17pw4jx3f1hymj6sc0ri18jz9ngggj4a41kxx14fnmmm8adqn6wh",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.2.0",
+ "deps": [
+ "cl-lib",
+ "company",
+ "dash",
+ "dash-functional",
+ "s",
+ "tern"
+ ]
+ },
+ "lit-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "HectorAE",
+ "repo": "lit-mode",
+ "sha256": "0mr0king5dj20vdycpszxnfs9ch808fhcz3q7svxfngj3d3671wd",
+ "rev": "c61c403afc8333a5649c5421ab1a6341dc1c7d92"
+ },
+ "recipe": {
+ "sha256": "05rf7ki060nqnvircn0dkpdrg7xbh7phb8bqgsab89ycc7l9vv59",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.1.1",
+ "deps": []
+ },
+ "w32-browser": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/w32-browser.el",
+ "sha256": "1cpy3c0aj265wda9bz6b88i73mr9xi8gm1cp0q72ikhz43kszihx"
+ },
+ "recipe": {
+ "sha256": "14vc2cipwlwwc0b5ld4x0zvydkg8nbjmp0z2x6ca0nmxw8sfsnc6",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": []
+ },
+ "miniedit": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "emacsorphanage",
+ "repo": "miniedit",
+ "sha256": "1850z96gly0jnr50472idqz1drzqarr0n23bbasslrc501xkg0bq",
+ "rev": "e12bf659c3eb92dd8a4cb77642dc0865c54667a3"
+ },
+ "recipe": {
+ "sha256": "10s407q7igdi2hsaaahbw8vckalrl7z3s6l9cflf51q16xh2ih87",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "2.0",
+ "deps": []
+ },
+ "magit-gh-pulls": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "sigma",
+ "repo": "magit-gh-pulls",
+ "sha256": "19iqa2kzarpa75xy34hqvpy1y7dzx84pj540wwkj04dnpb4fwj2z",
+ "rev": "e4a73781e3c1c7e4a09232b25e3474463cdf77b6"
+ },
+ "recipe": {
+ "sha256": "0qn9vjxi33pya9s8v3g95scmhwrn2yf5pjm7d24frq766wigjv8d",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.5.2",
+ "deps": [
+ "emacs",
+ "gh",
+ "magit",
+ "pcache",
+ "s"
+ ]
+ },
+ "highlight-current-line": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/highlight-current-line.el",
+ "sha256": "1aki7a7nnj9n7vh19k4fr0v7cqbwkrpc6b3f3yv95vcqj8a4y34c"
+ },
+ "recipe": {
+ "sha256": "01bga6is3frzlzfajpvpgz224vhl0jnc2bl2ipvlygdcmv4h8973",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": []
+ },
+ "window+": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/window+.el",
+ "sha256": "1mq8nrcypfm8na1qg0dykp6r1mfraix2jp1xc0lkx4wn620mp9cz"
+ },
+ "recipe": {
+ "sha256": "0fhzb0ay9g9qgcaxpb2qaw15dh0lfmv3x4akyipi3zx11446d06j",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": []
+ },
+ "firestarter": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "wasamasa",
+ "repo": "firestarter",
+ "sha256": "0s8rml5xbskvnjpi8qp7vqflxhh5yis6zr6ay2bxmd2chjlhli55",
+ "rev": "4b7428477980e12578ebbbb121115696b352d6b2"
+ },
+ "recipe": {
+ "sha256": "1cpx664hyrdnpb1jps1x6lm7idwlfjblkfygj48cjz9pzd6ld5mp",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.2.4",
+ "deps": []
+ },
+ "adoc-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "sensorflo",
+ "repo": "adoc-mode",
+ "sha256": "1mb7dlyd5w161xagwn6w5h4q660dppkd50m71vz0w3zmxsc9a0vq",
+ "rev": "b6d54d9007b97f2553c238e0c36586079b666f4f"
+ },
+ "recipe": {
+ "sha256": "0wgagcsh0fkb51fy17ilrs20z2vzdpmz97vpwijcfy2b9rypxq15",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.6.4",
+ "deps": [
+ "markup-faces"
+ ]
+ },
+ "racer": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "racer-rust",
+ "repo": "emacs-racer",
+ "sha256": "0pbswxzgfqcp6vjlwhvnablj91kxq588j2fmcjzhf0aigkj7dxfb",
+ "rev": "9b7b4b1e8b04f630d29f771ad268025ff9380236"
+ },
+ "recipe": {
+ "sha256": "1091y5pisbf73i6zg5d7yny2d5yckkjg0z6fpjpmz5qjs3xcm9wi",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.0.1",
+ "deps": [
+ "dash",
+ "emacs",
+ "rust-mode",
+ "s"
+ ]
+ },
+ "simplezen": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "magnars",
+ "repo": "simplezen.el",
+ "sha256": "1p1771qm3jndnf4rdhb1bri5cjiksvxizagi7vfb7mjmsmx18w61",
+ "rev": "c0ddaefbb38fcc1c9775434f734f89227d246a30"
+ },
+ "recipe": {
+ "sha256": "13f2anhfsxmx1vdd209gxkhpywsi3nn6pazhc6bkswmn27yiig7j",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.1.1",
+ "deps": []
+ },
+ "geiser": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "jaor",
+ "repo": "geiser",
+ "sha256": "1667zln7bav0bdhrc4b5z36n8rn36xvwh4y9ffgns67zfgwi64kk",
+ "rev": "c6f17b25200e36f80d812684a2127b451fc11817"
+ },
+ "recipe": {
+ "sha256": "067rrjvyn5sz60w9h7qn542d9iycm2q4ryvx3n6xlard0dky5596",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.8.1",
+ "deps": []
+ },
+ "tup-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "ejmr",
+ "repo": "tup-mode",
+ "sha256": "0asd024n5v23wdsg1959sszq568wg3a1bp4jrk0cllfji1z0n78y",
+ "rev": "945af9c8e6c402e10cd3bf8e28a9591174023d6d"
+ },
+ "recipe": {
+ "sha256": "0pzpn1ljfcc2dl9fg7jc8lmjwz2baays4axjqk1qsbj0kqbc8j0l",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.3.1",
+ "deps": []
+ },
+ "voca-builder": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "yitang",
+ "repo": "voca-builder",
+ "sha256": "0q1rwqjwqcnsr57s531pwlm464q8wx5vvdm5rj2xy9b3yi6phis1",
+ "rev": "224402532da28e45edd398fda61ecbddb97d22d3"
+ },
+ "recipe": {
+ "sha256": "0mbw87mpbb8rw7xzhmg6yjla2c80x9820kw4q00x00ny5rbhm76y",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.2.0",
+ "deps": []
+ },
+ "replace+": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/replace+.el",
+ "sha256": "0hma5mb2r33yfdlwb1ls1gjnqps00sri6q0hkksngvz67hka9mx4"
+ },
+ "recipe": {
+ "sha256": "1imsgr3v8g2p2mnkzp92ga3nvckr758pblmlha8gh8mb80089krn",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": []
+ },
+ "zotelo": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "vitoshka",
+ "repo": "zotelo",
+ "sha256": "0qwdbzfi8mddmchdd9ab9ms1ynlc8dx08i6g2mf3za1sbcivdqsr",
+ "rev": "56eaaa76f80bd15710e68af4a1e585394af987d3"
+ },
+ "recipe": {
+ "sha256": "0ai516lqj9yw7ymvfm4n5inv53sp6mg90wy56lr1laflizwxzg8z",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.3",
+ "deps": []
+ },
+ "helm-dash": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "areina",
+ "repo": "helm-dash",
+ "sha256": "0s503q56acv70i5qahrdgk3nhvdpb3wa22a8jh1kvb7lykaw74ai",
+ "rev": "a0f5d6539da873cd0c51d8ef714930c970a66aa0"
+ },
+ "recipe": {
+ "sha256": "1cnxssj2ilszq94v5cc4ixblar1nlilv9askqjp9gfnkj2z1n9cy",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.2.0",
+ "deps": [
+ "cl-lib",
+ "helm"
+ ]
+ },
+ "vcomp": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "tarsius",
+ "repo": "vcomp",
+ "sha256": "07dx3dyvkwcin0gb6j4jx0ldfxs4rqhygl56a8i81yy05adkaq2x",
+ "rev": "a12363c3a66576b68955abcadf7280de32eaa051"
+ },
+ "recipe": {
+ "sha256": "02cj2nlyxvgvl2rjfgacljvcsnfm9crmmkhcm2pznj9xw10y8pq0",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.3.1",
+ "deps": []
+ },
+ "jsx-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "jsx",
+ "repo": "jsx-mode.el",
+ "sha256": "1wx28rr5dk238yz07xn95v88qmv10c1gz9pcxard2kszpnmrn6dx",
+ "rev": "1ca260b76f6e6251c528ed89501597a5b456c179"
+ },
+ "recipe": {
+ "sha256": "1lnjnyn8qf3biqr92z443z6b58dly7glksp1g986vgqzdprq3n1b",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.1.10",
+ "deps": []
+ },
+ "tool-bar+": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/tool-bar+.el",
+ "sha256": "1ml95y7275yd2jn4zf96rg0pwxsv8vnwv52mvr9j0j9mqkw1d0d9"
+ },
+ "recipe": {
+ "sha256": "07nsas600w5kxx7yzg52ax9avry8kq429mqlrs38jg5ycf3b1l6d",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": []
+ },
+ "auto-async-byte-compile": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/auto-async-byte-compile.el",
+ "sha256": "1c8nm4sz9a67q8w0b1jahg5ldy185zws7nilj9yv3miklg07zq17"
+ },
+ "recipe": {
+ "sha256": "108jhrdx67chbdd4h824072i2wrn90zdh2hw5vqd4a5svhhf28jj",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": []
+ },
+ "gradle-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "jacobono",
+ "repo": "emacs-gradle-mode",
+ "sha256": "0k86lrb55d701nj6pvlw3kjp1dcd3lzfya0hv6q56c529y69d782",
+ "rev": "579de06674551919cddac9cfe42129f4fb0155c9"
+ },
+ "recipe": {
+ "sha256": "0lx9qi93wmiy9pxjxqp68scbcb4bx88b6jiqk3y8jg5cajizh24g",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.5.5",
+ "deps": [
+ "s"
+ ]
+ },
+ "redo+": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/redo+.el",
+ "sha256": "1jc4n60spzssa57i3jwrqwy20f741hb271vmmx49riycx1ybx3d3"
+ },
+ "recipe": {
+ "sha256": "1alfs7k5mydgvzsjmdifcizqgrqjrk2kbh3mabai7nlrwi47w9n2",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": []
+ },
+ "ess-R-data-view": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "myuhe",
+ "repo": "ess-R-data-view.el",
+ "sha256": "1ya2ay52gkrd31pmw45ban8kkxgnzhhwkzkypwdhjfccq3ys835x",
+ "rev": "d6e98d3ae1e2a2ea39a56eebcdb73e99d29562e9"
+ },
+ "recipe": {
+ "sha256": "0r2fzwayf3yb7fqk6f31x4xfqiiczwik8qw4rrvkqx2h3s1kz7i0",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.0",
+ "deps": [
+ "ctable",
+ "ess",
+ "popup"
+ ]
+ },
+ "keyfreq": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "dacap",
+ "repo": "keyfreq",
+ "sha256": "0ways4ksb9pk2kkpgclsxgc0ycfwcr8vghlbv5ic4y0c4ycmlb2d",
+ "rev": "0c0a36a895a34d802614d34d7a3cc986e502ea35"
+ },
+ "recipe": {
+ "sha256": "1rw6hzmw7h5ngvndy7aa41pq911y2hr9kqc9w4gdd5v2p4ln1qh7",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.7",
+ "deps": []
+ },
+ "sourcetalk": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "malroc",
+ "repo": "sourcetalk_emacs",
+ "sha256": "0j4qm1y7rhb95k1zbl3c60a46l9rchzslzq36mayyw61s6yysjnv",
+ "rev": "aced89fa8776e6d5e42dad4a863e159959f08de6"
+ },
+ "recipe": {
+ "sha256": "0qaf2q784xgl1s3m88jpwdzghpi4f3nybga3lnr1w7sb7b3yvj3z",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.2.0",
+ "deps": [
+ "request"
+ ]
+ },
+ "archive-region": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/archive-region.el",
+ "sha256": "1mhj6x0n2ya3xd7gykmkcf70ji5g8qd8xawz764ykdlcribpsq52"
+ },
+ "recipe": {
+ "sha256": "03x2fqhx4w0c7xd8x8zlnyzdwyay6r2yxf4jzgkcg87q7rqjk9nd",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": []
+ },
+ "kaesar": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "mhayashi1120",
+ "repo": "Emacs-kaesar",
+ "sha256": "03l9w238a5kyfin3v1fy1q2pl0gvmb87j0v89g6nk114s7m4y3r8",
+ "rev": "4fa74851cd928f30e9f2ee1aa27ee6074ad253ea"
+ },
+ "recipe": {
+ "sha256": "0zhi1dv1ay1azh7afq4x6bdg91clwpsr13nrzy7539yrn9sglj5l",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.9.0",
+ "deps": [
+ "cl-lib"
+ ]
+ },
+ "image-dired+": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "mhayashi1120",
+ "repo": "Emacs-image-diredx",
+ "sha256": "1n2ya9s0ld257a8iryjd0dz0z2zs1xhzfiwsdkq4l4azwxl54m29",
+ "rev": "b68094625d963056ad64e0e44af0e2266b2eadc7"
+ },
+ "recipe": {
+ "sha256": "0hhwqfn490n7p12n7ij4xbjh15gfvicmn21fvwbnrmfqc343pcdy",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.7.2",
+ "deps": [
+ "cl-lib"
+ ]
+ },
+ "anything-sage": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "stakemori",
+ "repo": "anything-sage",
+ "sha256": "1bcvin2694ypqgiw0mqk82riq7gw6ra10vbkzng1yp9jp2qr6wmm",
+ "rev": "8335657d3f0611bd5fc8858160bbe87dfdbaf0f2"
+ },
+ "recipe": {
+ "sha256": "1878vj8hzrwfyd2yvxcm0f1vm9m0ndwnj0pcq7j8zm9lxj0w48p3",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.0.1",
+ "deps": [
+ "anything",
+ "cl-lib",
+ "sage-shell-mode"
+ ]
+ },
+ "ignoramus": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "rolandwalker",
+ "repo": "ignoramus",
+ "sha256": "1j40ldvgd7nr7pabi8mhzdvi0ml9n62m8mfjlh9nrbnkcsifs9rk",
+ "rev": "37536286eb1da6d7bb9590e039485c456fdfd245"
+ },
+ "recipe": {
+ "sha256": "1czqdmlrds1l5afi8ldg7nrxcwav86538z2w1npad3dz8xk67da9",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.7.0",
+ "deps": []
+ },
+ "telephone-line": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "dbordak",
+ "repo": "telephone-line",
+ "sha256": "0smdlzrcbmip6c6c3rd0871wv5xyagavwsxhhgvki6ybyzdj9a19",
+ "rev": "70c113bea37719c83961023afd893044398e681d"
+ },
+ "recipe": {
+ "sha256": "0dyh9h1yk9y0217b6rxsm7m372n910vpfgw5w23lkkrwa8x8qpx3",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.3",
+ "deps": [
+ "cl-lib",
+ "eieio",
+ "emacs",
+ "s",
+ "seq"
+ ]
+ },
+ "ac-php": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "xcwen",
+ "repo": "ac-php",
+ "sha256": "1rpp6njgqpi7sq4iyh65glhnbfw414w7srz90whadhkz5pzawr7z",
+ "rev": "1f606698934a7d60d0d60f6f15240a2bf78c8b9f"
+ },
+ "recipe": {
+ "sha256": "0p9qq8nszp5jb71s35cxnmcxp50b62y2jv1ha7vvqfz5p8miallk",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.7.0",
+ "deps": [
+ "auto-complete",
+ "company",
+ "dash",
+ "emacs",
+ "f",
+ "php-mode",
+ "popup",
+ "s",
+ "xcscope",
+ "yasnippet"
+ ]
+ },
+ "helm-ghq": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "masutaka",
+ "repo": "emacs-helm-ghq",
+ "sha256": "0amdm0jcg5dxjfiid7q0llr2hffp02l0b0n5yhix8razvi7bhy2z",
+ "rev": "15621d1b2cd37c2ff0f73666c38acf7aae46bbc4"
+ },
+ "recipe": {
+ "sha256": "14f3cbsj7jhlhrp561d8pasllnx1cmi7jk6v2fja7ghzj76dnvq6",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.5.0",
+ "deps": [
+ "helm"
+ ]
+ },
+ "haskell-tab-indent": {
+ "fetch": {
+ "tag": "fetchgit",
+ "url": "https://git.spwhitton.name/haskell-tab-indent",
+ "sha256": "02786f437bbbbb221c9c810a8d110bb4af172b986733ac35c932b18b38af7201",
+ "rev": "38d50e9bb8f64ba13ffbd9bcff32db820403a0fc"
+ },
+ "recipe": {
+ "sha256": "0vdfmy56w5yi202nbd28v1bzj97v1wxnfnb5z3dh9687p2abgnr7",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.1.0",
+ "deps": []
+ },
+ "helm-gtags": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "syohex",
+ "repo": "emacs-helm-gtags",
+ "sha256": "0gd158ymj0rpm3qmz17ky4lfhvw15cnq0xvhg6q1imjjay2md62q",
+ "rev": "9131a1439860198d51a9dfa6955c586da4bb60bd"
+ },
+ "recipe": {
+ "sha256": "0snx0b8b4yc507q3i4fzvrd68xgzqxly8kn5cwp26ik6cv840y29",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.5.1",
+ "deps": [
+ "cl-lib",
+ "helm"
+ ]
+ },
+ "company-cabal": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "iquiw",
+ "repo": "company-cabal",
+ "sha256": "1pja44g15d11kl47abzykrp28j782nkbmb0db0ilpc96xf1fjlsw",
+ "rev": "a570559ff92522598b5ed40e21c4539fffb3e976"
+ },
+ "recipe": {
+ "sha256": "0pbjidj88c9qri6xw8023yqwnczad5ig224cbsz6vsmdla2nlxra",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.1.1",
+ "deps": [
+ "cl-lib",
+ "company",
+ "emacs"
+ ]
+ },
+ "idle-highlight-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "nonsequitur",
+ "repo": "idle-highlight-mode",
+ "sha256": "0x4w1ksrw7dicl84zpf4d4scg672dyan9g95jkn6zvri0lr8xciv",
+ "rev": "c466f2a9e291f9da1167dc879577b2e1a7880482"
+ },
+ "recipe": {
+ "sha256": "1i5ky61bq0dpk71yasfpjhsrv29mmp9nly9f5xxin7gz3x0f36fc",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.1.3",
+ "deps": []
+ },
+ "highlight-blocks": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "Fanael",
+ "repo": "highlight-blocks",
+ "sha256": "0c65jk00j88qxfki2g88hy9g6n92rzskwcn1fbmwcw3qgaz4b6w5",
+ "rev": "9c4240a5d16008db430d1a81c76dad474d3deb0c"
+ },
+ "recipe": {
+ "sha256": "1a32iv5kgf6g6ygbs559w156dh578k45m860czazfx0d6ap3k5m1",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.1.16",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "simple-httpd": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "skeeto",
+ "repo": "emacs-http-server",
+ "sha256": "1qmkc0w28l53zzf5yd2grrk1sq222g5qnsm35ph25s1cfvc1qb2g",
+ "rev": "b191b07c942e44c946a22a826c4d9c9a0475fd7e"
+ },
+ "recipe": {
+ "sha256": "18dharsdiwfkmhd9ibz9f47yfq9c2d78i886pi6gsjh8iwcpzx59",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.4.6",
+ "deps": [
+ "cl-lib"
+ ]
+ },
+ "actionscript-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "austinhaas",
+ "repo": "actionscript-mode",
+ "sha256": "0zybch8hz3mj63i0pxynb4d76ywqcy7b4fsa4hh71c2kb0bnczb3",
+ "rev": "fddd7220342d29e7eca734f6b798b7a2849717a5"
+ },
+ "recipe": {
+ "sha256": "1dkiay9jmizvslji5kzab4dxm1dq0jm8ps7sjq6710g7a5aqdvwq",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "7.2.2",
+ "deps": []
+ },
+ "sos": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "omouse",
+ "repo": "emacs-sos",
+ "sha256": "0b5w3vdr8llg3hqd22gnc6b6y089lq6vfk0ajkws6gfldz2gg2v1",
+ "rev": "c3906ca6872f460c0bdd276410519308626313f1"
+ },
+ "recipe": {
+ "sha256": "1gkd0plx7152s3dj8a9lwlwh8bgs1m006s80l10agclx6aay8rvb",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.1",
+ "deps": [
+ "org"
+ ]
+ },
+ "nasm-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "skeeto",
+ "repo": "nasm-mode",
+ "sha256": "1l7asqwi5gcvb2mn8608025lwypf2vqzrkc3a9phdfjp0qn2apdn",
+ "rev": "6e208d54eabe3339f22cd775f7e6237757f5eb36"
+ },
+ "recipe": {
+ "sha256": "1626yf9mmqlsw8w01vzqsyb5ipa56259d4kl6w871k7rvhxwff17",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.0.1",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "markup-faces": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "sensorflo",
+ "repo": "markup-faces",
+ "sha256": "0nk2rm14ccwrh1aaxzm80rllsz8g38h9w52m0pf3nnwh6sa757nk",
+ "rev": "c43612633c6c161857a3bab5752ae192bb03f5f3"
+ },
+ "recipe": {
+ "sha256": "12z92j9f0mpn7w2qkiwg54wh743q3inx56q3f8qcpfzyks546grq",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.0.0",
+ "deps": []
+ },
+ "better-registers": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/better-registers.el",
+ "sha256": "05dlhhvd1m9q642gqqj6klif13shbinqi6bi72fldidi1z6wcqlh"
+ },
+ "recipe": {
+ "sha256": "01i0qjrwsc5way2h9z3pmsgccsbdifsq1dh6zhka4h6qfgrmn3bx",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": []
+ },
+ "calfw": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "kiwanami",
+ "repo": "emacs-calfw",
+ "sha256": "1rv6slk3a7ca2q16isjlkmgxbxmbqx4lx2ip7z33fvnq10r5h60n",
+ "rev": "50e0e0261568f84f31fe7f87c9f863e21d30132f"
+ },
+ "recipe": {
+ "sha256": "1lyb0jzpx19mx50d8xjv9sx201518vkvskxbglykaqpjm9ik2ai8",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.5",
+ "deps": [
+ "google-maps"
+ ]
+ },
+ "tabbar-ruler": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "mattfidler",
+ "repo": "tabbar-ruler.el",
+ "sha256": "1xd67s92gyr49v73j7r7cbhsc40bkw8aqh21whgbypdgzpyc7azc",
+ "rev": "7df2e4814018e84ef9261d04a2ade8168a44e3d7"
+ },
+ "recipe": {
+ "sha256": "10dwjj6r74g9rzdd650wa1wxhqc0q6dmff4j0qbbhmjsxvsr3y0d",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.45",
+ "deps": [
+ "tabbar"
+ ]
+ },
+ "gruber-darker-theme": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "rexim",
+ "repo": "gruber-darker-theme",
+ "sha256": "14h0rcd3nkw3pmx8jwip20p6rzl9qdkip5g52gfjjbqfvaffsrkd",
+ "rev": "0c08d77e615aceb9e6e1ca66b1fbde275200cfe4"
+ },
+ "recipe": {
+ "sha256": "0vn4msixb77xj6p5mlfchjyyjhzah0lcmp0z82s8849zd194fxqi",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.6",
+ "deps": []
+ },
+ "orgbox": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "yasuhito",
+ "repo": "orgbox",
+ "sha256": "02mxp17p7bj4xamg0m6zk832hmpqcgzc7bjbjcnvbvrawhc255hy",
+ "rev": "ecaf5a064431cf92922338c974df8fce1a8f1734"
+ },
+ "recipe": {
+ "sha256": "12wfqlpjh9nr7zgqs4h8kmfsk825n68qcbn8z2fw2mpshg3nj7l8",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.5.0",
+ "deps": [
+ "cl-lib",
+ "org"
+ ]
+ },
+ "mew": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "kazu-yamamoto",
+ "repo": "Mew",
+ "sha256": "1dhws4a298zrm88cdn66sikdk06n0p60d32cxsgybakkhg5c5wgr",
+ "rev": "08289430ce14780a03789b71d2060ff4392fbae6"
+ },
+ "recipe": {
+ "sha256": "0423xxn3cw6jmsd7vrw30hx9phga5chxzi6x7cvpswg1mhcyn9fk",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "6.7",
+ "deps": []
+ },
+ "helm-circe": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "lesharris",
+ "repo": "helm-circe",
+ "sha256": "1iqjc15pz5qr8zjxaxz1b2vys2689ri76jacmipxvgjk0y7vc5f0",
+ "rev": "0b7ecf5380971ee7b6291fca6a2805c320638238"
+ },
+ "recipe": {
+ "sha256": "12jfzg03573lih2aapvv5h2mi3pwqc9nrmv538ivjywix5117k3v",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.3",
+ "deps": [
+ "circe",
+ "cl-lib",
+ "emacs",
+ "helm"
+ ]
+ },
+ "ruby-hash-syntax": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "purcell",
+ "repo": "ruby-hash-syntax",
+ "sha256": "01n9j7sag49m4bdl6065jklnxnc5kck51izg884s1is459qgy86k",
+ "rev": "a0362c2dc449a1e67ef75ad736bcf8b03b083226"
+ },
+ "recipe": {
+ "sha256": "0bvwyagfh7mn457iibrpv1ay75089gp8pg608gbm24m0ix82xvb5",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.4",
+ "deps": []
+ },
+ "nodejs-repl": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "abicky",
+ "repo": "nodejs-repl.el",
+ "sha256": "1qvs73nimqzhcjgw77vaipqbmnvailc1q6w8rb5vc9c425xsi7an",
+ "rev": "53a0d00d5854ac67d50dcf495e66f49a68e152e7"
+ },
+ "recipe": {
+ "sha256": "0rvhhrsw87kfrwdhm8glq6b3nr0v90ivm7fcc0da4yc2jmcyk907",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.0.3",
+ "deps": []
+ },
+ "ido-completing-read+": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "DarwinAwardWinner",
+ "repo": "ido-ubiquitous",
+ "sha256": "1fgg2l9fvg3iay9wgkfacbc0kl6hx7sbwxgmbl8j47vr6yzkgnd7",
+ "rev": "2e826e3f209cb5d2bc92bdbfd3b189d2c06ff51c"
+ },
+ "recipe": {
+ "sha256": "034j1q47d57ia5bwbf1w66gw6c7aqbhscpy3dg2a71lwjzfmshwh",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "3.9",
+ "deps": [
+ "cl-lib",
+ "emacs"
+ ]
+ },
+ "sekka": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "kiyoka",
+ "repo": "sekka",
+ "sha256": "0nsm7z056rh32sq7abgdwyaz4dbz8v9pgbha5jvpk7y0zmnabrgs",
+ "rev": "2b0facc87e743e21534672aadac6db3164e38daf"
+ },
+ "recipe": {
+ "sha256": "1jj4ly9p7m3xvb31nfn171lbpm9y70y8cbf8p24w0fhv665dx0cp",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.6.4",
+ "deps": [
+ "cl-lib",
+ "concurrent",
+ "popup"
+ ]
+ },
+ "auto-complete-exuberant-ctags": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "k1LoW",
+ "repo": "auto-complete-exuberant-ctags",
+ "sha256": "1fqgyg986fg1dzac5wa97bx82mfddqb6qrfnpr3zksmw3vgykxr0",
+ "rev": "ff6121ff8b71beb5aa606d28fd389c484ed49765"
+ },
+ "recipe": {
+ "sha256": "1i2s3ycc8jafkzdsz3kbvx1hh95ydi5s6rq6n0wzw1kyy3km35gd",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.0.7",
+ "deps": [
+ "auto-complete"
+ ]
+ },
+ "full-ack": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "nschum",
+ "repo": "full-ack",
+ "sha256": "0c3w3xs2jbdqgsqw0qmdbwii6p395qfznird4gg0hfr7lby2kmjq",
+ "rev": "0aef4be1686535f83217cafb1524818071bd8325"
+ },
+ "recipe": {
+ "sha256": "09ikhyhpvkcl6yl6pa4abnw6i7yfsx5jkmzypib94w7khikvb309",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.0",
+ "deps": []
+ },
+ "helm-nixos-options": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "travisbhartwell",
+ "repo": "nix-emacs",
+ "sha256": "1lm7rkgf7q5g4ji6v1masfbhxdpwni8d77dapsy5k9p73cr2aqld",
+ "rev": "5fc8fa29bea9dd8e9c822af92f9bc6ddc223635f"
+ },
+ "recipe": {
+ "sha256": "1nsi4hfw53iwn29fp33dkri1c6w8kdyn4sa0yn2fi6144ilmq933",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.0.1",
+ "deps": [
+ "helm",
+ "nixos-options"
+ ]
+ },
+ "magit-annex": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "magit",
+ "repo": "magit-annex",
+ "sha256": "0d7dick96g1vj6c9wh10rgwhwv5j3ixgw1m3z45szszswlrp1bih",
+ "rev": "b51962dcc1080a35a91e2667f7c26fb33960c711"
+ },
+ "recipe": {
+ "sha256": "1ri58s1ly416ksmb7mql6vnmx7hq59lmhi7qijknjarw7qs3bqys",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.1.0",
+ "deps": [
+ "cl-lib",
+ "magit"
+ ]
+ },
+ "matrix-client": {
+ "fetch": {
+ "tag": "fetchgit",
+ "url": "git://fort.kickass.systems/personal/rrix/pub/matrix.el",
+ "sha256": "0516772e4aae604359bee659d101fb62b73cc9016cbbe0b749c77402954ec341",
+ "rev": "de09c69d2d5ca604839239fe49b10a2ed5ac2809"
+ },
+ "recipe": {
+ "sha256": "09mgxk0xngw8j46vz6f5nwkb01iq96bf9m51w2q61wxivypnsyr6",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.2.0",
+ "deps": [
+ "json",
+ "request"
+ ]
+ },
+ "helm-hatena-bookmark": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "masutaka",
+ "repo": "emacs-helm-hatena-bookmark",
+ "sha256": "0254jcy6cb7m63lnkp5s97hyzr13xh1a1xykp96iirkgjfcg5xds",
+ "rev": "497d33632f195354eaa24670db0804c846b7261b"
+ },
+ "recipe": {
+ "sha256": "14091zrp4vj7752rb5s3pkyvrrsdl7iaj3q9ys8rjmbsjwcv30id",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "2.0.4",
+ "deps": [
+ "helm"
+ ]
+ },
+ "emacsql-psql": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "skeeto",
+ "repo": "emacsql",
+ "sha256": "0ph0462shk00rhrkpvwgsr4biykimky2d89pvkbg377951jdga7i",
+ "rev": "03d478870834a683f433e7f0e288476748eec624"
+ },
+ "recipe": {
+ "sha256": "1aa1g9jyjmz6w0lmi2cf67926ad3xvs0qsg7lrccnllr9k0flly3",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "2.0.0",
+ "deps": [
+ "cl-lib",
+ "emacs",
+ "emacsql",
+ "pg"
+ ]
+ },
+ "yaml-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "yoshiki",
+ "repo": "yaml-mode",
+ "sha256": "1mj1gwrflpdlmc7wl1axygn1jqlrjys1dh3cpdh27zrgsjvhd6c1",
+ "rev": "a817e46cc55eb90b7e1dd7cff74e43e080f0f690"
+ },
+ "recipe": {
+ "sha256": "0afp83xcr8h153cayyaszwkgpap0iyk351dlykmv6bv9d2m774mc",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.0.12",
+ "deps": []
+ },
+ "ncl-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "yyr",
+ "repo": "ncl-mode",
+ "sha256": "16i1k1zr6ng1dlxb1b73mxjf25f4kvf3x5vfffsi3qnfm960bg3q",
+ "rev": "4a1a3f133c8c74a01b5c527496b56052bacac2ab"
+ },
+ "recipe": {
+ "sha256": "0hmd606xgapzbc79px9l1q6pphrhdzip495yprvg20xsdpmjlfw9",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.99a",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "go-direx": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "syohex",
+ "repo": "emacs-go-direx",
+ "sha256": "05yc0nylg3457an5j7yp3x23157j0hbi21qhcpgsa01144mwnwln",
+ "rev": "aecb9fef4d56d04d230d37c75c260c8392b5ad9f"
+ },
+ "recipe": {
+ "sha256": "0dq5d7fsld4hww8fl68c18qp6fl3781dqqwd98cg68bihw2wwni7",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.04",
+ "deps": [
+ "cl-lib",
+ "direx"
+ ]
+ },
+ "doremi-cmd": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/doremi-cmd.el",
+ "sha256": "1wmfkviyr5mp15aqh6qhmi7ykgcii1h85wxmsm7bxg9v2lzyckk2"
+ },
+ "recipe": {
+ "sha256": "1qzspirn1abqps0dn5z8w6ymffc6b02dyki5hr8v74wfs8fhzx05",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": [
+ "doremi"
+ ]
+ },
+ "shampoo": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "dmatveev",
+ "repo": "shampoo-emacs",
+ "sha256": "11g9lsgakq8nf689k49p9l536ffi62g3bh11mh9ix1l058xamqw2",
+ "rev": "9bf488ad4025beef6eef63d2d5b72bc1c9b9e142"
+ },
+ "recipe": {
+ "sha256": "01ssgw4cnnx8d86g3r1d5hqcib4qyhmpqvcvx47xs7zh0jscps61",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.0.1",
+ "deps": []
+ },
+ "window-purpose": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "bmag",
+ "repo": "emacs-purpose",
+ "sha256": "08j0akwjp4arkw3zm0lazb13f6dq0m8y9k9nmypd7xk0m77byymd",
+ "rev": "7e492cbdd4259a177625a3f47001d7281f295349"
+ },
+ "recipe": {
+ "sha256": "1ib5ia7armghvmcw8qywcil4nxzwwakmfsp7ybawb0xr53h1w96d",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.4",
+ "deps": [
+ "cl-lib",
+ "emacs",
+ "imenu-list",
+ "let-alist"
+ ]
+ },
+ "boxquote": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "davep",
+ "repo": "boxquote.el",
+ "sha256": "0235l4f1cxj7nysfnay4fz52mg0c13pzqxbhw65vdpfzz1gl1p73",
+ "rev": "4c49b2046647ed187920c885e175ed388f4833dc"
+ },
+ "recipe": {
+ "sha256": "0s6cxb8y1y8w9vxxhj1izs8d0gzk4z2zm0cm9gkw1h7k2kyggx6s",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.22",
+ "deps": []
+ },
+ "sticky": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/sticky.el",
+ "sha256": "18izyia1j3w2c07qhkp9h6rnvw35m5k1brrrjhm51fpdv2xj65fy"
+ },
+ "recipe": {
+ "sha256": "1xjkdwphq3m4jrazsfnzrrcrqikfdxzph3jdzkpbzk3grd4af96w",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": []
+ },
+ "ein": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "millejoh",
+ "repo": "emacs-ipython-notebook",
+ "sha256": "055hyvdcnbbzxs66v06d5flylhsz1qnmff758736f84cyxm76ayy",
+ "rev": "3aa290ed91832ba28a99c5f4b53ef40459eea539"
+ },
+ "recipe": {
+ "sha256": "1nksj1cpf4d9brr3rb80bgp2x05qdq9xmlp8mwbic1s27mw80bpp",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.7.0",
+ "deps": [
+ "request",
+ "websocket"
+ ]
+ },
+ "magic-filetype": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "zonuexe",
+ "repo": "magic-filetype.el",
+ "sha256": "128dqgh7kvjywiq0wq6ipnr1l1v2dzrz5j0rd3n2783r9nz0i7r5",
+ "rev": "1a3e425ab5b7b6614b7ece5885d23f12f45572f0"
+ },
+ "recipe": {
+ "sha256": "0gcys45cqn5ghppkn0rmyvfybprlfz1x6hqr21yv93mf79h75zhg",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.1.1",
+ "deps": [
+ "emacs",
+ "s"
+ ]
+ },
+ "py-yapf": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "paetzke",
+ "repo": "py-yapf.el",
+ "sha256": "03hki4v61340x0xp47lckxabz51abcazcahmr6wfn9n4bvfqjr9x",
+ "rev": "766e57448639ff95eeb018f6d8bdf09170094218"
+ },
+ "recipe": {
+ "sha256": "1381x0ffpllxwgkr2d8xxbv1nd4k475m1aff8l5qijw7d1fqga2f",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.2",
+ "deps": []
+ },
+ "paper-theme": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "cadadr",
+ "repo": "paper-theme",
+ "sha256": "1fhj2g82lf2rz8c8l88acyrspnbmbj87m5n76cvc0ls40k1mgww3",
+ "rev": "551859066afe926380b6fcdc95851db45599944e"
+ },
+ "recipe": {
+ "sha256": "04diqm2c9fm29zyms3hplkzb4kb7b2kyrxdsy0jxyjj5kabypd50",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.1.0",
+ "deps": []
+ },
+ "hexrgb": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/hexrgb.el",
+ "sha256": "04maddrgvijimxc8i942h0f7448snqlgdsj3yc03izh6bimvkhk5"
+ },
+ "recipe": {
+ "sha256": "0mzqslrrf7sc262syj3ja7b7rnbg80dwf2p9bzxdrzx6b8vvsx06",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": []
+ },
+ "finalize": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "skeeto",
+ "repo": "elisp-finalize",
+ "sha256": "1r9y9zschavi28c5ysrlh56vxszjfyhh5r36fhn74i0b5iiy15rx",
+ "rev": "72c8eaab3deb150ee2cf7f1473114cecffb5204a"
+ },
+ "recipe": {
+ "sha256": "1n0w4kdzc4hv4pprv13lr88gh46slpxdvsc162nqm5mrqp9giqqq",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.0.0",
+ "deps": [
+ "cl-lib",
+ "eieio",
+ "emacs"
+ ]
+ },
+ "paredit-everywhere": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "purcell",
+ "repo": "paredit-everywhere",
+ "sha256": "0jbjwjl92pf0kih3p2x20ms2kpyzzam8fir661nimpmk802ahgkj",
+ "rev": "72b7cd5dcdc02233a32e9f1a6c2d21dc30532170"
+ },
+ "recipe": {
+ "sha256": "0gbkwk8mrbjr2l8pz3q4y6j8q4m12zmzl31c88ngs1k5d86wav36",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.4",
+ "deps": [
+ "paredit"
+ ]
+ },
+ "eval-in-repl": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "kaz-yos",
+ "repo": "eval-in-repl",
+ "sha256": "1s8h2d2h9gw05srwwvgdph0m38qhnn81azzwfxzl0ym5a49cxacl",
+ "rev": "c79ba77bdd6f1534f379953fc6e0ec0e1c866151"
+ },
+ "recipe": {
+ "sha256": "10h5vy9wdiqf9dgk1d1bsvp93y8sfcxghzg8zbhhn7m5cqg2wh63",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.7.0",
+ "deps": [
+ "dash",
+ "paredit"
+ ]
+ },
+ "helm-perldoc": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "syohex",
+ "repo": "emacs-helm-perldoc",
+ "sha256": "01cj2897hqz02mfz32nxlyyp59iwm0gz1zj11s8ll7pwy9q3r90g",
+ "rev": "18645f2065a07acce2c6b50a2f9d7a2554e532a3"
+ },
+ "recipe": {
+ "sha256": "0b0cl2xj5w1r71zrjhnqhrzsnz1296jv21qx5adzslra6lk55q2r",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.07",
+ "deps": [
+ "cl-lib",
+ "deferred",
+ "helm"
+ ]
+ },
+ "ttrss": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "pedros",
+ "repo": "ttrss.el",
+ "sha256": "060jksd9aamqx1n4l0bb9v4icsf7cr8jkyw0mbhgyz32nmxh3v6g",
+ "rev": "3b1e34518294a1fa6fa29355fd4e141f3fcaf3b6"
+ },
+ "recipe": {
+ "sha256": "08921cssvwpq33w87v08dafi2rz2rl1b3bhbhijn4bwjqgxi9w7z",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.7.5",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "term-run": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "10sr",
+ "repo": "term-run-el",
+ "sha256": "1lwkm1mnnwhwrnali7ljxw7gvyhrnas200bvfcirngvfjv1q0xzl",
+ "rev": "9b20497bec2537ca6b36a66322a2d99107030679"
+ },
+ "recipe": {
+ "sha256": "1bx3s68rgr9slsw9k01gfg7sxd4z7sarg4pi2ivril7108mhg2cs",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.1.4",
+ "deps": []
+ },
+ "smooth-scrolling": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "aspiers",
+ "repo": "smooth-scrolling",
+ "sha256": "05kf3hb3nb32jzw50a2z9vlf3f0pj40klzxvqj4fxlci777imsvk",
+ "rev": "0d9b228f952c53ad456f98e2c761dda70ed72174"
+ },
+ "recipe": {
+ "sha256": "0zy2xsmr05l2narslfgril36d7qfb55f52qm2ki6fy1r18lfiyc6",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.0.4",
+ "deps": []
+ },
+ "flymake-python-pyflakes": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "purcell",
+ "repo": "flymake-python-pyflakes",
+ "sha256": "0l8qpcbzfi32h3vy7iwydx3hg2w60x9l3v3rabzjx412m5d00gsh",
+ "rev": "78806a25b0f01f03df4210a79a6eaeec59511d7a"
+ },
+ "recipe": {
+ "sha256": "0asbjxv03zkbcjayanv13qzbv4z7b6fi0z1j6yv7fl6q9mgvm497",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.9",
+ "deps": [
+ "flymake-easy"
+ ]
+ },
+ "misc-fns": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/misc-fns.el",
+ "sha256": "1c46iwa6i08wsa0syrm0gxhyndrqlkmqpdj61rss7hbbf1066v86"
+ },
+ "recipe": {
+ "sha256": "1spjbkcac33lyfsgkd6z186a3432x9nw3akmx194gaap2863xcam",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": []
+ },
+ "flycheck-cask": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "flycheck",
+ "repo": "flycheck-cask",
+ "sha256": "1c3igqfd42dm42kfjm2q2xgr673vws10n9jn2jjlsk4g33brc7h4",
+ "rev": "bad0b7bc25fdfc200ec383db852120aa0fcdba4b"
+ },
+ "recipe": {
+ "sha256": "1lq559nyhkpnagncj68h84i3cq85vhdikr534kj018n2zcilsyw7",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.3",
+ "deps": [
+ "dash",
+ "emacs",
+ "flycheck"
+ ]
+ },
+ "el-get": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "dimitri",
+ "repo": "el-get",
+ "sha256": "1awyh9ffd6a4cia239s89asb88ddqlnrv757d76vcb701pq412bz",
+ "rev": "bfffd553f4c72b818e9ee94f05458eae7a16056b"
+ },
+ "recipe": {
+ "sha256": "1438v2sw5n67q404c93y2py226v469nagqwp4w9l6yyy40h4myhz",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "5.1",
+ "deps": []
+ },
+ "markdown-mode+": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "milkypostman",
+ "repo": "markdown-mode-plus",
+ "sha256": "1adl36fj506kgfw40gpagzsd7aypfdvy60141raggd5844i6y96r",
+ "rev": "f35e63284c5caed19b29501730e134018a78e441"
+ },
+ "recipe": {
+ "sha256": "1535kcj9nmcgmk2448jxc0jmnqy7f50cw2ngffjq5w8bfhgf7q00",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.8",
+ "deps": [
+ "markdown-mode"
+ ]
+ },
+ "feature-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "michaelklishin",
+ "repo": "cucumber.el",
+ "sha256": "1cxjygg05v8s96c8z6plk3hl34jaiwg7s7dl7dsk20rj5f54kgw7",
+ "rev": "4bd8f19da816115094beb4b0e085822eb298ac37"
+ },
+ "recipe": {
+ "sha256": "0ryinmpqb3c91qcna6gbijcmqv3skxdc947dlr5s1w623z9nxgqg",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.4",
+ "deps": []
+ },
+ "dired-details+": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/dired-details+.el",
+ "sha256": "119x9mclyhxfp2zr5rmh5jxl2h2wb82phbm8kvlkxa4kcwaiw04y"
+ },
+ "recipe": {
+ "sha256": "1gzr3z4nyzip299z08mignhigxr7drak7rv9z6gmdjrika9a29lx",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": [
+ "dired-details"
+ ]
+ },
+ "mouse3": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/mouse3.el",
+ "sha256": "1jxqvhfjsnjdp0c0zndj7p77vxfscs4z4s7csrd8gi9cli8pmgwi"
+ },
+ "recipe": {
+ "sha256": "1rppn55axjpqwqm2lq4dvwi3z7xkd5jkyqi1x8jqgcsfc9w6m777",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": []
+ },
+ "unkillable-scratch": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "EricCrosson",
+ "repo": "unkillable-scratch",
+ "sha256": "1w2w0gmyr0nbq8kv3ldj30h9xma76gi1khbdia1y30kss677rr8m",
+ "rev": "4451f82eb98f9b159745ca1a79ac60b9d224fd5b"
+ },
+ "recipe": {
+ "sha256": "0ghbpa9pf7k6vd2mjxkpqg2qfl4sd40ir6mrk1rxr1rv8s0afkf7",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.1",
+ "deps": []
+ },
+ "crm-custom": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "DarwinAwardWinner",
+ "repo": "crm-custom",
+ "sha256": "1fhjz2x9jpz53g9j83kznhy2nhfap3jaf6i69k62243kcw31qyz0",
+ "rev": "fbcf8bf3c87f56cb872d840dd79b6727b886e90d"
+ },
+ "recipe": {
+ "sha256": "14w15skxr44p9ilhpswlgdbqfw8jghxi69l37yk4m449m7g9694c",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.4",
+ "deps": []
+ },
+ "ace-link": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "abo-abo",
+ "repo": "ace-link",
+ "sha256": "1v127ld04gn16bgismbcz91kfjk71f3g8yf10r4scfp603y41zgz",
+ "rev": "f88b70fda761c235afe8d3f7735ef14bc82226f5"
+ },
+ "recipe": {
+ "sha256": "1jl805r2s3wa0xyhss1q28rcy6y2fngf0yfcrcd9wf8kamhpajk5",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.3.0",
+ "deps": [
+ "ace-jump-mode"
+ ]
+ },
+ "anaphora": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "rolandwalker",
+ "repo": "anaphora",
+ "sha256": "0fnxxvw81c34zhmiyr5awl92wr5941n4gklvzjc4jphaf2nhkg4w",
+ "rev": "20bf7dcfa502538d23525f0905b4f845d97993d3"
+ },
+ "recipe": {
+ "sha256": "1wb7fb3pc4gxvpjlm6gjbyx0rbhjiwd93qwc4vfw6p865ikl19y2",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.0.0",
+ "deps": []
+ },
+ "wc-mode": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/wc-mode.el",
+ "sha256": "15wz0c0rsn02zl6yr8mpwzy2hvp2146krhdbjpq63l75w4i98w4d"
+ },
+ "recipe": {
+ "sha256": "0n9hc22rp18dxx33l2l1xla78m5zjybgh3mmsp91fbdiq92b446s",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": []
+ },
+ "csv-nav": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/csv-nav.el",
+ "sha256": "15rfg3326xcs3zj3siy9rn7yff101vfch1srskdi2650c3l3krva"
+ },
+ "recipe": {
+ "sha256": "0626vsm2f5zc2wi5pyx4xrwcr4ai8w9a3l7gi9883smvayr619sj",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": []
+ },
+ "grass-mode": {
+ "fetch": {
+ "tag": "fetchhg",
+ "url": "https://bitbucket.com/tws/grass-mode.el",
+ "sha256": "0djv2ps2ahw9b1b5i45hgy7l7cch7cgh7rzq601c0r6vi7gm2ac5",
+ "rev": "aa8cc5eff764"
+ },
+ "recipe": {
+ "sha256": "1lq6bk4bwgcy4ra3d9rlca3fk87ydg7xnnqcqjg0pw4m9xnr3f7v",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.1",
+ "deps": [
+ "cl-lib",
+ "dash"
+ ]
+ },
+ "fish-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "wwwjfy",
+ "repo": "emacs-fish",
+ "sha256": "1vwq0h88yassa0m0cizfvj5b9rrx5cb7w1n5mbczv54q97lq530n",
+ "rev": "ac38e249dc260790ae32a24e101311990d9a84df"
+ },
+ "recipe": {
+ "sha256": "0l6k06bs0qdhj3h8vf5fv8c3rbhiqfwszrpb0v2cgnb6xhwzmq14",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.1.1",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "ercn": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "leathekd",
+ "repo": "ercn",
+ "sha256": "19jninbf0dhdw3kn4d38bxmklg0v7sh3m9dwj6z69w99r5pcw480",
+ "rev": "73b00dadf83b97dd9edd8381a4b27f583c08b7f6"
+ },
+ "recipe": {
+ "sha256": "0yvis02bypw6v1zv7i326y8s6j0id558n0bdri52hr5pw85imnlp",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.1.1",
+ "deps": []
+ },
+ "jump": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "eschulte",
+ "repo": "jump.el",
+ "sha256": "1fm69g4mrmdchvxr062bk7n1jvs2rrscddb02cldb5bgdrcw8g6j",
+ "rev": "fb7355615276f00397b15182076bf472336448a9"
+ },
+ "recipe": {
+ "sha256": "18g0fa9g8m9jscsm6pn7jwdq94l4aj0dfhrv2hqapq1q1x537364",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "2.3",
+ "deps": [
+ "findr",
+ "inflections"
+ ]
+ },
+ "list-packages-ext": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "laynor",
+ "repo": "list-packages-ext",
+ "sha256": "197cqkiwxgamhfwbc8h492cmjll3fypkwzcphj26dfnr22v63kwq",
+ "rev": "344719b313c208c644490f8f1130e21405402f05"
+ },
+ "recipe": {
+ "sha256": "15m4888fm5xv697y7jspghg1ra49fyrny4y2x7h8ivcbslvpglvk",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.1.0",
+ "deps": [
+ "ht",
+ "persistent-soft",
+ "s"
+ ]
+ },
+ "ert-junit": {
+ "fetch": {
+ "tag": "fetchgit",
+ "url": "https://bitbucket.org/olanilsson/ert-junit",
+ "sha256": "63a8fb532260f56569ce20f911788054624a7a29f149ed6036d9f997ae0457c3",
+ "rev": "341c755e7b60f8d2081303951377968b1d1a6c23"
+ },
+ "recipe": {
+ "sha256": "0bv22mhh1ahbjwi6s1csxkh11dmy0srabkddjd33l4havykxlg6g",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.1.1",
+ "deps": [
+ "ert"
+ ]
+ },
+ "clj-refactor": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "clojure-emacs",
+ "repo": "clj-refactor.el",
+ "sha256": "1w0lv2d916wxfakcy11avmn9f6nsmxff02dpyih5kx6ncgqv1bnd",
+ "rev": "a0a35b6fb0a2f31973d5e5b711f0aac0314d7168"
+ },
+ "recipe": {
+ "sha256": "1qvds6dylazvrzz1ji2z2ldw72pa2nxqacb9d04gasmkqc32ipvz",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.1.0",
+ "deps": [
+ "cider",
+ "dash",
+ "edn",
+ "emacs",
+ "multiple-cursors",
+ "paredit",
+ "s",
+ "yasnippet"
+ ]
+ },
+ "org-autolist": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "calvinwyoung",
+ "repo": "org-autolist",
+ "sha256": "0j6fqgzvbmvvdh0dgwsxq004wxys2zwnq9wa3idm087ynp2a2ani",
+ "rev": "da332fadcd9be4c5eb21c5e98c392b89743750b2"
+ },
+ "recipe": {
+ "sha256": "1jvspxhxlvd7h1srk9dbk1v5dykmf8jsjaqicpll7ial6i0qgikj",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.13",
+ "deps": []
+ },
+ "evil-escape": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "syl20bnr",
+ "repo": "evil-escape",
+ "sha256": "0cj17gk7cxia2p9xzqnlnmqqbw2afd3x61gfw9fpf65j9wik5hbz",
+ "rev": "befb07d03c0c06ff5c40eb9cdd436c97fc49f394"
+ },
+ "recipe": {
+ "sha256": "0rlwnnshcvsb5kn7db5qy39s89qmqlllvg2z8cnxyri8bsssks4k",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "3.12",
+ "deps": [
+ "cl-lib",
+ "emacs",
+ "evil"
+ ]
+ },
+ "camcorder": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "Malabarba",
+ "repo": "camcorder.el",
+ "sha256": "0v927m3l5cf0j0rs0nfk5whwqmmxs941d8qalxi19j1ihspjz8d6",
+ "rev": "a2b5e0629ee3c01ead684e148965ac68e533efbd"
+ },
+ "recipe": {
+ "sha256": "1kbnpz3kn8ycpy8nlp8bsnnd1k1h7m02h7w5f7raw97sk4cnpvbi",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.2",
+ "deps": [
+ "cl-lib",
+ "emacs",
+ "names"
+ ]
+ },
+ "make-color": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "alezost",
+ "repo": "make-color.el",
+ "sha256": "0fp5gbin1sgsdz39spk74vadkzig3ydwhpzx9vg7f231kk5f6wzx",
+ "rev": "b19cb40c0619e267f2948ed37aff67b712a6deed"
+ },
+ "recipe": {
+ "sha256": "0mrv8b67lpid5m8rfbhcik76bvnjlw4xmcrd2c2iinyl02y07r5k",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.4",
+ "deps": []
+ },
+ "german-holidays": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "rudolfochrist",
+ "repo": "german-holidays",
+ "sha256": "0344w4sbd6wlgl13j163v0hzjw9nwhvpr5s7658xsdd90wp4i701",
+ "rev": "8388b3bf5b5c38f9b9fcc9216ca26ef0640c6edc"
+ },
+ "recipe": {
+ "sha256": "0fgrxdgyl6va6axjc5l4sp90pyqaz5zha1g73xyhbxblshm5dwxn",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.2.0",
+ "deps": []
+ },
+ "traad": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "abingham",
+ "repo": "traad",
+ "sha256": "1w2haj7grs4h9wiqkcpb28kl7zqlyba4pcgc07n1mvgksvnj729m",
+ "rev": "8852b4dc2b2113a1597301c0b03712b65f50747f"
+ },
+ "recipe": {
+ "sha256": "1ca965pjglbbi56m1s0hl8zxhbkaxa6ms51vvidzldvmzp8n7mw5",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.4",
+ "deps": []
+ },
+ "save-sexp": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "tarsius",
+ "repo": "save-sexp",
+ "sha256": "1gh97rc528cpam3jsncc03cyf4pps71b8blmdikml71lks07lgwb",
+ "rev": "dce78d8630af6b2e29e3ec83b819a3d688d37dfc"
+ },
+ "recipe": {
+ "sha256": "12jx47picdpw668q75qsp9gncrnxnlk1slhzvxsk5pvkdwh26h66",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.2.0",
+ "deps": []
+ },
+ "fringe-helper": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "nschum",
+ "repo": "fringe-helper.el",
+ "sha256": "1c3yx9j3q8fkfiay4nzcabsq9i4ydqf6vxk8vv80h78gg9afrzrj",
+ "rev": "0f10a196c6e57222b8d4c94eafc40a96e7b20f1b"
+ },
+ "recipe": {
+ "sha256": "1vki5jd8jfrlrjcfd12gisgk12y20q3943i2qjgg4qvcj9k28cbv",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.0.1",
+ "deps": []
+ },
+ "bufshow": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "pjones",
+ "repo": "bufshow",
+ "sha256": "0x9q4amsmawi8jqj9xxg81khvb3gyyf9hjvb0w6vhrgjwpxiq8sy",
+ "rev": "d8424e412d63dcc721c64fbd2ddd2420a03b4e8b"
+ },
+ "recipe": {
+ "sha256": "027cd0jzb8yxm66q1bhyi75f2m9f2pq3aswgav1d18na3ybwg65h",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.1.0",
+ "deps": []
+ },
+ "plsql": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/plsql.el",
+ "sha256": "1v0wvy9fd1qq3aq83x5jv3953n0n51x7y2r2ql11j0h8xasy42p1"
+ },
+ "recipe": {
+ "sha256": "1jvppmfdll34b8dav5dvbabfxiapv92p7lciblj59a707bbdb7l1",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": []
+ },
+ "ebal": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "mrkkrp",
+ "repo": "ebal",
+ "sha256": "0nb0p82fx1qp1q9id88wlfqfvfbqqr20541s59snln1pa25s2agm",
+ "rev": "bd8bca3a57d390c22862179db0afca7008831dd7"
+ },
+ "recipe": {
+ "sha256": "1kqnlp5n1aig1qbqdq9q50wgqkzd1l6h9wi1gv43cif8qa1kxhwg",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.1.2",
+ "deps": [
+ "emacs",
+ "f",
+ "ido-completing-read+"
+ ]
+ },
+ "coffee-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "defunkt",
+ "repo": "coffee-mode",
+ "sha256": "1axp9hixp4vgaqjd3ii9xwb32jhb964zclmpg3zpsl4rp8b9bdz5",
+ "rev": "d19075264dc1f662e2282ca42ce70be0eae61b2a"
+ },
+ "recipe": {
+ "sha256": "1px50hs0x30psa5ljndpcc22c0qwcaxslpjf28cfgxinawnp74g1",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.6.2",
+ "deps": [
+ "cl-lib",
+ "emacs"
+ ]
+ },
+ "usage-memo": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/usage-memo.el",
+ "sha256": "00g1zj5fjykdi6gh2wkswpwx132xa6jmwfnrgfg5r96zwb8pib4i"
+ },
+ "recipe": {
+ "sha256": "05n50adjnavl7ag24wfjwlnbv5x55qlhmplgsm8j57gjig01nd95",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": []
+ },
+ "smartparens": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "Fuco1",
+ "repo": "smartparens",
+ "sha256": "1mx4hdbrk6v52y5r47fbd6kgqyk3lvqgq8lw3hkww0pqfwwp4x6h",
+ "rev": "6b9b415b3655ac92631c8c5ca1247eebc68b7110"
+ },
+ "recipe": {
+ "sha256": "025nfrfw0992024i219jzm4phwf29smc5hib45s6h1s67942mqh6",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.6.3",
+ "deps": [
+ "cl-lib",
+ "dash"
+ ]
+ },
+ "grunt": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "gempesaw",
+ "repo": "grunt.el",
+ "sha256": "0zpmhjwj64s72iv3dgsy07pfh20f25ngsy3pszmlrfkxk0926d8k",
+ "rev": "e27dbb6b3de9b36c7fb28f69aa06b4b2ea32d4b9"
+ },
+ "recipe": {
+ "sha256": "1qdzqcrff9x97kyy0d4j636d5i751qja10liw8i0lf4lk6n0lywz",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.3.2",
+ "deps": [
+ "ansi-color",
+ "dash"
+ ]
+ },
+ "buffer-utils": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "rolandwalker",
+ "repo": "buffer-utils",
+ "sha256": "0rp9hiysy13c4in7b420r7yjza2knlmvphj7l01xbxphbilplqk5",
+ "rev": "b4d325543e25518d725a2122b49cd72a0d6a079a"
+ },
+ "recipe": {
+ "sha256": "0cfipdn4fc4fvz513mwiaihvbdi05mza3z5z1379wlljw6r539z2",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.1.0",
+ "deps": []
+ },
+ "elscreen-persist": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "robario",
+ "repo": "elscreen-persist",
+ "sha256": "06g7fl2c7cvwsrgi462wf6j13ny56y6zvgkizz9f256xjjq77ymf",
+ "rev": "652b4c738f92c518ead69343ebfcf66bc2a0254c"
+ },
+ "recipe": {
+ "sha256": "1rjfvpsx0y5l9b76wa1ilj5lx39jd0m78nb1a4bqn81z0rkfpl4k",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.2.0",
+ "deps": [
+ "elscreen",
+ "revive"
+ ]
+ },
+ "pyenv-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "proofit404",
+ "repo": "pyenv-mode",
+ "sha256": "1y3q1k195wp2kgp00a1y34i20zm80wdv2kxigh6gbn2r6qzkqrar",
+ "rev": "b96c15fa1b83cad855e472eda06319ad35e34513"
+ },
+ "recipe": {
+ "sha256": "00yqrk92knv9gq1m9xcg78gavv70jsjlwzkllzxl63iva9qrch59",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.1.0",
+ "deps": [
+ "pythonic"
+ ]
+ },
+ "iplayer": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "csrhodes",
+ "repo": "iplayer-el",
+ "sha256": "043dnij48zdyg081sa7y64lm35z7zvrv8gcymv3l3a98r1yhy3v6",
+ "rev": "48b664e36e1a8e37eeb3eee80b91ff7126ed449a"
+ },
+ "recipe": {
+ "sha256": "0wnxvdlnvlmspqsaqx0ldw8j03qjckkqzvx3cbpc2yfs55pm3p7r",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.1",
+ "deps": []
+ },
+ "ruby-tools": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "rejeep",
+ "repo": "ruby-tools",
+ "sha256": "1zvhq9l717rjgkm7bxz5gqkmh5i49cshwzlimb3h78kpjw3hxl2k",
+ "rev": "6e7fb376085bfa7010ecd3dfad63adacc6e2b4ac"
+ },
+ "recipe": {
+ "sha256": "1zs2vzcrw11xyj2a7lgqzw4slcha20206jvjbxkm68d57rffpk8y",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.1.2",
+ "deps": []
+ },
+ "multi-term": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/multi-term.el",
+ "sha256": "062c52xd469jdmsq4fvdhsmgfjrlanv0bb1w5vglz7bsn68d2bim"
+ },
+ "recipe": {
+ "sha256": "1va4ihngwv5qvwps3m9jj0150gbrmq3zllnyq1hbx5ap8hjrhvdx",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": []
+ },
+ "hardcore-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "magnars",
+ "repo": "hardcore-mode.el",
+ "sha256": "08l6p9n2ggg4filad1k663qc2gjgfbia4knnnif4sw7h92yb31jl",
+ "rev": "5ab75594a7a0ca236e2ac87882ee439ff6155d96"
+ },
+ "recipe": {
+ "sha256": "1bgi1acpw4z7i03d0i8mrd2hpjn6hyvkdsk0ks9q380yp9mqmiwd",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.1.0",
+ "deps": []
+ },
+ "e2wm-R": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "myuhe",
+ "repo": "e2wm-R.el",
+ "sha256": "1yf081rac0chvkjha9z9xi1p983gmhjph0hai6ppsz5hzf2vikpp",
+ "rev": "fe17906bf48324032a1beaec9af32b9b49ea9125"
+ },
+ "recipe": {
+ "sha256": "09v4fz178lch4d6m801ipclfxm2qrap5601aysnzyvc2apvyr3sh",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.4",
+ "deps": [
+ "e2wm"
+ ]
+ },
+ "fold-this": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "magnars",
+ "repo": "fold-this.el",
+ "sha256": "1cbabpyp66nl5j8yhyj2jih4mhaljxvjh9ij05clai71z4598ahn",
+ "rev": "90b41d7b588ab1c3295bf69f7dd87bf31b543a6a"
+ },
+ "recipe": {
+ "sha256": "1iri4a6ixw3q7qr803cj2ik7rvmww1b6ybj5q2pvkf1v25r8655d",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.3.0",
+ "deps": []
+ },
+ "mowedline": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "retroj",
+ "repo": "mowedline",
+ "sha256": "1mg7arw4wbbm84frq3sws5937fh901qn0xnjk9jcp3pvc4d0sxwd",
+ "rev": "c299991ace6f55e9edbf26c1d53b054873899101"
+ },
+ "recipe": {
+ "sha256": "0c2hvvwa7s5iyz517jaskshdcq9zs15zr6xsvrcb3biahrh4bmfb",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.2.8",
+ "deps": []
+ },
+ "keychain-environment": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "tarsius",
+ "repo": "keychain-environment",
+ "sha256": "07h6s1wdc83cqf08vqm4gh2r7bihbar4a31wr0140fn4rbhicwdw",
+ "rev": "40eba65a3d5581473d6a30f3a7abf73e5832b8c8"
+ },
+ "recipe": {
+ "sha256": "1w77cg00bwx68h0d6k6r1fzwdwz97q12ch2hmpzjnblqs0i4sv8v",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "2.2.0",
+ "deps": []
+ },
+ "parent-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "Fanael",
+ "repo": "parent-mode",
+ "sha256": "0i5bc7lyyrx6swqlrp9l5x72yzwi53qn6ldrfs99gh08b3yvsnni",
+ "rev": "db692cf08deff2f0e973e6e86e26662b44813d1b"
+ },
+ "recipe": {
+ "sha256": "1ndn6m6aasmk9yrml9xqj8141100nw7qi1bhnlsss3v8b6njwwig",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "2.3",
+ "deps": []
+ },
+ "git-gutter": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "syohex",
+ "repo": "emacs-git-gutter",
+ "sha256": "1721h4i185wj9nxkb19cnbwk5fwsajaqr54qq9xb669mm4pjn3ra",
+ "rev": "febe69d909beb407d07dfc1b273ae7b7719fdd7c"
+ },
+ "recipe": {
+ "sha256": "12yjl9hsd72dwzl42hdcmjfdbxyi356jcq0kz8k7jvcsn57z4p2k",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.85",
+ "deps": [
+ "cl-lib",
+ "emacs"
+ ]
+ },
+ "highlight-cl": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/highlight-cl.el",
+ "sha256": "0r3kzs2fsi3kl5gqmsv75dc7lgfl4imrrqhg09ij6kq1ri8gjxjw"
+ },
+ "recipe": {
+ "sha256": "164h3c3rzriahb7v5hk2pw4i0gk2vk5ak722bai6x4zx4l1xp20w",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": []
+ },
+ "stylus-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "brianc",
+ "repo": "jade-mode",
+ "sha256": "0krbd1qa2408a97pqhl7fv0x8x1n2l3qq33zzj4w4vv0c55jk43n",
+ "rev": "4e7a20db492719062f40b225ed730ed50be5db56"
+ },
+ "recipe": {
+ "sha256": "152k74q6qn2xa38v2zyd5y7ya5n26nvai5v7z5fmq7jrcndp27r5",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.0.0",
+ "deps": [
+ "sws-mode"
+ ]
+ },
+ "peg": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "ellerh",
+ "repo": "peg.el",
+ "sha256": "0kjz7ch4bn0m4v9zgqyqcrsasnqc5c5drv2hp22j7rnbb7ny0q3n",
+ "rev": "081efeca91d790c7fbc90871ac22c40935f4833b"
+ },
+ "recipe": {
+ "sha256": "0nxy9xn99myz0p36m4jflfj48qxhhn1sspbfx8d90030xg3cc2gm",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.6",
+ "deps": []
+ },
+ "cask": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "cask",
+ "repo": "cask",
+ "sha256": "1hvm6r6a8rgjwnn2mcamwqrmhz424vlr4mbvbri3wmn0ikbk510l",
+ "rev": "8337237449446e186ccd5ade0b0dc8c6ea7bd728"
+ },
+ "recipe": {
+ "sha256": "11nr6my3vlb1xiyai7qwii3nszda2mnkhkjlbh3d0699h0yw7dk5",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.7.4",
+ "deps": [
+ "cl-lib",
+ "dash",
+ "epl",
+ "f",
+ "package-build",
+ "s",
+ "shut-up"
+ ]
+ },
+ "ace-jump-helm-line": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "cute-jumper",
+ "repo": "ace-jump-helm-line",
+ "sha256": "0rrdh7jq23dyplq5rsf6f3a8v5f8smrzi85dgvqagasv74d19jbv",
+ "rev": "8259c2bd34486c3929c3425f3354d70cdb478c69"
+ },
+ "recipe": {
+ "sha256": "04q8wh6jskvbiq6y2xsp2ir23vgz5zw09rm127sgiqrmn0jc61b9",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.3.3",
+ "deps": [
+ "avy",
+ "helm"
+ ]
+ },
+ "puml-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "skuro",
+ "repo": "puml-mode",
+ "sha256": "15c2p5ffvkp80v6fvxa3bgrk8mj18famngqkz2dammxnbppvnvvz",
+ "rev": "9d3b5e326d1e68f87711c2ccb0920e2f5db5550b"
+ },
+ "recipe": {
+ "sha256": "131ghjq6lsbhbx5hdg36swnkqijdb9bx6zg73hg0nw8qk0z742vn",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.6.4",
+ "deps": []
+ },
+ "ac-html-csswatcher": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "osv",
+ "repo": "ac-html-csswatcher",
+ "sha256": "0p18wxyyc1jmcwx9y5i77s25v4jszv7cmm4bkwm4dzhkxd33kh1f",
+ "rev": "dadc3c595cf1708291096c03987f1981f3cabc6b"
+ },
+ "recipe": {
+ "sha256": "0jb9dnm2lxadrxssf0rjqw8yvvskcq4hys8c21shjyj3gkvwbfqn",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.1.7",
+ "deps": [
+ "web-completion-data"
+ ]
+ },
+ "viewer": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/viewer.el",
+ "sha256": "0lns0ic3zjz1km02674d9hxgnp6wlhk168wyr6h4vhpr8a71x9mb"
+ },
+ "recipe": {
+ "sha256": "0aqwkymq5f0qfgs1hmcg1jb1rd0vcnlqwiyjrjjkfff2xlbpagqf",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": []
+ },
+ "gmail2bbdb": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "redguardtoo",
+ "repo": "gmail2bbdb",
+ "sha256": "0p6n52m3y56nx7chwvmnslrnwc0xmh4fmmlkbkfz9n58hlmw8x1x",
+ "rev": "2043fb8ee90c119b13bc8caf85fdf0a05f494b98"
+ },
+ "recipe": {
+ "sha256": "03jhrk4vpjim3ybzjxy7s9r1cgjysj9vlc4criz5k0w7vqz3r28j",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.0.4",
+ "deps": []
+ },
+ "flymake-easy": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "purcell",
+ "repo": "flymake-easy",
+ "sha256": "1j35k52na02b59yglfb48w6m5qzydvzqfsylb8ax5ks0f287yf0c",
+ "rev": "2a24f260cdc3b9c8f9263b653a475d90efa1d392"
+ },
+ "recipe": {
+ "sha256": "19p6s9fllgvs35v167xf624k5dn16l9fnvaqcj9ks162gl9vymn7",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.10",
+ "deps": []
+ },
+ "org-repo-todo": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "waymondo",
+ "repo": "org-repo-todo",
+ "sha256": "03c88jzwvl95dl39703mknkvnk3cmw4gss5c1y2k9py2rgh6bpr9",
+ "rev": "904a26089d87db59a40421d6f857b189e70dfbe3"
+ },
+ "recipe": {
+ "sha256": "0l5ns1hs3i4dhrpmvzl34zc9zysgjkfa7j8apbda59n9jdvml5v1",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.0.2",
+ "deps": []
+ },
+ "anything": {
+ "fetch": {
+ "tag": "fetchgit",
+ "url": "http://repo.or.cz/r/anything-config.git",
+ "sha256": "86b90766ccb31a492998299092a3d0b892a8ac0bdb8e1833ef75fa6d79c7c721",
+ "rev": "6b9718fba257e6c2912ba70f9895251ab1926928"
+ },
+ "recipe": {
+ "sha256": "13pmks0bsby57v3vp6jcvvzwb771d4qq62djgvrw4ykxqzkcb8fj",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.3.9",
+ "deps": []
+ },
+ "robe": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "dgutov",
+ "repo": "robe",
+ "sha256": "1fckb18x9ikm6dlwwdfg9q4wyjjwdqy3r1w2ic01xb0dbyls41gw",
+ "rev": "c5a0ae6f68c699ec3cdbb73a3e01e76f62d75f48"
+ },
+ "recipe": {
+ "sha256": "19py2lwi7maya90kh1mgwqb16j72f7gm05dwla6xrzq1aks18wrk",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.7.8",
+ "deps": [
+ "inf-ruby"
+ ]
+ },
+ "git-auto-commit-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "ryuslash",
+ "repo": "git-auto-commit-mode",
+ "sha256": "0psmr7749nzxln4b500sl3vrf24x3qijp12ir0i5z4x25k72hrlh",
+ "rev": "075e5f9ded66c2035581a7b216896556cc586814"
+ },
+ "recipe": {
+ "sha256": "0nf4n63xnzcsizjk1yl8qvqj9wjdqy57kvn6r736xvsxwzd44xgl",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "4.4.0",
+ "deps": []
+ },
+ "company-go": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "nsf",
+ "repo": "gocode",
+ "sha256": "03snnra31b5j6iy94gql240vhkynbjql9b4b5j8bsqp9inmbsia3",
+ "rev": "eef10fdde96a12528a6da32f51bf638b2863a3b1"
+ },
+ "recipe": {
+ "sha256": "0padz12mb6zv3jlprvnj9s5vyp2hx68cqb5v3z974zfg5ws9sy4c",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150303",
+ "deps": [
+ "company"
+ ]
+ },
+ "google-translate": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "atykhonov",
+ "repo": "google-translate",
+ "sha256": "0j2x7xvc556bq63c85j4dn8aggz2xfilx4x7hf99p7w6px0pzp29",
+ "rev": "e3f3981895d829a05f6f92d4db065c4b46076ff7"
+ },
+ "recipe": {
+ "sha256": "1crgzdd32mk6hrawdypg496dwh51wzwfb5wqw4a2j5l8y958xf47",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.11.2",
+ "deps": []
+ },
+ "batch-mode": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/batch-mode.el",
+ "sha256": "1aa611jrzw4svmxvw1ghgh53x4nry0sl7mxmp4kxiaybqqvz6a1p"
+ },
+ "recipe": {
+ "sha256": "1p0rh5r8w00jag64sbjy8xb9g6lqhm2fz476v201kbrj9ggp643x",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": []
+ },
+ "puppet-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "lunaryorn",
+ "repo": "puppet-mode",
+ "sha256": "0xr3s56p6fbm6wgw17galsl3kqvv8c7l1l1qvbhbay39yzs4ff14",
+ "rev": "d943149691abd7b66c85d58aee9657bfcf822c02"
+ },
+ "recipe": {
+ "sha256": "1s2hap6fs6rg5q80dmzhaf4qqaf5sglhs8p896i3i5hq51w0ciyc",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.3",
+ "deps": [
+ "cl-lib",
+ "emacs",
+ "pkg-info"
+ ]
+ },
+ "live-code-talks": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "david-christiansen",
+ "repo": "live-code-talks",
+ "sha256": "1cwydbhhbs5v9y2s872zxc5lflqmfrdvnc8xz0qars52d7lg4br5",
+ "rev": "3a2ecdb49b2651d87999d4cad56ba8f1004c7a99"
+ },
+ "recipe": {
+ "sha256": "173mjmxanva13vk2f3a06s4dy62x271kynsa7pbhdg4fd72hdjma",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.2.1",
+ "deps": [
+ "cl-lib",
+ "emacs",
+ "narrowed-page-navigation"
+ ]
+ },
+ "unicode-fonts": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "rolandwalker",
+ "repo": "unicode-fonts",
+ "sha256": "0fbwncna6gxlynq9196djpkjhayzk8kxlsxg0gasdgqx1nyxl0mk",
+ "rev": "a36597d83e0248bd0e6b2c1d5fb95bff72add527"
+ },
+ "recipe": {
+ "sha256": "0plipwb30qqay8691qzqdyg6smpbs9dsxxi49psb8sq0xnxl84q3",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.4.8",
+ "deps": [
+ "font-utils",
+ "list-utils",
+ "pcache",
+ "persistent-soft",
+ "ucs-utils"
+ ]
+ },
+ "eww-lnum": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "m00natic",
+ "repo": "eww-lnum",
+ "sha256": "0gs6bi3s2sszc6v2b26929azmn5513kvyin99n4d0ark1jdbjmv2",
+ "rev": "daef49974446ed4c1001e0549c3f74679bca6bd3"
+ },
+ "recipe": {
+ "sha256": "1y745z4wa90snizq2g0amdwwgjafd6hkrayn93ca50f1wghdbk79",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.1",
+ "deps": []
+ },
+ "mbe": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "ijp",
+ "repo": "mbe.el",
+ "sha256": "00gwd2jf5ncgyay5w2jc2mhv18jf4ydnzpfkxaxw9zjbdxg4ym2i",
+ "rev": "b022030d6e26198bb8a93a5b0bfe7aa891cd59ec"
+ },
+ "recipe": {
+ "sha256": "0h18mbcjy8nh4gl12kg2v8x6ps320yk7sbgq5alqnx2shp80kri3",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.1",
+ "deps": [
+ "cl-lib",
+ "emacs"
+ ]
+ },
+ "relative-line-numbers": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "Fanael",
+ "repo": "relative-line-numbers",
+ "sha256": "1r8fhs7d2vkrbv15ic2bm79i9a8swbc38vk566vnxkhl3rfd5a0a",
+ "rev": "64157db08b0c2f5fada3209fc8d3e4b4c7429978"
+ },
+ "recipe": {
+ "sha256": "0mj1w5a4ax8hwz41vn02bacxlnifd14hvf3p288ljvwchvlf0hn3",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.3.2",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "ob-sml": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "swannodette",
+ "repo": "ob-sml",
+ "sha256": "0h3flg8plrjxlv57c8nknggj349l4xqfrbwzxa9yx46v2zxggn5b",
+ "rev": "09b503201be6e06a5ed8d6b52345dc886c202028"
+ },
+ "recipe": {
+ "sha256": "04qvzhwjr8ipvq3znnhn0wbl4pbb1rwxi90iidavzk3phbkpaskn",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.02",
+ "deps": [
+ "sml-mode"
+ ]
+ },
+ "mu4e-alert": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "iqbalansari",
+ "repo": "mu4e-alert",
+ "sha256": "0wrg6f7czn61f9wmrk27dzcdskznm5i1pwwjck5h768j0y9dfv6a",
+ "rev": "83e6232b43902c7124fea16145de0da881bfe865"
+ },
+ "recipe": {
+ "sha256": "15nwj09iyrvjsc9lrxla6qa0s8izcllxghw5gx3ffncfcrx2l8qm",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.3",
+ "deps": [
+ "alert",
+ "emacs",
+ "s"
+ ]
+ },
+ "ham-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "Malabarba",
+ "repo": "ham-mode",
+ "sha256": "0d3xmagl18pas19zbpg27j0lmdiry23df48z4vkjsrcllqg25v5g",
+ "rev": "3a141986a21c2aa6eefb428983352abb8b7907d2"
+ },
+ "recipe": {
+ "sha256": "000qrdby7d6zmp5066vs4gjlc9ik0ybrgcwzcbfgxb16w1g9xpmz",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.1.2",
+ "deps": [
+ "html-to-markdown",
+ "markdown-mode"
+ ]
+ },
+ "modeline-posn": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/modeline-posn.el",
+ "sha256": "1c0pkk4jnpqs3r46yjh9srwy3ql6pkjv55m85w49kxvcflmipl9i"
+ },
+ "recipe": {
+ "sha256": "0dngfcbcdh22fl6nd47dhg9z9iivj67six67zjr9j1cbngp10dwk",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": []
+ },
+ "e2wm-direx": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "aki2o",
+ "repo": "e2wm-direx",
+ "sha256": "09i7d2rc9zd4s3nqrhd3ggs1ykdpxf0pyhxixxw2xy0q6nbswjia",
+ "rev": "f319625b56c44e601af7c17fc6dbb88e5d70ebae"
+ },
+ "recipe": {
+ "sha256": "0nv8aciq0swxi9ahwc2pvk9c7i3rmlp7vrzqcan58ml0i3nm17wg",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.0.5",
+ "deps": [
+ "direx",
+ "e2wm"
+ ]
+ },
+ "macros+": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/macros+.el",
+ "sha256": "1nf8hgaig26plb7dbn81gw7q4dmnr5gh90lcm82aml8h8z5ab78q"
+ },
+ "recipe": {
+ "sha256": "0aihszxsjnc93pbbkmkr1iwzvii3jw8yh1f6dpnjykgvb328pvqi",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": []
+ },
+ "ruby-electric": {
+ "fetch": {
+ "tag": "fetchsvn",
+ "url": "http://svn.ruby-lang.org/repos/ruby/trunk/misc/",
+ "sha256": "0gl8wcnm7pidvd8zy3w5lzxqj0qxs9d932350ncgnmxwfsfzkdk7",
+ "rev": "53195"
+ },
+ "recipe": {
+ "sha256": "04j04dsknzb7xc8v6alawgcbymdfmh27xnpr98yc8b05nzafw056",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": []
+ },
+ "multi-web-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "fgallina",
+ "repo": "multi-web-mode",
+ "sha256": "1d9y3dw27pgzgv6wk575d5ign55xdqgbl3ycyq1z7sji1477lz6b",
+ "rev": "0517b9e2b3052533ac0cb71eba7073ed309fce06"
+ },
+ "recipe": {
+ "sha256": "0vi4yvahr10aqpcz4127c8pcqpr5srwc1yhgipnbnm86qnh34ql5",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.2.1",
+ "deps": []
+ },
+ "ctags": {
+ "fetch": {
+ "tag": "fetchhg",
+ "url": "https://bitbucket.com/semente/ctags.el",
+ "sha256": "1xgrb4ivgz7gmingfafmclqqflxdvkarmfkqqv1zjk6yrjhlcvwf",
+ "rev": "afb16c5b2530"
+ },
+ "recipe": {
+ "sha256": "11fp8l99rj4fmi0vd3hkffgpfhk1l82ggglzb74jr3qfzv3dcn6y",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.1.1",
+ "deps": []
+ },
+ "history": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "boyw165",
+ "repo": "history",
+ "sha256": "0dy98sg92xvnr4algm2v2bnjcdwzv0b0vqk0312b0ziinkzisas1",
+ "rev": "adef53ecc2f6067bb61f020a2b66c5185a51632d"
+ },
+ "recipe": {
+ "sha256": "0s8pcz53bk1w4h5847204vb6j838vr8za66ni1b2y4pas76zjr5g",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.0.0",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "auto-dictionary": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "nschum",
+ "repo": "auto-dictionary-mode",
+ "sha256": "191294k92qp8gmfypf0q8j8qrym96aqikzvyb9p03wqvbr3r1dsk",
+ "rev": "0e3567a81f7bb0ad53ed9f20c7d3d1ac40c26ad1"
+ },
+ "recipe": {
+ "sha256": "1va485a8lxvb3507kr83cr6wpssxnf8y4l42mamn9daa8sjx3q16",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.1",
+ "deps": []
+ },
+ "project-persist": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "rdallasgray",
+ "repo": "project-persist",
+ "sha256": "1x7hwda1w59b8hvzxyk996wdz6phs6rchh3f1ydf0ab6x7m7xvjr",
+ "rev": "a4e5de1833edb60656d8a04357c527d34e81d27c"
+ },
+ "recipe": {
+ "sha256": "0csjwj0qaw0hz2qrj8kxgxlixh2hi3aqib98vm19sr3f1b8qab24",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.3.2",
+ "deps": []
+ },
+ "popup": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "auto-complete",
+ "repo": "popup-el",
+ "sha256": "1y538siabcf1n00wr4iz5gbxfndw661kx2mn9w1g4lg7yi4n0h0h",
+ "rev": "46632ab9652dacad56fd961cd6def25a015170ae"
+ },
+ "recipe": {
+ "sha256": "151g00h9rkid76qf6c53n8bncsfaikmhj8fqcb3r3a6mbngcd5k2",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.5.3",
+ "deps": [
+ "cl-lib"
+ ]
+ },
+ "evil-commentary": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "linktohack",
+ "repo": "evil-commentary",
+ "sha256": "1qiym8f56a18j5swrxx5is48nz7z76531k8cw2c7czr6611l8l5a",
+ "rev": "122880a6721fcf16479f406c78c6e490a25efab0"
+ },
+ "recipe": {
+ "sha256": "151iiimmkpn58pl9zn40qssfahbrqy83axyl9dcd6kx2ywv5gcxz",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.2.1",
+ "deps": [
+ "evil"
+ ]
+ },
+ "shut-up": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "cask",
+ "repo": "shut-up",
+ "sha256": "103yvfgkj78i4bnv1fwk76izsa8h4wyj3vwj1vq7xggj607hkxzq",
+ "rev": "dccd8f7d6af2dde96718f557b37bc25adc61dd12"
+ },
+ "recipe": {
+ "sha256": "1bcqrnnafnimfcg1s7vrgq4cb4rxi5sgpd92jj7xywvkalr3kh26",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.3.2",
+ "deps": [
+ "cl-lib",
+ "emacs"
+ ]
+ },
+ "orglink": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "tarsius",
+ "repo": "orglink",
+ "sha256": "00vhzblzscp3mkl6x1nz116i4isjwcc5gkpdksym3mr5nqvqhd97",
+ "rev": "4f3750227b9279f248bc8ee5724d3c27ea97e2e1"
+ },
+ "recipe": {
+ "sha256": "0ldrvvqs3hlazj0dch162gsbnbxcg6fgrxid8p7w9gj19vbcl52b",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.2.3",
+ "deps": [
+ "dash",
+ "org"
+ ]
+ },
+ "flymake-shell": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "purcell",
+ "repo": "flymake-shell",
+ "sha256": "0c2lz1p91yhprmlbmp0756d96yiy0w92zf0c9vlp0i9abvd0cvkc",
+ "rev": "ec097bd77db5523a04ceb15a128e01689d36fb90"
+ },
+ "recipe": {
+ "sha256": "13ff4r0k29yqgx8ybxz7hh50cjsadcjb7pd0075s9xcrzia5x63i",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.8",
+ "deps": [
+ "flymake-easy"
+ ]
+ },
+ "rdf-prefix": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "simenheg",
+ "repo": "rdf-prefix",
+ "sha256": "0r95fzi0x8r18x7r574mp503qaiqyicrq78zlggyz6qihi95pmqj",
+ "rev": "1ab1464172c7563a7dbf1224572e4ffbfc6608e6"
+ },
+ "recipe": {
+ "sha256": "1vxgn5f2kws17ndfdv1vj5p9ks3rp6sikzpc258j07bhsfpjz5qm",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.3",
+ "deps": []
+ },
+ "bs-ext": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/bs-ext.el",
+ "sha256": "1yslzlx54n17330sf6b2pynz01y6ifnkhipz4hggn1i55bz8hvrw"
+ },
+ "recipe": {
+ "sha256": "0dddligqr71qdakgfkx0r45k9py85qlym7y5f204bxppyw5jmwb6",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": []
+ },
+ "helm-migemo": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "emacs-jp",
+ "repo": "helm-migemo",
+ "sha256": "03588hanfa20pjp9w1bqy8wsf5x6az0vfq0bmcnr4xvlf6fhkyxs",
+ "rev": "2d964309a5415cf47f5154271e6fe7b6a7fffec7"
+ },
+ "recipe": {
+ "sha256": "1cjvb1lm1fsg5ky63fvrphwl5a7r7xf6qzb4mvl06ikj8hv2h33x",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.22",
+ "deps": [
+ "cl-lib",
+ "helm-core",
+ "migemo"
+ ]
+ },
+ "gather": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "mhayashi1120",
+ "repo": "Emacs-gather",
+ "sha256": "1q9bz294bc6bplwfrfzsczh444v9152wv7zm2l1pcpwv8n8581p6",
+ "rev": "303af57dd2ae0fc1363a3d1a84d475167f58c84a"
+ },
+ "recipe": {
+ "sha256": "1f0cqqp1a7w8g1pfvzxxb0hjrxq4m79a4n85dncqj2xhjxrkm0xk",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.1.0",
+ "deps": []
+ },
+ "test-simple": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "rocky",
+ "repo": "emacs-test-simple",
+ "sha256": "08g7fan1y3wi4w7cdij14awadqss6prqg3k7qzf0wrnbm13dzhmk",
+ "rev": "75eea25bae04d8e5e3e835a2770f02f0ff4602c4"
+ },
+ "recipe": {
+ "sha256": "1l6y77fqd0l0mh2my23psi66v5ya6pbr2hgvcbsaqjnpmfm90w3g",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.0",
+ "deps": []
+ },
+ "projectile-rails": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "asok",
+ "repo": "projectile-rails",
+ "sha256": "03z9zsldzj0nwksw3bj4j58p7n14n6cqv917pwn1sb67l0wziqg2",
+ "rev": "dee51e39003489ece8077750d3cf93dee6b373fa"
+ },
+ "recipe": {
+ "sha256": "0fgvignqdqh0ma91z9385782l89mvwfn77rp1gmy8cbkwi3b7fkq",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.6.7",
+ "deps": [
+ "emacs",
+ "f",
+ "inf-ruby",
+ "inflections",
+ "projectile",
+ "rake"
+ ]
+ },
+ "tabulated-list": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "sigma",
+ "repo": "tabulated-list.el",
+ "sha256": "0861shx0yicl3cyik6bsjlc0bm8q4h2krxmsrw7irmnwj4ng8g7g",
+ "rev": "b547d9b728935102d1c418bc0e978c221c37f6ab"
+ },
+ "recipe": {
+ "sha256": "1gp523w11f0aa8mbrb8z6ykqmy6ihvnfs00ff906gdmjx5kk16sr",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0",
+ "deps": []
+ },
+ "hippie-expand-slime": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "purcell",
+ "repo": "hippie-expand-slime",
+ "sha256": "0mzk4agkcaaw7gryi0wrxv0blqndqsjf1ivdvr2nrnqi798sdhbr",
+ "rev": "de31fbc9f9d55891a006463bcee7670b47084015"
+ },
+ "recipe": {
+ "sha256": "0kxyv1lpkg33qgfv1jfqx03640py7525bcnc9dk98w6y6y92zf4m",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.1",
+ "deps": []
+ },
+ "httpcode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "rspivak",
+ "repo": "httpcode.el",
+ "sha256": "1h9n388fi17nbyfciqywgrq3n165kpiildbimx59qyk2ac3v7rqk",
+ "rev": "2c8eb3b5455254ba70fb71f7178886bfc2d3af90"
+ },
+ "recipe": {
+ "sha256": "05k1al1j119x6zf03p7jn2r9qql33859583nbf85k41bhicknpgh",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.1",
+ "deps": []
+ },
+ "keyset": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "HKey",
+ "repo": "keyset",
+ "sha256": "0z6sgz8nywsd00zaayafwy5hfi7kzxfifjkfr5cn1l7wlypyksfv",
+ "rev": "25658ef79d26971ce41d9df207dff58d38daa091"
+ },
+ "recipe": {
+ "sha256": "1kfw0pfb6qm2ji1v0kb8xgz8q2yd2k9kxmaz5vxcdixdlax3xiqg",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.1.2",
+ "deps": [
+ "cl-lib",
+ "dash"
+ ]
+ },
+ "editorconfig-fnmatch": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "editorconfig",
+ "repo": "editorconfig-emacs",
+ "sha256": "1z073j9bf31izj05k0vgpv6iwhx0k4m7ikdxgj4sd99svsv84nv9",
+ "rev": "3d1e4797ea3f5a1bb6d0ec296f04ce05e6e368b4"
+ },
+ "recipe": {
+ "sha256": "0ji243vrw527jc3alsgmqi9rdnslxyq48zzx33rbpkqcjssm11iv",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.6.1",
+ "deps": [
+ "cl-lib"
+ ]
+ },
+ "smart-compile": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/smart-compile.el",
+ "sha256": "0sm4nxynwhwypzw008fz56axai9lrphjczwzfdy7da3akan18rbd"
+ },
+ "recipe": {
+ "sha256": "0vgxqyzl7jw2j96rmjw75b5lmjwrvzajrdvfyabss4xmv96dy2r3",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": []
+ },
+ "git-gutter-fringe+": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "nonsequitur",
+ "repo": "git-gutter-fringe-plus",
+ "sha256": "1c7ijbpa7xw831k55cdm2gl8r597rxnp22jcmqnfpwqkqmk48ln9",
+ "rev": "ce9d594c0189e78d78df26a0c26bbcf886e373cd"
+ },
+ "recipe": {
+ "sha256": "1zkjb8p08cq2nqskn79rjszlhp9mrblplgamgi66yskz8qb1bgcc",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.01",
+ "deps": [
+ "fringe-helper",
+ "git-gutter+"
+ ]
+ },
+ "milkode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "ongaeshi",
+ "repo": "emacs-milkode",
+ "sha256": "1qg64mxsm2cswk52mlj7sx7k6gfnrsdwnf68i7cachri0i8aq4ap",
+ "rev": "ba97e2aeefa1d9d0b3835bf08edd0de248b0c513"
+ },
+ "recipe": {
+ "sha256": "07v6xgalx7vcw5sghckwvz584746cba05ql8flv8n556glm7hibh",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.4",
+ "deps": []
+ },
+ "palette": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/palette.el",
+ "sha256": "13k1l2cs45fiwd0zayjfzxxrx1pqds3mkxrflmxy8y0piwx6mr1w"
+ },
+ "recipe": {
+ "sha256": "1v6dsph18rqfbvda2c25mqgdwap2a4zrg6qqq57n205zprpcwxc0",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": [
+ "hexrgb"
+ ]
+ },
+ "egg": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "byplayer",
+ "repo": "egg",
+ "sha256": "1ryb7smvf66hk307yazkjn9bqzbwzbyyb5db200fq6j2zdjwsmaj",
+ "rev": "499894195528203cfcf309228bf7578dd8cd5698"
+ },
+ "recipe": {
+ "sha256": "144g1fvs2cmn3px0a98nvxl5cz70kx30v936k5ppyi8gvbj0md5i",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.0.9",
+ "deps": []
+ },
+ "aok": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/aok.el",
+ "sha256": "10vdmxzifxx3fkpyg76ngnj79k3d2pq0f322rd8ssc66alxhkz3g"
+ },
+ "recipe": {
+ "sha256": "1nkkbfwqp5r44wjwl902gm0xc8p3d2qj5mk1cchilr2rib52zd46",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": []
+ },
+ "tern": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "marijnh",
+ "repo": "tern",
+ "sha256": "14s9740f0kgvgwz17y01f6lg9nv2jmzjilljdli064izsw474i0a",
+ "rev": "d4803588928d22cb18044b2e20fedd97e2d348ee"
+ },
+ "recipe": {
+ "sha256": "06bgwizn9dcd8hsvimjvb28j0mpxg7rrv9knhv5kkdapa6gggxif",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.16.0",
+ "deps": [
+ "cl-lib",
+ "emacs",
+ "json"
+ ]
+ },
+ "helm-swoop": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "ShingoFukuyama",
+ "repo": "helm-swoop",
+ "sha256": "1lkjrz9ma2bxr8vskdm3sgrmsyiic798q3271dw38d453bhv4bl1",
+ "rev": "d834b05538dd3381c68f1260d39d3a7eb6a8f7f7"
+ },
+ "recipe": {
+ "sha256": "1fqbhj75hcmy7c2vdd0m7fk3m34njmv5s6k1i9y94djpbd13i3d8",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.5.1",
+ "deps": [
+ "emacs",
+ "helm"
+ ]
+ },
+ "skeletor": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "chrisbarrett",
+ "repo": "skeletor.el",
+ "sha256": "1f2yrm7kac98gfwbzlszcimnmp9cjv4k0aj8yidh7r0jn1xv45f8",
+ "rev": "253b89e199d0251e3eeb6b268fe60a3337fdf5bb"
+ },
+ "recipe": {
+ "sha256": "1vfvg5l12dzksr24dxwc6ngawsqzpxjs97drw48qav9dy1vyl10v",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.5.2",
+ "deps": [
+ "cl-lib",
+ "dash",
+ "emacs",
+ "f",
+ "let-alist",
+ "s"
+ ]
+ },
+ "counsel": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "abo-abo",
+ "repo": "swiper",
+ "sha256": "1kahl3h18vsjkbqvd84fb2w45s4srsiydn6jiv49vvg1yaxzxcbm",
+ "rev": "706349fcfae297ee285552af9246bc0cf00d9b7f"
+ },
+ "recipe": {
+ "sha256": "0y8cb2q4mqvzan5n8ws5pjpm7bkjcghg5q19mzc3gqrq9vrvyzi6",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.7.0",
+ "deps": [
+ "emacs",
+ "swiper"
+ ]
+ },
+ "visual-fill-column": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "joostkremers",
+ "repo": "visual-fill-column",
+ "sha256": "100w8rxdqln4xiwi0df15pvyaiyhjlwcjdh8nb0j95qpwji41vmf",
+ "rev": "261e27c062fbfd59ab20c9a084c35b99bcec598d"
+ },
+ "recipe": {
+ "sha256": "19y0pwaybjal2rc7migdbnafpi4dfbxvrzgfqr8dlvd9q68v08y5",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.5",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "android-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "remvee",
+ "repo": "android-mode",
+ "sha256": "0gjynmzqlqz0d57fb4np6xrklqdn11y4vjbm18rlpvmk92bgw740",
+ "rev": "146476c5ae958715520bec2b7f8de6b30c48c19f"
+ },
+ "recipe": {
+ "sha256": "1nqrvq411yg4b9xb5cvc7ai7lfalwc2rfhclzprvymc4vxh6k4cc",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.4.0",
+ "deps": []
+ },
+ "undercover": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "sviridov",
+ "repo": "undercover.el",
+ "sha256": "0dmkn8qlnyvgaj7dqh82mqj1fik59zfi2yxcic9i6q9walxc3cas",
+ "rev": "068d39745304a06152c3e68a0b6772394c9e6d39"
+ },
+ "recipe": {
+ "sha256": "1s30c3i6y4r3mgrrs3lda3rrwmy9ff11ihdmshyziv9v5879sdjf",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.5.0",
+ "deps": [
+ "dash",
+ "emacs",
+ "shut-up"
+ ]
+ },
+ "clojure-quick-repls": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "symfrog",
+ "repo": "clojure-quick-repls",
+ "sha256": "0sw34yjp8934xd2n76lbwyvxkbyz5pxszj6gkflas8lfjvms9z7d",
+ "rev": "90f82e294cfdfb65231adc456177580cd69bfc00"
+ },
+ "recipe": {
+ "sha256": "10glzyd4y3918pwp048pc1y7y7fa34fkqckn1nbys841dbssmay0",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.1.0",
+ "deps": [
+ "cider",
+ "dash"
+ ]
+ },
+ "rase": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "m00natic",
+ "repo": "rase",
+ "sha256": "1i16361klpdsxphcjdpxqswab3ing69j1wb9nygws7ghil85h0bx",
+ "rev": "59b5f7e8102570b65040e8d55781c7ea28de7338"
+ },
+ "recipe": {
+ "sha256": "1g7v2z7l4csl5by64hc3zg4kgrkvv81iq30mfqq4nvy1jc0xa6j0",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.1",
+ "deps": []
+ },
+ "js2-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "mooz",
+ "repo": "js2-mode",
+ "sha256": "0xj87grvg7pbhh4d239gaqai5gl72klhpp9yksaqn77qnm98q4fn",
+ "rev": "5c9d8b82dddec2fab370ec8798569c7fc5698093"
+ },
+ "recipe": {
+ "sha256": "0f9cj3n55qnlifxwk1yp8n1kfd319jf7qysnkk28xpvglzw24yjv",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150909",
+ "deps": [
+ "cl-lib",
+ "emacs"
+ ]
+ },
+ "zones": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/zones.el",
+ "sha256": "0fr6lbx62qa8acqa4s4wrg0nlga2pm3vy04j17wyhcxdjszan4yd"
+ },
+ "recipe": {
+ "sha256": "08sl7i7cy22nd1jijc5l7lp75k9z83gfr8q41n72l0vxrpdasc9w",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": []
+ },
+ "window-end-visible": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "rolandwalker",
+ "repo": "window-end-visible",
+ "sha256": "049bwa5g0z1b9nrsc1vc4511aqcq9fvl16xg493wj651g6q9qigb",
+ "rev": "bdc3d182e5f76e75f1b8cc49357194b36e48b67c"
+ },
+ "recipe": {
+ "sha256": "1p78n7yysj18404cdc6vahfrzwn5pixyfnja8ch48rj4fm4jbxwq",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.1.0",
+ "deps": []
+ },
+ "dic-lookup-w3m": {
+ "fetch": {
+ "tag": "fetchsvn",
+ "url": "http://svn.sourceforge.jp/svnroot/dic-lookup-w3m/",
+ "sha256": "0lg6i9vw6xsnaamfjczz0cr41vlv1bs03h8c8y2jxpdkgaab31nc",
+ "rev": "79"
+ },
+ "recipe": {
+ "sha256": "0myv7sns9ajyr7fzn6kd8a64pfapjdksgby5ilh9mr99imm8dcfv",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": [
+ "stem",
+ "w3m"
+ ]
+ },
+ "rbenv": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "senny",
+ "repo": "rbenv.el",
+ "sha256": "09c6v4lnv6vm2cckbdpx2fdi9xkz9l68qvhx35vaawxhrkgvypzp",
+ "rev": "a613ee1941efa48ef5321bad39ac1ed8ad1540b8"
+ },
+ "recipe": {
+ "sha256": "09nw7sz6rdgs7hdw517qwgzgyrdmxb16sgldfkifk41rhiyqhr65",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.0.3",
+ "deps": []
+ },
+ "org-agenda-property": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "Malabarba",
+ "repo": "org-agenda-property",
+ "sha256": "0gkxxzdk8bd1yi5x9217pkq9d01ccq8znxc7h8qcw0p1336rigfc",
+ "rev": "2ff628a14a3e758863bbd88fba4db9f77fd2c3a8"
+ },
+ "recipe": {
+ "sha256": "0zsjzjw52asl609q7a2s4jcsm478p4cxzhnd3azyr9ypxydjf6qk",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.3.1",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "dart-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "nex3",
+ "repo": "dart-mode",
+ "sha256": "1vkn95dyc0pppnflyqlrlx32g9zc7wdcgc9fgf1hgvqp313ydfcs",
+ "rev": "07edf4d4448ede128d13c27bd76cf06f5ef5bb3b"
+ },
+ "recipe": {
+ "sha256": "0wxfh8v716dhrmx1klhpnsrlsj66llk8brmwryjg2h7c391sb5ff",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.14",
+ "deps": [
+ "cl-lib",
+ "dash",
+ "flycheck"
+ ]
+ },
+ "disk": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/disk.el",
+ "sha256": "1c0pgqvl1z2f5hprszln53pn2v2pqy110r3wx3g84v71w6378bbv"
+ },
+ "recipe": {
+ "sha256": "0bij9gr4zv6jmc6dwsy3lb06vsxvmyzl8xrm8wzasxisk1qd2l6n",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": []
+ },
+ "navorski": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "roman",
+ "repo": "navorski.el",
+ "sha256": "09cb07f98aclgq8jf5419305zydkk1hz4nvzrwqz7syrlpvx8xi5",
+ "rev": "4546d4e4dfbec20ee8c423c045408a3388a9eab9"
+ },
+ "recipe": {
+ "sha256": "0dnzpsm0ya8rbcik5wp378hc9k7gjb3gwmkqqj889c38q5cdwsx7",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.2.7",
+ "deps": [
+ "dash",
+ "multi-term",
+ "s"
+ ]
+ },
+ "info+": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/info+.el",
+ "sha256": "1c95876j5ya0na5rf7dlxchhawl85k25bjxh02kqcsrdirc1q86g"
+ },
+ "recipe": {
+ "sha256": "0flpmi8dsaalg14xd86xcr087j51899sm8ghsa150ag4g4acfggr",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": []
+ },
+ "yasnippet": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "capitaomorte",
+ "repo": "yasnippet",
+ "sha256": "04cqcv10i6mym8j9fhd4fklmwa1q4nfg99kpp0bwx7issqhziqv5",
+ "rev": "be2f815c43deb74e0f809ed47debc4aa2e67ea1e"
+ },
+ "recipe": {
+ "sha256": "1j6hcpzxljz1axh0xfbwr4ysbixkwgxawsvsgicls8r8kl2xvjvf",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.9.0-a",
+ "deps": []
+ },
+ "erc-crypt": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "atomontage",
+ "repo": "erc-crypt",
+ "sha256": "1xw56sir6gkr0p9g4s6p4qc0rajnl6ifbzrky07j28y9vsa59nsz",
+ "rev": "1573189240d8b58e65385414d9a9514238c77805"
+ },
+ "recipe": {
+ "sha256": "1mzzqcxjnll4d9r9n5z80zfb3ywkd8jx6b49g02vwf1iak9h7hv3",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.0",
+ "deps": []
+ },
+ "log4e": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "aki2o",
+ "repo": "log4e",
+ "sha256": "1l28n7a0v2zkknc70i1wn6qb5i21dkhfizzk8wcj28v44cgzk022",
+ "rev": "6592682ab7de0e3d1915aa4d3c53e083be79fbeb"
+ },
+ "recipe": {
+ "sha256": "1klj59dv8k4r0hily489dp12ra5hq1jnsdc0wcakh6zirmakhs34",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.3.0",
+ "deps": []
+ },
+ "graphviz-dot-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "ppareit",
+ "repo": "graphviz-dot-mode",
+ "sha256": "1zk664ilyz14p11csmqgzs73gx08hy32h3pnyymzqkavmgb6h3s0",
+ "rev": "7301cc276206b6995d265bcb9eb308bb83c760be"
+ },
+ "recipe": {
+ "sha256": "04rkynsrsk6w4sxn1pc0b9b6pij1p7yraywbrk7qvv05fv69kri2",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.4",
+ "deps": []
+ },
+ "pcomplete-extension": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "thierryvolpiatto",
+ "repo": "pcomplete-extension",
+ "sha256": "0h0p4c08z0dqxmg55fzch1d2f38rywfk1j0an2f4sc94lj7ckbm6",
+ "rev": "839740c90de857e18db2f578d6660951522faab5"
+ },
+ "recipe": {
+ "sha256": "0m0c9ir44p21rj93fkisvpvi08936717ljmzsr4qdf69b3i54cwc",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.0",
+ "deps": [
+ "cl-lib",
+ "emacs"
+ ]
+ },
+ "melpa-upstream-visit": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "laynor",
+ "repo": "melpa-upstream-visit",
+ "sha256": "12cp56ppmwpdgf5afx7hd2qb8d1qq8z27191fbbf5zqw8cq5zkpd",
+ "rev": "7310c74fdead3c0f86ad6eff76cf989e63f70f66"
+ },
+ "recipe": {
+ "sha256": "0j4afy9ipzr7pwkij8ab207mabd7srganlyyif9h1hvclj9svdmf",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.0.0",
+ "deps": [
+ "s"
+ ]
+ },
+ "col-highlight": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/col-highlight.el",
+ "sha256": "1gs30lb038f01czrr1d95ngwvc53pd6sfq2vhcspq8d12062lx6n"
+ },
+ "recipe": {
+ "sha256": "1kycjdlrg7a5x37b0pzqhg56yn7kaisryrk303qx1084kwq9464i",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": [
+ "vline"
+ ]
+ },
+ "paxedit": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "promethial",
+ "repo": "paxedit",
+ "sha256": "1bjv3ny1bicqk6kwy9g607kj6wc3r8kdf8yfj1jynmf5xa4wwdnw",
+ "rev": "7a69ff07d97955fb5412ba1d5259810609e3bca0"
+ },
+ "recipe": {
+ "sha256": "06ymilr0zrwfpyzql7dcpg48lhkx73f2jlaw3caxgsjaz7x3n4ic",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.1.6",
+ "deps": [
+ "cl-lib",
+ "paredit"
+ ]
+ },
+ "e2wm": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "kiwanami",
+ "repo": "emacs-window-manager",
+ "sha256": "0g0cz5a0vf31w27ljq5sn52mq15ynadl6cfbb97ja5zj1zxsxgjl",
+ "rev": "397cb6c110c9337cfc1a25ea7fddad00f168613c"
+ },
+ "recipe": {
+ "sha256": "0dp360jr3fgxqywkp7g88cp02g37kw2hdsc0f70hjak9n3sy03la",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.3",
+ "deps": []
+ },
+ "drupal-spell": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "arnested",
+ "repo": "drupal-spell",
+ "sha256": "156cscpavrp695lp8pgjg5jnq3b8n9c2h8qg8w89dd4vfkc3iikd",
+ "rev": "a69f5e3b62c4c0da74ce26c1d00d5b8f7395e4ae"
+ },
+ "recipe": {
+ "sha256": "117rr2bfnc99g3qsr127grxwaqp54cxjaj3nl2nr6z78nja0fij3",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.2.2",
+ "deps": []
+ },
+ "org-ac": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "aki2o",
+ "repo": "org-ac",
+ "sha256": "1xckin2d6s40kgr2293g72ipc57f8gp6y63303kmqcv3qm8q13ca",
+ "rev": "9cbbda79e2fe964ded3f39cf7a2e74f1be3d6b9a"
+ },
+ "recipe": {
+ "sha256": "059jr3v3558cgw626zbqfwmwwv5f4637ai26h7b6psqh0x9sf3mr",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.0.2",
+ "deps": [
+ "auto-complete-pcmp",
+ "log4e",
+ "yaxception"
+ ]
+ },
+ "omnisharp": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "OmniSharp",
+ "repo": "omnisharp-emacs",
+ "sha256": "1iq8yzjv7wb0jfi3lqqyx4n7whvb7xf8ls0q0w7pgsrsslrxbwcm",
+ "rev": "725796278fa8a391e244f2e50676dd6d6b67585d"
+ },
+ "recipe": {
+ "sha256": "0dwya22y92k7x2s223az1g8hmrpfmk1sgwbr9z47raaa8kd52iad",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "3.9",
+ "deps": [
+ "auto-complete",
+ "cl-lib",
+ "csharp-mode",
+ "dash",
+ "flycheck",
+ "json",
+ "popup",
+ "s"
+ ]
+ },
+ "project-local-variables": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/project-local-variables.el",
+ "sha256": "1bb5b6hxg3gvwf0sqwkd97nnipsmr60py0rnsfhgvizn4cj3khhw"
+ },
+ "recipe": {
+ "sha256": "0mrf7p420rmjm8ydwc5blpxr6299pdg3sy3jwz2zz0420gkp0ihl",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": []
+ },
+ "top-mode": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/top-mode.el",
+ "sha256": "0a5rl1cgznycqwx4r48mh69lgm8ixbnlfzbqdyvclgm8fldbannn"
+ },
+ "recipe": {
+ "sha256": "0hrjlbiz827v9yf4086wlghw64rhvvlsbzv8lzs6pprdwbpr9pdx",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": []
+ },
+ "highlight-numbers": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "Fanael",
+ "repo": "highlight-numbers",
+ "sha256": "0ffhc5s0h34064bix4qyiiyx30m4hpv0phmxwcrwiyvanj9ggfai",
+ "rev": "e1245b27a732ec43c1562f825533fe147759d24e"
+ },
+ "recipe": {
+ "sha256": "1bywrjv9ybr65mwkrxggb52jdqn16z8acgs5vqm0faq43an8i5yv",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.2.1",
+ "deps": [
+ "emacs",
+ "parent-mode"
+ ]
+ },
+ "org-toodledo": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "myuhe",
+ "repo": "org-toodledo",
+ "sha256": "0qqa62fsmra6v4061kpki8wbhfcwkgnb2gzxwvnaqlcmhivksg6v",
+ "rev": "5473c1a2762371b198862aa8fd83fd3ec57485a4"
+ },
+ "recipe": {
+ "sha256": "0c7qr0jsc4iyrwkc22xp9nmk6984v7q1k0rvpd62m07lb5gvbiq3",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "2.1.0",
+ "deps": []
+ },
+ "js2-highlight-vars": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "unhammer",
+ "repo": "js2-highlight-vars.el",
+ "sha256": "0r2szaxr3q0gvxqd9asn03q8jf3nclxv4mqdsjn96s98n45x388l",
+ "rev": "bf38d12cf65eebc8b81866fd03f6a0389bb2a9ed"
+ },
+ "recipe": {
+ "sha256": "07bq393g2jy8ydvaqyqn6vdyfvyminvgi239yvwzg5g9a1xjc475",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.1.0",
+ "deps": [
+ "js2-mode"
+ ]
+ },
+ "processing-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "ptrv",
+ "repo": "processing2-emacs",
+ "sha256": "08ljf39jfmfpdk36nws2dnwpm7y8252zsdprsc85hr1h1ig5xy15",
+ "rev": "228bc56369675787d60f637223b50ce3a1afebbd"
+ },
+ "recipe": {
+ "sha256": "184yg9z14ighz9djg53ji5dgnb98dnxkkwx55m8f0f879x31i89m",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.0",
+ "deps": [
+ "yasnippet"
+ ]
+ },
+ "csharp-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "josteink",
+ "repo": "csharp-mode",
+ "sha256": "12m90dwbmkdwirdfx1jfib9vk7qinrspkyz9d6m5szam98rpzalz",
+ "rev": "0a61f21e499d99962eca907c7f7eab0149febaa1"
+ },
+ "recipe": {
+ "sha256": "17j84qrprq492dsn103dji8mvh29mbdlqlpsszbgfdgnpvfr1rv0",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.8.11",
+ "deps": []
+ },
+ "all-ext": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/all-ext.el",
+ "sha256": "10j70bwa28xpmqwigvls76jg6vz0iky88lmkq4pk35bg3rz09r4m"
+ },
+ "recipe": {
+ "sha256": "1zi266cm5hpfhnnnzbsm4s1w0lsy4sj5z8d020y0cg57yn2v62dv",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": [
+ "all"
+ ]
+ },
+ "mallard-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "jhradilek",
+ "repo": "emacs-mallard-mode",
+ "sha256": "1272fsjzsza9dxm8s64b7x2jzr3ks8wjpwvgcxha2dnsjzklcdcj",
+ "rev": "152cd44d53c881457fe57c1aba77e8e2fca4d1b0"
+ },
+ "recipe": {
+ "sha256": "0y2ikjgy107kb85pz50vv7ywslqgbrrkcfsrd8gsk1jky4qn8izd",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.3.0",
+ "deps": []
+ },
+ "ess-R-object-popup": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "myuhe",
+ "repo": "ess-R-object-popup.el",
+ "sha256": "0q8pbaa6wahli6fh0kng5zmnypsxi1fr2bzs2mfk3h8vf4nikpv0",
+ "rev": "7e1f601bfba72de0fda44d9c82f96028ecbb9948"
+ },
+ "recipe": {
+ "sha256": "1dxwgahfki6d6ywh85ifk3kq6f2a1114kkd8xcv4lcpzqykp93zj",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.0",
+ "deps": [
+ "ess",
+ "popup"
+ ]
+ },
+ "solarized-theme": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "bbatsov",
+ "repo": "solarized-emacs",
+ "sha256": "0zcj9jf8nlsj9vms888z2vs76q54n8g8r9sh381xad3x8d6lrlb3",
+ "rev": "210dbef0186f87048d50face41d1d374d6154b3a"
+ },
+ "recipe": {
+ "sha256": "15d8k32sj8i11806byvf7r57rivz391ljr0zb4dx8n8vjjkyja12",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.2.2",
+ "deps": [
+ "dash"
+ ]
+ },
+ "osx-trash": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "lunaryorn",
+ "repo": "osx-trash.el",
+ "sha256": "1pn6xvq41di1jb5d3i8wgs54w0m2414cq3f1vk0xpibshkq7sr4a",
+ "rev": "a5ecee69f514ad9ee78fd9d6b20f3dd49512f5b4"
+ },
+ "recipe": {
+ "sha256": "1f6pi53mhp2pvrfjm8544lqqj36gzpzxq245lzvv91lvqkxr9ysj",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.1.1",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "org-readme": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "mattfidler",
+ "repo": "org-readme",
+ "sha256": "0hhgfw0sqvl9jmmslwxn6v3dii99v09yz2h0ia5np9lzyxsc207a",
+ "rev": "15054e42351b5ec6b629c55760a578516e035355"
+ },
+ "recipe": {
+ "sha256": "1qqbsgspd006gy0kc614w7bg6na0ygmflvqkmw47899pbgj81hxh",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20130322.926",
+ "deps": [
+ "header2",
+ "http-post-simple",
+ "lib-requires",
+ "yaoddmuse"
+ ]
+ },
+ "org2jekyll": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "ardumont",
+ "repo": "org2jekyll",
+ "sha256": "064kw64w9snm0lbshxn8d6yd9xvyislhg37fmhq1w7vy8lm61xvf",
+ "rev": "a12173b9507b3ef54dfebb5751503ba1ee93c6aa"
+ },
+ "recipe": {
+ "sha256": "1j9d6xf5nsakifxwd4zmjc29lbj46ffn3z109k2y2yhz7q3r9hzv",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.1.8",
+ "deps": [
+ "dash-functional",
+ "deferred",
+ "s"
+ ]
+ },
+ "bing-dict": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "cute-jumper",
+ "repo": "bing-dict.el",
+ "sha256": "09lg7ah5vkns1kmizcqh8h6n8zmj2n25jksikwpmikpkr6nidaks",
+ "rev": "3d55a306fa50ffad4b374fbf716b5b5200661770"
+ },
+ "recipe": {
+ "sha256": "0s5pd08rcnvmgi1hw17xbzvswlv0yni6h2h2gccrjmf6izi8whh1",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.2.1",
+ "deps": []
+ },
+ "ctable": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "kiwanami",
+ "repo": "emacs-ctable",
+ "sha256": "13zq8kym1y6bzrpxbcdz32323a6azy5px4ridff6xh8bfprwlay3",
+ "rev": "08a017bde6d24ea585e39ce2637bebe28774d316"
+ },
+ "recipe": {
+ "sha256": "040qmlgfvjc1f908n52m5ll2fizbrhjzbd0kgrsw37bvm3029rx1",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.1.2",
+ "deps": []
+ },
+ "typing": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/typing.el",
+ "sha256": "0mgvpdp3vlvjy32d163h2mzsf9j2ij2f542sdr3rsy8l80n6nx31"
+ },
+ "recipe": {
+ "sha256": "0b72lbzji105wzvsi58l6pjc08qcwrm5ddf42irdxi956081pzp3",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": []
+ },
+ "ess": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "emacs-ess",
+ "repo": "ESS",
+ "sha256": "0lvr14xlxsdad4ihywkpbwwj9lyal0w4p616ska5rk7gg5i8v74p",
+ "rev": "82d13c36f43efb4ef32fbb515ca58f63b2f0c06e"
+ },
+ "recipe": {
+ "sha256": "02kz4fjxr0vrj5mg13cq758nzykizq4dmsijraxv46snvh337v5i",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "15.09",
+ "deps": [
+ "julia-mode"
+ ]
+ },
+ "ocp-indent": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "OCamlPro",
+ "repo": "ocp-indent",
+ "sha256": "0ynv2yhm7akpvqp72pdabhddwr352s1k85q8m1khsvspgg1mkiqz",
+ "rev": "e6f15bdf7d5ad6e4addbf24dce74823f953db900"
+ },
+ "recipe": {
+ "sha256": "0wc4z9dsnnyr24n3vg1npvc3rm53av8bpbvrl8kldxxdiwgnbkjw",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.5.2",
+ "deps": []
+ },
+ "hoa-pp-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "hoaproject",
+ "repo": "Contributions-Emacs-Pp",
+ "sha256": "1wg6vc9swwspi6s6jpig3my83i2pq8vkq2cy1q3an87rczacmfzp",
+ "rev": "a72104a191214fba502653643a0d166a8f5341d9"
+ },
+ "recipe": {
+ "sha256": "01ijfn0hd645j6j88rids5dsanmzwmky37slf50yqffnv69jwvla",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.3.0",
+ "deps": [
+ "emacs",
+ "names"
+ ]
+ },
+ "eldoc-extension": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/eldoc-extension.el",
+ "sha256": "13ncpp3hrwk0h030c5nnm2zfiingilr5b876jsf2wxmylg57nbch"
+ },
+ "recipe": {
+ "sha256": "0azkdx4ncjhb7qyhyg1a5pxgqqf2z1wq9iz802j0nxxnjzh9ny24",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": []
+ },
+ "helm-w32-launcher": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "Fanael",
+ "repo": "helm-w32-launcher",
+ "sha256": "0s8zp3kx2kxlfyd26yr3lphwcybhbm8qa9vzmxr3kaylwy6jpz5q",
+ "rev": "01aa370a32900e7521330fba495474f2aa435e19"
+ },
+ "recipe": {
+ "sha256": "0bzn2vhspn6lla815qxwsl9gwfyiwgwmnysr6rjpyacmi17d73ri",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.1.6",
+ "deps": [
+ "cl-lib",
+ "emacs",
+ "helm"
+ ]
+ },
+ "ac-ispell": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "syohex",
+ "repo": "emacs-ac-ispell",
+ "sha256": "16qsj3wni4xhcrjx2rnxdzq6jb7jrl4bngi4an37vgdlrx3w8m6l",
+ "rev": "a8c84f7f0b96dc091abc51b1698f24e9c994e6aa"
+ },
+ "recipe": {
+ "sha256": "1vsy2qjh60n5lavivpqhhcpg5pk8zz2r0wy1sb65capn841zdi67",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.07",
+ "deps": [
+ "auto-complete",
+ "cl-lib"
+ ]
+ },
+ "alect-themes": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "alezost",
+ "repo": "alect-themes",
+ "sha256": "1pk5dgjqrynap85700wdivq41bdqvwd5hkfimgmcd48l5lhj9pbj",
+ "rev": "db7cc6ebf695a71881d803966d672f80fe967da6"
+ },
+ "recipe": {
+ "sha256": "04fq65qnxlvl5nc2q037c6yb4nf422dfw2913gv6zfh9rdmxsks8",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.7",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "jira": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/jira.el",
+ "sha256": "18b6hdqk59gnqh4ibq8lj59kbsg5gbyfb7vfcvpgmxjikpl3cgkz"
+ },
+ "recipe": {
+ "sha256": "0cf5zgkxagvka5v6scgyxqx4mz1n7lxbynn3gl2a4s9s64jycsy6",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": []
+ },
+ "dired-k": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "syohex",
+ "repo": "emacs-dired-k",
+ "sha256": "0rpln6m3j4xbhrmmz18hby6xpzpzbf1c5hr7bxvna265cb0i5rn7",
+ "rev": "f4f4a1fe3155c35e212d3e16ed5f7c89c0b32282"
+ },
+ "recipe": {
+ "sha256": "0lghdmy9qcjykscfxvfrz8cpp87qc0vfd03vw8nfpvwcs2sd28i8",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.16",
+ "deps": [
+ "cl-lib",
+ "emacs"
+ ]
+ },
+ "legalese": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/legalese.el",
+ "sha256": "0vjf2f5kpmgnw7904jsv2wnn6dcv654v7h1v917wmj72sy941xml"
+ },
+ "recipe": {
+ "sha256": "0xsf3w5h4g7wigrv5kbys7lf9lfv2cab5ch320p74l3l3r2lj9wz",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": []
+ },
+ "project-persist-drawer": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "rdallasgray",
+ "repo": "project-persist-drawer",
+ "sha256": "1nq320ph8fs9a197ji4mnw2xa24dld0r1nka476yvkg4azmcc9x8",
+ "rev": "35bbe132a4fab6a0fec15ce6c0fd2fe6a4aa9626"
+ },
+ "recipe": {
+ "sha256": "1jv2y2hcqakyvfibclzm7g4diw0bvsv3a8fa43yf19wb64jm8hdb",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.0.4",
+ "deps": [
+ "project-persist"
+ ]
+ },
+ "dos": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/dos.el",
+ "sha256": "0sfmcd1rq6wih9q7d9vkcfrw6gf7309mm7491jx091ij8m4p8ypp"
+ },
+ "recipe": {
+ "sha256": "0cpijbqpci96s0d6rwqz5bbi9b0zkan1bg8vdgib1f87r7g980nc",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": []
+ },
+ "image-archive": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "mhayashi1120",
+ "repo": "Emacs-image-archive",
+ "sha256": "0imvxzcja91cd19zm2frqfpxm8j0bc89w9s7q0pkpvyjz44kjbq8",
+ "rev": "699e967fa7b1dfcce2bf2ec878e74f4238bb6e45"
+ },
+ "recipe": {
+ "sha256": "0x0lv5dr1gc9bnr3dn26bc9s1ccq2rp8c4a1licbi929f0jyxxfp",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.0.7",
+ "deps": [
+ "cl-lib",
+ "emacs"
+ ]
+ },
+ "el-spice": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "vedang",
+ "repo": "el-spice",
+ "sha256": "0390pfgfgj7hwfmkwikwhip0hmwkgx784l529cqvalc31jchi94i",
+ "rev": "53921ffe9a84d9395eea90709309d3d5529921ea"
+ },
+ "recipe": {
+ "sha256": "0i0l3y9w1q9pf5zhvmsq4h427imix67jgcfwq21b6j82dzg5l4hg",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.2.2",
+ "deps": [
+ "thingatpt+"
+ ]
+ },
+ "package-utils": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "Silex",
+ "repo": "package-utils",
+ "sha256": "138l07qmxj4fkvf43f1hdn4skadxb50c023bc5101l3njzmf74wa",
+ "rev": "4a56f411f98fd455556a3f1d6c16a577a22057a2"
+ },
+ "recipe": {
+ "sha256": "02hgh7wg68ysfhw5hckrpshzv4vm1vnm395d34x6vpgl4ccx7v9r",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.3.0",
+ "deps": [
+ "epl"
+ ]
+ },
+ "ruby-additional": {
+ "fetch": {
+ "tag": "fetchsvn",
+ "url": "http://svn.ruby-lang.org/repos/ruby/trunk/misc/",
+ "sha256": "0gl8wcnm7pidvd8zy3w5lzxqj0qxs9d932350ncgnmxwfsfzkdk7",
+ "rev": "53195"
+ },
+ "recipe": {
+ "sha256": "0h0cxik8lp8g81bvp06mddikkk5bjdlch2wffcvsvi01is408w4w",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": [
+ "emacs",
+ "ruby-mode"
+ ]
+ },
+ "open-junk-file": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/open-junk-file.el",
+ "sha256": "1vjmgayksdgg54b46aqmvhd7a9arjx9p3jyrjs2z9262f6r288lj"
+ },
+ "recipe": {
+ "sha256": "0ybycprs5di9niai4hbmfq4xdacfgrzf1mwq1aj1hi53phl8l4di",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": []
+ },
+ "beginend": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "DamienCassou",
+ "repo": "beginend",
+ "sha256": "1agrci37bni1vfkxg171l53fvsnjdryhf05v54wj07jngnwf3cw9",
+ "rev": "de3833a1a651532e76df668bd92cfa07893501f1"
+ },
+ "recipe": {
+ "sha256": "1y81kr9q0zrsr3c3s14rm6l86y5wf1a0kia6d98112fy4fwdm7kq",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.0.0",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "org-if": {
+ "fetch": {
+ "tag": "fetchFromGitLab",
+ "owner": "elzair",
+ "repo": "org-if",
+ "sha256": "1iyqv34b7q2k73srshcnpvfzcadq47w4rzkqp6m1d3ajk8x2vypq",
+ "rev": "fab602cc1bbee7a4e99c0083e129219d3f9ed2e8"
+ },
+ "recipe": {
+ "sha256": "0h0jdyawz2j4mp33w85z8q77l37qid8palvw5n4z379qa0wr5h96",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.2.0",
+ "deps": []
+ },
+ "tidy": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/tidy.el",
+ "sha256": "0psci55a3angwv45z9i8wz8jw634rxg1xawkrb57m878zcxxddwa"
+ },
+ "recipe": {
+ "sha256": "09xb2k3k99hp3m725f31s6hlaxgl4fsaa1dylahxvdfddhbh290m",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": []
+ },
+ "vimgolf": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "timvisher",
+ "repo": "vimgolf",
+ "sha256": "1f94qx8rbnn21cl0grxqa9gzkbrz68vmqsihv8vvi8qf1c1dmd0i",
+ "rev": "9fd8aaf68bc69d1dd628de4c7cbb070e366545a9"
+ },
+ "recipe": {
+ "sha256": "1hvw2pfa5a984hm6wd33bf6zz6hmlprc6qs3g789dfx91qm890vn",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.10.0",
+ "deps": []
+ },
+ "ac-geiser": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "xiaohanyu",
+ "repo": "ac-geiser",
+ "sha256": "02ifz25rq64z0ifxs52aqdz0iz4mi6xvj88hcn3aakkmsj749vvn",
+ "rev": "0e2e36532336f27e3dc3b01fff55ad1a4329817d"
+ },
+ "recipe": {
+ "sha256": "0v558qz1mp8b1bgk8kgdk5sx5mpd353mw77n5b0pw4b2ikzpz2mx",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.1",
+ "deps": [
+ "auto-complete",
+ "geiser"
+ ]
+ },
+ "git-dwim": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/git-dwim.el",
+ "sha256": "074k1r8rkvyhhwnqy4gnyd7shidxgc25l1xq4hmnwjn13nsyqfnv"
+ },
+ "recipe": {
+ "sha256": "0vdd2cksiqbnxplqbpb16bcmp137fj3p9a7pa0622wx8vd5p0rkr",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": []
+ },
+ "tuareg": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "ocaml",
+ "repo": "tuareg",
+ "sha256": "0jpcjy2a77mywba2vm61knj26pgylsmv5a21cdp80q40bac4i6bb",
+ "rev": "f97b800db79d9856c70b4988bd39bd7aa623158e"
+ },
+ "recipe": {
+ "sha256": "0wx723dmjlpm86xdabl9n8p22zbbxpapyfn6ifz0b0pvhh49ip7q",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "2.0.9",
+ "deps": [
+ "caml"
+ ]
+ },
+ "twilight-anti-bright-theme": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "jimeh",
+ "repo": "twilight-anti-bright-theme",
+ "sha256": "0glw5lns7hwp8jznnfm6dyjw454sv2n84gy07ma7s1q3yczhq5bc",
+ "rev": "16d4ff2606789b506f0d2f53d12f02d5b1b64f9b"
+ },
+ "recipe": {
+ "sha256": "1qfybk5akaxdahmjffqaw712v8d7kk4jqkj3hzp96kys2zv1r6f9",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.3.0",
+ "deps": []
+ },
+ "octicons": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "syohex",
+ "repo": "emacs-octicons",
+ "sha256": "19fg6r7aiirfsbp2h1a824476sn1ln4nz8kvpdzkzvyf1hzx68gw",
+ "rev": "77bb1a49045f89b3eaf9bcffeefbb9e1abaee556"
+ },
+ "recipe": {
+ "sha256": "02f37bvnc5qvkvfbyx5wp54nz71bqm747mq1p5361sx091lllkxk",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.01",
+ "deps": [
+ "cl-lib"
+ ]
+ },
+ "loc-changes": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "rocky",
+ "repo": "emacs-loc-changes",
+ "sha256": "1089sbx20r30sis39vwy29fxhb2n3hh35rdv09lpzdxdq01s8wwp",
+ "rev": "8447baff7cb4839ef8d1d747a14e5da85d0cee5b"
+ },
+ "recipe": {
+ "sha256": "1akgij61b2ixpkchrriabwvx68cg4v5r5w9ncjrjh91hskjprfxh",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.1",
+ "deps": []
+ },
+ "initsplit": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "dabrahams",
+ "repo": "initsplit",
+ "sha256": "1rfw38a63bvzglqx7mb8wlnzjvlmkhkn35hn66snqqgvnmnvi54g",
+ "rev": "950bdc568e3fd08e6106170953caf98ac582a431"
+ },
+ "recipe": {
+ "sha256": "0n9dk3x62vgxfn39jkmdg8wxsik0xqkprifgvqzyvn8xcx1blyyq",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.6",
+ "deps": []
+ },
+ "downplay-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "tobias",
+ "repo": "downplay-mode",
+ "sha256": "13czcxmmvy4g9ysfjr6lb91c0fqv1xv8ppd27wbfsrgxm3aaqimb",
+ "rev": "225a4b3ca09e6f463dfdd54941c98b02be8d574c"
+ },
+ "recipe": {
+ "sha256": "1v6nga101ljzza8qj3lkmkzzl0vvzj4lsh1m69698s8prnczxr9b",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.1",
+ "deps": []
+ },
+ "ruby-compilation": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "eschulte",
+ "repo": "rinari",
+ "sha256": "1wqhqv2fc5h10igv1php51bayx0s7qw4m9gzx9by80dab8lwa0vk",
+ "rev": "e2ed2fa55ac3435a86b1cf6a4f2d29aebc309135"
+ },
+ "recipe": {
+ "sha256": "1x1vpkjpx95sfcjhkx4cafypj0nkbd1i0mzxx3lmcrsmg8iv0rjc",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "2.11",
+ "deps": [
+ "inf-ruby"
+ ]
+ },
+ "thing-cmds": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/thing-cmds.el",
+ "sha256": "0216gckb727hhzf230a3m3n9blyaa21djxcc77r4lf7g2h9g0b5m"
+ },
+ "recipe": {
+ "sha256": "133bm2cw9ar6m2amj0rrq4wbj9c3zl61gaprx0vlasxj2cyxs7yw",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": [
+ "hide-comnt"
+ ]
+ },
+ "alchemist": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "tonini",
+ "repo": "alchemist.el",
+ "sha256": "0961s25b1bjrh4gzzf7k67ycwafmdrc6jlbhzb25i34dmpigq1hz",
+ "rev": "ddc68f52b16b2ced7646f1389ae15eb6c12c6683"
+ },
+ "recipe": {
+ "sha256": "18jxw0zb7y34qbm4bcpfpb2656f0h9grmrbfskgp4ra4q5q3n369",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.6.0",
+ "deps": [
+ "company",
+ "dash",
+ "elixir-mode",
+ "emacs",
+ "pkg-info"
+ ]
+ },
+ "pretty-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "akatov",
+ "repo": "pretty-mode",
+ "sha256": "013fig9i4fyx16krp2vfv953p3rwdzr38zs6i50af4pqz4vrcfvh",
+ "rev": "4ba8fceb7dd733361ed975d80ac2caa3612fa78b"
+ },
+ "recipe": {
+ "sha256": "1zxi4nj7vnchiiz1ndx17b719a1wipiqniykzn4pa1w7dsnqg21f",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "2.0.3",
+ "deps": []
+ },
+ "splitjoin": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "syohex",
+ "repo": "emacs-splitjoin",
+ "sha256": "17qsmjsbk8aq3azjxid6h9fzz77bils74scp21sqn8vdnijx8991",
+ "rev": "0eb91e7beec915065cd6c00ceaca180a64d85cda"
+ },
+ "recipe": {
+ "sha256": "0l1x98fvvia8qx8g125h4d76slv0xnb3h1zxiq9xb5qh7a1h069l",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.01",
+ "deps": [
+ "cl-lib"
+ ]
+ },
+ "frame-restore": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "lunaryorn",
+ "repo": "frame-restore.el",
+ "sha256": "1vznkbly0lyh5kri9lcgy309ws96q3d5m1lghck9l8ain8hphhqz",
+ "rev": "5bfd06e18cdf5031062de5e052e9a877c3953804"
+ },
+ "recipe": {
+ "sha256": "0b321iyf57nkrm6xv8d1aydivrdapdgng35zcnrg298ws2naysvm",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.5",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "link": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "myrkr",
+ "repo": "dictionary-el",
+ "sha256": "05xfgn9sabi1ykk8zbk2vza1g8pdrg08j5cb58f50nda3q8ndf4s",
+ "rev": "9ef1672ecd367827381bbbc9af93685980083c5c"
+ },
+ "recipe": {
+ "sha256": "17jpsg3f2954b740vyj37ikygrg5gmp0bjhbid8bh8vbz7xx9zy8",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.10",
+ "deps": []
+ },
+ "narrow-indirect": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/narrow-indirect.el",
+ "sha256": "1j50f3kzgrvxf4iznjjwsi4smp7gdp09irz7x3ppv4w2c8apc6j8"
+ },
+ "recipe": {
+ "sha256": "10aq4gssayh3adw8yz2lza1xbypyffi8r03lsc0kiis6gd9ibiyj",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": []
+ },
+ "button-lock": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "rolandwalker",
+ "repo": "button-lock",
+ "sha256": "1kqcc1d56jz107bswlzvdng6ny6qwp93yck2i2j921msn62qvbb2",
+ "rev": "cd0bf4a3c2f224d851e6ed8a54a6e80c129b225f"
+ },
+ "recipe": {
+ "sha256": "1arrdmb3nm570hgs18y9sz3z9v0wlkr3vwa2zgfnc15lmf0y34mp",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.0.2",
+ "deps": []
+ },
+ "fill-column-indicator": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "alpaker",
+ "repo": "Fill-Column-Indicator",
+ "sha256": "0fghhy5xqsdwal4fwlr6hxr5kpnfw71q79mxpp9db59ldnj9f5y9",
+ "rev": "5cbc077083775d4719a294455a8a8a53bb3151f8"
+ },
+ "recipe": {
+ "sha256": "0w8cmijv7ihij9yyncz6lixb6awzzl7n9qpjj2bks1d5rx46blma",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.81",
+ "deps": []
+ },
+ "serverspec": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "k1LoW",
+ "repo": "emacs-serverspec",
+ "sha256": "1h58q41wixjlapia1ggf83jxcllq7492k55mc0fq7hbx3hw1q1y2",
+ "rev": "b6dfe82af9869438de5e5d860ced196641f372c0"
+ },
+ "recipe": {
+ "sha256": "001d57yd0wmz4d7qmhnanac8g29wls0sqw194003hrgirakg82id",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.0.7",
+ "deps": [
+ "dash",
+ "f",
+ "helm",
+ "s"
+ ]
+ },
+ "butler": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "AshtonKem",
+ "repo": "Butler",
+ "sha256": "1pii9dw4skq7nr4na6qxqasl36av8cwjp71bf1fgppqpcd9z8skj",
+ "rev": "0e91e0f01ac9c09422f076a096ee567ee138e7a4"
+ },
+ "recipe": {
+ "sha256": "1jv74l9jy55qpwf5np9nlj6a1wqsm3xirm7wm89d1h2mbsfcr0mq",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.2.4",
+ "deps": [
+ "deferred",
+ "emacs",
+ "json"
+ ]
+ },
+ "iflipb": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "jrosdahl",
+ "repo": "iflipb",
+ "sha256": "18rlyjsn9w0zbs0c002s84qzark3rrcmjn9vq4nap7i6zpaq8hki",
+ "rev": "2e0d1719abeec7982341761ee5dabb01574e6862"
+ },
+ "recipe": {
+ "sha256": "1nfrrxgi9nlhn477z8ay7jxycpcghhhmmg9dagdhrlrr20fx697d",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.3",
+ "deps": []
+ },
+ "ido-complete-space-or-hyphen": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "doitian",
+ "repo": "ido-complete-space-or-hyphen",
+ "sha256": "1ffmsmi31jc0gqnbdxrd8ipsy790bn6hgq3rmayylavmdpg3qfd5",
+ "rev": "ad9baaec10e06be3f85db97b6c8fd970cf20df77"
+ },
+ "recipe": {
+ "sha256": "1wk0cq5gjnprmpyvhh80ksz3fash42hckvmx8m95crbzjg9j0gbc",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.1",
+ "deps": []
+ },
+ "sift": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "nlamirault",
+ "repo": "sift.el",
+ "sha256": "0g4fql83xbyx1ihaghxm6rk2cffz97jpy13hg865m6hh0j72dlr1",
+ "rev": "02cea9ba11f99b13888ac1842215caf190e3a94b"
+ },
+ "recipe": {
+ "sha256": "13y6nmc317hljch3x8f80jg5sb57imm7w9kdn7ybw59g55zxzz8q",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.1.0",
+ "deps": []
+ },
+ "moz": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "bard",
+ "repo": "mozrepl",
+ "sha256": "13bf5jn1kgqg59j5czlzvajq2fw1rz4h5jqfc7x8w1a067nymf2c",
+ "rev": "646208b67e6c9c56d188db1eba999846d518935f"
+ },
+ "recipe": {
+ "sha256": "0ar2xgsi7csjj6fgiamrjwjc58j942dm32j3f3lz21yn2c4pnyxi",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.1.0",
+ "deps": []
+ },
+ "timer-revert": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "yyr",
+ "repo": "timer-revert",
+ "sha256": "1vq5yp6pyjam2csz22mcp353a4d5r7f9m6bsjizfmgr2ld7bwhx7",
+ "rev": "31ad8d94b85807cd9f63fcba0c90c3e9a9515fa2"
+ },
+ "recipe": {
+ "sha256": "0lvm2irfx9rb5psm1lf53fv2jjx745n1c172xmyqip5xwgmf6msy",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.1",
+ "deps": []
+ },
+ "helm-mt": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "dfdeshom",
+ "repo": "helm-mt",
+ "sha256": "0gknncyhr2392xkvghgy5mh6gdv6qzvswidx2wy04ypb4s0vxgq2",
+ "rev": "27391022dbf5720cb13ecec8ca8c398c05a7cbf7"
+ },
+ "recipe": {
+ "sha256": "04hx8cg8wmm2w8g942nc9mvm12ammmjnx4k61ljrq76smd8s3x2a",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.6",
+ "deps": [
+ "cl-lib",
+ "emacs",
+ "helm",
+ "multi-term"
+ ]
+ },
+ "darcula-theme": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "fommil",
+ "repo": "darcula-theme-emacs",
+ "sha256": "1gdh4izwhyly6dyrmh7lfpd12gnb8hpnafj8br51ksijsssrf21f",
+ "rev": "202a5affe59a5e1ac1d33a7e518d1df772bf2100"
+ },
+ "recipe": {
+ "sha256": "13d21gwzv66ibn0gs56ff3sn76sa2mkjvjmpd2ncxq3mcgxajnjg",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.0",
+ "deps": []
+ },
+ "cm-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "joostkremers",
+ "repo": "criticmarkup-emacs",
+ "sha256": "1bhnlcsvl1qsi36a5kz8i857spzybprsbsywpqrmjpndn74n8690",
+ "rev": "abc5adc7e00e10c388c2a57c9f1d59f164773082"
+ },
+ "recipe": {
+ "sha256": "1rgfpxbnp8wiq9j8aywm2n07rxzkhqljigwynrkyvrnsgxlq2a9x",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.1",
+ "deps": []
+ },
+ "dynamic-fonts": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "rolandwalker",
+ "repo": "dynamic-fonts",
+ "sha256": "1ppwlill1z4vqd566h9zi6zx5jb7hggmnmqrga84j5n7fwqvgz7f",
+ "rev": "d318498b377d8941c7420f51616c78e3440d00f5"
+ },
+ "recipe": {
+ "sha256": "0a210ca41maa755lv1n7hhpxp0f7lfxrxbi0x34icbkfkmijhl6q",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.6.4",
+ "deps": [
+ "font-utils",
+ "pcache",
+ "persistent-soft"
+ ]
+ },
+ "bbdb2erc": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "unhammer",
+ "repo": "bbdb2erc",
+ "sha256": "1zkh7dcas80wwjvigl27wj8sp4b5z6lh3qj7zkziinwamwnxbdbs",
+ "rev": "f39a36351e1e6f1105c9e32970e7502b77b0dbcd"
+ },
+ "recipe": {
+ "sha256": "1nqvlyklcqmdw2p7zf53jwrnz7nd7hl09nm20fbgw2dn0h1z9q30",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.1.3",
+ "deps": [
+ "bbdb"
+ ]
+ },
+ "whitespace-cleanup-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "purcell",
+ "repo": "whitespace-cleanup-mode",
+ "sha256": "0xmwhybb8x6wwfr55ym5xg4dhy1aqx1abxy9qskn7h3zf1z4pgg2",
+ "rev": "e1e250aa6f5b1a526778c7a501cdec98ba29c0a4"
+ },
+ "recipe": {
+ "sha256": "1fhdjrxxyfx4xsgfjqq9p7vhj98wmqf2r00mv8k27vdaxwsnm5p3",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.10",
+ "deps": []
+ },
+ "m-buffer": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "phillord",
+ "repo": "m-buffer-el",
+ "sha256": "1dnp9yj429scg94hkmc6rnrjkcy74mpf9c509k4avmlkdmmi2hzn",
+ "rev": "ea281db21af0dd48ba08f7f8e0cd2902acdf5a96"
+ },
+ "recipe": {
+ "sha256": "0l2rayglv48pcwnr1ggmn8c0az0mffgv02ivnzr9jcfs55ki07fc",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.12",
+ "deps": [
+ "dash",
+ "emacs"
+ ]
+ },
+ "marshal": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "sigma",
+ "repo": "marshal.el",
+ "sha256": "0sriyjjhgis7fgq276j5mw6n84jdwxf8lq0iqqiaqwmc66l985mv",
+ "rev": "2a3d102af4e996536a71ec38ab54e379c30a1ab0"
+ },
+ "recipe": {
+ "sha256": "17ikd8f1k42f28d4v5dn83zb44bsx7g336db60q068w6z8d4jbgl",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.5.3",
+ "deps": [
+ "eieio",
+ "json"
+ ]
+ },
+ "zygospore": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "louiskottmann",
+ "repo": "zygospore.el",
+ "sha256": "0v73fgb0gf81vlihiicy32v6x86rr2hv0bxlpw7d3pk4ng1a0l3z",
+ "rev": "1af5ee663f5a7aa08d96a77cacff834dcdf55ea8"
+ },
+ "recipe": {
+ "sha256": "03mmxqbliwd1g73cxd9kqkngdy4jdavcs6j12b4wp27xmhgaj40z",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.0.3",
+ "deps": []
+ },
+ "elisp-depend": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/elisp-depend.el",
+ "sha256": "0khc3gacw27aw9pkfrnla9844lqbspgm0hrz7q0h5nr73d9pnc02"
+ },
+ "recipe": {
+ "sha256": "08zxzvj60v23b7d5q0hvgffm1jxq7lc5y9w22m6nv2fp29yadyiy",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": []
+ },
+ "scala-mode2": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "hvesalai",
+ "repo": "scala-mode2",
+ "sha256": "1gfhk595vnf6565nv6m1v8dc4a3a9z34jj1qdh02lk8azg5ylk89",
+ "rev": "34888c094990bc669347f106dbd516f487e55ae3"
+ },
+ "recipe": {
+ "sha256": "1m8przbs4vmcss7bp496vdziy1xxzh4waj36yny7l79ld9rhk6cl",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.22",
+ "deps": []
+ },
+ "rigid-tabs": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "wavexx",
+ "repo": "rigid-tabs.el",
+ "sha256": "0p044wg9d4i6f5x7bdshmisgwvw424y16lixac93q6v5bh3xmab5",
+ "rev": "c7c6b726806df7e8cb25a41b213a207850c91cb7"
+ },
+ "recipe": {
+ "sha256": "06n0bcvc3nnp84pcq3lywwga7l92jz8hnkilhbq59kydf5zbjldp",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.0",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "theme-changer": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "hadronzoo",
+ "repo": "theme-changer",
+ "sha256": "09vf3qs949n4iqzd14iq2kgvypwdwdv8ii8l5jcqfppgspd8m8yd",
+ "rev": "d3d9c9f62a138958262ac5dd61837df427268611"
+ },
+ "recipe": {
+ "sha256": "1qbmsghkl5gs728q0gaalc7p8q7nzv3l045jc0jdxxnb7na3gc5w",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "2.1.0",
+ "deps": []
+ },
+ "hl-sentence": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "milkypostman",
+ "repo": "hl-sentence",
+ "sha256": "1hgigbgppdhmr7rc901r95kyydjk05dck8mwbryh7kpglns365fa",
+ "rev": "f88882772f1a29fabb54194cc8aacd80d7f5b085"
+ },
+ "recipe": {
+ "sha256": "16sjfs0nnpwzj1cqfna9vhmxgznwwhb2qdmjci25hlgrdxwwyahs",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "3",
+ "deps": []
+ },
+ "svg-mode-line-themes": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "sabof",
+ "repo": "svg-mode-line-themes",
+ "sha256": "14h40s0arc2i898r9yysn256z6l8jkrnmqvrdg7p7658c0klz5ic",
+ "rev": "80a0e01839cafbd66899202e7764c33231974259"
+ },
+ "recipe": {
+ "sha256": "12lnszcb9bl32n9wir7vf8xiyyv7njw4xg21aj9x4dasmidyx506",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.1.3",
+ "deps": [
+ "xmlgen"
+ ]
+ },
+ "processing-snippets": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "ptrv",
+ "repo": "processing2-emacs",
+ "sha256": "08ljf39jfmfpdk36nws2dnwpm7y8252zsdprsc85hr1h1ig5xy15",
+ "rev": "228bc56369675787d60f637223b50ce3a1afebbd"
+ },
+ "recipe": {
+ "sha256": "09vkm9asmjz1in0f63s7bf4amifspsqf5w9pxiy5y0qvmn28fr2r",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.0",
+ "deps": []
+ },
+ "doremi": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/doremi.el",
+ "sha256": "0b50iwyjxnhny9kzbcqxwqwa5fg5xbldm7l4jzcyl3bmcdbg4w7q"
+ },
+ "recipe": {
+ "sha256": "11i4cdxgrspx44p44zz5py89ypji5li6p5w77wy0b07i8a5gq2gb",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": []
+ },
+ "grizzl": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "d11wtq",
+ "repo": "grizzl",
+ "sha256": "1bq73kcx744xnlm2yvccrzlbyx91c492sg7blx2a9z643v3gg1zs",
+ "rev": "c775de1c34d1e5a374e2f40c1ae2396b4b003fe7"
+ },
+ "recipe": {
+ "sha256": "1klds0w9qrsgfppq105qr69c26zi91y575db2hxr6h9vypf2rq24",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.1.1",
+ "deps": []
+ },
+ "hyde": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "nibrahim",
+ "repo": "Hyde",
+ "sha256": "0nwsmc4c3v0wbfy917ik9k7yz8yclfac695p7p9sh9y354k3maw4",
+ "rev": "181f9d2f91c2678a22243c5485162fa7999fd893"
+ },
+ "recipe": {
+ "sha256": "18kjcxm7qmv9bfh4crw37zgax8khjqs9zkp4lrb490zlad2asbs3",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.2",
+ "deps": []
+ },
+ "wid-edit+": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/wid-edit+.el",
+ "sha256": "080i3gfvhmpmjq9hbjpkvs8pi88s59ia5dvrng0gg5zd8xrwdc6k"
+ },
+ "recipe": {
+ "sha256": "1wwrsk14hc0wrvy7hm94aw6zg50n2smlqwr6frwpi7yp8y394wiv",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": []
+ },
+ "pabbrev": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "phillord",
+ "repo": "pabbrev",
+ "sha256": "073qpa223ja673p63mhvy4l6yyv3k7z05ifwvn7bmq4b5fq42hw6",
+ "rev": "127a8b10cf352b0491fefd2f4178ba78ee587564"
+ },
+ "recipe": {
+ "sha256": "1mbfa40pbzbi00sp155zm43sj6nw221mcayc2rk3ppin9ps95hx3",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "4.1",
+ "deps": []
+ },
+ "auto-indent-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "mattfidler",
+ "repo": "auto-indent-mode.el",
+ "sha256": "1hlsgsdxpx42kmqkjgy9b9ldz5i4dbi879v87pjd2qbkj8iywb6y",
+ "rev": "ad7032ee058a74405d04d775b0b384351536bc53"
+ },
+ "recipe": {
+ "sha256": "1nk78p8lqs8cx90asfs8iaqnwwyy8fi5bafaprm9c0nrxz299ibz",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.126",
+ "deps": []
+ },
+ "helm-ls-svn": {
+ "fetch": {
+ "tag": "fetchsvn",
+ "url": "https://svn.macports.org/repository/macports/users/chunyang/helm-ls-svn.el",
+ "sha256": "0b7gah21rkfd43mb89lrwaqrrwq646abh7wi4q74sx796gmpz4dz",
+ "rev": "143722"
+ },
+ "recipe": {
+ "sha256": "08mwzi340akw4ar20by0q981mzmzvf0wz3mn738q4inn2kqgs60d",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": [
+ "cl-lib",
+ "emacs",
+ "helm"
+ ]
+ },
+ "evil-leader": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "cofi",
+ "repo": "evil-leader",
+ "sha256": "1k2zinchs0jjllp8zkpggckyy63dkyi5yig3p46vh4w45jdzysk5",
+ "rev": "753b01eb4958370ae2226b3780ff31fe157c2852"
+ },
+ "recipe": {
+ "sha256": "154s2nb170hzksmc87wnzlwg3ic3w3ravgsfvwkyfi2q285vmra6",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.4.3",
+ "deps": [
+ "evil"
+ ]
+ },
+ "highlight": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/highlight.el",
+ "sha256": "01d7khl7d78wz37bz28wjszhdwz81lrq9vm9d4slnj2qg4by6dcy"
+ },
+ "recipe": {
+ "sha256": "0clv4mzy9kllcvc0cgsbx3a9anw68dc2c7vzwbrv13sw5gh9skc0",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": []
+ },
+ "darktooth-theme": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "emacsfodder",
+ "repo": "emacs-theme-darktooth",
+ "sha256": "1p7ih9fmcxnnxkj2mz56xa403m828wyyqvliabf5amklzjlhb3z9",
+ "rev": "ce2d8d5faeb72205bdcb192dfc1e4769e7088fa3"
+ },
+ "recipe": {
+ "sha256": "1vss0mg1vz4wvsal1r0ya8lid2c18ig11ip5v9nc80b5slbixzvs",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.1.37",
+ "deps": []
+ },
+ "window-layout": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "kiwanami",
+ "repo": "emacs-window-layout",
+ "sha256": "0jyymmbz03zj2ydca1rv6ra0b2brjl7pyl4897zd00j5kvqjdyif",
+ "rev": "9caf5be4ff1b5d1e141783d7133dab7a46424fef"
+ },
+ "recipe": {
+ "sha256": "1n4a6z00lxsffirjrmbaaw432w798b9vv34qawgn1k17y9l7gb85",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.3",
+ "deps": []
+ },
+ "edit-list": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "emacsmirror",
+ "repo": "edit-list",
+ "sha256": "0981hy1n50yizc3k06vbxqrpfml817a67kab1hkgkw5v6ymm1hc9",
+ "rev": "f460d3f9e208a4e606fe6ded307f1b011916ca71"
+ },
+ "recipe": {
+ "sha256": "0mi12jfgx06i0yr8k5nk80xryqszjv0xykdnri505862rb90xakv",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.3",
+ "deps": []
+ },
+ "grapnel": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "leathekd",
+ "repo": "grapnel",
+ "sha256": "0xcj1kqzgxifhrhpl9j2nfpnkd6213ix5z7f97269v3inpzaiyf5",
+ "rev": "7387234eb3f0285a490fddb1e06a4bf029719fb7"
+ },
+ "recipe": {
+ "sha256": "019cdx1wdx8sc2ibqwgp1akgckzxxvrayyp2sv806gha0kn6yf6r",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.5.3",
+ "deps": []
+ },
+ "ducpel": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "alezost",
+ "repo": "ducpel",
+ "sha256": "17yldk76mxakhb90bma7r4z9jgx02wankgk17r2di196mc04bj7b",
+ "rev": "ece785baaa102bd2e9d54257af3a92bacc5757bc"
+ },
+ "recipe": {
+ "sha256": "1cqrkgg7n9bhjswnpl7yc6w6yjs4gfbliaqsimmf9z43wk2ml4pc",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.1",
+ "deps": [
+ "cl-lib"
+ ]
+ },
+ "elfeed": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "skeeto",
+ "repo": "elfeed",
+ "sha256": "0132jl4fl2ycais9l0csykg466ppq8cc4181d3dx87zf7fdhrgwp",
+ "rev": "4c15ed9f9559285df196c9b793bd5168662b6532"
+ },
+ "recipe": {
+ "sha256": "1psga7fcjk2b8xjg10fndp9l0ib72l5ggf43gxp62i4lxixzv8f9",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.3.0",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "resize-window": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "dpsutton",
+ "repo": "resize-window",
+ "sha256": "1ywcnrrr4wp6c951mqfscvdgcmwyvxy80p40vi27nzbl977lb1xv",
+ "rev": "d4aa9e6e950f5e0455b20f4443fda20742ec0403"
+ },
+ "recipe": {
+ "sha256": "0h1hlj50hc97wxqpnmvg6w3qhdd9nbnb8r8v39ylv87zqjcmlp8l",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.1.0",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "forecast": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "cadadr",
+ "repo": "forecast.el",
+ "sha256": "1jw888nqmbi9kcd9ycl2fqrmrnqxnmkx72n0b3nf3hp7j956yb21",
+ "rev": "51526906140700f076bd329753abe7ae31b6da90"
+ },
+ "recipe": {
+ "sha256": "0whag2n1120384w304g0w4bqr7svdxxncdhnz4rznfpxlgiw2rsc",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.1.9",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "tox": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "chmouel",
+ "repo": "tox.el",
+ "sha256": "16217i8rjhgaa5kv8iq0s14b42v5rs8m2qlr60a0x6qzy65chq39",
+ "rev": "5c1a7c18cb7f2fd2da2386debf86012e6953e15d"
+ },
+ "recipe": {
+ "sha256": "1z81x8fs5q6r19hpqphsilk8wdwwnfr8w78x5x298x74s9mcsywl",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.3",
+ "deps": []
+ },
+ "init-open-recentf": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "zonuexe",
+ "repo": "init-open-recentf.el",
+ "sha256": "06w1vnfhjy8g62z6xajin5akgh30pa0kk56am61kv6mi5ia8fc96",
+ "rev": "39da6a50e7f39e6ccd9aada0c20d8b6d501cb487"
+ },
+ "recipe": {
+ "sha256": "0xlmfxhxb2car8vfx7krxmxb3d56x0r3zzkj8ds7yqvr65z85x2r",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.0.2",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "geben": {
+ "fetch": {
+ "tag": "fetchsvn",
+ "url": "http://geben-on-emacs.googlecode.com/svn/trunk/",
+ "sha256": "01kbvmylymm6qww45mbjjxmb8ccdl9c2pxdyqfq3g73vwzrvndk4",
+ "rev": "124"
+ },
+ "recipe": {
+ "sha256": "1hvvy1kp8wrb1qasm42fslgdkg095g4jxgzbnwpa4vp5cq270qbm",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": []
+ },
+ "date-field": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "aki2o",
+ "repo": "emacs-date-field",
+ "sha256": "1lmwnj2fnvijj9qp4rjggl7c4x91vnpb47rqaam6m2wmr5wbrx3w",
+ "rev": "11c9170d1f7b343233f7716d4c0a62be024c1654"
+ },
+ "recipe": {
+ "sha256": "0fmw13sa4ajs1xkrkdpcjpbp0jl9d81cgvwh93myg8yjjn7wbmvk",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.0.1",
+ "deps": [
+ "dash",
+ "log4e",
+ "yaxception"
+ ]
+ },
+ "slamhound": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "technomancy",
+ "repo": "slamhound",
+ "sha256": "09ccdgg2wgw3xmlkpjsaqmnmf7f8rhjy4g6ypsn1sk5rgbgk8aj8",
+ "rev": "2f896d6ba15d09aae66b5fdecc0d855f6b03abc9"
+ },
+ "recipe": {
+ "sha256": "14zlcw0zw86awd6g98l4h2whav9amz4m8ik877d1wsdjf69g7k9x",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.5.4",
+ "deps": []
+ },
+ "evil-numbers": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "cofi",
+ "repo": "evil-numbers",
+ "sha256": "13jg2xbh4p02x1nj77b6csb93hh56c1nv8kslcq2hjj3caipk4m8",
+ "rev": "8834eb2e8bd93561a706363946701d0d90546a9f"
+ },
+ "recipe": {
+ "sha256": "1lpmkklwjdf7ayhv99g9zh3l9hzrwm0hr0ijvbc7yz3n398zn1b2",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.4",
+ "deps": []
+ },
+ "switch-window": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "dimitri",
+ "repo": "switch-window",
+ "sha256": "1zpfilcaycj0l2q3zyvpjbwp5j3d9rrkacd5swzlr1n1klvbji48",
+ "rev": "cd4b06121aa5bac4c4b13b63526a99008def5f2b"
+ },
+ "recipe": {
+ "sha256": "02f0zjvlzms66w1ryhk1cbr4rqwklzvgcjfiicj0lcnqqx61m2k2",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.0.0",
+ "deps": []
+ },
+ "helm-robe": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "syohex",
+ "repo": "emacs-helm-robe",
+ "sha256": "163ljqar3vvbavzc8sk6rnf8awyc2rhh2g117fglswich3c8lnqg",
+ "rev": "7348d0bc0251b51979554ea678b970fd01c0efe9"
+ },
+ "recipe": {
+ "sha256": "1gi4nkm9xvnxv0frmhiiw8dkmnmhfpr9n0b6jpidlvr8xr4s5kyw",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.02",
+ "deps": [
+ "helm"
+ ]
+ },
+ "ac-capf": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "syohex",
+ "repo": "emacs-ac-capf",
+ "sha256": "0nyq34yq4jcp3p30ygma3iz1h0q551p33792byj76pa5ps09g1da",
+ "rev": "17571dba0a8f98111f2ab758e9bea285b263781b"
+ },
+ "recipe": {
+ "sha256": "1drgk5iz2wp3rxzd39pj0n4cfmm5z8zqlp50jw5z7ffbbg35qxbm",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.01",
+ "deps": [
+ "auto-complete",
+ "cl-lib"
+ ]
+ },
+ "lice": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "buzztaiki",
+ "repo": "lice-el",
+ "sha256": "0hi8s20vw4a5i5n5jlm5dzgsl1qpfyqbpskqszjls1xrrf3dd4zl",
+ "rev": "69f2d87984f3f3d469db35e241fbbe979384cd03"
+ },
+ "recipe": {
+ "sha256": "1hv2hz3153x0gk7f2js18dbx5pyprfdf2pfxb658fj16vxpp7y6x",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.2",
+ "deps": []
+ },
+ "mark-tools": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "stsquad",
+ "repo": "emacs-mark-tools",
+ "sha256": "0fcyspz7n97n84d9203mxgn8ar4rn52qa49s3vayfrbkn038j5qw",
+ "rev": "0e7ac2522ac84155cab341dc49f7f0b81067133c"
+ },
+ "recipe": {
+ "sha256": "1688y7lnzhwdva2ildjabzi10i87klfsgvs947i7gfgxl7jwhisq",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.03",
+ "deps": []
+ },
+ "echo-bell": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/echo-bell.el",
+ "sha256": "11914ca1q8szqyqihfm2q39cway3p6j1fdggr99lk6848dkf5p1v"
+ },
+ "recipe": {
+ "sha256": "0adhdfbcpmdhd9252rh0jik2z3v9bzf0brpzfvcjn5py2x6724ws",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": []
+ },
+ "dedicated": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "emacsorphanage",
+ "repo": "dedicated",
+ "sha256": "0pba9s0h37sxyqh733vi6k5raa4cs7aradipf3826inw36jcw414",
+ "rev": "8275fb672f9cc4ba6682ebda0ef91db827e32992"
+ },
+ "recipe": {
+ "sha256": "1ka8n02r3nd2ksbid23g2qd6707c7xsjx7lbbdi6pcmwam5mglw9",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.0.0",
+ "deps": []
+ },
+ "pixiv-novel-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "zonuexe",
+ "repo": "pixiv-novel-mode.el",
+ "sha256": "1wg8pcwd70ixn2bxh01934zl12ry4pgx3l9dccpbjdi40gira00d",
+ "rev": "4dd9caf749190fab8f0b33862b3894b635de46c5"
+ },
+ "recipe": {
+ "sha256": "0f1rxvf9nrw984122i6dzsgik9axfjv6yscmg203s065n9lz17px",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.0.3",
+ "deps": []
+ },
+ "edit-indirect": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "Fanael",
+ "repo": "edit-indirect",
+ "sha256": "10c84aad1lnr7z9f75k5ylgchykr3srcdmn88hlcx2n2c4jfbkds",
+ "rev": "d1ab87fdfbc2a894a7eaac8b289a5af2d7c835b0"
+ },
+ "recipe": {
+ "sha256": "0q5jjmrvx5kaajllmhaxihsab2kr1vmcsfqrhxdhw3x3nf41s439",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.1.2",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "morlock": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "tarsius",
+ "repo": "morlock",
+ "sha256": "1ndgw4799d816pkn2bwja5kmigydpmj9znn8cax4dxsd9fg2hzjy",
+ "rev": "804131c7cff5dafa762c666fd66458111e4ee36f"
+ },
+ "recipe": {
+ "sha256": "0693jr1k8mzd7hwp52azkl62c1g1p5yinarjcmdksfyqblqq5jna",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.5.0",
+ "deps": []
+ },
+ "auto-complete": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "auto-complete",
+ "repo": "auto-complete",
+ "sha256": "0q880dksf3bj1hixa4zhj3ybvrqf1wcnjnmb37i49qwdy6p1ma06",
+ "rev": "70770b17168c30fe482467d7219cfbe8650c5e1c"
+ },
+ "recipe": {
+ "sha256": "1c4ij5bnclg94jdzhkqvq2vxwv6wvs051mbki1ibjm5f2hlacvh3",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.5.0",
+ "deps": [
+ "cl-lib",
+ "popup"
+ ]
+ },
+ "sparql-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "ljos",
+ "repo": "sparql-mode",
+ "sha256": "1gk2ps7fn9z8n6r923qzn518gz9mrj7mb6j726cz8qb585ndjbij",
+ "rev": "303858e7f91829ec720141482c777460e66f310b"
+ },
+ "recipe": {
+ "sha256": "1xicrfmgxpb31lz30qj450w8v7dl4ipjp7b2wz54s4kn88nsfj7d",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.11.2",
+ "deps": [
+ "cl-lib"
+ ]
+ },
+ "expand-region": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "magnars",
+ "repo": "expand-region.el",
+ "sha256": "0rvkhjfkhamr3ys9iarblfwvwq7n4wishdjgnwj1lx7m80h1hzbg",
+ "rev": "90c4e959ac8bf0bbd857dd679f38a121c592bf7a"
+ },
+ "recipe": {
+ "sha256": "1c7f1nqsqdc75h22fxxnyg0m4yxj6l23sirk3c71fqj14paxqnwg",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.10.0",
+ "deps": []
+ },
+ "auto-compile": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "tarsius",
+ "repo": "auto-compile",
+ "sha256": "07vnk8az4lcxncqn01jvks38b4hpdmg43nbby2b39zy50agqnwsg",
+ "rev": "90eddfb63bd2b58be8a3fe9400b67ea45f67bb29"
+ },
+ "recipe": {
+ "sha256": "1cdv41hg71mi5ixxi4kiizyg03xai2gyhk0vz7gw59d9a7482yks",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.3.0",
+ "deps": [
+ "dash",
+ "emacs",
+ "packed"
+ ]
+ },
+ "redpen-paragraph": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "karronoli",
+ "repo": "redpen-paragraph.el",
+ "sha256": "19c5rkb4nn6fs85lixrgrv8gagr69h430inig31dvm4fip9xdjp9",
+ "rev": "e942c41c0308d8fbac1f145387d4f6ea1091e26b"
+ },
+ "recipe": {
+ "sha256": "0jr707ik6fhznq0q421l986w85ah0n9b4is91zrgbk1v6miqrhca",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.22",
+ "deps": [
+ "cl-lib",
+ "emacs"
+ ]
+ },
+ "r-autoyas": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "mattfidler",
+ "repo": "r-autoyas.el",
+ "sha256": "02bddznlqys37fnhdpp2g9xa9m7kfgrj1vl0hc5kr42hggk9wwmg",
+ "rev": "563254f01ce530ca4c9be1f23395e3fd7d520ff9"
+ },
+ "recipe": {
+ "sha256": "18zifadsgbwnga205jvpx61wa2dvjxmxs5v7cjqhny45a524nbv4",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.28",
+ "deps": []
+ },
+ "buffer-stack": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/buffer-stack.el",
+ "sha256": "0d87cl7a4rcd6plbjyf26vaar7imwd18z24xdi4dz734m9zbkg6r"
+ },
+ "recipe": {
+ "sha256": "00vxfd4ki5pqf9n9vbmn1441vn2y14bdr1v05h46hswf13b4hzrn",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": []
+ },
+ "frame-fns": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/frame-fns.el",
+ "sha256": "0vh3k8wjvf78r5gv6sn468a4gxfxf4f63csk54izgyspyv6mj9c7"
+ },
+ "recipe": {
+ "sha256": "1wq8wva9q1hdzkvjk582a3fgig0lpqz9ch1p2jd6p29kb1i15f5p",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": []
+ },
+ "search-web": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "tomoya",
+ "repo": "search-web.el",
+ "sha256": "08yc67a4ji7z8s0zh500wiscziqsxi92i1d33fjla2mcr8sxxn0i",
+ "rev": "c4ae86ac1acfc572b81f3d78764bd9a54034c331"
+ },
+ "recipe": {
+ "sha256": "0qqx9l8dn1as4gqpq80jfacn6lz0132m91pjzxv0fx6al2iz0m36",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.1",
+ "deps": []
+ },
+ "clips-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "grettke",
+ "repo": "clips-mode",
+ "sha256": "0i6sj5rs4b9v8aqq9l6wr15080qb101hdxspx6innhijhajgmssd",
+ "rev": "a3ab4a3e958d54a16544ec38fe6338f27df20817"
+ },
+ "recipe": {
+ "sha256": "083wrhjn04rg8vr6j0ziffdbdhbfn63wzl4q7yzpkf8qckh6mxhf",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.7",
+ "deps": []
+ },
+ "kivy-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "kivy",
+ "repo": "kivy",
+ "sha256": "0qz2q9c5q0l3ibhil2z10yb161fimgdwyp6q8izs9d59qdlmr8x8",
+ "rev": "7c5b1dc7c50a67079a41f27b1cea1a652119a7bc"
+ },
+ "recipe": {
+ "sha256": "02l230rwivr7rbiqm4vg70458z35f9v9w3mdapcrqd5d07y5mvi1",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.9.0",
+ "deps": []
+ },
+ "mpv": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "kljohann",
+ "repo": "mpv.el",
+ "sha256": "1pjhch8vah0kf73fl2fk6khhrx1kflggd3zlxrf7w4fxr0qn8la3",
+ "rev": "059135de3979e044f14503806047476d9be9f0e8"
+ },
+ "recipe": {
+ "sha256": "1vq308ac6jj1h8qa2b2sypisb38hbvwjimqndhpfir06fghkw94l",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.1.0",
+ "deps": [
+ "cl-lib",
+ "emacs",
+ "json",
+ "names",
+ "org"
+ ]
+ },
+ "apropos-fn+var": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/apropos-fn+var.el",
+ "sha256": "0q1b2x4z0ds4y45gy7sxc68xyai3g8kmqnssnhdina4x20sgm2vf"
+ },
+ "recipe": {
+ "sha256": "1s5gnsipsj7dhc8ca806grg32i6vlwm78hcxhrbs830vx9k84g5x",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": []
+ },
+ "concurrent": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "kiwanami",
+ "repo": "emacs-deferred",
+ "sha256": "0059jy01ni5irpgrj9fa81ayd9j25nvmjjm79ms3210ysx4pgqdr",
+ "rev": "5ef948e9b4c29a1c02d3f1613b21cd0d6d7ef476"
+ },
+ "recipe": {
+ "sha256": "09wjw69bqrr3424h0mpb2kr5ixh96syjjsqrcyd7z2lsas5ldpnf",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.3.2",
+ "deps": [
+ "deferred"
+ ]
+ },
+ "grep+": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/grep+.el",
+ "sha256": "03a4mmhbkwj2bq48525jba6wiczs943lmlhvy5vz8x4hb47rlmc3"
+ },
+ "recipe": {
+ "sha256": "1qj4f6d3l88bdcnq825pylnc76m22x2i15yxdhc2b6rv80df7zsx",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": []
+ },
+ "helm-zhihu-daily": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "xuchunyang",
+ "repo": "helm-zhihu-daily",
+ "sha256": "1j6ssbjbm5ym3pg0icpfp735y4dfhlky9qhl9hwp2n3wmba5g9h1",
+ "rev": "fcc534bb42c81070063b28d3d939a53af0fa9a7c"
+ },
+ "recipe": {
+ "sha256": "0hkgail60s9qhxl0pskqxjvfz93iq1qh1kcmcq0x5kq7d08b911r",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.2",
+ "deps": [
+ "cl-lib",
+ "emacs",
+ "helm"
+ ]
+ },
+ "vector-utils": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "rolandwalker",
+ "repo": "vector-utils",
+ "sha256": "0lzq31zqnk32vfp3kicnvgfr3nkv8amjzxmk9nrz1kwgmq7gvkjk",
+ "rev": "2bd63c8ade1a2b6f8aac403c5f25adda2215a685"
+ },
+ "recipe": {
+ "sha256": "07armr23pq5pd47lqhir6a59r86c84zikbc51d8vfcaw8y71yr5n",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.1.2",
+ "deps": []
+ },
+ "bongo": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "dbrock",
+ "repo": "bongo",
+ "sha256": "1q3ws2vn062dh7ci6jn2k2bcn7szh3ap64sgwkzdd6f1pas37fnr",
+ "rev": "c5280a11fe8ff39fba4b09ec4a39b0f799d2b59c"
+ },
+ "recipe": {
+ "sha256": "07i9gw067r2igp6s2g2iakm1ybvw04q6zznna2cfdf08nax64ghv",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.0",
+ "deps": []
+ },
+ "ac-dabbrev": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/ac-dabbrev.el",
+ "sha256": "0q0lbhdng5s5hqa342yyvg02hf2bfbwq513lj1rlaqz4ykvpd7fh"
+ },
+ "recipe": {
+ "sha256": "03lndw7y55bzz4rckl80j0kh66qa82xxxhfakzs1dh1h9f1f0azh",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": []
+ },
+ "caskxy": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "aki2o",
+ "repo": "caskxy",
+ "sha256": "1j1lw5zifp7q1ykm6si0nzxfp7n3z2lzla2njkkxmc2s6m7w4x1a",
+ "rev": "279f3ab79bd77fe69cb3148a79896b9bf118a9b3"
+ },
+ "recipe": {
+ "sha256": "0x4s3c8m75zxsvqpgfc5xwll0489zzdnngmnq048z9gkgcd7pd2s",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.0.5",
+ "deps": [
+ "log4e",
+ "yaxception"
+ ]
+ },
+ "aurora-config-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "bdd",
+ "repo": "aurora-config.el",
+ "sha256": "0ns1xhpk1awbj3kv946dv11a99p84dhm54vjk72kslxwx42nia28",
+ "rev": "0a7ca7987c3a0824e25470389c7d25c337a81593"
+ },
+ "recipe": {
+ "sha256": "0yqmpwj1vp0d5w9zw1hbyxzsbvw165dsgk1v1dxizkqwn7b1v7jm",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.0.2",
+ "deps": []
+ },
+ "twittering-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "hayamiz",
+ "repo": "twittering-mode",
+ "sha256": "193v98i84xybm3n0f30jin5q10i87vbcnbdhl4zqi7jij9p5v98z",
+ "rev": "27e7f3aab238bd0788fd3b471c645c3ceceb0f13"
+ },
+ "recipe": {
+ "sha256": "0v9ijxw5jazh2hc0qab48y71za2l9ryff0mpkxhr3f79irlqy0a1",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "3.0.0",
+ "deps": []
+ },
+ "rtags": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "Andersbakken",
+ "repo": "rtags",
+ "sha256": "0ndyvpgbvfcnxf74ffaby36rqsnwj10j1s9vr3gan9mqi6spcggf",
+ "rev": "ba85598841648490e64246be802fc2dcdd45bc3c"
+ },
+ "recipe": {
+ "sha256": "16jvbr4nm48p3dj9wmysjaxyz4ajcay19risqrs9fzrifkr21c9p",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "2.0",
+ "deps": []
+ },
+ "skewer-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "skeeto",
+ "repo": "skewer-mode",
+ "sha256": "05jndz0c26q60s416vqgvr66axdmxb7qsr2g70fvl5iqavnayhpv",
+ "rev": "8a3a22ef4fe4d9d0831e82fde08c6355d0b19ed4"
+ },
+ "recipe": {
+ "sha256": "1zp4myi9f7pw6zkgc0xg12585iihn7khcsf20pvqyc0vn4ajdwqm",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.6.2",
+ "deps": [
+ "emacs",
+ "js2-mode",
+ "simple-httpd"
+ ]
+ },
+ "yesql-ghosts": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "magnars",
+ "repo": "yesql-ghosts",
+ "sha256": "0yvz7lmid4jcikb9jmc7h2lcry3fdyy809k25nyasj2bk41xqqsd",
+ "rev": "bd834e97f263f9f981758c1462bc6297a83ca852"
+ },
+ "recipe": {
+ "sha256": "1hxzbnfd15f0ifdqjbw9nhxd0z46x705v2bc0xl71nav78fgpswf",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.1.0",
+ "deps": [
+ "cider",
+ "dash",
+ "s"
+ ]
+ },
+ "latex-extra": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "Malabarba",
+ "repo": "latex-extra",
+ "sha256": "1rr6cgx70avqf1b19la7g8cav926676a76cflkkw18c1bsw83ss3",
+ "rev": "455b7873de095cbce6aa256f33cf64dba3dbaa29"
+ },
+ "recipe": {
+ "sha256": "1w98ngxymafigjpfalybhs12jcf4916wk4nlxflfjcx8ryd9wjcj",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.11",
+ "deps": [
+ "auctex",
+ "cl-lib"
+ ]
+ },
+ "transpose-frame": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/transpose-frame.el",
+ "sha256": "1f67yksgw9s6j0033hmqzaxx2a93jm11sd5ys7cc3li5gfh680m4"
+ },
+ "recipe": {
+ "sha256": "0bqip7vckic3kfq3d31ifs1zics1djxwj2jadafj6f1agv02sdz5",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": []
+ },
+ "travis": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "nlamirault",
+ "repo": "emacs-travis",
+ "sha256": "1jd7xsvs4m55fscp62a9lk59ip4sgifv4kazl55b7543nz1i31bz",
+ "rev": "c8769d3db10ed4604969049e3bd276afa0a0138e"
+ },
+ "recipe": {
+ "sha256": "1km496cq1vni9gy2d3z4c9524q62750ywz745rjz4r7178ip9mix",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.6.0",
+ "deps": [
+ "dash",
+ "pkg-info",
+ "request",
+ "s"
+ ]
+ },
+ "project-explorer": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "sabof",
+ "repo": "project-explorer",
+ "sha256": "1hv8ifrpwn434sm41vkgbwni21ma5kfybkwasi6zp0f2b5i9ziw7",
+ "rev": "7c2cc86a81f679dda355110f916366b64893a5d4"
+ },
+ "recipe": {
+ "sha256": "076lzmyi1n7yrgdgyh9qinq271qk6k64x0msbzarihr3p4psrn8m",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.14.3",
+ "deps": [
+ "cl-lib",
+ "emacs",
+ "es-lib",
+ "es-windows"
+ ]
+ },
+ "sequential-command": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/sequential-command.el",
+ "sha256": "0vg8rqzzi29swznhra2mnf45czr2vb77dpcxn3j0fi7gynx3wcwk"
+ },
+ "recipe": {
+ "sha256": "03qybacgy5fs3lam73x0rds4f68s173mhbah6rr97272nikd50v1",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": []
+ },
+ "ac-helm": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "yasuyk",
+ "repo": "ac-helm",
+ "sha256": "1gw38phyaslpql7szvlpwgyfngdgd21f6lq406vq0gjwwmxgig34",
+ "rev": "f2110576b0eb35850a7f638c1a991a9fa0c8da3a"
+ },
+ "recipe": {
+ "sha256": "16ajxlhcah5zbvywpc6l4l1arr308gjpgvdx6l1nrv2zvpckhlwq",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "2.1",
+ "deps": [
+ "auto-complete",
+ "helm",
+ "popup"
+ ]
+ },
+ "rainbow-delimiters": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "Fanael",
+ "repo": "rainbow-delimiters",
+ "sha256": "0gxc8j5a14bc9mp43cbcz41ipc0z1yvmypg52dnl8hadirry20gd",
+ "rev": "0823d0c67f935a4c36a1c945e93051102963c7fb"
+ },
+ "recipe": {
+ "sha256": "132nslbnszvbgkl0819z811yar3lms1hp5na4ybi9gkmnb7bg4rg",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "2.1.1",
+ "deps": []
+ },
+ "pp+": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/pp+.el",
+ "sha256": "1997hkxnnhrhkszzxmhabkh8ifb07bzr0w9svx8yynn22j0s5dmh"
+ },
+ "recipe": {
+ "sha256": "1ng5x7dp85y6yqj6q43h08qdnapg2j1ab8rmc47w4w79d1pryniq",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": []
+ },
+ "genrnc": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "aki2o",
+ "repo": "emacs-genrnc",
+ "sha256": "08cw1fa25kbhbq2sp1cpn90bz38i9hjfdj93xf6wvki55b52s0nn",
+ "rev": "da75b1966a73ad215ec2ced4522c25f4d0bf1f9a"
+ },
+ "recipe": {
+ "sha256": "1nwbdscl0yh9j1n421can93m6s8j9dkyb3xmpampr6x528g6z0lm",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.1.0",
+ "deps": [
+ "concurrent",
+ "deferred",
+ "log4e",
+ "yaxception"
+ ]
+ },
+ "unicode-progress-reporter": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "rolandwalker",
+ "repo": "unicode-progress-reporter",
+ "sha256": "0qy1hla7vf674ynqdzsaw2cnk92nhpcimww5q94rc0a95pzw64wd",
+ "rev": "f4705332412b12fc72ca868b77c78465561bda75"
+ },
+ "recipe": {
+ "sha256": "03z7p27470fqy3gd356l9cpp44a35sfrxz94dxmx388rzlygk7y7",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.5.4",
+ "deps": [
+ "emacs",
+ "pcache",
+ "persistent-soft",
+ "ucs-utils"
+ ]
+ },
+ "fm": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "emacsmirror",
+ "repo": "fm",
+ "sha256": "0r2j238iyxnww60xpbxggjmz6y2waayw4m51f0l39hszbhags2cv",
+ "rev": "6266840de17ac396dd7275a71da72cd5120c35a6"
+ },
+ "recipe": {
+ "sha256": "118d8fbhlv6i2rsyfqdhi841p96j7q4fab5qdg95ip40wq02dg4f",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.0",
+ "deps": []
+ },
+ "company-anaconda": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "proofit404",
+ "repo": "company-anaconda",
+ "sha256": "1i6788qfinh47c5crgr57ykgbp6bvk1afcl00c8gywxsf8srvnvy",
+ "rev": "137ba58960a5feeb23aff34c9225fdf161f49f98"
+ },
+ "recipe": {
+ "sha256": "1s7y47ghy7q35qpfqavh4p9wr91i6r579mdbpvv6h5by856yn4gl",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.1.0",
+ "deps": [
+ "anaconda-mode",
+ "cl-lib",
+ "company",
+ "dash",
+ "s"
+ ]
+ },
+ "inlineR": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "myuhe",
+ "repo": "inlineR.el",
+ "sha256": "15nasjknmzy57ilj1gaz3w5sj8b3ijcpgwcd6w2r9xhgcl86m40q",
+ "rev": "29357186beca825e3d0451b700ec09b9ed65e37b"
+ },
+ "recipe": {
+ "sha256": "1fflq2gkpfn3jkv4a6yywzmxsq6qszfid1ri85ass1ppw6scdvzw",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.0",
+ "deps": []
+ },
+ "evil-tutor": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "syl20bnr",
+ "repo": "evil-tutor",
+ "sha256": "1rskvkmz30xyy8xfjf2i35f3dxh663gb3plfy3f0j6z17i086jl2",
+ "rev": "909273bac88b98a565f1b89bbb13d523b7edce2b"
+ },
+ "recipe": {
+ "sha256": "1hvc2w5ykrgh62n4sxqqqcdk5sd7nmh6xzv4mir5vf9y2dgqcvsn",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.0",
+ "deps": [
+ "evil"
+ ]
+ },
+ "flycheck-dmd-dub": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "atilaneves",
+ "repo": "flycheck-dmd-dub",
+ "sha256": "1ap5hgvaccmf2xkfvyp7rqcfjwmiy6mhr6ccgahxm2z0vm51kpyh",
+ "rev": "e8744adaba010415055ac15c702f780dd6e13e14"
+ },
+ "recipe": {
+ "sha256": "0pg3sf7h6xqv65yqclhlb7fx1mp2w0m3qk4vji6m438kxy6fhzqm",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.9",
+ "deps": [
+ "flycheck"
+ ]
+ },
+ "evil-visualstar": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "bling",
+ "repo": "evil-visualstar",
+ "sha256": "1n2c0gkd6s9c8sqzinq17lnn7n5wpfj7ri50bjsk452wq8xfg94j",
+ "rev": "de939b4013f52a19d1e413c601bbcea88f0233ac"
+ },
+ "recipe": {
+ "sha256": "135l9hjfbpn0a6p53picnpydi9qs5vrk2rfn64gxa5ag2apcyycy",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.1.0",
+ "deps": [
+ "evil"
+ ]
+ },
+ "rainbow-identifiers": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "Fanael",
+ "repo": "rainbow-identifiers",
+ "sha256": "05i0jpmxzsj2lsj48cafn3v93z37l7k5kaza2ik3yirdpjdibyrh",
+ "rev": "19fbfded1baa98d12335f26f6d7b20e5ae44ce2e"
+ },
+ "recipe": {
+ "sha256": "0lw790ymrgpyh0sxwmzinl2ik5vl5vggbg14cd0cx5yagkw5y3mp",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.2.2",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "demangle-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "liblit",
+ "repo": "demangle-mode",
+ "sha256": "13jfhc9gavvb9dxmgi3k7ivp5iwh4yw4m11r2s8wpwn6p056bmfl",
+ "rev": "07e62a7f976f6c7366b4b0475bbb5cff881452b8"
+ },
+ "recipe": {
+ "sha256": "0ky0bb6rc99vrdli4lhs656qjndnla9b7inc2ji9l4n1zki5qxzk",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.1",
+ "deps": [
+ "cl-lib",
+ "emacs"
+ ]
+ },
+ "github-clone": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "dgtized",
+ "repo": "github-clone.el",
+ "sha256": "18c169nxvdl7iv18pyqx690ldg6pkc8njaxdg1cww6ykqzqnfxh7",
+ "rev": "ab048cf49d9ebda73acae803bc44e731e629d540"
+ },
+ "recipe": {
+ "sha256": "0ffrm4lmcj3d9kx3g2d5xbiih7hn4frs0prjrvcjq8acvsbc50q9",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.2",
+ "deps": [
+ "emacs",
+ "gh",
+ "magit"
+ ]
+ },
+ "shrink-whitespace": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "jcpetkovich",
+ "repo": "shrink-whitespace.el",
+ "sha256": "050gmxdk88zlfjwi07jsj2mvsfcv5imhzcpa6ip3cqkzpmw3pl32",
+ "rev": "24518d58e8e692fa98a73d5e7cd44c1536ab4e42"
+ },
+ "recipe": {
+ "sha256": "12if0000i3rrxcm732layrv2h464wbb4xflbbfc844c83dbx1jmq",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.0.1",
+ "deps": []
+ },
+ "hi2": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "nilcons",
+ "repo": "hi2",
+ "sha256": "1s08sgbh5v59lqskd0s1dscs6dy7z5mkqqkabs3gd35agbfvbmlf",
+ "rev": "c9d199727b5cdcb9e36a972b38131ce4611fd6c8"
+ },
+ "recipe": {
+ "sha256": "1wxkjg1jnw05lqzggi20jy2jl20d8brvv76vmrf6lnz62g6jv9h2",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.0",
+ "deps": []
+ },
+ "deferred": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "kiwanami",
+ "repo": "emacs-deferred",
+ "sha256": "0059jy01ni5irpgrj9fa81ayd9j25nvmjjm79ms3210ysx4pgqdr",
+ "rev": "5ef948e9b4c29a1c02d3f1613b21cd0d6d7ef476"
+ },
+ "recipe": {
+ "sha256": "0axbvxrdjgxk4d1bd9ar4r5nnacsi8r0d6649x7mnhqk12940mnr",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.3.2",
+ "deps": []
+ },
+ "bind-key": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "jwiegley",
+ "repo": "use-package",
+ "sha256": "07vwg0bg719gb8ln1n5a33103903vvrphnkbvvfn43904pkrf14w",
+ "rev": "2b077f6e485e8c5c167413c03246068022b6bc71"
+ },
+ "recipe": {
+ "sha256": "1qw2c27016d3yfg0w10is1v72y2jvzhq07ca4h6v17yi94ahj5xm",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "2.1",
+ "deps": []
+ },
+ "bbdb-": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "aki2o",
+ "repo": "bbdb-",
+ "sha256": "17nbnkg0zn6p89r27mk9hl6qhv6xscwdsq8iyikdw03svpr16lnp",
+ "rev": "2839e84c894de2513af41053e80a277a1b483d22"
+ },
+ "recipe": {
+ "sha256": "1vzbalcchay4pxl9f1sxg0zclgc095f59dlj15pj0bqq61sbl9jf",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.0.2",
+ "deps": [
+ "bbdb",
+ "log4e",
+ "yaxception"
+ ]
+ },
+ "ace-pinyin": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "cute-jumper",
+ "repo": "ace-pinyin",
+ "sha256": "10n01sgdi1zq1fyb5ani1fbvwfnqnj74rxzmw5v0y72cwq27r9kr",
+ "rev": "10f66ba2355bed78ef0a1ad24edb00972a0dbe02"
+ },
+ "recipe": {
+ "sha256": "18gmj71zd0i6yx8ifjxsqz2v81jx0j37f5kxllf31w7fj32ymbkc",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.2.3",
+ "deps": [
+ "ace-jump-mode",
+ "avy"
+ ]
+ },
+ "prop-menu": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "david-christiansen",
+ "repo": "prop-menu-el",
+ "sha256": "18ap2liz5r5a8ja2zz9182fnfm47jnsbyblpq859zks356k37iwc",
+ "rev": "50b102c1c0935fd3e0c465feed7f27d66b21cdf3"
+ },
+ "recipe": {
+ "sha256": "0dhy52fxxpa058mhhx0slw3sly3dlxm9vkax6fd1sap6f6v00p5i",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.1.2",
+ "deps": [
+ "cl-lib",
+ "emacs"
+ ]
+ },
+ "swbuff": {
+ "fetch": {
+ "tag": "fetchcvs",
+ "module": "emhacks/swbuff.el",
+ "cvsRoot": ":pserver:anonymous@emhacks.cvs.sourceforge.net:/cvsroot/emhacks",
+ "sha256": "c579839fb395f1f778683324269269ca3d916995177804ca5dff3548007ec4b5"
+ },
+ "recipe": {
+ "sha256": "1p4jj2ikhfp56d9iai1n1x2ggf1nsfkrhfnggbvk4zb0d2wy3l44",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": []
+ },
+ "bbcode-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "ejmr",
+ "repo": "bbcode-mode",
+ "sha256": "1xvxz9sk9l57a4kiiavxxdp0v241mfgiy2lg5ilacq1cd6xrrhky",
+ "rev": "e693ab09c3f34cabfd185e7c249c0b5403f0a7e0"
+ },
+ "recipe": {
+ "sha256": "0ixxavmilr6na56yc148prbh3nlhcwir6rxqvh332cr8vr9gmp89",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "2.0.0",
+ "deps": []
+ },
+ "fold-dwim": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "emacsmirror",
+ "repo": "fold-dwim",
+ "sha256": "1k8z30imlxvqm7lv12kgqdfgc5znxyvl9jxi8j2ymmwlgy11f726",
+ "rev": "4764b0246a722d37eb8ec9f204ffaccaad1755d0"
+ },
+ "recipe": {
+ "sha256": "0c9yxx45zlhb1h4ldgkjv7bndwlagpyingaaqn9dcsxidrvp3p5x",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.2",
+ "deps": []
+ },
+ "cake-inflector": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "k1LoW",
+ "repo": "emacs-cake-inflector",
+ "sha256": "1w7yq35gzzwyf480d8gc5r6jbnawg09l6663q068ir6zr9pp4far",
+ "rev": "40bf11890842ba305954528694e1c39a8b73737b"
+ },
+ "recipe": {
+ "sha256": "04mrqcm1igb638skaq2b3nr5yzxnck2vwhln61rnh7lkfxq7wbwf",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.1.1",
+ "deps": [
+ "s"
+ ]
+ },
+ "purescript-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "dysinger",
+ "repo": "purescript-mode",
+ "sha256": "1wk319akv0scvyyjsd48pisi2i1gkahhsan9hfszrs6xx3anvfd9",
+ "rev": "6a4d4bdd178c65183a715c7729941a0b8fe5f253"
+ },
+ "recipe": {
+ "sha256": "00gz752mh7144nsaka5q3q4681jp845kc5vcy2nbfnqp9b24l55m",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "13.10",
+ "deps": []
+ },
+ "centered-cursor-mode": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/centered-cursor-mode.el",
+ "sha256": "15psyizjz8wf9wfxwwcdmg1bxf8jbv0qy40rskz7si7vxin8hhxl"
+ },
+ "recipe": {
+ "sha256": "0a5mymnkwjvpra8iffxjwa5fq3kq4vc8fw7pr7gmrwq8ml7il5zl",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": []
+ },
+ "rectangle-utils": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "thierryvolpiatto",
+ "repo": "rectangle-utils",
+ "sha256": "048pjrd04w6w4v6r56yblbqgkjh01xib7k1i6rjc6288jh5vr1vm",
+ "rev": "9328291ad043fdf617cd2191692f13fba5f9a9bb"
+ },
+ "recipe": {
+ "sha256": "1w5z2gykydsfp30ahqjihpvq04c5v0cfslbrrg429hycys8apws7",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.0",
+ "deps": [
+ "cl-lib",
+ "emacs"
+ ]
+ },
+ "hippie-namespace": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "rolandwalker",
+ "repo": "hippie-namespace",
+ "sha256": "0nfr8ad0klqwi97fjchvwx9mfc672lhv3ll166sr8vn6jlh7rkv0",
+ "rev": "79a662dfe9e61341e071b879f4f9101ca027ad10"
+ },
+ "recipe": {
+ "sha256": "1bzjhq116ci9c9f0aw121fn3drmg2pw5ny1w6wcasa4p30syxxf0",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.5.8",
+ "deps": []
+ },
+ "sbt-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "hvesalai",
+ "repo": "sbt-mode",
+ "sha256": "0y846zmcz5x2jn5bndm0mfi18jc5cd1fkidgc4wvqmm0w30gyx4q",
+ "rev": "be70372bb0890a4f8bec1b6ef10b30ed2e3f5236"
+ },
+ "recipe": {
+ "sha256": "0a2ynbxgjgbm2nvrgss59xc98kmryf9bmd3qg7qxacyancyi2gxh",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.1",
+ "deps": [
+ "scala-mode2"
+ ]
+ },
+ "shpec-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "shpec",
+ "repo": "shpec-mode",
+ "sha256": "09454mcjd8n1090pjc5mk1dc6bn3bgh60ddpnv9hkajkzpcjxx4h",
+ "rev": "76bccd63e3b70233a6c9ca0798dd03550952cc76"
+ },
+ "recipe": {
+ "sha256": "155hc1nym3fsvflps8d3ixaqw1cafqp97zcaywdppp47n7vj8zjl",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.1.0",
+ "deps": []
+ },
+ "anything-replace-string": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "k1LoW",
+ "repo": "anything-replace-string",
+ "sha256": "1834yj2vgs4dasdfnppc8iw8ll3yif948biq9hj0sbpsa2d8y44k",
+ "rev": "1962f24243d6013bcef7e8d23136277d42e13130"
+ },
+ "recipe": {
+ "sha256": "1fagi6cn88p6sf1yhx1qsi7nw9zpyx9hdfl66iyskqwddfvywp71",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.9.2",
+ "deps": [
+ "anything"
+ ]
+ },
+ "novice+": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/novice+.el",
+ "sha256": "1lv911k9s0607g8mrhc42zb7s1cw0zqqafqbrk6w17j4hr53n897"
+ },
+ "recipe": {
+ "sha256": "0r4w4c6y4fny8k0kipzqjsn7idwbi9jq6x9yw51d41ra3pkpvfzf",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": []
+ },
+ "discover": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "mickeynp",
+ "repo": "discover.el",
+ "sha256": "0qxw30zrlcxhxb0alrgyiclrk44dysal8xsbz2mvgrb6jli8wg18",
+ "rev": "bbfda2b4e429985a8fa7971d264c942767cfa816"
+ },
+ "recipe": {
+ "sha256": "1hf57p90jn1zzhjl63zv9ascbgkcbr0p0zmd3fvzpjsw84235dga",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.3",
+ "deps": [
+ "makey"
+ ]
+ },
+ "ledger-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "ledger",
+ "repo": "ledger",
+ "sha256": "110yvfj01cfl40pf8c1ad8hy07kb6ibjiwvc8svfxrlhw5lca465",
+ "rev": "7eacf5130849b4d53948d4750e11bd08f8a97a27"
+ },
+ "recipe": {
+ "sha256": "0hi9waxmw1bbg88brlr3816vhdi0jj05wcwvrvfc1agvrvzyqq8s",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "3.1",
+ "deps": []
+ },
+ "eshell-autojump": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "coldnew",
+ "repo": "eshell-autojump",
+ "sha256": "0nkmwwx224r50y2xnrz3v26l3ngqshvy5hs861gy4zagwllqfmvc",
+ "rev": "c0866d7f2789831665ebb01b812bae89d085bff0"
+ },
+ "recipe": {
+ "sha256": "09l2680hknmdbwr4cncv1v4b0adik0c3sm5i9m3qbwyyxm8m41i5",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.2",
+ "deps": []
+ },
+ "company-restclient": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "iquiw",
+ "repo": "company-restclient",
+ "sha256": "0i1fh5lvqwlgn3g3fzh0xacxyljx6gkryipn133vfkv4jbns51n4",
+ "rev": "98e4b2af0e84ba4192c16288123aed96541c6401"
+ },
+ "recipe": {
+ "sha256": "1md0n4k4wmbh9rmbwqh3kg2fj0c34rzqfd56jsq8lcdg14k0kdcb",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.1.0",
+ "deps": [
+ "cl-lib",
+ "company",
+ "emacs",
+ "know-your-http-well",
+ "restclient"
+ ]
+ },
+ "ac-cake": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "k1LoW",
+ "repo": "emacs-ac-cake",
+ "sha256": "12z8nq797hjy0bq5vzpcm7z7bdn0ixc3ma4cj3v51xnwmgknzk6c",
+ "rev": "f01b3da7e2d20ea5a62daf62412c7dc1ad0130ff"
+ },
+ "recipe": {
+ "sha256": "0s2pgf0m98ixgadsnn201vm5gnawanpvxv56sf599f33krqnxzkl",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.0.0",
+ "deps": [
+ "auto-complete",
+ "cake"
+ ]
+ },
+ "el-swank-fuzzy": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/el-swank-fuzzy.el",
+ "sha256": "1g2jhm9m5qcj6a231n5ch6b8bqwzq3kj275nd4s89p89v1252qhn"
+ },
+ "recipe": {
+ "sha256": "1m7y4c0r1w8ndmr1wgc2llrbfawbbxnvcvgjpsckb3704s87yxr1",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": []
+ },
+ "org-transform-tree-table": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "jplindstrom",
+ "repo": "emacs-org-transform-tree-table",
+ "sha256": "1h15fr16kgbyrxambmk4hsmha6hx4c4yqkccb82g3wlvzmnqj5x3",
+ "rev": "0a9bf07f01bc5fc3b349aff64e83999a8de83b52"
+ },
+ "recipe": {
+ "sha256": "0n68cw769nk90ms6w1w6cc1nxjwn1navkz56mf11bsiqvsk3km7r",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.1.2",
+ "deps": [
+ "dash",
+ "s"
+ ]
+ },
+ "asilea": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "Fanael",
+ "repo": "asilea",
+ "sha256": "1s973vzivibaqjb8acn4ylrdasxh17jcfmmvqp4wm05nwhg75597",
+ "rev": "2aab1cc63b64ef08d12e84fd7ba5c94065f6039f"
+ },
+ "recipe": {
+ "sha256": "1lb8nr6r6yy06m4pxg8w9ja4zv8k5xwhl95v2wv95y1qwhgnwg3j",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.2.1",
+ "deps": [
+ "cl-lib",
+ "emacs"
+ ]
+ },
+ "icomplete+": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/icomplete+.el",
+ "sha256": "1vcv3ssmn5wwjnz6wcc0lsb0awxgqk5pn9p8zgwnj8qbag31b4ky"
+ },
+ "recipe": {
+ "sha256": "0gxqkj4bjrxb046qisfz22wvanxx6bzl4hfv91rfwm78q3484slx",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": []
+ },
+ "helm-package": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "syohex",
+ "repo": "emacs-helm-package",
+ "sha256": "14ad0b9d07chabjclffjyvnmrasar1di9wmpzf78bw5yg99cbisw",
+ "rev": "117f5f26c96c0854aadaf9c52aaec961195d5798"
+ },
+ "recipe": {
+ "sha256": "1qab2abx52xcqrnxzl0m3533ngp8m1cqmm3hgpzgx7yfrkanyi4y",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.03",
+ "deps": [
+ "cl-lib",
+ "helm"
+ ]
+ },
+ "mmm-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "purcell",
+ "repo": "mmm-mode",
+ "sha256": "097s4xnwfy8d1wzmz65g2f8bnjjjlj67w1yzwn4d3yasb171nbv8",
+ "rev": "4085494df67e0a3207839a175ac62673dfd0acc1"
+ },
+ "recipe": {
+ "sha256": "10vkqaf4684cm5yds1xfinvgc3v7871fb203sfl9dbkcgnd5dcjw",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.5.4",
+ "deps": []
+ },
+ "git-lens": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "pidu",
+ "repo": "git-lens",
+ "sha256": "0s1adgsigaq47vx8bfbmr5z8jq9y230ykwbw0jqka61n4ibg9ish",
+ "rev": "1feacc217c58fd4a41f9378eb09658f664036509"
+ },
+ "recipe": {
+ "sha256": "1vv3s89vk5ncinqh2f724z0qbbzp8g4y5y670ryy56w1l6v2acfb",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.4",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "emacs-setup": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "echosa",
+ "repo": "emacs-setup",
+ "sha256": "15l3ab11vcmzqibkd6h5zqw5a83k8dmgcp4n26px29c0gv6bkpy8",
+ "rev": "cc36ad5318c6c0e65d1b9ff8dff5ea2437675de2"
+ },
+ "recipe": {
+ "sha256": "1x4rh8vx6fsb2d6dz2g9j6jamin1vmpppwy3yzbl1dnf7w4hx4kh",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.0",
+ "deps": []
+ },
+ "dummy-h-mode": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/dummy-h-mode.el",
+ "sha256": "0zq94x4br3sk6n4chrfnw7hpnsicxa02fcpk8hw1hfsaq3327n6v"
+ },
+ "recipe": {
+ "sha256": "1h2pm37y9kz62id0rm0zzgh1hpkhd9gvq95kjd29w0awsp9b6ca4",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": []
+ },
+ "highlight-quoted": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "Fanael",
+ "repo": "highlight-quoted",
+ "sha256": "1ahg9qzss67jpw0wp2izys6lyss4nqjy9320fpa4vdx39msdmjjb",
+ "rev": "cdd7164f9ad3a9929387c08af641ef6f5f013f4f"
+ },
+ "recipe": {
+ "sha256": "0x6gxi0jfxvpx7r1fm43ikxlxilnbk2xbhdy9xivhgmmdyqiqqkl",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.1",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "wordsmith-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "istib",
+ "repo": "wordsmith-mode",
+ "sha256": "0s3mjmfjiidn3spklndw0dvcwbb9x034xyphp60aad8vjaflbchs",
+ "rev": "41b10f2fe3589da9812395cb417c3dcf906f0969"
+ },
+ "recipe": {
+ "sha256": "1570h1sjjaks6bnhd4xrbx6nna4v7hz6dmrzwjq37rwvallasg1n",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.0.0",
+ "deps": []
+ },
+ "makey": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "mickeynp",
+ "repo": "makey",
+ "sha256": "1rr7vpm3xxzcaam3m8xni3ajy8ycyljix07n2jzczayri9sd8csy",
+ "rev": "a61781e69d3b451551e269446e1c5f624ab81137"
+ },
+ "recipe": {
+ "sha256": "06xgrlkqvg288yd4lyhx4vi80jlfarhblxk5m5zzs5as7n08cvk4",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.3",
+ "deps": [
+ "cl-lib"
+ ]
+ },
+ "stumpwm-mode": {
+ "fetch": {
+ "tag": "fetchgit",
+ "url": "git://git.savannah.nongnu.org/stumpwm.git",
+ "sha256": "f5e3b0fdbdb1c747c40f7b6746de195e37bd4caccdcc05c6aa14124f29e71428",
+ "rev": "4d0603e52b5bab993b3be63e3654c74f641e677d"
+ },
+ "recipe": {
+ "sha256": "0a77mh7h7033adfbwg2fbx84789962par43q31s9msjlqw15gs86",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.9.8",
+ "deps": []
+ },
+ "magit-gitflow": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "jtatarik",
+ "repo": "magit-gitflow",
+ "sha256": "00711dgbzmplqrfww8xf261ymz3jmhisnv9x1rhcw0ywmlfkbckz",
+ "rev": "58c0f83b0fd02db0f6f4a0cb6101a710029caaeb"
+ },
+ "recipe": {
+ "sha256": "0wsqq3xpqqfak4aqwsh5sxjb1m62z3z0ysgdmnrch3qsh480r8vf",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "2.0.0",
+ "deps": [
+ "magit"
+ ]
+ },
+ "wsd-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "josteink",
+ "repo": "wsd-mode",
+ "sha256": "0v4bigqr8dwbn80x87r2wqncxcbb19giyazm1lnajcfg8s5z7jsn",
+ "rev": "2065f07cb813041719aabb1e92fa98aebb2c6ae6"
+ },
+ "recipe": {
+ "sha256": "0lgs33lm85j9y2c5nw6dl8v6avghyjdavbk6yzh1cya2d9v5f4q0",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.4.0",
+ "deps": []
+ },
+ "rubocop": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "bbatsov",
+ "repo": "rubocop-emacs",
+ "sha256": "10djjp1520xc05qkciaiaiiciscaln6c74h7ymba40mvzlf67y9q",
+ "rev": "405e0fd4c57adb125e3d04208bc86081e3e78d4c"
+ },
+ "recipe": {
+ "sha256": "114azl0fasmnq0fxxyiif3363mpg8qz3ynx91in5acqzh902fa3q",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.4.0",
+ "deps": [
+ "dash",
+ "emacs"
+ ]
+ },
+ "ert-runner": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "rejeep",
+ "repo": "ert-runner.el",
+ "sha256": "0rdgdslspzb4s0n4a68hnwfm8vm8baasa8nzrdinf0nryn7rrhbf",
+ "rev": "00056c37817f15b1870ccedd13cedf102e3194dd"
+ },
+ "recipe": {
+ "sha256": "0fnb8rmjr5lvc3dq0fnyxhws8ync1lj5xp8ycs63z4ax6gmdqr48",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.7.0",
+ "deps": [
+ "ansi",
+ "commander",
+ "dash",
+ "f",
+ "s",
+ "shut-up"
+ ]
+ },
+ "zenburn-theme": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "bbatsov",
+ "repo": "zenburn-emacs",
+ "sha256": "1zspqpwgyv3969irg8p7zj3g4hww4bmnlvx33bvjyvvv5c4mg5wv",
+ "rev": "ae42a7f3ec9491ddec001a2e57c7eb2f38d421cd"
+ },
+ "recipe": {
+ "sha256": "1kb371j9aissj0vy07jw4ydfn554blc8b2rbi0x1dvfksr2rhsn9",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "2.2",
+ "deps": []
+ },
+ "web-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "fxbois",
+ "repo": "web-mode",
+ "sha256": "0b6izvqm3017hrys31ppcs76k0858r74a0jarb8djdi3hxzsgqfv",
+ "rev": "ee276c14f086c8f3b8b47e895b9593fd5d74acc8"
+ },
+ "recipe": {
+ "sha256": "1vyhyc5nf4yj2m63inpwmcqvlsihaqw8nn8xvfdg44nhl6vjz97i",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "13",
+ "deps": []
+ },
+ "gitconfig-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "magit",
+ "repo": "git-modes",
+ "sha256": "1ipr51v7nhbbgxbbz0fp3i78ypp73kyxgc4ni8nnr7yirjhsksfd",
+ "rev": "9d8f6eda6ee97963e4085da8988cad2c0547b8df"
+ },
+ "recipe": {
+ "sha256": "0hqky40kcgxdnghnf56gpi0xp7ik45ssia1x84v0mvfwqc50dgn1",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.2.0",
+ "deps": []
+ },
+ "mwim": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "alezost",
+ "repo": "mwim.el",
+ "sha256": "0hvq6z754niqjyv79jzb833wrwbspc7npfg85scwdv8vzwassjx4",
+ "rev": "dc1b5c358e0bfe607527f1b7c082188105fe6c75"
+ },
+ "recipe": {
+ "sha256": "0bsibwplvyv96y5i5svm2b0jwzs5a7jr2aara7v7xnpj0nqaxm8k",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.2",
+ "deps": []
+ },
+ "transmission": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "holomorph",
+ "repo": "transmission",
+ "sha256": "14fzgpafry3v072f22krap81jfpdc17bpimp16hv7f20sny29a5v",
+ "rev": "2769c9b17fa464e0634ac03046be74cefdb28880"
+ },
+ "recipe": {
+ "sha256": "0w0hlr4y4xpcrpvclqqqasggkgrwnzrdib51mhkh3f3mqyiw8gs9",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.7",
+ "deps": [
+ "emacs",
+ "let-alist"
+ ]
+ },
+ "dyalog-mode": {
+ "fetch": {
+ "tag": "fetchhg",
+ "url": "https://bitbucket.com/harsman/dyalog-mode",
+ "sha256": "0ghxnzi2iy1g633fshl9wdpg2asrcl0v5rkk61gqd6axm7fjaxcj",
+ "rev": "ce795beb8747"
+ },
+ "recipe": {
+ "sha256": "1y17nd2xd8b3mhaybws8dr7yanzwqij9gzfywisy65ckflm9kfyq",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.3",
+ "deps": [
+ "cl-lib"
+ ]
+ },
+ "character-fold+": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/character-fold+.el",
+ "sha256": "1lr1gzabaw7jpxazyjq7pkmy1cljna8v4150jkpndzzb1anb9xxy"
+ },
+ "recipe": {
+ "sha256": "01ibdwd7vap9m64w0bhyknxa3iank3wfss49gsgg4xbbxibyrjh3",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": []
+ },
+ "notmuch": {
+ "fetch": {
+ "tag": "fetchgit",
+ "url": "git://git.notmuchmail.org/git/notmuch",
+ "sha256": "fd2669401c276af12b6c9b739e835ee76b7910bba34bf850e4909c00e79adbd4",
+ "rev": "bf511cb6979ede33d17d9da6f46f71ea287461d8"
+ },
+ "recipe": {
+ "sha256": "1sy9k6xbfl035qhnp8sdq9cb3xvgw3lkmdczyd6fw6yrzm5n0g1r",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.21",
+ "deps": []
+ },
+ "nixos-options": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "travisbhartwell",
+ "repo": "nix-emacs",
+ "sha256": "1lm7rkgf7q5g4ji6v1masfbhxdpwni8d77dapsy5k9p73cr2aqld",
+ "rev": "5fc8fa29bea9dd8e9c822af92f9bc6ddc223635f"
+ },
+ "recipe": {
+ "sha256": "1m3jipidk10zj68rzjbacgjlal31jf80gqjxlgj4qs8lm671gxmm",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.0.1",
+ "deps": [
+ "emacs",
+ "json"
+ ]
+ },
+ "pythonic": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "proofit404",
+ "repo": "pythonic",
+ "sha256": "1af9cd8l5ac58mj92xc7a3diy995cv29abnbb3fl6x4208l4xs3c",
+ "rev": "959b3f5d5607eb41ef26ad61d7ec15ceecb8e37a"
+ },
+ "recipe": {
+ "sha256": "1hq0r3vg8vmgw89wfjdqknwm76pimlk0dy56wmh9vffh06gqsb51",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.1.0",
+ "deps": [
+ "cl-lib",
+ "dash",
+ "emacs",
+ "f",
+ "s"
+ ]
+ },
+ "auto-capitalize": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/auto-capitalize.el",
+ "sha256": "1lk9zwng7wkjvb8hprlgyrab1s56n8a61xjva931h0bgypwl1dfi"
+ },
+ "recipe": {
+ "sha256": "18fygc71n9bc0vrpymz2f7sw9hzkpqxzfglh53shmbm1zns3wkw0",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": []
+ },
+ "emms-mode-line-cycle": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "momomo5717",
+ "repo": "emms-mode-line-cycle",
+ "sha256": "1pz2xvv5hzfg4a8s6xnbr14mpwnr94cwsa1bpk83i7x15hmxj938",
+ "rev": "0488de1f9b4d0be6aa7dfe2fe0231cfd9b4d4295"
+ },
+ "recipe": {
+ "sha256": "1jdmfh1i9v84iy7bj2dbc3s2wfzkrby3pabd99gnqzd9gn1cn8ca",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.2.4",
+ "deps": [
+ "emacs",
+ "emms"
+ ]
+ },
+ "go-errcheck": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "dominikh",
+ "repo": "go-errcheck.el",
+ "sha256": "1fm6xd3vsi8mqh0idddjpfxlsmz1ljmjppw3qkxl1vr0qz3598k3",
+ "rev": "1b0cd6af048a8b2074ace14ab51fb6c987beb430"
+ },
+ "recipe": {
+ "sha256": "11a75h32cd5h5xjv30x83k60s49k9fhgis31358q46y2gbvqp5bs",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.1.2",
+ "deps": []
+ },
+ "minimal-session-saver": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "rolandwalker",
+ "repo": "minimal-session-saver",
+ "sha256": "0kjhn48sf2ps3k5pv06gqmqc4hlk6di9ld3ssw6vwfh8313x1fc5",
+ "rev": "aaba48a8525e1310b221eeb96763304c22e9a4b4"
+ },
+ "recipe": {
+ "sha256": "1ay7wvriga28bdmarpfwagqzmmk93ri9f3idhr6z6iivwggwyy2i",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.6.2",
+ "deps": []
+ },
+ "popup-complete": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "syohex",
+ "repo": "emacs-popup-complete",
+ "sha256": "084hb3zn1aiabbyxgaalszb2qjf9z64z960ks5fvz8nh7n6y7ny4",
+ "rev": "e362d4a005b36646ffbaa6be604e9e31bc406ca9"
+ },
+ "recipe": {
+ "sha256": "04bpm31zx87j390r2xi1yl4kyqgalmyqc48xarsm67zfww9fw9c1",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.02",
+ "deps": [
+ "popup"
+ ]
+ },
+ "cake2": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "k1LoW",
+ "repo": "emacs-cake2",
+ "sha256": "15w21r0gqblbn9wlvb4wlm3706wf01r38mp465snjzi839f6sazb",
+ "rev": "0a9d0b3a1c49ba1730088416f50507f53221c70b"
+ },
+ "recipe": {
+ "sha256": "03q8vqqjlhahgnyy976c46x52splwdjpmb9ngrj5c2z7d8n9145x",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "2.1.0",
+ "deps": [
+ "anything",
+ "cake-inflector",
+ "dash",
+ "f",
+ "historyf",
+ "ht",
+ "json",
+ "s"
+ ]
+ },
+ "async": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "jwiegley",
+ "repo": "emacs-async",
+ "sha256": "0z91alzf4ajj3r7pnwazynvp81cg67csy9kf87fk98024xldpkdp",
+ "rev": "c25bf17b34a1608da45e8a1ca02e1c89a34acd34"
+ },
+ "recipe": {
+ "sha256": "063ci4f35x1zm9ixy110i5ds0vsrcafpixrz3xkvpnfqdn29si3f",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.6",
+ "deps": [
+ "cl-lib",
+ "emacs"
+ ]
+ },
+ "gotest": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "nlamirault",
+ "repo": "gotest.el",
+ "sha256": "1b6zn1fmqvfb7bcpmhzkgcy5003dl22w3f293arlsd1xkbjgkxa2",
+ "rev": "ab0da939aad5cec301126c59b7718cd3158b3233"
+ },
+ "recipe": {
+ "sha256": "1kan3gykhci33jgg67jjiiz7rqlz5mpxp8sh6mb0n6kpfmgb4ly9",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.9.0",
+ "deps": [
+ "emacs",
+ "f",
+ "go-mode",
+ "s"
+ ]
+ },
+ "floobits": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "Floobits",
+ "repo": "floobits-emacs",
+ "sha256": "11zfpwfpv8lrib9629h9jyn9svqg30kf4jbnaj0s2sxcyn2sxfga",
+ "rev": "08b3b5a3c3a178b8f21f1baf5e1f0eb0cf1fb855"
+ },
+ "recipe": {
+ "sha256": "1jpk0q4mkf9ag1rqyai993nz5ngzfvxq9n9avmaaq59gkk9cjraf",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.6.1",
+ "deps": [
+ "highlight",
+ "json"
+ ]
+ },
+ "annoying-arrows-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "magnars",
+ "repo": "annoying-arrows-mode.el",
+ "sha256": "1ppq3kszzj2fgr7mwj565bjs8bs285ymy384cnnw7paddgcr9z02",
+ "rev": "fe59f3fd464e7a87cc43fb8a1f135b3bdf8a2fb3"
+ },
+ "recipe": {
+ "sha256": "13bwqv3mv7kgi1gms58f5g03q5g7q98n4vv6n28zqmppxm5z33s7",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.1.0",
+ "deps": []
+ },
+ "mode-icons": {
+ "fetch": {
+ "tag": "fetchgit",
+ "url": "git://ryuslash.org/mode-icons.git",
+ "sha256": "b7afff1d8fb0b3f044d266af479df51fbb6021ff433628a9dc669695c1ddae40",
+ "rev": "cbf412d0c47dfdbeac7587a0c12c96f58f546467"
+ },
+ "recipe": {
+ "sha256": "18w221zjrrsfcymprv5x75i3qv04zy4bxl9mqjv0ys7qcc8xf1dp",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.1.0",
+ "deps": []
+ },
+ "weibo": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "austin-----",
+ "repo": "weibo.emacs",
+ "sha256": "14vmgfz45wmpjfhfx3pfjn3bak8qvj1zk1w4xc5w1cfl6vnij6hv",
+ "rev": "a8af467e5660a35342029c2796de99cd551454b2"
+ },
+ "recipe": {
+ "sha256": "1ndgfqqb0gvy8p2fisi57s9bsa2nrnv80smg78m89i4cwagbz6yd",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.0",
+ "deps": []
+ },
+ "stan-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "stan-dev",
+ "repo": "stan-mode",
+ "sha256": "1yx8n2c9bls0cvc53d69nyrg44yc3py51lzci0cviwszmnbbrljx",
+ "rev": "3a1b9a714ae7a547638a449f5a9ac487003c55b8"
+ },
+ "recipe": {
+ "sha256": "17ph5khwwrcpyl96xnp3rsbmnk7mpwmgskxka3cfgkm190qihfqy",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "7.1.0",
+ "deps": []
+ },
+ "edts": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "tjarvstrand",
+ "repo": "edts",
+ "sha256": "1a1apa48n24yisd2zw5k4lfkngx3016x6y11qi80hg75vrnmg7f1",
+ "rev": "61855db6f1315ea45f97ed95b47a3f182ec4c6be"
+ },
+ "recipe": {
+ "sha256": "0f0rbd0mqqwn743qmr1g5mmi1sbmlcglclww8jxvbvb61jq8vspr",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.1.0",
+ "deps": []
+ },
+ "avy": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "abo-abo",
+ "repo": "avy",
+ "sha256": "15xfgmsy4sqs3cmk7dwmj21g3r9dqb3fra7n7ly306bwgzh4vm8k",
+ "rev": "44d76b9d2aad5477521675747a5c769f3f9a69a0"
+ },
+ "recipe": {
+ "sha256": "0gjq79f8jagbngp0shkcqmwhisc3hpgwfk34kq30nb929nbnlmag",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.3.0",
+ "deps": [
+ "cl-lib",
+ "emacs"
+ ]
+ },
+ "marmalade": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "nex3",
+ "repo": "marmalade",
+ "sha256": "0pbli67wia8pximvgd68x6i9acdgsk51g9hjpqfm49rqg5nqalh9",
+ "rev": "01d6ddf5f0e822d6df393aa4546b069b2d6545d7"
+ },
+ "recipe": {
+ "sha256": "0ppa2s1fma1lc01byanfxpxfrjqk2snxbsmdbkcipjdi5dpb0a9s",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.0.4",
+ "deps": [
+ "furl"
+ ]
+ },
+ "per-buffer-theme": {
+ "fetch": {
+ "tag": "fetchhg",
+ "url": "https://bitbucket.com/inigoserna/per-buffer-theme.el",
+ "sha256": "1rh87jf0a15q35a8h00bx6k5wa931rb6gh600zbs7j4r3y8qsylf",
+ "rev": "2b82a04b28d0"
+ },
+ "recipe": {
+ "sha256": "1czcaybpfmx4mwff7hs07iayyvgvlhifkickccap6kpd0cp4n6hn",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.3",
+ "deps": [
+ "cl-lib"
+ ]
+ },
+ "zop-to-char": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "thierryvolpiatto",
+ "repo": "zop-to-char",
+ "sha256": "0j6x3az8vpq2ggafjxdl8x3ln7lhh58c27z72mwywp4a2ca1g496",
+ "rev": "7888bb6f09ae24e8e10bd3095edd31940e6a1c46"
+ },
+ "recipe": {
+ "sha256": "0jnspvqqvnaplld083j7cqqxw122qazh88ab7hymci36m3ka9hga",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.0",
+ "deps": [
+ "cl-lib"
+ ]
+ },
+ "connection": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "myrkr",
+ "repo": "dictionary-el",
+ "sha256": "05xfgn9sabi1ykk8zbk2vza1g8pdrg08j5cb58f50nda3q8ndf4s",
+ "rev": "9ef1672ecd367827381bbbc9af93685980083c5c"
+ },
+ "recipe": {
+ "sha256": "1y68d2kay8p5vapailxhrc5dl7b8k8nkvp7pa54md3fsivwp1d0q",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.10",
+ "deps": []
+ },
+ "gmail-message-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "Malabarba",
+ "repo": "gmail-mode",
+ "sha256": "0j3pay3gd1wdnpc853gy5j68hbavrwy6cc2bgmd12ag29xki3hcg",
+ "rev": "2e0286e4a3c80889692f8da63a3b15d7a96abdea"
+ },
+ "recipe": {
+ "sha256": "0py0i7b893ihb8l1hmk3jfl0xil450znadcd18q7svr3zl2m0gkk",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.3.2",
+ "deps": [
+ "ham-mode"
+ ]
+ },
+ "bug-reference-github": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "arnested",
+ "repo": "bug-reference-github",
+ "sha256": "07jzg58a3jxs4mmsgb35f5f8awazlvzak9wrhif6xb60jq1wrp0v",
+ "rev": "671d32083aad5cf813a5e61075b70889bc95dec5"
+ },
+ "recipe": {
+ "sha256": "18yzxwanbrxsab6ba75z1196x0m6dapdhbvy6df5b5x5viz99cf6",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.2.0",
+ "deps": []
+ },
+ "clojure-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "clojure-emacs",
+ "repo": "clojure-mode",
+ "sha256": "0mrkw8l736pddddl0vx9j910g1l492mascqb93h0sxv8ps4xcc53",
+ "rev": "8b01df6c881929540b59444a54b37c03ffe6fc17"
+ },
+ "recipe": {
+ "sha256": "11n0rjhs1mmlzdqy711g432an5ybdka5xj0ipsk8dx6xcyab70np",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "5.0.1",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "utop": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "diml",
+ "repo": "utop",
+ "sha256": "1azv6grd5h2r1spy996nv6q1c5l6qawv6k0dc2i5k96szl0r668r",
+ "rev": "59f5b9c3fcc3fa8102e8a892e21ff8a477f80872"
+ },
+ "recipe": {
+ "sha256": "0lv16kl29gc9hdcpn04l85pf7x93vkl41s4mgqp678cllzyr0cq7",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.18.1",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "with-editor": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "magit",
+ "repo": "magit",
+ "sha256": "01x9kahr3szzc00wlfrihl4x28yrq065fq4rpzx9dxiksayk24pd",
+ "rev": "16a7a12c44d63e78e9b223fca7c1c23a144d3ef1"
+ },
+ "recipe": {
+ "sha256": "042fa55yakdn2di4l5dilnmqpslac46wpr1zpl4xk3v3i4nn9ndv",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "2.3.1",
+ "deps": [
+ "async",
+ "dash",
+ "emacs"
+ ]
+ },
+ "evil-jumper": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "bling",
+ "repo": "evil-jumper",
+ "sha256": "04l1vb07qkqb3cvdpy9cyric5nvq2j1s5f3kkczy9ia9rkicrxgp",
+ "rev": "ab87e865a1ffd815f937c98c2ecf70bf13510715"
+ },
+ "recipe": {
+ "sha256": "0zwsk7slzvcgvgh8fjrwangylishrwc1w0glxcr71sybxph2g46x",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.2.0",
+ "deps": [
+ "evil"
+ ]
+ },
+ "lingr": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "lugecy",
+ "repo": "lingr-el",
+ "sha256": "11sw43z5b0vypmhi0yysf2bxjy8fqpzl61y503jb7nhcfywmfkys",
+ "rev": "c9c20dd9b4967aa2f8873d6890d6797e6a498d23"
+ },
+ "recipe": {
+ "sha256": "1445bxiirsxl9kgm0j86xc9d0pbaa5f07c1i66pw2vl40bvhrjff",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.2",
+ "deps": []
+ },
+ "auto-complete-sage": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "stakemori",
+ "repo": "auto-complete-sage",
+ "sha256": "0l49ciic7g30vklxq6l1ny3mz87l5p8qc30rmkjvkzvg8r52ksn3",
+ "rev": "a61a4e58b14134712e0737280281c0b10e56da93"
+ },
+ "recipe": {
+ "sha256": "02sxbir3arvmnkvxgndlkln9y05jnlv6i8czd6a0wcxk4nj43lq1",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.0.5",
+ "deps": [
+ "auto-complete",
+ "sage-shell-mode"
+ ]
+ },
+ "rich-minority": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "Malabarba",
+ "repo": "rich-minority",
+ "sha256": "11hwf9y5ax207w6rwrsmi3pmn7pn7ap6iys0z8hni2f5zzxjrmx3",
+ "rev": "311ac8ee54078f95b7279e532da6cf5a2afb4125"
+ },
+ "recipe": {
+ "sha256": "11xd76w5k3b3q5bxqjb55vi6dsal9drvyc1nh7z83awm59hvgczc",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.0.1",
+ "deps": [
+ "cl-lib"
+ ]
+ },
+ "marcopolo": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "nlamirault",
+ "repo": "marcopolo",
+ "sha256": "0y4b69r2l6kvh7g8f1y9v1pdall3n668ci24lp04lcms6rxcrsnh",
+ "rev": "ce6ad40d7feab0568924e3bd9659b76e3eecd55e"
+ },
+ "recipe": {
+ "sha256": "1nbck1m7lhync7n474578d2g1zc72c841hi236xjbdd2lnxz3zz0",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.3.0",
+ "deps": [
+ "dash",
+ "pkg-info",
+ "request",
+ "s"
+ ]
+ },
+ "el-mock": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "rejeep",
+ "repo": "el-mock.el",
+ "sha256": "13mv1rhgkwiww2wh5w926jz7idppp492wir1vdl245c5x50dh4f7",
+ "rev": "3069931de75bb6704ecf565af5390009dc4dae00"
+ },
+ "recipe": {
+ "sha256": "07m7w7n202nijnxidy0j0r4nbcvlnbkm9b0n8qb2bwi3d4cfp77l",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.25.1",
+ "deps": []
+ },
+ "hydra": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "abo-abo",
+ "repo": "hydra",
+ "sha256": "08iw95lyizcyf6cjl37fm8wvay0vsk9758pk9gq9f2xiafcchl7f",
+ "rev": "4bf7f1c9e46fb819c673e55d8a1891774e139f98"
+ },
+ "recipe": {
+ "sha256": "1c59l43p39ins3dn9690gm6llwm4b9p0pk78lip0dwlx736drdbw",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.13.3",
+ "deps": [
+ "cl-lib"
+ ]
+ },
+ "browse-kill-ring": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "browse-kill-ring",
+ "repo": "browse-kill-ring",
+ "sha256": "0y9m6cv70pzcm0v2v8nwmyh1xx40831chx72m85h5ic5db03gy7b",
+ "rev": "2a7acf98c348c4f405a6b2ab216224ca14915be8"
+ },
+ "recipe": {
+ "sha256": "1d97ap0vrg5ymp96z7y6si98fspxzy02jh1i4clvw5lggjfibhq4",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "2.0.0",
+ "deps": []
+ },
+ "auto-shell-command": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "ongaeshi",
+ "repo": "auto-shell-command",
+ "sha256": "1h8zsgw30axprs7a5kkygbhvilillzazxgqz01ng36il65fi28s6",
+ "rev": "59d4abce779a3ce3e920592bf5696b54b2e192c7"
+ },
+ "recipe": {
+ "sha256": "1i78fh72i8yv91rnabf0vs78r43qrjkr36hndmn5ya2xs3b1g41j",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.0.2",
+ "deps": [
+ "deferred",
+ "popwin"
+ ]
+ },
+ "shelldoc": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "mhayashi1120",
+ "repo": "Emacs-shelldoc",
+ "sha256": "1nli26llyfkj1cz2dwn18c5pz1pnpz3866hapfibvdmwrg4z6cax",
+ "rev": "1d40c73969347586906ca1dde2adb50afcd73b1b"
+ },
+ "recipe": {
+ "sha256": "1xlp03aaidp7dp8349v8drzhl4lcngvxgdrwwn9cahfqlrvvbbbx",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.0.5",
+ "deps": [
+ "cl-lib",
+ "s"
+ ]
+ },
+ "malabar-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "m0smith",
+ "repo": "malabar-mode",
+ "sha256": "0z0ml7l1a45ych61qfc5fvkybl9hh37pgl6lzkaz6mcif1sl8gn1",
+ "rev": "4c5fde559f518509763a55040fdb0e4b6b04856a"
+ },
+ "recipe": {
+ "sha256": "026ing7v22rz1pfzs2j9z09pm6dajpys992n45gzhwirz5f0q1rk",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140303.946",
+ "deps": [
+ "fringe-helper"
+ ]
+ },
+ "fullframe": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "tomterl",
+ "repo": "fullframe",
+ "sha256": "09jqaq81vbch93qwrmg0rm6a26pchqdraw374j13hgkhs849gx90",
+ "rev": "b9c3e54c8928c5ba994c55de7794b5f739b43ced"
+ },
+ "recipe": {
+ "sha256": "08sh8lmb6g8asv28fcb36ilcn0ka4fc6ka0pnslid0h4c32fxp2a",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.1.1",
+ "deps": [
+ "cl-lib"
+ ]
+ },
+ "cperl-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "jrockway",
+ "repo": "cperl-mode",
+ "sha256": "02fl9y72prykh6qmxlnyn7fl27rqsk5kgcm4vdhj3i6fvl1iqdm6",
+ "rev": "06f5668653a114991836139344dbe8f0674577af"
+ },
+ "recipe": {
+ "sha256": "0hkmpa0vg1miv8qqpnml4xblzvn9w4ba02fqp6qa2nnv554i7azp",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "6.3",
+ "deps": []
+ },
+ "highlight-chars": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/highlight-chars.el",
+ "sha256": "14gx9fri2qbgii828dd42aw02rskshbyyymd68aqh2dll7cbw6mf"
+ },
+ "recipe": {
+ "sha256": "19jawbjvqx1hsjbynx0jgpziap3r64k8s1xfckajrx8aq8m4c6i0",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": []
+ },
+ "flymake-cursor": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/flymake-cursor.el",
+ "sha256": "10cpzrd588ya52blghxss5zkn6x8hc7bx1h0qbcdlybbmkjgpkxr"
+ },
+ "recipe": {
+ "sha256": "1s065w0z3sfv3d348w4zhlw96xf3j28bcz14sl46963mj2dm90lr",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": []
+ },
+ "comment-dwim-2": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "remyferre",
+ "repo": "comment-dwim-2",
+ "sha256": "0kzlv2my0cc7d3nki2rlm32nmb2nyjb38inmvlf13z0m2kybg2ps",
+ "rev": "8cedecde018b5872195bfead6511af822776a430"
+ },
+ "recipe": {
+ "sha256": "1w9w2a72ygsj5w47vjqcljajmmbz0mi8dhz5gjnpwxjwsr6fn6lj",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.2.2",
+ "deps": []
+ },
+ "ctags-update": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "jixiuf",
+ "repo": "helm-etags-plus",
+ "sha256": "05vhryqcydvcfm18fwby344931kzzh47x4l5ixy95xkcjkzrj8c7",
+ "rev": "d3f3162d5a3291d84b15fd325859c87e1a374923"
+ },
+ "recipe": {
+ "sha256": "1k43l667mvr2y33nblachdlvdqvn256gysc1iwv5zgv7gj9i65qf",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.2.0",
+ "deps": []
+ },
+ "pcsv": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "mhayashi1120",
+ "repo": "Emacs-pcsv",
+ "sha256": "03k3xhrim4s3yvbnl8g8ci5g7chlffycdw7d6a1pz3077mxf1f1z",
+ "rev": "91599aaba70a8e8593fa2f36165af82cbd35e41e"
+ },
+ "recipe": {
+ "sha256": "1zphndkbva59g1fd319a240yvq8fjk315b1fyrb8zvmqpgk9n0dl",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.3.6",
+ "deps": []
+ },
+ "helm-unicode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "shosti",
+ "repo": "helm-unicode",
+ "sha256": "14lbdvs9xdnipsn3lywbvgsqwqnbm8fxm6d1ilq0cj5z6zkxkya0",
+ "rev": "e68cc60f7efd93b410844f3722bc6681dc65e2fd"
+ },
+ "recipe": {
+ "sha256": "052xqzvcfzpsbl75ylqb1khqndvc2dqdymqlwivs0darlds0w8y4",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.0.2",
+ "deps": [
+ "emacs",
+ "helm"
+ ]
+ },
+ "chm-view": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/chm-view.el",
+ "sha256": "1r274pf0xrcdml4sy2nhhp3v5pr3y3s4lvk45hd3pmw1i4pw2fd8"
+ },
+ "recipe": {
+ "sha256": "1acz0fvl3inn7g4himq680yf64bgm7n61hsv2zpm1k6smrdl78nz",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": []
+ },
+ "company-quickhelp": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "expez",
+ "repo": "company-quickhelp",
+ "sha256": "0hg3wrfhz3qlfb6zv6j5a4xzmm4jk25pkv8h3ryg7sl7h602idgl",
+ "rev": "05e0ee9b854f90ff2b007b3e19446a02513f43dc"
+ },
+ "recipe": {
+ "sha256": "042bwv0wd4hksbm528zb7pbllzk83p8qjq5f8z46p84c8mmxfp9g",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.2.0",
+ "deps": [
+ "company",
+ "emacs",
+ "pos-tip"
+ ]
+ },
+ "fxrd-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "msherry",
+ "repo": "fxrd-mode",
+ "sha256": "003iqzwzf950dvn6q901y0jjadz7hqaafa9wrhzplay3kjnkjj9b",
+ "rev": "122afe6b7edeff117edf92dab1ba011ae71a5910"
+ },
+ "recipe": {
+ "sha256": "17zimg64lqc1yh9gnp5izshkvviz996aym7q6n9p61a4kqq37z4r",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.3",
+ "deps": [
+ "s"
+ ]
+ },
+ "gnus-desktop-notify": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "wavexx",
+ "repo": "gnus-desktop-notify",
+ "sha256": "08j8x0iaz5s9q0b68d8h3153w0z6vak5l8qgw3dd1drz5p9xnvyw",
+ "rev": "210c70f0021ee78e724f1d8e00ca96e1e99928ca"
+ },
+ "recipe": {
+ "sha256": "0hf2dszk5d7vn80bm0msaqv7iji384n85dxgw8ng64c0f9f6752b",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.4",
+ "deps": [
+ "gnus"
+ ]
+ },
+ "js-comint": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "redguardtoo",
+ "repo": "js-comint",
+ "sha256": "1gf6ir4viy8zr9fwmjz4s7zkr3m7947sa8mai56bnv83r2k3s9ir",
+ "rev": "69c8475573f1ef1f59331027a0fe445161b51000"
+ },
+ "recipe": {
+ "sha256": "0jvkjb0rmh87mf20v6rjapi2j6qv8klixy0y0kmh3shylkni3an1",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.0.3",
+ "deps": [
+ "nvm"
+ ]
+ },
+ "qml-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "coldnew",
+ "repo": "qml-mode",
+ "sha256": "069hbpawmcmbbvaqp63d6p34hg0h7zq294qrz0m1zwrm188bmhzl",
+ "rev": "a69ee2d23e079dbedab22fde85181a8320af2222"
+ },
+ "recipe": {
+ "sha256": "123mlibviplzra558x87da4zx0kpbhsgfigjjgjgp3mdg897084n",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.1",
+ "deps": []
+ },
+ "org-journal": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "bastibe",
+ "repo": "emacs-journal",
+ "sha256": "0980scx1dzslbdzmhv720branc4jd4bdkyji34gahinx4w9brj79",
+ "rev": "68974d86f1ef518defb3085e415d882ba4575714"
+ },
+ "recipe": {
+ "sha256": "078z9b9hxbvmmxib6098f49rn7n3d0v4x37p7xxb0v8cv4izlb4s",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.10.2",
+ "deps": []
+ },
+ "selectric-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "rbanffy",
+ "repo": "selectric-mode",
+ "sha256": "18xdkisxvdizsk51pnyimp9mwc6k9cpcxqr5hgndkz9q97p5dp79",
+ "rev": "0dd7ef28a9d9d6fbb95fdeeab6b576ad8762ad16"
+ },
+ "recipe": {
+ "sha256": "1k4l0lr68rqyi37wvqp1cnfci6jfkz0gvrd1hwbgx04cjgmz56n4",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.1",
+ "deps": []
+ },
+ "circe": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "jorgenschaefer",
+ "repo": "circe",
+ "sha256": "0q3rv6lk37yybkbswmn4pgzca0nfhvf4h3ac395fr16k5ixybc5q",
+ "rev": "ac1cddf946e0af90ab453dd816f7173e0d4000e5"
+ },
+ "recipe": {
+ "sha256": "1f54d8490gfx0r0cdvgmcjdxqpni43msy0k2mgqd1qz88a4b5l07",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "2.1",
+ "deps": [
+ "cl-lib"
+ ]
+ },
+ "evm": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "rejeep",
+ "repo": "evm.el",
+ "sha256": "0739v0m9vj70a55z0canslyqgafzys815i7a0r6bxj2f9iwq6rhb",
+ "rev": "d0623b2355436a5fd9f7238b419782080c79196b"
+ },
+ "recipe": {
+ "sha256": "19l6cs5schbnph0pwhhj66gkxsswd4bmjpy79l9kxzpjf107wc03",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.4.2",
+ "deps": [
+ "dash",
+ "f"
+ ]
+ },
+ "truthy": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "rolandwalker",
+ "repo": "truthy",
+ "sha256": "18na22fhwqz80qinmnpsvp6ghc9irva1scixi6s4q6plmgr4m397",
+ "rev": "276a7e6b13606d28e4f2e423bb1ea30904c5def3"
+ },
+ "recipe": {
+ "sha256": "1a56zmqars9fd03bkqzwpvgblq5fvq19n4jw04c4hpga92sq8wqg",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.2.8",
+ "deps": [
+ "list-utils"
+ ]
+ },
+ "php-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "ejmr",
+ "repo": "php-mode",
+ "sha256": "0pwhw59ki19f9rkgvvnjzhby67s0y9hpsrg6cwqxakjlm66w96q3",
+ "rev": "f3201eebfebf1757cf6a636fe3c7a3b810ab6612"
+ },
+ "recipe": {
+ "sha256": "1lc4d3fgxhanqr3b8zr99z0la6cpzs2rksj806lnsfw38klvi89y",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.17.0",
+ "deps": []
+ },
+ "sotlisp": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "Malabarba",
+ "repo": "speed-of-thought-lisp",
+ "sha256": "1wbd7v5bnd4qgqk8rrgllal0i949n8xzvb3yhf0vnxr06wdzy0a4",
+ "rev": "6e0ebc97000dc505f72ad9cc793ac857b0585f5a"
+ },
+ "recipe": {
+ "sha256": "0zjnn6hhwy6cjvc5rhvhxcq5pmrhcyil14a48fcgwvg4lv7fbljk",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.4.1",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "helm-spaces": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "yasuyk",
+ "repo": "helm-spaces",
+ "sha256": "0kz0vfp43n7f9l53rji2pb8v6ylg63i37q0bmidmjjvsinimwj44",
+ "rev": "8b4f5a1e3cb823ceee1e341ce45f9b18a1b8057c"
+ },
+ "recipe": {
+ "sha256": "0hdvkk173k98iycvii5xpbiblx044125pl7jyz4kb8r1vvwcv791",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.2",
+ "deps": [
+ "helm",
+ "spaces"
+ ]
+ },
+ "logito": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "sigma",
+ "repo": "logito",
+ "sha256": "0jpyd2f33pk984kg0q9hxdl4615jb7sxsggnb30mpz7a2ws479xr",
+ "rev": "824acb89d2cc18cb47281a4fbddd81ad244a2052"
+ },
+ "recipe": {
+ "sha256": "0bk4qnz66kvhzsk88lw45209778y53kg17iih70ix4ma1x6a3v5l",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.1",
+ "deps": [
+ "eieio"
+ ]
+ },
+ "org-tracktable": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "tty-tourist",
+ "repo": "org-tracktable",
+ "sha256": "053wf36lq9piyzq7rv2lid34zanj6l9fvawp3r3nsniy5nlfckqx",
+ "rev": "28ef6772cdcf436cf38095f15c6bb681473180ce"
+ },
+ "recipe": {
+ "sha256": "0mngf9q2ffxq32cgng0xl30661mj15wmr9y4hr3xddj626kxrp00",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.2",
+ "deps": [
+ "cl-lib",
+ "emacs"
+ ]
+ },
+ "showtip": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/showtip.el",
+ "sha256": "01ibg36lvmdk7ac1k0f0r6wyds4rq0wb7gzw26nkiwykn14gxaql"
+ },
+ "recipe": {
+ "sha256": "1fdhdmkvyz1dcy3x0im1iab6yhhh8gqvxmm6ccwr6rl1r1m5zwc8",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": []
+ },
+ "electric-operator": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "davidshepherd7",
+ "repo": "electric-operator",
+ "sha256": "1bqdg5sr4hkiqndr4hcdjscfdyj56jb4wr1kqgwy1hy4ccr9mkrr",
+ "rev": "3d34101e065396389cfbb8fec333c78641a71dc6"
+ },
+ "recipe": {
+ "sha256": "043bkpvvk42lmkll5jnz4q8i0m44y4wdxvkz6hiqhqcp1rv03nw2",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.1",
+ "deps": [
+ "dash",
+ "emacs",
+ "names"
+ ]
+ },
+ "owdriver": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "aki2o",
+ "repo": "owdriver",
+ "sha256": "0f2psx4lq98l3q3fnibsfqxp2hvvwk7b30zjvjlry3bffg3l7pfk",
+ "rev": "0479389d9df9e70ff9ce69dff06252d3aa40fc86"
+ },
+ "recipe": {
+ "sha256": "0j8z7ynan0zj581x50gsi9lljkbi6bwmzpfyha3i6q8ch5qkdxfd",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.0.6",
+ "deps": [
+ "log4e",
+ "smartrep",
+ "yaxception"
+ ]
+ },
+ "message-x": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/message-x.el",
+ "sha256": "05ic97plsysh4nqwdrsl5m9f24m11w24bahj8bxzfdawfima2bkf"
+ },
+ "recipe": {
+ "sha256": "0z12alizwrqp5f9wq3qllym9k5xljh904c9qhlfhp9biazj6yqwj",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": []
+ },
+ "spotify": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "remvee",
+ "repo": "spotify-el",
+ "sha256": "05y8xv6zapspwr5bii41lgirslas22wsbm0kgb4dm79qbk9j1kzw",
+ "rev": "07a44ecdbdaa93977e97f2a2e5d280ef0b2e8545"
+ },
+ "recipe": {
+ "sha256": "0pmsvxi1dsi580wkhhx8iw329agkh5yzk61bqvxzign3cd6fbq6k",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.3.2",
+ "deps": []
+ },
+ "http-post-simple": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/http-post-simple.el",
+ "sha256": "1wp2rwc1hgd5c3yr6b96yzzakd1qmy5d95mhc6q4f6lx279nx0my"
+ },
+ "recipe": {
+ "sha256": "1b2fh0hp5z3712ncgc5ns1f3sww84khkq7zb3k9xclsp1p12a4cf",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": []
+ },
+ "mustache-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "mustache",
+ "repo": "emacs",
+ "sha256": "15gw4d0hp15rglsj8hzd290li4p0kadj2dsz0dgfcxld7hnimihk",
+ "rev": "bf9897eb287ca47ced65d7d4e07ea61ea0aec39f"
+ },
+ "recipe": {
+ "sha256": "076ar57qhwcpl4n634ma827r2rh61670778wqr5za2444a6ax1gs",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.3",
+ "deps": []
+ },
+ "persistent-soft": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "rolandwalker",
+ "repo": "persistent-soft",
+ "sha256": "14p20br8vzxs39d4hswzrrkgwql5nnmn5j17cpbabzjvck42rixc",
+ "rev": "a1e0ddf2a12a6f18cab565dee250f070384cbe02"
+ },
+ "recipe": {
+ "sha256": "0a4xiwpgyyynjf69s8p183mqd3z53absv544ggvhb2gkpm6jravc",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.8.10",
+ "deps": [
+ "list-utils",
+ "pcache"
+ ]
+ },
+ "key-combo": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "uk-ar",
+ "repo": "key-combo",
+ "sha256": "14ijniyvcfmj4y77yhiplsclincng2r3jbdnmmdnwzliv65f7l6q",
+ "rev": "0bc0cf6466a4257047a21a6d01913e92e6862165"
+ },
+ "recipe": {
+ "sha256": "1v8saw92jphvjkyy7j9jx7cxzgisl4zpf4wjzdjfw3la5lz11waf",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.6",
+ "deps": []
+ },
+ "magit-filenotify": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "magit",
+ "repo": "magit-filenotify",
+ "sha256": "1vn6x53kpwv3zf2b5xjswyz6v853r8b9dg88qhwd2h480hrx6kal",
+ "rev": "575c4321f61fb8f25e4779f9ffd4514ac086ae96"
+ },
+ "recipe": {
+ "sha256": "00a77czdi24n3zkx6jwaj2asablzpxq16iqd8s84kkqxcfiiahn7",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.1",
+ "deps": [
+ "emacs",
+ "magit"
+ ]
+ },
+ "xterm-color": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "atomontage",
+ "repo": "xterm-color",
+ "sha256": "1zdj4664gvwc4kyx7fx5232l3c5anm0xyrrnrw596q604q6xxj2x",
+ "rev": "380cc8c6c6969f8a262ad4ddc61117691db7f4d1"
+ },
+ "recipe": {
+ "sha256": "0bvzi1mkxgm4vbq2va1sr0k9h3fdmppq79hkvbizc2xgk72sazpj",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.0",
+ "deps": []
+ },
+ "phpunit": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "nlamirault",
+ "repo": "phpunit.el",
+ "sha256": "1s4a0ygm79shv6f0rghrkq9jb7jc7sh9cjxzlzj0c8zpvsxl0hlz",
+ "rev": "d9e9092d664463b7cc8e0a433a76b8c9598ab2c9"
+ },
+ "recipe": {
+ "sha256": "0nj8ss1yjkcqnbnn4jgbp0403ljjk2xhipzikdrl3dbxlf14i4f8",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.7.0",
+ "deps": [
+ "f",
+ "pkg-info",
+ "s"
+ ]
+ },
+ "pastebin": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/pastebin.el",
+ "sha256": "17br64snqby465bjb0l1hzw0pcms5m2knrvb6y9gn3kir4sdi6kn"
+ },
+ "recipe": {
+ "sha256": "19fgjcbxgmnm59qjkxhvy2aib5qs5d5a43hwvjdhxq2k6rn3f2gj",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": []
+ },
+ "org-gcal": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "myuhe",
+ "repo": "org-gcal.el",
+ "sha256": "1pxfcyf447h18220izi8qlnwdr8rlwn5kds8gr5i1v90s6hpa498",
+ "rev": "badd3629e6243563c30ff1dd0452b7601f6cc036"
+ },
+ "recipe": {
+ "sha256": "1mp6cm0rhd4r9pfvsjjp86sdqxjbbg7gk41zx0zf0s772smddy3q",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.2",
+ "deps": [
+ "alert",
+ "cl-lib",
+ "emacs",
+ "org",
+ "request-deferred"
+ ]
+ },
+ "helm-rubygems-org": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "neomantic",
+ "repo": "helm-rubygems-org",
+ "sha256": "1sff8kagyhmwcxf9062il1077d4slvr2kq76abj496610gpb75i0",
+ "rev": "6aaed984f698cbdf9f9aceb0221404563e28764d"
+ },
+ "recipe": {
+ "sha256": "04ni03ak53z3rggdgf68qh7ksgcf3s0f2cv6skwjqw7v8qhph6qs",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.0.1",
+ "deps": [
+ "cl-lib",
+ "emacs",
+ "helm"
+ ]
+ },
+ "ag": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "Wilfred",
+ "repo": "ag.el",
+ "sha256": "0hpsv2zyhhfm53hrd2lzvc9gpvfn6g5dpwmzxfl8l1sqjisips2a",
+ "rev": "12f22a4a9f4ff3c8a0b6f089b8cf6d85a3f8b7eb"
+ },
+ "recipe": {
+ "sha256": "1r4ai09vdckkg4h4i7dp781qqmm4kky53p4q8azp3n2c78i1vz6g",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.46",
+ "deps": [
+ "cl-lib",
+ "dash",
+ "s"
+ ]
+ },
+ "smartscan": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "mickeynp",
+ "repo": "smart-scan",
+ "sha256": "1sd7dh9114mvr4xnp43xx4b7qmwkaj1a1fv7pwc28fhiy89d2md4",
+ "rev": "13c9fd6c0e38831f78dec55051e6b4a643963176"
+ },
+ "recipe": {
+ "sha256": "0vghgmx8vnjbvsw7q5zs0qz2wm6dcng9m69b8dq81g2cq9dflbwb",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.2",
+ "deps": []
+ },
+ "el-init": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "HKey",
+ "repo": "el-init",
+ "sha256": "1mzla7ijmq1mgzr6bf16mjdycbf8ylsf4zdk4j6fh5kw5n4k6c5n",
+ "rev": "25fd21d820bca1cf576b8f70c8d5a3bc76792597"
+ },
+ "recipe": {
+ "sha256": "121n6z8p9kzi7axp4i2kyi621gw20635w4j81i1bryblaqrv5kl5",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.2.0",
+ "deps": [
+ "anaphora",
+ "cl-lib",
+ "emacs"
+ ]
+ },
+ "alert": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "jwiegley",
+ "repo": "alert",
+ "sha256": "1vpc3q40m6dcrslki4bg725j4kv6c6xfxwjjl1ilg7la49fwwf26",
+ "rev": "b301478e34a5c8bd27c17fc7605e6dd576e97935"
+ },
+ "recipe": {
+ "sha256": "0x3cvczq09jvshz435jw2fjm69457x2wxdvvbbjq46nfnybhi118",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.2",
+ "deps": [
+ "gntp",
+ "log4e"
+ ]
+ },
+ "slime-ritz": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "pallet",
+ "repo": "ritz",
+ "sha256": "0lp584k35asqlvbhglv124jazdgp3h7pzl0akfwbdmby9zayqk96",
+ "rev": "1cc6faedae26323994ea8dd1a4f555db8acbf244"
+ },
+ "recipe": {
+ "sha256": "1y1439y07l1a0sp9wn110hw4yyxj8n1cnd6h17rmsr549m2qbg1a",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.6.0",
+ "deps": []
+ },
+ "buffer-flip": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "killdash9",
+ "repo": "buffer-flip.el",
+ "sha256": "0ck6d1z8j9yc32wrbwmxl8rgm19la7ijvsh740sd0sfmhwqxc1kz",
+ "rev": "2bbf74fac037ace991d03336c515c499a8e69c95"
+ },
+ "recipe": {
+ "sha256": "0ka9ynj528yp1p31hbhm89627v6dpwspybly806n92vxavxrn098",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.0",
+ "deps": [
+ "key-chord"
+ ]
+ },
+ "point-undo": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/point-undo.el",
+ "sha256": "13c1iw77ccvrfrv4lyljg8fpm7xqhnv29yzvig8wr8b5j2vsd8bz"
+ },
+ "recipe": {
+ "sha256": "0by7ifj1lf0w9pp7v1j9liqjs40k8kk9yjnznxchq172816zbg3k",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": []
+ },
+ "frame-cmds": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/frame-cmds.el",
+ "sha256": "1p7ry940wgjpg2vq3m1nr1bs86cc4mhbpzj64znlmlnjgwa4bk2a"
+ },
+ "recipe": {
+ "sha256": "0xwzp6sgcb5ap76hpzm8g4kl08a8cgq7i2x9w64njyfink7frwc0",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": [
+ "frame-fns"
+ ]
+ },
+ "yaoddmuse": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/yaoddmuse.el",
+ "sha256": "0svy6zp5f22z7mblap4psh7h4i52d1qasi9yk22l39przhsrjar4"
+ },
+ "recipe": {
+ "sha256": "07sqcsad3k23agwwws7hxnc46cp9mkc9qinzva7qvjgs8pa9dh54",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": []
+ },
+ "tern-django": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "proofit404",
+ "repo": "tern-django",
+ "sha256": "0l63lzm96gg3ihgc4l671i342qxigwdbn4xfkbxnarb0206gnb5p",
+ "rev": "6d616c5f802d3432c4065dc306d7977d254df49f"
+ },
+ "recipe": {
+ "sha256": "1pjaaffadaw8h2n7yv01ks19gw59dmh8bp8vw51hx1082r3yfvv0",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.1.0",
+ "deps": [
+ "emacs",
+ "f",
+ "tern"
+ ]
+ },
+ "shell-history": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/shell-history.el",
+ "sha256": "0biqjm0fpd7c7jilgkcwp6c32car05r5akimbcdii3clllavma7r"
+ },
+ "recipe": {
+ "sha256": "1blad7ggv27qzpai2ib1pmr23ljj8asq880g3d7w8fhqv0p1pjs7",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": []
+ },
+ "ido-ubiquitous": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "DarwinAwardWinner",
+ "repo": "ido-ubiquitous",
+ "sha256": "1fgg2l9fvg3iay9wgkfacbc0kl6hx7sbwxgmbl8j47vr6yzkgnd7",
+ "rev": "2e826e3f209cb5d2bc92bdbfd3b189d2c06ff51c"
+ },
+ "recipe": {
+ "sha256": "143pzpix9aqpzjy8akrxfsxmwlzc9bmaqzp9fyhjgzrhq7zchjsp",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "3.9",
+ "deps": [
+ "cl-lib",
+ "emacs",
+ "ido-completing-read+"
+ ]
+ },
+ "merlin": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "the-lambda-church",
+ "repo": "merlin",
+ "sha256": "192jamcc7rmvadlqqsjkzsl6hlgwhg9my1qc89fxh1lmd4qdsrpn",
+ "rev": "6f9915e0d87bf721ea2859ffa17d3fbeeabcfb9d"
+ },
+ "recipe": {
+ "sha256": "0wnh7512sknagdk56j6gd8vamh9ns3vnggm56s73pik0m009w0xr",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "2.3.1",
+ "deps": []
+ },
+ "org-multiple-keymap": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "myuhe",
+ "repo": "org-multiple-keymap.el",
+ "sha256": "0yxfhzygiki8sha1dddac4g72r51yi4jnga2scmk51f9jgwqbihp",
+ "rev": "20eb3be6be9f0abbad9f0d007e40cb00c8109201"
+ },
+ "recipe": {
+ "sha256": "16iv5575634asvn1b2k535ml8g4lqgy8z5w6ykma5f9phq5idb9f",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.2",
+ "deps": [
+ "cl-lib",
+ "emacs",
+ "org"
+ ]
+ },
+ "vagrant": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "ottbot",
+ "repo": "vagrant.el",
+ "sha256": "04r73s3fhvdcryv0l57awkpg1hi3kg6zcqxbxb03jc89h0f9vdlh",
+ "rev": "dabf69b7146f8a035bba15285b1fafc1e9ef4b3c"
+ },
+ "recipe": {
+ "sha256": "0g6sqzsx3lixcn09fkxhhcfp45qnqgf1ms0l7nkzyljavb7151cf",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.5.2",
+ "deps": []
+ },
+ "windsize": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "grammati",
+ "repo": "windsize",
+ "sha256": "1f4v0xd341qs4kfnjqhgf8j26valvg6pz4rwcz0zj0s23niy2yil",
+ "rev": "014b0836f9ffe45fa7e0ccc84576fbef74815a59"
+ },
+ "recipe": {
+ "sha256": "1xhfw77168942rcn246qndii0hv0q6vkgzj67jg4mxh8n46m50m9",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.1",
+ "deps": []
+ },
+ "unbound": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/unbound.el",
+ "sha256": "0i5km1naxprd4lj20097ph50mjs2364xwxcdw0j3g5569mk5nc06"
+ },
+ "recipe": {
+ "sha256": "1ys6pgb3lhx4ihhv8i28vrchp1ad37md7lnana40macf5n72d77x",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": []
+ },
+ "anti-zenburn-theme": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "m00natic",
+ "repo": "anti-zenburn-theme",
+ "sha256": "0q8495ivlkismlghk3chra8rkpqx9abnxahaq1lkp77aiyyhpadg",
+ "rev": "9a33476a0dad3c6dd2d5c0a0ff75e30aa5eacb01"
+ },
+ "recipe": {
+ "sha256": "1sp9p6m2jy4m9fdn1hz25cmasy0mwwgn46qmvm92i56f5x6jlzzk",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "2.3",
+ "deps": []
+ },
+ "sws-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "brianc",
+ "repo": "jade-mode",
+ "sha256": "0krbd1qa2408a97pqhl7fv0x8x1n2l3qq33zzj4w4vv0c55jk43n",
+ "rev": "4e7a20db492719062f40b225ed730ed50be5db56"
+ },
+ "recipe": {
+ "sha256": "0b12dsad0piih1qygjj0n7rni0pl8cizbzwqm9h1dr8imy53ak4i",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.0.0",
+ "deps": []
+ },
+ "ibuffer-projectile": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "purcell",
+ "repo": "ibuffer-projectile",
+ "sha256": "1zcnp61c9cp2kvns3v499hifk072rxm4rhw4pvdv2mm966vcxzvc",
+ "rev": "8b225dc779088ce65b81d8d86dc5d394baa53e2e"
+ },
+ "recipe": {
+ "sha256": "1qh4krggmsc6lx5mg60n8aakmi3f6ppl1gw094vfcsni96jl34fk",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.2",
+ "deps": [
+ "projectile"
+ ]
+ },
+ "lentic": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "phillord",
+ "repo": "lentic",
+ "sha256": "0x0vz6sn4ignbxihzydc3d5dhlk1aywa4264mhqxb3adq4n1ryc6",
+ "rev": "8885bfcde8c6b60b79e7f07cf84c95578107491f"
+ },
+ "recipe": {
+ "sha256": "0y94y1qwj23kqp491b1fzqsrjak96k1dmmzmakbl7q8vc9bncl5m",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.10",
+ "deps": [
+ "dash",
+ "emacs",
+ "f",
+ "m-buffer",
+ "s"
+ ]
+ },
+ "ubuntu-theme": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "rocher",
+ "repo": "ubuntu-theme",
+ "sha256": "0k41hwb6jgv3hngfrphlyhmfhvy4k05mvn0brm64xk7lj56y8q2c",
+ "rev": "41f09ca6c203da93bdadb2077556efd48e3b5d5a"
+ },
+ "recipe": {
+ "sha256": "160z59aaxb2v6c24nki6bn7pjm9r4jl1mgxs4h4sivzxkaw811s2",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "04b",
+ "deps": []
+ },
+ "lfe-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "rvirding",
+ "repo": "lfe",
+ "sha256": "1w9n5v4g4w34gii6nk2aan4w230dmm0dhml4s9q1fzmvk1ngld6k",
+ "rev": "d7bc80da04aedd0a607f17d8d149eba363872b4b"
+ },
+ "recipe": {
+ "sha256": "06b382ncgk4zz3q8akyzfy55j86a53r97gf0l92qvlca7fbs8jjx",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.10.1",
+ "deps": []
+ },
+ "color-theme": {
+ "fetch": {
+ "tag": "fetchbzr",
+ "url": "http://bzr.savannah.gnu.org/r/color-theme/trunk",
+ "sha256": "17bidzq9kiz250gal1fn9mg8gf8l749nz69z0awpc4x2222wxxiz",
+ "rev": "57"
+ },
+ "recipe": {
+ "sha256": "1p4bjh8a9f6ixmwwnyjb520myk3bww1v9w6427za07v68m9cdh79",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": []
+ },
+ "ascii": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/ascii.el",
+ "sha256": "05fjsj5nmc05cmsi0qj914dqdwk8rll1d4dwhn0crw36p2ivql75"
+ },
+ "recipe": {
+ "sha256": "0jb63f7qwhfbz0n4yrvnvx03cjqly3mqsc3rq9mgf4svy2zw702r",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": []
+ },
+ "nyan-prompt": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "PuercoPop",
+ "repo": "nyan-prompt",
+ "sha256": "0bgspjy8h3d7v12sfjnd2ghj4183pdf0z48g5xs129jwd3nycykp",
+ "rev": "b5137f2ee9afe640f59786eed17b308df6356c73"
+ },
+ "recipe": {
+ "sha256": "1s0qyhpfpncsv9qfxy07rbp4gv8pp5xzb48rbd3r14nkjlnylnfb",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.2.0",
+ "deps": []
+ },
+ "keymap-utils": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "tarsius",
+ "repo": "keymap-utils",
+ "sha256": "06ajkqxv71hcrwc707ybzwfw4yzbsp6basnbs493ryr41gnvmnzs",
+ "rev": "dd396093899a3792ef88742657e799339fd8aed5"
+ },
+ "recipe": {
+ "sha256": "0nbcwz4nls0pva79lbx91bpzkl38g98yavwkvg2rxbhn9vjbhzs9",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.5.2",
+ "deps": [
+ "cl-lib"
+ ]
+ },
+ "xcscope": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "dkogan",
+ "repo": "xcscope.el",
+ "sha256": "1n1msmqap4a2qnjwrchf9cjkzcl20hbrx0vsc4lkbvq3p5riv5p7",
+ "rev": "4775aae4ce4caa92fb8b752907d7b66b96ccbe03"
+ },
+ "recipe": {
+ "sha256": "06xh29cm5v3b5xwj32y0i0h0kvvy995840db4hvab2wn9jw68m8w",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.1",
+ "deps": []
+ },
+ "weechat": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "the-kenny",
+ "repo": "weechat.el",
+ "sha256": "0f90m2s40jish4wjwfpmbgw024r7n2l5b9q9wr6rd3vdcwks3mcl",
+ "rev": "f01cdd4d874cf09fee5a78d7b29eb96bc21be2be"
+ },
+ "recipe": {
+ "sha256": "0sxrms5024bi4irv8x8s8j1zcyd62cpqm0zv4dgpm65wnpc7xc46",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.2.2",
+ "deps": [
+ "cl-lib",
+ "emacs",
+ "s",
+ "tracking"
+ ]
+ },
+ "psci": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "ardumont",
+ "repo": "emacs-psci",
+ "sha256": "0wgxrwl7dpy084sc76wiwpixycb171g7xwc66m5gnlrv79qyac73",
+ "rev": "8c2d5a0ba604ec593f83f632b2830a87f41f84d4"
+ },
+ "recipe": {
+ "sha256": "0sgrz8byz2pcsad2pydinp4hh2xb48pdb03r93wg2vvyy8p15j9g",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.0.6",
+ "deps": [
+ "dash",
+ "deferred",
+ "f",
+ "purescript-mode",
+ "s"
+ ]
+ },
+ "go-scratch": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "shosti",
+ "repo": "go-scratch.el",
+ "sha256": "1a6vg2vwgnafb61pwrd837fwlq5gs80wawbzjsnykawnmcaag8pm",
+ "rev": "3f68cbcce04f59eb8e83af109164731ec0454be0"
+ },
+ "recipe": {
+ "sha256": "11ahvmxbh67wa39cymymxmcpkq0kcn5jz0rrvazjy2p1hx3x1ma5",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.0.1",
+ "deps": [
+ "emacs",
+ "go-mode"
+ ]
+ },
+ "finder+": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/finder+.el",
+ "sha256": "01rkp2fa4h9pippa7q3702hn9bqgbdg7ml4w6dn72l8nj4vnrwmn"
+ },
+ "recipe": {
+ "sha256": "1ichxghp2vzx01n129fmjm6iwx4b98ay3xk1ja1i8vzyd2p0z8vh",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": []
+ },
+ "plenv": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "karupanerura",
+ "repo": "plenv.el",
+ "sha256": "11cbpgjsnw8fiqf1s12hbm9qxgjcw6y2zxx7wz4wg7idmi7m0b7g",
+ "rev": "ee937d0f3a1a7ba2d035f45be896d3ed8fefaee2"
+ },
+ "recipe": {
+ "sha256": "0dw9fy5wd9wm76ag6yyw3f9jnlj7rcdcxgdjm30h514qfi9hxbw4",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.32",
+ "deps": []
+ },
+ "git-gutter+": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "nonsequitur",
+ "repo": "git-gutter-plus",
+ "sha256": "101hracd77mici778x3ixwrcicd6fqkcr9z76kapkr0dq5z42yjb",
+ "rev": "f8daebb6569bb116086d8653da3505382e03d940"
+ },
+ "recipe": {
+ "sha256": "1w78p5cz6kyl9kmndgvwnfrs80ha707s8952hycrihgfb6lixmp0",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.4",
+ "deps": [
+ "git-commit"
+ ]
+ },
+ "wrap-region": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "rejeep",
+ "repo": "wrap-region",
+ "sha256": "03hjwm51sngkh7jjiwnqhflllqq6i99ib47rm2ja9ii0qyhj1qa0",
+ "rev": "5a910ad23ebb0649e644bf62ad042587341da5da"
+ },
+ "recipe": {
+ "sha256": "0mby3m49vm2pw127divspgivqam27zd4r70wx5ra05xwfxywaibq",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.7.3",
+ "deps": [
+ "dash"
+ ]
+ },
+ "flymake-gjshint": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "yasuyk",
+ "repo": "flymake-gjshint-el",
+ "sha256": "002s01cymgx4z4l3j2pqirg7899pljdx2hmbz8k6cksdxlymzmkd",
+ "rev": "71495ee5303de18293decd57ab9f9abdbaabfa05"
+ },
+ "recipe": {
+ "sha256": "19jcd5z4883z3fzlrdn4fzmsvn16f4hfnhgw4vbs5b0ma6a8ka44",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.0.6",
+ "deps": []
+ },
+ "rnc-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "TreeRex",
+ "repo": "rnc-mode",
+ "sha256": "1drvyf5asjp3lgpss7llff35q8r89vmh73n1axaj2qp9jx5a5jih",
+ "rev": "b39dc23218213336b55f28e12a1d0e49ef7c1e21"
+ },
+ "recipe": {
+ "sha256": "09ly7ln6qrcmmim9bl7kd50h4axrhy6ig406r352xm4a9zc8n22q",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.0.6",
+ "deps": []
+ },
+ "pangu-spacing": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "coldnew",
+ "repo": "pangu-spacing",
+ "sha256": "0gmdzagyg0p7q1gyj2a3aqp2g4asljpib3n67nikr0v99c2mki5y",
+ "rev": "034b4ef8a1b29bf7bfed6a916380941506ed26ed"
+ },
+ "recipe": {
+ "sha256": "082qh26vlk7kifz1800lyai17yvngwjygrfrsh1dsd8dxhk6l9j8",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.4",
+ "deps": []
+ },
+ "protobuf-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "google",
+ "repo": "protobuf",
+ "sha256": "03df8zvx2sry3jz2x4pi3l32qyfqa7w8kj8jdbz30nzy0h7aa070",
+ "rev": "bba83652e1be610bdb7ee1566ad18346d98b843c"
+ },
+ "recipe": {
+ "sha256": "1hh0w93fg6mfwsbb9wvp335ry8kflj50k8hybchpjcn6f4x39xsj",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "2.6.1",
+ "deps": []
+ },
+ "metaweblog": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "punchagan",
+ "repo": "metaweblog.el",
+ "sha256": "06mbdb4zb07skq1jpv05hr45k5x96d9hgkb358jiq0kfsqlrbbb4",
+ "rev": "c8b50a6edf0fd2f396570c9a1c2ef8cd207606fb"
+ },
+ "recipe": {
+ "sha256": "11y5x3a8iv0hjj7ppi2sa7vawn7r475qfsh1jg415j4y4fzwpk6y",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.1.1",
+ "deps": [
+ "xml-rpc"
+ ]
+ },
+ "imenus": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "alezost",
+ "repo": "imenus.el",
+ "sha256": "18nx5z2vn0ikv4gxjprsqr63pcgf9s02gc3f769h8dji560kqxd4",
+ "rev": "7409021864a4e74a237a00d1e1d2597dc80ef7f0"
+ },
+ "recipe": {
+ "sha256": "1q0j6r2n5vjlbgchkz9zdglmmbpd8agawzcg61knqrgzpc4lk82r",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.1",
+ "deps": [
+ "cl-lib"
+ ]
+ },
+ "systemd": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "holomorph",
+ "repo": "systemd-mode",
+ "sha256": "0axskr4q0kw8pmnl1pv2z3n6x3pn6v28qcgz3qf745lqgmsgbng9",
+ "rev": "aa9f4f64e99d5912153eef0726e26fd4dfb4d7c3"
+ },
+ "recipe": {
+ "sha256": "1biais0cmidy3d0hf2ifdlr6qv1z8k8c8bczi07bsfk4md3idbir",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.3.1",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "list-processes+": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/list-processes+.el",
+ "sha256": "1bssvyjgk1h1wiaxxdi2m5gjy6a790a9rwvi0r22hin7iskg300a"
+ },
+ "recipe": {
+ "sha256": "10x7hkba2bmryyl68w769fggw65dl4f3a9g0gqdzmkdj80rcipky",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": []
+ },
+ "hippie-exp-ext": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/hippie-exp-ext.el",
+ "sha256": "1jkjg7zxpc06plzlyvj1a8dcvj8ijqzhkxwlsd12cgkymvp411yl"
+ },
+ "recipe": {
+ "sha256": "14py5hz523847f7bhw67v81x5cfhzz5la15mrqavc4z4yicy63iq",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": []
+ },
+ "recentf-ext": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/recentf-ext.el",
+ "sha256": "15kwkphrlxq6nbmqm95sxv4rykl1d35sjm59ncy07ncqm706h33l"
+ },
+ "recipe": {
+ "sha256": "1m54w1n3ci5j7i1jhw6cs7dgzmxrj1hsrrarqlrd1d4iqhixjzbq",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": []
+ },
+ "ov": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "ShingoFukuyama",
+ "repo": "ov.el",
+ "sha256": "0qxk2rf84j86syxi8xknsq252irwg7sz396v3bb4wqz4prpj0kzc",
+ "rev": "4e1c254d74bc1773c92f1613c3865cdcb4bc7095"
+ },
+ "recipe": {
+ "sha256": "0d71mpv74cfxcnwixbrl90nr22cw4kv5sdgpny5wycvh6cgmd6qb",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.0.6",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "applescript-mode": {
+ "fetch": {
+ "tag": "fetchsvn",
+ "url": "http://svn.osdn.jp/svnroot/macemacsjp/applescript-mode/trunk",
+ "sha256": "0n3y0314ajqhn5hzih09gl72110ifw4vzcgdxm8n6npjbx7irbml",
+ "rev": "584"
+ },
+ "recipe": {
+ "sha256": "1ya0dh7gz7qfflhn6dq43rapb2zg7djvxwn7p4jajyjnwbxmk611",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": []
+ },
+ "ibuffer-vc": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "purcell",
+ "repo": "ibuffer-vc",
+ "sha256": "0bqdi5w120256g74k0j4jj81x804x1gcg4dxa74w3mb6fl5xlvs8",
+ "rev": "b2bac7aa69335933ebb2e6f34259fa96d2c8d46a"
+ },
+ "recipe": {
+ "sha256": "0bn5qyiq07cgzci10xl57ss5wsk7bfhi3hjq2v6yvpy9v704dvla",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.10",
+ "deps": [
+ "cl-lib"
+ ]
+ },
+ "servant": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "rejeep",
+ "repo": "servant.el",
+ "sha256": "15lx6qvmq3vp84ys8dzbx1nzxcnzlq41whawc2yhrnd1dbq4mv2d",
+ "rev": "4d2aa8250b54b28e6e7ee4cd5ebd98a33db2c134"
+ },
+ "recipe": {
+ "sha256": "048xg0gcwnf4l2p56iw4iawi3ywjz7f6icnjfi8qzk1z912iyl9h",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.3.0",
+ "deps": [
+ "ansi",
+ "commander",
+ "dash",
+ "epl",
+ "f",
+ "s",
+ "shut-up",
+ "web-server"
+ ]
+ },
+ "moz-controller": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "RenWenshan",
+ "repo": "emacs-moz-controller",
+ "sha256": "1w1i1clkjg9mj1g4i2y3xw3hyj8s7h9gr04qgyb9c1q8vh11z8d0",
+ "rev": "42fd842039620de7fb122f7e4ffc1ab802ee97c5"
+ },
+ "recipe": {
+ "sha256": "18gca1csl9dfi9995mky8cbgi3xzf1if8pzdjiz5404gzcqk0rfd",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.0",
+ "deps": [
+ "moz"
+ ]
+ },
+ "dired-efap": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "juan-leon",
+ "repo": "dired-efap",
+ "sha256": "1m0nx8wd6q56qbp5mbp9n466kyglrz34nflwvgd1qnmi08jwswgv",
+ "rev": "2b849bc5c09d0b752a177495ea1b851ee821f5bf"
+ },
+ "recipe": {
+ "sha256": "01j5v6584qi8ia7zmk03kx3i3kmm6hn6ycfgqlh5va6lp2h9sr00",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.8",
+ "deps": []
+ },
+ "form-feed": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "wasamasa",
+ "repo": "form-feed",
+ "sha256": "171jna631b2iqcimfsik9c66gii8nc0zdb58m077w00rn7rcxbh2",
+ "rev": "eac6724c093458745e9ae0e37221077fa2ad0ff6"
+ },
+ "recipe": {
+ "sha256": "1abwjkzi3irw0jwpv3f584zc72my9n8iq8zp5s0354xk6iwrl1rh",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.2.2",
+ "deps": []
+ },
+ "auto-complete-nxml": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "aki2o",
+ "repo": "auto-complete-nxml",
+ "sha256": "18bf1kw85mab0zp7rn85cm1nxjxg5c1dmiv0j0mjwzsv8an4px5y",
+ "rev": "ac7b09a23e45f9bd02affb31847263de4180163a"
+ },
+ "recipe": {
+ "sha256": "0viscr5k1carn9vhflry16kgihr6fvh6h36b049pgnk6ww085k6a",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.5.0",
+ "deps": [
+ "auto-complete"
+ ]
+ },
+ "time-ext": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/time-ext.el",
+ "sha256": "0kxgzjwgd979aypjak07k8ss6hnm3x9f96z1rz2zsz2i3vvh6sqv"
+ },
+ "recipe": {
+ "sha256": "15b3m1jvr7kg5sc4c8cp0aaiiyivfx8ip1zf7w5m702krv4lfvpk",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": []
+ },
+ "ws-butler": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "lewang",
+ "repo": "ws-butler",
+ "sha256": "1lv0l27lrp6xyl0c5yhlnyjwx872izq02z8x34da9jv3walxpk8f",
+ "rev": "106d313c0dad532c2da3cc78770a8a2f0396aa85"
+ },
+ "recipe": {
+ "sha256": "072k67z2lx0ampwzdiszi64xs0w6frp4nbmrd2r0wpx0pd211vbn",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.3",
+ "deps": []
+ },
+ "nsis-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "mattfidler",
+ "repo": "nsis-mode",
+ "sha256": "0c4qfbb345yna5c30czq8nhcx283z1fnpp6h16p7vjqs6y37czsl",
+ "rev": "f1bf701c37680553c8f51462e0829d0dd6c53187"
+ },
+ "recipe": {
+ "sha256": "0pc047ryw906sz5mv0awvl67kh20prsgx6fbh0j1qm0cali2792l",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.44",
+ "deps": []
+ },
+ "punctuality-logger": {
+ "fetch": {
+ "tag": "fetchFromGitLab",
+ "owner": "elzair",
+ "repo": "punctuality-logger",
+ "sha256": "1v48i37iqrrwbyy3bscicfq66vbbml4sg0f0n950bnk0qagjx8py",
+ "rev": "708cae8e67dbae293c7c4be0ca5e49d76fac6714"
+ },
+ "recipe": {
+ "sha256": "0q9s74hkfqvcx67xpq9rlvh38nyjnz230bll6ks7y5yzxvl4qhcm",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.8",
+ "deps": []
+ },
+ "less-css-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "purcell",
+ "repo": "less-css-mode",
+ "sha256": "1w6mbk4gc63sh2p9rsy851x2kid0dp2ja4ai5badkr5prxkcpfdn",
+ "rev": "d59a3ff4031ae75fbbe77b6cfce7843205394c28"
+ },
+ "recipe": {
+ "sha256": "188iplnwwhawq3dby3388kimy0jh1k9r8v9nxz52hy9rhh9hykf8",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.20",
+ "deps": []
+ },
+ "python-x": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "wavexx",
+ "repo": "python-x.el",
+ "sha256": "00i7cc4r7275l22k3708xi4hqw2j44yivdb1madzrpf314v3kabr",
+ "rev": "e606469aafec2e6beda8c589540b88a5a6f6f33f"
+ },
+ "recipe": {
+ "sha256": "115mvhqfa0fa8kdk64biba7ri4xjk74qqi6vm1a5z3psam9mjcmn",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.0",
+ "deps": [
+ "folding",
+ "python"
+ ]
+ },
+ "ruby-test-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "r0man",
+ "repo": "ruby-test-mode",
+ "sha256": "008zj9rg2cmh0xd7g6kgx6snm5sspxs4jmfa8hd43wx5y9pmlb8f",
+ "rev": "7d3c04b60721665af93ffb4abc2a7b3191926431"
+ },
+ "recipe": {
+ "sha256": "113ysf08bfh2ipk55f8h741j05999yrgx57mzh53rim5n63a312w",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.0",
+ "deps": []
+ },
+ "font-utils": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "rolandwalker",
+ "repo": "font-utils",
+ "sha256": "1k90w8v5rpswqb8fn1cc8sq5w12gf4sn6say5dhvqd63512b0055",
+ "rev": "9192d3f8ee6a4e75f34c3fed10378674cc2b11d3"
+ },
+ "recipe": {
+ "sha256": "0k33jdchjkj7j211a23kfp5axg74cfsrrq4axsb1pfp124swh2n5",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.7.8",
+ "deps": [
+ "pcache",
+ "persistent-soft"
+ ]
+ },
+ "digistar-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "retroj",
+ "repo": "digistar-mode",
+ "sha256": "0jzwaivsqh66py9hd3dg1ys5rc3p6pn8ndpwpvgyivk4pg6zhhj6",
+ "rev": "0dcde58ec6e473042e55d4f283b223554546de5b"
+ },
+ "recipe": {
+ "sha256": "0khzxlrm09h31i1nqz6rnzhrdssb3kppc4klpxza612l306fih0s",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.4",
+ "deps": []
+ },
+ "yatex": {
+ "fetch": {
+ "tag": "fetchhg",
+ "url": "https://www.yatex.org/hgrepos/yatex/",
+ "sha256": "1n38fn6hcsl5ilq8vdaakv6id426lr7hdnvccqy6jdplqymgj7h6",
+ "rev": "5b49aea3810d"
+ },
+ "recipe": {
+ "sha256": "00vck0ma5c4zygw0jfqx4nk4pv40rvzvrlp8igzwr0533p19p0pk",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0",
+ "deps": []
+ },
+ "dired-sort": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/dired-sort.el",
+ "sha256": "1dpxkxxfs14sdm3hwxv0j26lq0qzx4gryw42vrcdi680aj24962z"
+ },
+ "recipe": {
+ "sha256": "1dzy2601yikmmbfqivf9s5xi4vd1f5g3c53f8rc74kfnxr1qn59x",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": []
+ },
+ "pandoc-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "joostkremers",
+ "repo": "pandoc-mode",
+ "sha256": "14kxmcsgdrq9r8c17x8hz8vid0bn6rikvmddhc6wpbmp7shngvr1",
+ "rev": "067f9aa8ba27bd50b602dbfdaa155e2f381c7139"
+ },
+ "recipe": {
+ "sha256": "0qvc6cf87h1jqf590kd68jfg25snxaxayfds634wj4z6gp70l781",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "2.13.3",
+ "deps": [
+ "dash",
+ "hydra"
+ ]
+ },
+ "highlight-parentheses": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "nschum",
+ "repo": "highlight-parentheses.el",
+ "sha256": "08ld4wjrkd77cghmrf1n2hn2yzid7bdqwz6b1rzzqaiwxl138iy9",
+ "rev": "5aa800a68e3795716de1e7f2722e836781190f31"
+ },
+ "recipe": {
+ "sha256": "1b0n9mz4a6baljvvgb881w53391smm35c9pwd45g861hk1qvrk5k",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.1.0",
+ "deps": []
+ },
+ "elx": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "tarsius",
+ "repo": "elx",
+ "sha256": "12svv24qclkcdb5sniq0xbbsj34hq835s2v636xkb07dpmy644lg",
+ "rev": "8f339d0c266713ca8398b01d51ccfdbe1dbb9aeb"
+ },
+ "recipe": {
+ "sha256": "02nq66c0sds61k2p8cn2l0p2l8ysb38ibr038qn41l9hg1dq065x",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.10.0",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "hyai": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "iquiw",
+ "repo": "hyai",
+ "sha256": "1b8992vzq5bh01pjlj181nzqjrqs4fbjpwvv8h7gjq42sf8w59sm",
+ "rev": "7c644d31f62943c75ccf5a772e43450b462cc08f"
+ },
+ "recipe": {
+ "sha256": "00ns7q5b11c5amwkq11fs4p5vrmdfmjljfrcxbwb39gc12yrhn7s",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.0.0",
+ "deps": [
+ "cl-lib",
+ "emacs"
+ ]
+ },
+ "hackernews": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "clarete",
+ "repo": "hackernews.el",
+ "sha256": "1ffk39lnmg9gfffkaj595p768d1p99q6sqym5g5ch6fmi6cx3a84",
+ "rev": "97b178acfa26b929fc23177b25fb0c62d2958e32"
+ },
+ "recipe": {
+ "sha256": "1x1jf5gkhmpiby5rmy0sziywh6c1f1n0p4f6dlz6ifbwns7har6a",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.2",
+ "deps": [
+ "json"
+ ]
+ },
+ "powerline": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "milkypostman",
+ "repo": "powerline",
+ "sha256": "1nx3b24i26kgm52xw21x4m15qjkxw3sg5r6qyvck0fyhj0gw69gr",
+ "rev": "240bad5ebea4c7298e86ed76bd44c45d9062cb33"
+ },
+ "recipe": {
+ "sha256": "0gsffr6ilmckrzifsmhwd42vr85vs42pc26f1205pbxb7ma34dhx",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "2.2",
+ "deps": [
+ "cl-lib"
+ ]
+ },
+ "helm-sage": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "stakemori",
+ "repo": "helm-sage",
+ "sha256": "1s6aw1viyzhhrfiazzi82n7bkvshp7clwi6539660m72lfwc5zdl",
+ "rev": "b42b4ba5fd1b17c4b54c30376a053281686beeb8"
+ },
+ "recipe": {
+ "sha256": "1vnq15fjaap0ai7dadi64sm4415xssmahk2j7kx45sasy4qaxlbj",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.0.4",
+ "deps": [
+ "cl-lib",
+ "helm",
+ "sage-shell-mode"
+ ]
+ },
+ "skewer-less": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "purcell",
+ "repo": "skewer-less",
+ "sha256": "0g5sapd76pjnfhxlw149zj0fpn6l3pz3l8qlcn2c237vm8vn6qv3",
+ "rev": "593001930f1d68c85233f34c5f6fb04173fc98d6"
+ },
+ "recipe": {
+ "sha256": "0fhv5cnp5bgw3krfmb0jl18kw2hzx2p81falj57lg3p8rn23dryl",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.2",
+ "deps": [
+ "skewer-mode"
+ ]
+ },
+ "eimp": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/eimp.el",
+ "sha256": "024qyipwlj3g0fff06cgq357blkh3hyr14vpmkqsv15x6gb9snir"
+ },
+ "recipe": {
+ "sha256": "11z23kx89yy03hzs1xlbcih70lsp2lplxs8nkc8jvfcpsjwypsl0",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": []
+ },
+ "flymake-perlcritic": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "illusori",
+ "repo": "emacs-flymake-perlcritic",
+ "sha256": "11r982h5fhjkmm9ld8wfdip0ghinw523nm1w4fmy830g0bbkgkrq",
+ "rev": "0692d6ad5495f6e5438bde0a10345829b8e1def8"
+ },
+ "recipe": {
+ "sha256": "0hibnh463wzhvpix7gygpgs04gi6salwjrsjc6d43lxlsn3y1im8",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.0.3",
+ "deps": [
+ "flymake"
+ ]
+ },
+ "dired-single": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/dired-single.el",
+ "sha256": "1ys38kjnqvks8w207jv6y5yh30rarmib0p78ak761k9sldgd6wvx"
+ },
+ "recipe": {
+ "sha256": "075vzvmh9y403m1vm5a807vkzrqv8dmhgfdzyizfj80q365sv72p",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": []
+ },
+ "oneonone": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/oneonone.el",
+ "sha256": "1810acc61dwdq80jwn5diwg9djzag3n1l9lql72bjkq21my320k5"
+ },
+ "recipe": {
+ "sha256": "0v4nvhzgq97zbi18jd3ds57yh1fpv57b2a1cd7r8jbxwaaz3gpg9",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": [
+ "hexrgb"
+ ]
+ },
+ "emamux": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "syohex",
+ "repo": "emacs-emamux",
+ "sha256": "1a9925n0jcgxcgiz2kmh9zbb1rg9039rlrbr9fr80by9znfwmy67",
+ "rev": "53177ca59ed2824cc0837677af5a13a580691a71"
+ },
+ "recipe": {
+ "sha256": "1pg0gzi8rn0yafssrsiqdyj5dbfy984srq1r4dpp8p3bi3n0fkfz",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.13",
+ "deps": [
+ "cl-lib",
+ "emacs"
+ ]
+ },
+ "kill-or-bury-alive": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "mrkkrp",
+ "repo": "kill-or-bury-alive",
+ "sha256": "11cqrjxfiflz89gkl9g5m0wx041s28xz879cvhl3i1yjnwyhzqay",
+ "rev": "6e0d1ff08889d9cf3f89e366e327d9de930cf67c"
+ },
+ "recipe": {
+ "sha256": "0mm0m8hpy5v98cap4f0s38dcviirm7s6ra4l94mknyvnx0f73lz8",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.1.1",
+ "deps": [
+ "cl-lib",
+ "emacs"
+ ]
+ },
+ "ggtags": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "leoliu",
+ "repo": "ggtags",
+ "sha256": "1qjh7av046ax4240iw40hv5fc0k23c36my9hili7fp4y2ak99l8n",
+ "rev": "d4fb6d40b71cad3fd5a2141b8456f27e2b2dc731"
+ },
+ "recipe": {
+ "sha256": "1cmry4knxbx9257ivhfxsd09z07z3g3wjihi99nrwmhb9h4mpqyw",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.8.11",
+ "deps": [
+ "cl-lib",
+ "emacs"
+ ]
+ },
+ "move-text": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/move-text.el",
+ "sha256": "0azda60cbz3kpvy6zd7pvlj40iwvj1zjdxv1brzqa6yfa4kyixv2"
+ },
+ "recipe": {
+ "sha256": "1xgq7wsh08fb23zv71lfw5rska9wijsl64ijpi2m06zyw1m7mdqr",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": []
+ },
+ "ac-cake2": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "k1LoW",
+ "repo": "emacs-ac-cake2",
+ "sha256": "0mlmhdl9s28z981y8bnpj8jpfzm6bgfiyl0zmpgvhyqw1wzqywwv",
+ "rev": "ffbb679c0d5c261b05abde06d8d1d1e5d5990b6a"
+ },
+ "recipe": {
+ "sha256": "0qxilldx23wqf8ilif2nin119bvd0l7b6f6wifixx28a6kl1vsgy",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.0.1",
+ "deps": [
+ "auto-complete",
+ "cake2"
+ ]
+ },
+ "cfengine-code-style": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "cfengine",
+ "repo": "core",
+ "sha256": "11a89pyz8zdjdkimpqaywp702xf9cmwz1djkjp5dghgpwi1aid72",
+ "rev": "afed90c14a2b30bc36595626b959522c34a6565f"
+ },
+ "recipe": {
+ "sha256": "1ny8xvdnz740qmw9m81xnwd0gh0a516arpvl3nfimglaai5bfc9a",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "3.8.0b1",
+ "deps": []
+ },
+ "corral": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "nivekuil",
+ "repo": "corral",
+ "sha256": "0gpckp12b0hllgn821q3rqfxh5h7ny5gfhhvfdbvszb7kwl1f6cx",
+ "rev": "bcd1d90b2280f93ed139e4aa82838a8e62a4bac9"
+ },
+ "recipe": {
+ "sha256": "1drccqk4qzkgvkgkzlrrfd1dcgj8ziqriijrjihrzjgjsbpzv6da",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.2",
+ "deps": []
+ },
+ "look-mode": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/look-mode.el",
+ "sha256": "0sl6hqggi6qn2qp9khw11qp5hamngwxrrwx98k3pwpj9kgicdpgp"
+ },
+ "recipe": {
+ "sha256": "0y3wjfjx0g5jclmv9m3vimv7zd18pk5im7smr41qk09hswi63yqj",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": []
+ },
+ "cacoo": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "kiwanami",
+ "repo": "emacs-cacoo",
+ "sha256": "1k2hmc87ifww95k3m8ksiswkk2z0y8grssba7381g8dnlp6jgprx",
+ "rev": "c2e6a8830144810cd4e51de3646cb8200bcebbc6"
+ },
+ "recipe": {
+ "sha256": "0kri4vi6dpsf0zk24psm16f3aa27cq5b54ga7zygmr02csq24a6z",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "2.1.2",
+ "deps": [
+ "concurrent"
+ ]
+ },
+ "sprintly-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "sprintly",
+ "repo": "sprintly-mode",
+ "sha256": "06rk07h92s5sljprs41y3q31q64cprx9kgs56c2j6v4c8cmsq5h6",
+ "rev": "6695892bae5860b5268bf3ae62be990ee9b63c11"
+ },
+ "recipe": {
+ "sha256": "15i3rrv27ccpn12wwj9raaxpj7nlnrrj3lsp8vdfwph6ydvnfza4",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.0.4",
+ "deps": [
+ "furl"
+ ]
+ },
+ "multi": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "kurisuwhyte",
+ "repo": "emacs-multi",
+ "sha256": "11zabs7qpdhri6n90ck7pgwcbz46d813nyl73h5m1i8jvz1wzx7v",
+ "rev": "884203b11fdac8374ec644cca975469aab263404"
+ },
+ "recipe": {
+ "sha256": "1c240d1c1g8wb2ld944344zklnv86d9rycmya4z53b2ai10642ig",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "2.0.1",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "json-reformat": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "gongo",
+ "repo": "json-reformat",
+ "sha256": "0qp4n2k6s69jj4gwwimkpadjv245y54wk3bxb1x96f034gkp81vs",
+ "rev": "b9bd375ec1deb10d2ba09c409bdcf99c56d7a716"
+ },
+ "recipe": {
+ "sha256": "1m5p895w9qdgb8f67xykhzriribgmp20a1lvj64iap4aam6wp8na",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.0.6",
+ "deps": []
+ },
+ "unicode-whitespace": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "rolandwalker",
+ "repo": "unicode-whitespace",
+ "sha256": "0q7cbl89yg3fjxaxsqsksxhw7ibdslbb004z5y1m579n7zgcrljy",
+ "rev": "6d29f25d46b3344c74ce289fc80b3d4fc17ed6db"
+ },
+ "recipe": {
+ "sha256": "1b3jgha8va42b89pdp41sab2w9wllp7dicqg4lxl67bg6wn147wy",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.2.4",
+ "deps": [
+ "pcache",
+ "persistent-soft",
+ "ucs-utils"
+ ]
+ },
+ "kakapo-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "listx",
+ "repo": "kakapo-mode",
+ "sha256": "0b6af8hnrn0v4z1xpahjfpw5iga2bmgd3qwfn3is2rygsn5rkm40",
+ "rev": "fe3d579867f7465cd3ad04f29b4b2b3b820edc01"
+ },
+ "recipe": {
+ "sha256": "0a99cqflpzasl4wcmmf99aj8xgywkym37j7mvnsajrsk5wawdlss",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.2",
+ "deps": [
+ "cl-lib"
+ ]
+ },
+ "pretty-lambdada": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/pretty-lambdada.el",
+ "sha256": "0qda87pz137ki2527v2ji74nibazwxh8ykqv26315z6pz0q1dkin"
+ },
+ "recipe": {
+ "sha256": "16v5fgifz672c37xyzv557mm6za4rldvdrb26vdymxqg4fy62fd6",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": []
+ },
+ "omni-tags": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "AdrieanKhisbe",
+ "repo": "omni-tags.el",
+ "sha256": "0c34rci5793hd674x2srhqvnj46llrbkrw1xpzf73s4ib5zhh7xi",
+ "rev": "a7078bfbc9a6256efd0e57530df9fd7808bc2185"
+ },
+ "recipe": {
+ "sha256": "133ww1jf14jbw02ssbx2a46mp52j18a2wwzb6x77azb0akmf1lzl",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.1.2",
+ "deps": [
+ "cl-lib",
+ "pcre2el"
+ ]
+ },
+ "hcl-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "syohex",
+ "repo": "emacs-hcl-mode",
+ "sha256": "15h1wkl1d9f2xfhm0nffqicg31rw7z2q0sizjphys9ljgxm43is4",
+ "rev": "f9757d4122d75ffdff92c97ec9e75694506caba5"
+ },
+ "recipe": {
+ "sha256": "1wrs9kj6ahsdnbn3fdaqhclq1ia6w4x726hjvl6pyk01sb0spnin",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.01",
+ "deps": [
+ "cl-lib"
+ ]
+ },
+ "tfs": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/tfs.el",
+ "sha256": "16byw8ix7bjh5ldr8rymisq2bhc5sh7db6rhpf0x28yd6mmzn73v"
+ },
+ "recipe": {
+ "sha256": "10szb9mni37s2blvhl1spj96narmkrv8zhrryw9q1251z8laq5v0",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": []
+ },
+ "page-break-lines": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "purcell",
+ "repo": "page-break-lines",
+ "sha256": "1acz3w2zdcds0h6p2k9h3lmjsk519asqrxjw7f3pyrcq7x2qbhc4",
+ "rev": "36d3f93a23b767e7558b9c90f3631b03ce9fbdce"
+ },
+ "recipe": {
+ "sha256": "0q1166z190dxznzgf2f29klj2jkaqlic483p4h3bylihkqp93ij7",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.10",
+ "deps": []
+ },
+ "rope-read-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "marcowahl",
+ "repo": "rope-read-mode",
+ "sha256": "133ficdghshlmwq5dn42cg3h51jdg4lcwqr4cd2s2s52rz8plw9h",
+ "rev": "cb550afeedd369c80d1ccb54bb48494d170a5569"
+ },
+ "recipe": {
+ "sha256": "0grnn5k6rbck0hz4c6cadgj3a4dv62habyingznisg2kx9i3m0dw",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.3.1",
+ "deps": []
+ },
+ "desktop+": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "ffevotte",
+ "repo": "desktop-plus",
+ "sha256": "184zi5fv7ranghfx1hpx7j2wnk6kim8ysliyw2c5c1294sxxq3f3",
+ "rev": "a484d24ca673c7536387368729421dad9dde5059"
+ },
+ "recipe": {
+ "sha256": "0w7i6k4814hwb19l7ly9yq59674xiw57ylrwxq7yprwx52sgs2r8",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.1",
+ "deps": []
+ },
+ "bash-completion": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "szermatt",
+ "repo": "emacs-bash-completion",
+ "sha256": "11rlmrjdpa3vnf0h9vcd75946q9jyf1mpbm7h12hmpj6g2pavgdd",
+ "rev": "9588a9c0ddf18f9869d4145a67e6446a4b66eba2"
+ },
+ "recipe": {
+ "sha256": "0l41yj0sb87i27hw6dh35l32hg4qkka6r3bpkckjnfm0xifrd9hj",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "2.0.0",
+ "deps": []
+ },
+ "angular-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "omouse",
+ "repo": "angularjs-mode",
+ "sha256": "1798nv4djhxzbin68zf6w7dbfm9sc39d0kygky52ii36arg5r1zp",
+ "rev": "7c0fb37f59dfd9e69f00b50e90a0e88c4e25d8c2"
+ },
+ "recipe": {
+ "sha256": "1bwfmjldnxki0lqi3ys6r2a3nlhbwm1dibsg2dvzirq8qql02w1i",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.0",
+ "deps": []
+ },
+ "ctxmenu": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "aki2o",
+ "repo": "emacs-ctxmenu",
+ "sha256": "1jlr2miwqsg06hk2clvsrw9fa98m2n76qfq8qv5svrb8dpil04wb",
+ "rev": "5c2376859562b98c07c985d2b483658e4c0e888e"
+ },
+ "recipe": {
+ "sha256": "03g9px858mg19wapqszwav3599slljdyam8bvn1ri85fpa5ydvdp",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.3.0",
+ "deps": [
+ "log4e",
+ "popup",
+ "yaxception"
+ ]
+ },
+ "python-environment": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "tkf",
+ "repo": "emacs-python-environment",
+ "sha256": "0q6bib9nr6xiq6npzbngyfcjk87yyvwzq1zirr3z1h5wadm34lsk",
+ "rev": "401006584e32864a10c69d29f14414828909362e"
+ },
+ "recipe": {
+ "sha256": "1pq16rddw76ic5d02j5bswl9qcydi47hqmhs7r06jk46vsfzxpl7",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.0.2",
+ "deps": [
+ "deferred"
+ ]
+ },
+ "gotham-theme": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "wasamasa",
+ "repo": "gotham-theme",
+ "sha256": "0pxzi56lw9ry91f70hjnvrsbyhcaqknlwicjjbhf6rhv57fplw8h",
+ "rev": "d41b0ea37ad5a4d0060ea05e25d80581f113b662"
+ },
+ "recipe": {
+ "sha256": "0jars6rvf7hkyf71vq06mqki1r840i1dvv43dissqjg5i4lr79cl",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.1.5",
+ "deps": []
+ },
+ "evil-quickscope": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "blorbx",
+ "repo": "evil-quickscope",
+ "sha256": "0yx5ry102hzhqx1aql58fkd986xgj250bbcxabpnvy27gim2b977",
+ "rev": "d2f512fa4bd0b0603529a441e474ca551f621650"
+ },
+ "recipe": {
+ "sha256": "0xym1mh4p68i00l1lshywf5fdg1vw3szxp3fk9fwfcg04z6vd489",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.1.3",
+ "deps": [
+ "evil"
+ ]
+ },
+ "hl-line+": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/hl-line+.el",
+ "sha256": "023l9f74kmg66j2rj5h39b4l6svdd48i4h3bdvq8lwy0lz58g889"
+ },
+ "recipe": {
+ "sha256": "13yv2nmx1wb80z4yifnh6d67rag17wirmp7z8ssq3havjl8lbpix",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": []
+ },
+ "xbm-life": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "wasamasa",
+ "repo": "xbm-life",
+ "sha256": "154xnfcmil9xjjmq4cyrfpir4ga4mgcmmbd7dja1m7rpk1734xk6",
+ "rev": "bde2b3730a02d237f7d95a8e3f3722f23f2d9201"
+ },
+ "recipe": {
+ "sha256": "1pglxjd4cs630sayx17ai1xflpbyj3hry3156682bgwhqs1vw68q",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.1.3",
+ "deps": []
+ },
+ "elpa-mirror": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "redguardtoo",
+ "repo": "elpa-mirror",
+ "sha256": "1hjmvn3kls63alh0ihb5c8gf90lrfvq1hxrlf4162qiaa0s15f8a",
+ "rev": "6c32875c2317736e590e067820996010b21acb1d"
+ },
+ "recipe": {
+ "sha256": "1jnviav2ybr13cgllg26kfjrwrl25adggnqiiwyjwgbbzxfycah8",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.2.1",
+ "deps": []
+ },
+ "edit-server": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "stsquad",
+ "repo": "emacs_chrome",
+ "sha256": "12dp1xj09jrp0kxp9xb6cak9dn6zkyis1wfn4fnhzmxxnrd8c5rn",
+ "rev": "f0db18f0d6e9885e4aef3ace8342fd6f635fadf6"
+ },
+ "recipe": {
+ "sha256": "0ffxcgmnz0f2c1i3vfwm8vlm6jyd7ibf4kq5z8c6n50zkwfdmns0",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.13",
+ "deps": []
+ },
+ "dynamic-ruler": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "rocher",
+ "repo": "dynamic-ruler",
+ "sha256": "05z7gshrn7wp0qkb9ns6rgmcp375yllmkwhdsm4amg0dk3j2slbr",
+ "rev": "2d69a7aec21d3d9dbc8ae7520e5c513e98d64ebb"
+ },
+ "recipe": {
+ "sha256": "13jc3xbsyc3apkdfy0iafmsfvgqs0zfa5w8jxp7zj4dhb7pxpnmc",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.1.4",
+ "deps": []
+ },
+ "fontawesome": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "syohex",
+ "repo": "emacs-fontawesome",
+ "sha256": "0qq13jhn9i2ls6n3fbay4i2r0hfs426pkmmif43b87gjxb510irc",
+ "rev": "ccb03b8329daa3130491c9c4d285b325dbeb5cc7"
+ },
+ "recipe": {
+ "sha256": "07hn4s929xklc74j8s6pd61rxmxw3911dq47wql77vb5pijv6dr3",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.03",
+ "deps": [
+ "cl-lib",
+ "helm-core"
+ ]
+ },
+ "o-blog": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "renard",
+ "repo": "o-blog",
+ "sha256": "0r12023yy8j96bp8z2ml6ffyr2c9rcd5abkh6vqnkwsdxkzx6wrs",
+ "rev": "5db9594c6e3439c000b183551d7975c2e29131f4"
+ },
+ "recipe": {
+ "sha256": "08grkyvg27wd5232q3y8p0v7higfq7bmsdzmvhja96v6qy2xsbja",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "2.0",
+ "deps": []
+ },
+ "love-minor-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "ejmr",
+ "repo": "love-minor-mode",
+ "sha256": "11y5jyq4xg9zlm1qi2y97nh05vhva9pai9yyr4x2pr41xz3s8fpk",
+ "rev": "1634ff3a8b657c63a5cffd9a937812a289f2c954"
+ },
+ "recipe": {
+ "sha256": "1skg039h2hn8dh47ww6n9l776s2yda8ariab4v9f56kb21bncr4m",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.1",
+ "deps": []
+ },
+ "erc-hl-nicks": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "leathekd",
+ "repo": "erc-hl-nicks",
+ "sha256": "0bc71s1cx4z6a9cpfygmzv1xzzx9s74366kzqnlg22sxxpb9ajhq",
+ "rev": "f7e9c378072ecc689f2a0ef66d73db8bbcc07d87"
+ },
+ "recipe": {
+ "sha256": "1lhw77n2nrjnb5yhnpm6yhbcp022xxjcmdgqf21z9rd0igss9mja",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.3.0",
+ "deps": []
+ },
+ "dash-functional": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "magnars",
+ "repo": "dash.el",
+ "sha256": "1njv5adcm96kdch0jb941l8pm51yfdx7mlz83y0pq6jlzjs9mwaa",
+ "rev": "fec6f5480d0ce03ead0e6117ac77dc7e757e76f8"
+ },
+ "recipe": {
+ "sha256": "0hx36hs12mf4nmskaaqrqpcgwrfjdqj6qcxn6bwb0s5m2jf9hs8p",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "2.12.1",
+ "deps": [
+ "dash",
+ "emacs"
+ ]
+ },
+ "pdf-tools": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "politza",
+ "repo": "pdf-tools",
+ "sha256": "19sy49r3ijh36m7hl4vspw5c4i8pnfqdn4ldm2sqchxigkw56ayl",
+ "rev": "0107f80dcf268d08ac075b01729820062c0fbd67"
+ },
+ "recipe": {
+ "sha256": "1hnc8cci00mw78h7d7gs8smzrgihqz871sdc9hfvamb7iglmdlxw",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.70",
+ "deps": [
+ "emacs",
+ "let-alist",
+ "tablist"
+ ]
+ },
+ "image+": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "mhayashi1120",
+ "repo": "Emacs-imagex",
+ "sha256": "0k69xbih0273xvmj035vcmm67l6hgjb99pb1jbva5x0pnszb1vdv",
+ "rev": "967508a6c151e6ab6e97d3ac332dc5599011830d"
+ },
+ "recipe": {
+ "sha256": "1a9dxswnqn6cvx28180kclpjc0vc6fimzp7n91gpdwnmy123x6hg",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.6.2",
+ "deps": [
+ "cl-lib"
+ ]
+ },
+ "dockerfile-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "spotify",
+ "repo": "dockerfile-mode",
+ "sha256": "1cmh8pwwa6dhl4w66wy8s5yqxs326mnaalg1ig2yhl4bjk8gi4m2",
+ "rev": "9a75fcd119c5b2a1d723d440bbe4b1db56df90cc"
+ },
+ "recipe": {
+ "sha256": "1dxvzn35a9qd3x8pjvrvb2g71yf84404g6vz81y0p353rf2zknpa",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.2",
+ "deps": []
+ },
+ "telepathy": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "NicolasPetton",
+ "repo": "telepathy.el",
+ "sha256": "16kr1p4lzi1ysd5r2dh0mxk60zsm5fvwa9345nfyrgdic340yscc",
+ "rev": "211d785b02a29ddc254422fdcc3db45262582f8c"
+ },
+ "recipe": {
+ "sha256": "0c3d6vk7d6vqzjndlym2kk7d2zm0b15ac4142ir03p6f19rqq9pr",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.0",
+ "deps": []
+ },
+ "flycheck-haskell": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "flycheck",
+ "repo": "flycheck-haskell",
+ "sha256": "0143lcn6g46g7skm4r6lqq09s8mr3268rikbzlh65qg80rpg9frj",
+ "rev": "57756b8f0e4e0a775a702a1b8f2a4be7bb0088cc"
+ },
+ "recipe": {
+ "sha256": "12lgirz3j6n5ns2ikq4n41z0d33qp1lb5lfz1q11qvpbpn9d0jn7",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.7.2",
+ "deps": [
+ "dash",
+ "emacs",
+ "flycheck",
+ "haskell-mode",
+ "let-alist"
+ ]
+ },
+ "evil-iedit-state": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "syl20bnr",
+ "repo": "evil-iedit-state",
+ "sha256": "0r2367lbzcdhglvjjcamrzn5fmqy0jalcws8r0yc2al1vbsrn0fr",
+ "rev": "0bf8d5d1777f1e8a3c46b6a1c7dceb082fcc6779"
+ },
+ "recipe": {
+ "sha256": "1dihyh7vqcp7kvfic613k7v33czr93hz04d635awrsyzgy8savhl",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.0",
+ "deps": [
+ "evil",
+ "iedit"
+ ]
+ },
+ "unicode-enbox": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "rolandwalker",
+ "repo": "unicode-enbox",
+ "sha256": "0n06dvf6r7qblz8vz38qc37xrn29wa1c0jyzis1qw9zzf6hmmzj7",
+ "rev": "ff313f6778bb96481c0ee3291b07a7db46f21ff5"
+ },
+ "recipe": {
+ "sha256": "1phb2qq3pg6z6bl96kl9yfq4jxhgardjpaa4lhgqbxymmqdm7gzv",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.1.4",
+ "deps": [
+ "pcache",
+ "persistent-soft",
+ "string-utils",
+ "ucs-utils"
+ ]
+ },
+ "flycheck-pos-tip": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "flycheck",
+ "repo": "flycheck-pos-tip",
+ "sha256": "0v23yc8znzjp44lrpfzqb4hc3psad14hsnvqcp8f1yyhgvdx35n8",
+ "rev": "0c2b31b615fa294f329f3cc387b464525ce3392d"
+ },
+ "recipe": {
+ "sha256": "09i2jmwj8b915fhyczwdb1j7c551ggbva33avis77ga1s9v3nsf9",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.1",
+ "deps": [
+ "dash",
+ "flycheck",
+ "pos-tip"
+ ]
+ },
+ "ac-dcd": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "atilaneves",
+ "repo": "ac-dcd",
+ "sha256": "0a3s880nswc2s6yh2v5zsmws550q917i7av8nrxc5sp1d03xqwmn",
+ "rev": "4cb14b1e9fcfc4bf4a084765bc1eb10abfbbbd49"
+ },
+ "recipe": {
+ "sha256": "086jp9c6bilc361n1hscza3pbhgvqlq944z7cil2jm1kicsf8s7r",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.4",
+ "deps": [
+ "auto-complete",
+ "flycheck-dmd-dub"
+ ]
+ },
+ "es-windows": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "sabof",
+ "repo": "es-windows",
+ "sha256": "0cjchwrhk7bw87bg10zgcwkga50rvs0jn5v2jf6bbsxbcqx2nfc9",
+ "rev": "7ebe6c6e0831373847d7adbedeaa2e506b54b2af"
+ },
+ "recipe": {
+ "sha256": "112ngkan0hv3y7m71479f46x5gwdmf0vhbqrzs5kcjwlacqlrahx",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.3",
+ "deps": [
+ "cl-lib",
+ "emacs"
+ ]
+ },
+ "find-by-pinyin-dired": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "redguardtoo",
+ "repo": "find-by-pinyin-dired",
+ "sha256": "1xjb66pydm3yf0jxnm2mri98pxq3b26xvwjkaj1488qgj27i05jr",
+ "rev": "3137c367d58958858daa6d3dee1993b2eb9dd9b4"
+ },
+ "recipe": {
+ "sha256": "150hvih3mdd1dqffgdcv3nn4qhy86s4lhjkfq0cfzgngfwif8qqq",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.0.2",
+ "deps": []
+ },
+ "smart-mode-line": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "Malabarba",
+ "repo": "smart-mode-line",
+ "sha256": "0yvlmwnhdph5qj1998jz0idcl7901j6fxa9hivr7kic57j8kbq71",
+ "rev": "d98b985c44b2c771cac1eea758f21e16e169a8a0"
+ },
+ "recipe": {
+ "sha256": "0qmhzlkc6mfqyaw4jaw6195b8sw0wg9pfjcijb4p0mlywf5mh5q6",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "2.9",
+ "deps": [
+ "emacs",
+ "rich-minority"
+ ]
+ },
+ "apu": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/apu.el",
+ "sha256": "1g70yzfsn4wg077biwf2ja6gj1qv728s2map3a1njy664ga3r1k4"
+ },
+ "recipe": {
+ "sha256": "0399rmjwcs7fykj10s9m0lm2wb1cr2bzw2bkgm5rp4n3va0rzaa2",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": []
+ },
+ "live-py-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "donkirkby",
+ "repo": "live-py-plugin",
+ "sha256": "1y81qqsjj2sa319xkwhvq7bl3f5gma4cs7w8x2w510ms32fgqa8x",
+ "rev": "75c27e0110257e3138e24dc2de2a19244635a0bf"
+ },
+ "recipe": {
+ "sha256": "0yn1a0gf9yn068xifpv8p77d917mnalc56pll800zlpsdk8ljicq",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "2.8.1",
+ "deps": []
+ },
+ "pos-tip": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "pitkali",
+ "repo": "pos-tip",
+ "sha256": "0w8bnspnk871qndp18hs0wk4x9x31xr9rwbvf5dc8mcbnj29ch33",
+ "rev": "1b81694d1dc29253db0e855b82563f84a32b38d4"
+ },
+ "recipe": {
+ "sha256": "13qjz112qlrnq34lr70087gshzq8m44knfl6694hfprzjgix84vh",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.4.6",
+ "deps": []
+ },
+ "helm-gitlab": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "nlamirault",
+ "repo": "emacs-gitlab",
+ "sha256": "1hc7j3gwljb1wk2727f66m3f7ga4icbklp54vlm0vf2bmii1ynil",
+ "rev": "90be6027eb59a967e5bbceaa5f32c098472ca245"
+ },
+ "recipe": {
+ "sha256": "010ihx3yddhb8j3jqcssc49qnf3i7xlz0s380mpgrdxgz6yahsmd",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.7.0",
+ "deps": [
+ "dash",
+ "gitlab",
+ "helm",
+ "s"
+ ]
+ },
+ "jabber": {
+ "fetch": {
+ "tag": "fetchgit",
+ "url": "git://git.code.sf.net/p/emacs-jabber/git",
+ "sha256": "af89d7052e555c7b5efb0c21387a50699056659fb83698691b70e75c88e4cd34",
+ "rev": "2999f58619dd9c20cc6cac8060c4c850a504cbbd"
+ },
+ "recipe": {
+ "sha256": "1g5pc80n3cd5pzs3hmpbnmxbldwakd72pdn3vvb0h26j9v073pa8",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.8.92",
+ "deps": []
+ },
+ "magit-gerrit": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "terranpro",
+ "repo": "magit-gerrit",
+ "sha256": "0ym24gjd6c04zry08abcb09zvjbgj8nc1j12q0r51fhzzadxcxbb",
+ "rev": "699c5c39c6dbdc8d730721eaf1491f982dd78142"
+ },
+ "recipe": {
+ "sha256": "1iwvg10ly6dlf8llz9f8d4qfdbvd3s28wf48qgn1wjlxpka6zrd4",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.3",
+ "deps": [
+ "magit"
+ ]
+ },
+ "org-pomodoro": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "lolownia",
+ "repo": "org-pomodoro",
+ "sha256": "1fjdza723615bhdm5x6gbd03vi7ywzpbjn8p59saimczqngfdpmw",
+ "rev": "26452a3d070f4814b191a9de9e3493a54161b910"
+ },
+ "recipe": {
+ "sha256": "1vdi07hrhniyhhvg0hcr5mlixy6bjynvwm89z2lvfyvnnxpx0r27",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "2.0.3",
+ "deps": [
+ "alert",
+ "cl-lib"
+ ]
+ },
+ "monokai-theme": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "oneKelvinSmith",
+ "repo": "monokai-emacs",
+ "sha256": "02w7k4s4698p4adjy4a36na28sb1s2zw4xsjs7p2hv9iiw9kmyvz",
+ "rev": "9a6f126e1f02ec49d41fe2ee79670ca96a563f1a"
+ },
+ "recipe": {
+ "sha256": "13mv4vgsmdbf3v748lqi7b42hvr3yp86n97rb6792bcgd3kbdx7a",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.0.0",
+ "deps": []
+ },
+ "kurecolor": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "emacsfodder",
+ "repo": "kurecolor",
+ "sha256": "0da4y9pf6vq0i6w7bmvrszg9bji3ylhr44hmyrmxvah28pigb2fz",
+ "rev": "c8c72cea04e51f57701d2dd9be7dba5f3412e2f3"
+ },
+ "recipe": {
+ "sha256": "0q0q0dfv376h7j3sgwxqwfpxy1qjbvb6i5clsxz9xp4ly89w4d4f",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.2.2",
+ "deps": [
+ "emacs",
+ "s"
+ ]
+ },
+ "flymake-haml": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "purcell",
+ "repo": "flymake-haml",
+ "sha256": "1b3lf5jwan03k7rb97g4bb982dacdwsfdddnwc0inx9gs3qq1zni",
+ "rev": "343449920866238db343d61343bc845cc8bc5e1b"
+ },
+ "recipe": {
+ "sha256": "0dmdhh12h4xrx6mc0qrwavngk2sx0l4pfqkjjyavabsgcs9wlgp1",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.8",
+ "deps": [
+ "flymake-easy"
+ ]
+ },
+ "highlight-indentation": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "antonj",
+ "repo": "Highlight-Indentation-for-Emacs",
+ "sha256": "00l54k75qk24a0znzl4ij3s3nrnr2wy9ha3za8apphzlm98m907k",
+ "rev": "cd6d8168ccb04c6c0394f42e9512c58f23c01689"
+ },
+ "recipe": {
+ "sha256": "0iblrrbssjwfn71n8xxjcl98pjv1qw1igf3hlz6mh8740fsca3d6",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.7.0",
+ "deps": []
+ },
+ "monroe": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "sanel",
+ "repo": "monroe",
+ "sha256": "1a0pv8fkv1cjdb0k5bmjd67a273bzcmxjwzgy4jpb3ng1qbb2xnm",
+ "rev": "2f8aed286de47f5c4f65b352b6e4f72b47cac279"
+ },
+ "recipe": {
+ "sha256": "04rhninxppvilk7s90g0wwa0g9vfcg7mk8mrb2m2c7cb9vj6wyig",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.2.0",
+ "deps": []
+ },
+ "names": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "Malabarba",
+ "repo": "names",
+ "sha256": "05jvd272x92s6wk17l0hymdj8b4979maalkmk54dp7n4nrcmzx2f",
+ "rev": "a6865f901dd94f92ae23af8aef3f6ae863901855"
+ },
+ "recipe": {
+ "sha256": "1q784606jlakw1z6sx2g2x8hz8c8arywrm2r626wj0v105v510vg",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150723.0",
+ "deps": [
+ "cl-lib",
+ "emacs"
+ ]
+ },
+ "log4j-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "emacsorphanage",
+ "repo": "log4j-mode",
+ "sha256": "14dmmjdmcc0zag8i947n59ihjc2df2l44f7issf66767ym3839kk",
+ "rev": "ec3de92cfe60dd3d0de613e9062476196dea0faf"
+ },
+ "recipe": {
+ "sha256": "0axr0x8mdxif0xbvs83mxc3gqgs84jb4b9la9n62i3lldckghwmg",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.3",
+ "deps": []
+ },
+ "gnus-x-gm-raw": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "aki2o",
+ "repo": "gnus-x-gm-raw",
+ "sha256": "1i3f67x2l9l5c5agspbkxr2mmh3rpq3009d8yzh6r1lih0b4hril",
+ "rev": "978bdfcecc8844465b71641c2e909fcdc66b22be"
+ },
+ "recipe": {
+ "sha256": "1a5iccghzqmcndql2bppvr48535sf6jbvc83iypr1031z1b5k4wg",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.0.1",
+ "deps": [
+ "log4e",
+ "yaxception"
+ ]
+ },
+ "dropdown-list": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/dropdown-list.el",
+ "sha256": "1szy46sk3nvlbb3yzk1s983281kkf507xr3fkclkki3d3x31n08a"
+ },
+ "recipe": {
+ "sha256": "14i9w897gnb3mvnkbzhzij04bgr551r8km310mbrmzzag54w077z",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": []
+ },
+ "docker": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "Silex",
+ "repo": "docker.el",
+ "sha256": "06vb6r1k9ml799h44fm9jhf3amldzhawxnm0lnr501hrmj4bz36x",
+ "rev": "77f646cc10909403a945d188cf9d81abd3bfc2a0"
+ },
+ "recipe": {
+ "sha256": "10x05vli7lg1w3fdbkrl34y4mwbhp2c7nqdwnbdy53i81jisw2lk",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.2.0",
+ "deps": [
+ "dash",
+ "emacs",
+ "magit-popup",
+ "s"
+ ]
+ },
+ "fuzzy-format": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/fuzzy-format.el",
+ "sha256": "1iv0x1cb12kknnxyq2gca7m3c3rg9s4cxz397sazkh1csrn0b2i7"
+ },
+ "recipe": {
+ "sha256": "055b8710yxbi2sdqsqk6jqgnzky4nykv8jgqgwy8q2isgj6q98jb",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": []
+ },
+ "auto-package-update": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "rranelli",
+ "repo": "auto-package-update.el",
+ "sha256": "05llpa6g4nb4qswmcn7j3bs7hnmkrkax7hsk7wvklr0wrljyg9a2",
+ "rev": "cdef79f9fc6f8347fdd05664978fb9a948ea0410"
+ },
+ "recipe": {
+ "sha256": "0fdcniq5mrwbc7yvma4088r0frdfvc2ydfil0s003faz0nrjcp8k",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.6.1",
+ "deps": [
+ "dash",
+ "emacs"
+ ]
+ },
+ "map-progress": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "tarsius",
+ "repo": "map-progress",
+ "sha256": "1fkijm0gikbwmxa9hf7s1rcwb0ipzjygd1mlicsm78rxvdd8k877",
+ "rev": "6b8ef6b60626772082b2e80ec54d1f1275e1a1b8"
+ },
+ "recipe": {
+ "sha256": "0zc5vii72gbfwbb35w8m30c8r9zck971hwgcn1a4wjczgn4vkln7",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.5.0",
+ "deps": []
+ },
+ "omni-log": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "AdrieanKhisbe",
+ "repo": "omni-log.el",
+ "sha256": "030f983n19n64f8irif102nncvam04xpx020vfgja9886wlj40pk",
+ "rev": "7eb30e42cc89064abb7acbec63cb9644c2ad7c9b"
+ },
+ "recipe": {
+ "sha256": "0c29243zq8r89ax4rxlmb8imag12icnldcb0q0xsnhjccw8lyw1r",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.1.2",
+ "deps": [
+ "dash",
+ "emacs",
+ "ht",
+ "s"
+ ]
+ },
+ "zombie-trellys-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "david-christiansen",
+ "repo": "zombie-trellys-mode",
+ "sha256": "1ksjd3askc3k1l0b3nia5mzkxa74bidh2x0xlrj4qs4im5445vnz",
+ "rev": "9e99d444a387dd1634cab62ef802683f5bf5d907"
+ },
+ "recipe": {
+ "sha256": "19xzvppw7f35s82hm0y7sga8dyjjyy0dxy6vji4hxdpjziz7lggv",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.2.1",
+ "deps": [
+ "cl-lib",
+ "emacs",
+ "haskell-mode"
+ ]
+ },
+ "karma": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "tonini",
+ "repo": "karma.el",
+ "sha256": "0avcg307r4navvgj3hjkggk4gr7mzs4mljhxh223r8g69l9bm6m8",
+ "rev": "f4ee856e7f59649e9d9021c46f872f9b4f5b7e6e"
+ },
+ "recipe": {
+ "sha256": "19wl7js7wmw7jv2q3l4r5zl718lhy2a0jhl79k57ihwhxdc58fwc",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.1.0",
+ "deps": []
+ },
+ "imenu-anywhere": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "vitoshka",
+ "repo": "imenu-anywhere",
+ "sha256": "0qc96p5f7paxaxzv73w072cba8jb6ibdbhml7n7cm85b0rz1wf16",
+ "rev": "a090132492a3a98b6547240babe0bc0fa6154bb2"
+ },
+ "recipe": {
+ "sha256": "0p93g7ay9n4nhf1qk24mbax0w9sr06xd2kjmrz00gbg75sr9r2s8",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.9.0",
+ "deps": [
+ "cl-lib"
+ ]
+ },
+ "js3-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "thomblake",
+ "repo": "js3-mode",
+ "sha256": "17d0nf1kz7mgv5qz57q6khy4w5vrmsliqirggahk9s6nnsx1j56n",
+ "rev": "5ccda46ba39998a74bd724fdffb34634be5b6563"
+ },
+ "recipe": {
+ "sha256": "12s5qf6zfcv4m5kqxvh9b4zgwf433x39a210d957gjjp5mywbb1r",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.1.0",
+ "deps": []
+ },
+ "aproject": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "vietor",
+ "repo": "aproject",
+ "sha256": "1wyz8jvdy4m0cn75mm3zvxagm2gl10q51479f91gnqv14b4rndfc",
+ "rev": "3c7d23c341862dfd77fd0a64775df12ddb44ab54"
+ },
+ "recipe": {
+ "sha256": "0v3gx2mff2s7knm69y253pm1yr4svy8w00pqbn1chrvymb62jhp2",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.3",
+ "deps": []
+ },
+ "helm-projectile": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "bbatsov",
+ "repo": "projectile",
+ "sha256": "1rl6n6v9f4m7m969frx8b51a4lzfix2bxx6rfcfbh6kzhc00qnxf",
+ "rev": "1159110e83490f3b30d4d39e8c48022d3006900a"
+ },
+ "recipe": {
+ "sha256": "0s7la43q2v2h2s6lykxw5ag8if8d931jhw5k716b26ihzl1xxbv5",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.13.0",
+ "deps": [
+ "cl-lib",
+ "dash",
+ "helm",
+ "projectile"
+ ]
+ },
+ "ahk-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "ralesi",
+ "repo": "ahk-mode",
+ "sha256": "1qqrf9ncc3blkv4p2bhh9q6y41pp9p4wr667mm80vb5j8rkpsaa8",
+ "rev": "7b47b40952708ea4e9a0f1969f00caa92700513a"
+ },
+ "recipe": {
+ "sha256": "066l4hsb49wbyv381qgn9k4hn8gxlzi20h3qaim9grngjj5ljbni",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.5.5",
+ "deps": []
+ },
+ "requirejs": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "joeheyming",
+ "repo": "requirejs-emacs",
+ "sha256": "1b832r7779rmr6rhzj7klc0l5xzwc4rids87g2hczpb5dhqnchca",
+ "rev": "7d73453653b6b97cca59fcde8d529b5a228fbc01"
+ },
+ "recipe": {
+ "sha256": "09z6r9wcag3gj075wq215zcslyknl1izap595rn48xvizxi06c6k",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.1",
+ "deps": [
+ "cl-lib",
+ "js2-mode",
+ "popup",
+ "s"
+ ]
+ },
+ "pastehub": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "kiyoka",
+ "repo": "pastehub",
+ "sha256": "0m6qjsq6qfwwszm95lj8c58l75vbmx9r5hm9bfywyympfgy0fa1n",
+ "rev": "37b045c67659c078f1517d0fbd5282dab58dca23"
+ },
+ "recipe": {
+ "sha256": "1slvqn5ay6gkbi0ai1gy1wmc02h4g3n6srrh4fqn72y7b9nv5i0v",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.5.2",
+ "deps": []
+ },
+ "langtool": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "mhayashi1120",
+ "repo": "Emacs-langtool",
+ "sha256": "16wmc89jnn7qqcqw6702c9ccmwpb8pkxasa17ikmmmnggmg50lfh",
+ "rev": "443b3804f9e33e6d96ee8e15ddede7f152ece378"
+ },
+ "recipe": {
+ "sha256": "1xq70jyhzg0qmvialy015crbdk9rdibhwpl36khab9hi2999wxyw",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.5.0",
+ "deps": [
+ "cl-lib"
+ ]
+ },
+ "gnus-spotlight": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/gnus-spotlight.el",
+ "sha256": "1r6bck1hsvk39ccri1h128jj8zd0fh9bsrlp8ijb0v9f6x3cysw4"
+ },
+ "recipe": {
+ "sha256": "065jcix6a4mxwq8wc8gkr0x9lxmn6hlvf0rqmhi8hb840km1syjx",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": []
+ },
+ "uzumaki": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "geyslan",
+ "repo": "uzumaki",
+ "sha256": "0z53n9qsglp87f6q1pa3sixrjni9k46j31zg15gcwrmflmfrw8ds",
+ "rev": "a75956e1757f4b98aad3384a4616481aede70cb1"
+ },
+ "recipe": {
+ "sha256": "1fvhzz2qpyc819rjvzyf42jmb70hlg7a9ybqwi81w7rydpabg61q",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.1",
+ "deps": [
+ "cl-lib"
+ ]
+ },
+ "eredis": {
+ "fetch": {
+ "tag": "fetchsvn",
+ "url": "http://eredis.googlecode.com/svn/trunk/",
+ "sha256": "0cdyhklmsv0xfcq97c3wqh8scs6910jzvvp04w0jxlayd1dbzx49",
+ "rev": "28"
+ },
+ "recipe": {
+ "sha256": "1j0y4h97pqsw6k18w6r3rza3ql04ag3cixyndji7i1smbfsh4v95",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": []
+ },
+ "fvwm-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "theBlackDragon",
+ "repo": "fvwm-mode",
+ "sha256": "0c3g0yfclczdh6nxmg9lljjf288zibqy51bhh1b1cgdmxcbpg8bv",
+ "rev": "d48a309bb7db21f5404b6619c6ee861fe0457704"
+ },
+ "recipe": {
+ "sha256": "07y32cnp4qfhncp7s24gmlxljdrj5miicinfaf4gc7hihb4bkrkb",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.6.4",
+ "deps": []
+ },
+ "factlog": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "tkf",
+ "repo": "factlog",
+ "sha256": "01l8dlfpyy97b17djbza46rq11xlbkhd5kn2r26r2xac8klj4pka",
+ "rev": "c834fdab81ec5b1bdc0ee2721a12cecb48a319bf"
+ },
+ "recipe": {
+ "sha256": "163482vfpa52b5ya5xps4qnclbaql1x0q54gqdwwmm04as8qbfz7",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.0.1",
+ "deps": []
+ },
+ "kaesar-file": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "mhayashi1120",
+ "repo": "Emacs-kaesar",
+ "sha256": "03l9w238a5kyfin3v1fy1q2pl0gvmb87j0v89g6nk114s7m4y3r8",
+ "rev": "4fa74851cd928f30e9f2ee1aa27ee6074ad253ea"
+ },
+ "recipe": {
+ "sha256": "0dcizg82maad98mbqqw5lamwz7n2lpai09jsrc66x3wy8k784alc",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.9.0",
+ "deps": [
+ "kaesar"
+ ]
+ },
+ "boon": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "jyp",
+ "repo": "boon",
+ "sha256": "0alxz27pyf669mkw5wvkidrvwm11iwbkl9k7v8lzq05kgy59bwkq",
+ "rev": "2430cf5bb509961142f68bfa34c1723a22917ddf"
+ },
+ "recipe": {
+ "sha256": "0gryw7x97jd46jgrm93cjagj4p7w93cjc36i2ps9ajf0d8m4gajb",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.2",
+ "deps": [
+ "emacs",
+ "expand-region"
+ ]
+ },
+ "inflections": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "eschulte",
+ "repo": "jump.el",
+ "sha256": "1fm69g4mrmdchvxr062bk7n1jvs2rrscddb02cldb5bgdrcw8g6j",
+ "rev": "fb7355615276f00397b15182076bf472336448a9"
+ },
+ "recipe": {
+ "sha256": "0f02bhm2a5xiaxnf2c2hlpa4p121xfyyj3c59fy0yldipdxhvw70",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "2.3",
+ "deps": []
+ },
+ "todochiku": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/todochiku.el",
+ "sha256": "0fhlyjl0a3fd25as185j6dmch0wsrf1zc59q29lhjximg9lk3hr5"
+ },
+ "recipe": {
+ "sha256": "1iq08s5ji6hd8as80qxqkbavnjbx0kcmmjjvhjchmvv93vsn1f96",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": []
+ },
+ "color-theme-sanityinc-solarized": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "purcell",
+ "repo": "color-theme-sanityinc-solarized",
+ "sha256": "13jmg05skv409z8pg5m9rzkajj9knyln0ff8a3i1pbpyrnpngmmc",
+ "rev": "554e941131d009c0a5d7129ed96796182b4cc590"
+ },
+ "recipe": {
+ "sha256": "0xg79hgb893f1nqx6q4q6hp4w6rvgp1aah1v2r3scg2jk057qxkf",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "2.29",
+ "deps": []
+ },
+ "ido-yes-or-no": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "DarwinAwardWinner",
+ "repo": "ido-yes-or-no",
+ "sha256": "0i3s80ws3qbhb3vsvf09mbq661c5140v4phgbl4cz6z545ha2bj7",
+ "rev": "ff9d28ca86c8cbfe2fbeb3ee1a60e3983aa776e4"
+ },
+ "recipe": {
+ "sha256": "0glag4yb9xyf1lxxbdhph2nq6s1vg44i6f2z1ii8bkxpambz2ana",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.2",
+ "deps": []
+ },
+ "mode-line-debug": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "tarsius",
+ "repo": "mode-line-debug",
+ "sha256": "1lkw9nnlns6v7r6nx915f85whq1ri4w8lccwyxrvam40hfvq60s1",
+ "rev": "da44422eeb6a1f055b4ec2f822962c5162fce001"
+ },
+ "recipe": {
+ "sha256": "0ppj14bm3rx3xgg4mfxa5zcm2r129jgmsx817wq3h7akjngcbfkd",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.2.2",
+ "deps": []
+ },
+ "helm-mode-manager": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "istib",
+ "repo": "helm-mode-manager",
+ "sha256": "1srx5f0s9x7zan7ayqd6scxfhcvr3nkd4yzs96hphd87rb18apzk",
+ "rev": "1fc1d65a27bc57d3a5bbd359f3eb77a6353fa4a5"
+ },
+ "recipe": {
+ "sha256": "1w9svq1kyyj8mmljardhbdvykb334nq1y18s956g4rvqyas2ciyd",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.0.0",
+ "deps": [
+ "helm"
+ ]
+ },
+ "helm-aws": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "istib",
+ "repo": "helm-aws",
+ "sha256": "015p5sszd54x81qm96gx6xwjkvbi4f3j9i2nhcvlkk75s95w1ijv",
+ "rev": "172a4a3427d31c999e27e9ee06aa8e3822364a8c"
+ },
+ "recipe": {
+ "sha256": "0sjgdjpznjxsf6nlv2ah45fw17j8j5apdphd1fp43rjv1lskkgc5",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.0.0",
+ "deps": [
+ "helm"
+ ]
+ },
+ "pcache": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "sigma",
+ "repo": "pcache",
+ "sha256": "0xbbq8ddlirhvv921nrf7bwazh0i98bk0a9xzyx8iqpyg66vbfa8",
+ "rev": "4b090f46182fd2ed1f44905dc04acc3121bcf622"
+ },
+ "recipe": {
+ "sha256": "1q2wlbc58lyf3dxfs9ppdxvdsp81jmkq874zbd7f39wvc5ckbz0l",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.3.2",
+ "deps": [
+ "eieio"
+ ]
+ },
+ "fuzzy-match": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/fuzzy-match.el",
+ "sha256": "1q2qvw2inizw9r47nff7ikvjzfsx1f8n6yf0j31fxvaawcdf91nq"
+ },
+ "recipe": {
+ "sha256": "0mpy84f2zdyzmipzhs06b8rl2pxiypazf35ls1nc1yj8r16ijrds",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": []
+ },
+ "reverse-theme": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "syohex",
+ "repo": "emacs-reverse-theme",
+ "sha256": "15xnz4fi22wsximimwmirlz11v4ksfj8nilyjfw6acd92yrhzg6h",
+ "rev": "3105c950bcb51c662c79b59ca102ef662c2b0be0"
+ },
+ "recipe": {
+ "sha256": "1lq8nwhf8n5i280v0kqksndm4b3n6x34wnd5fa5i48ljwr5cinih",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.03",
+ "deps": []
+ },
+ "menu-bar+": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/menu-bar+.el",
+ "sha256": "1vdqhn9srd8ihp0yjjj6lr0zl4n858wri0h3jzxmk3axc688lks7"
+ },
+ "recipe": {
+ "sha256": "181jxjnzdckmvpsdknhm21xwimvsp0qxn8azfn58dz41gl4xcg90",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": []
+ },
+ "perspective": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "nex3",
+ "repo": "perspective-el",
+ "sha256": "12c2rrhysrcl2arc6hpzv6lxbb1r3bzlvdp23hnp9sci6yc10k3q",
+ "rev": "3a8d59045a6370fae1ec2011865190a7465d707f"
+ },
+ "recipe": {
+ "sha256": "150dxcsd0ylvfi9mmfpcki1wd3nl8q9mbszd3dgqfnm40yncklml",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.12",
+ "deps": [
+ "cl-lib"
+ ]
+ },
+ "offlineimap": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "jd",
+ "repo": "offlineimap.el",
+ "sha256": "0az4llfgva4wvpljyc5s2m7ggfnj06ssp32x8bncr5fzksha3r7b",
+ "rev": "646482203aacdf847d57d0a96263fddcfc33fb61"
+ },
+ "recipe": {
+ "sha256": "0nza7lrz7cn06njcblwh9hy3050j8ja4awbxx7jzv6nazjg7201b",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1",
+ "deps": []
+ },
+ "es-lib": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "sabof",
+ "repo": "es-lib",
+ "sha256": "0jq4yp80wiphlpsc0429rg8n50g8l4lf78q0l3nywz2p93smjy9b",
+ "rev": "753b27363e39c10edc9e4e452bdbbbe4d190df4a"
+ },
+ "recipe": {
+ "sha256": "0mwvgf5385qsp91zsdw75ipif1h90xy277xdmrpwixsxd7abbn0n",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.4",
+ "deps": [
+ "cl-lib"
+ ]
+ },
+ "sqlplus": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/sqlplus.el",
+ "sha256": "0xixdddcrzx6k0s8w9rp6q7b9qjpdb4l888gmcis42yvawb1i53d"
+ },
+ "recipe": {
+ "sha256": "1z9pf36b1581flykis9cjv7pynnp94fm4ijzjy6hvqyj81aikxpz",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": []
+ },
+ "pt": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "bling",
+ "repo": "pt.el",
+ "sha256": "1p0k770h96iw8bxm8ssi0a91m050s615q036870lrlsz35mzc5kw",
+ "rev": "a539dc11ecb2d69760ff50f76c96f49895ce1e1e"
+ },
+ "recipe": {
+ "sha256": "0zmz1hcr4ajc2ydvpdxhy1dlhp7hvlkv6y6w1b79ffvq6acdd5mj",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.0.3",
+ "deps": []
+ },
+ "gitignore-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "magit",
+ "repo": "git-modes",
+ "sha256": "1ipr51v7nhbbgxbbz0fp3i78ypp73kyxgc4ni8nnr7yirjhsksfd",
+ "rev": "9d8f6eda6ee97963e4085da8988cad2c0547b8df"
+ },
+ "recipe": {
+ "sha256": "1i98ribmnxr4hwphd95f9hcfm5wfwgdbcxw3g0w17ws7z0ir61mn",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.2.0",
+ "deps": []
+ },
+ "mb-depth+": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/mb-depth+.el",
+ "sha256": "02dszzkcqa2zwnafxyd6avsjgdrmb6c80j9qx0bgdkwm7yii090q"
+ },
+ "recipe": {
+ "sha256": "031hh227rh7l818p3di4h34i4698yynw5g9a5sl2hj47c0734q6w",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": []
+ },
+ "fold-dwim-org": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "mattfidler",
+ "repo": "fold-dwim-org",
+ "sha256": "14jvbkahwvv4wb0s9vp8gqmlpv1d4269j5rsjxn79q5pawjzslxw",
+ "rev": "c09bb2b46d65afbd1d0febc6fded7495be7a3037"
+ },
+ "recipe": {
+ "sha256": "0812p351rzvqcfn00k92nfhlg3y772y4z4b9f0xqnpa935y6harn",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.6",
+ "deps": [
+ "fold-dwim"
+ ]
+ },
+ "ac-mozc": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "igjit",
+ "repo": "ac-mozc",
+ "sha256": "19cb8kq8gmrplkxil22ahvbyq5cng1l2vh2lrfiyqpjsap7zfjz5",
+ "rev": "4c6c8be4701010d9362184437c0f783e0335c631"
+ },
+ "recipe": {
+ "sha256": "1v3iiid8cq50i076q98ycks9m827xzncgxqwqs2rqhab0ncy3h0f",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.0.4",
+ "deps": [
+ "auto-complete",
+ "cl-lib",
+ "mozc"
+ ]
+ },
+ "logalimacs": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "logaling",
+ "repo": "logalimacs",
+ "sha256": "0g5vq9xy9lwczs77lr91c1srhhfmasnnnmjvgc55hbl6iwmbizbm",
+ "rev": "cfd7aaa925934f876eee6e8c550cf6e7a239a2ac"
+ },
+ "recipe": {
+ "sha256": "0ai7a01bdi3a0amgi63pwgdp8wgcgx10an4nhc627wgb1cqxb7p6",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.0.0",
+ "deps": []
+ },
+ "company-nixos-options": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "travisbhartwell",
+ "repo": "nix-emacs",
+ "sha256": "1lm7rkgf7q5g4ji6v1masfbhxdpwni8d77dapsy5k9p73cr2aqld",
+ "rev": "5fc8fa29bea9dd8e9c822af92f9bc6ddc223635f"
+ },
+ "recipe": {
+ "sha256": "1yrqqdadmf7qfxpqp8wwb325zjnwwjmn2hhnl7i3j0ckg6hqyqf0",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.0.1",
+ "deps": [
+ "cl-lib",
+ "company",
+ "nixos-options"
+ ]
+ },
+ "face-remap+": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/face-remap+.el",
+ "sha256": "13a439ipxy28l91c9gy6skq54xy2m3hj2qgqdjjqbinnhngg7ffi"
+ },
+ "recipe": {
+ "sha256": "0vq6xjrv3qic89pxzi6mx1s08k4ba27g8wqm1ap4fxh3l14wkg0y",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": []
+ },
+ "flymake-json": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "purcell",
+ "repo": "flymake-json",
+ "sha256": "0rzlw80mi39147yqnpzcvw9wvr5svksd3kn6s3w8191f2kc6xzzv",
+ "rev": "ad8e482db1ad29e23bdd9d089b9bc3615649ce65"
+ },
+ "recipe": {
+ "sha256": "1p5kajiycpqy2id664bs0fb1mbf73a43qqfdi4c57n6j9x7fxp4d",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.1",
+ "deps": [
+ "flymake-easy"
+ ]
+ },
+ "sass-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "nex3",
+ "repo": "sass-mode",
+ "sha256": "0lxrq3mzabkwj5bv0mgd7fnx3dsx8vxd5kjgb79rjfra0m7pfgln",
+ "rev": "26a66e331b507fb420e3bb7d0a6a8fbb04294343"
+ },
+ "recipe": {
+ "sha256": "1byjk5zpzjlyiwkp780c4kh7s9l56y686sxji89wc59d19rp8800",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "3.0.18",
+ "deps": [
+ "haml-mode"
+ ]
+ },
+ "string-edit": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "magnars",
+ "repo": "string-edit.el",
+ "sha256": "15gdcpbba3h84s7xnpk69nav6bixdixnirdh5n1rly010q0m5s5x",
+ "rev": "9f9c9cd659156fd2217be814eb4e91da48d44647"
+ },
+ "recipe": {
+ "sha256": "1l1hqsfyi6pp4x4g1rk4s7x9zjc03wfmhy16izia8nkjhzz88fi8",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.1.0",
+ "deps": [
+ "dash"
+ ]
+ },
+ "showkey": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/showkey.el",
+ "sha256": "0fbpwqjgi15l1mk2p1m9apfj9a50566gi97wkin5hrc8zhm41k5r"
+ },
+ "recipe": {
+ "sha256": "1m280ll07i5c6s4w0s227jygdlpvd87dq45039v0sljyxm4bfrsv",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": []
+ },
+ "flymake-haskell-multi": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "purcell",
+ "repo": "flymake-haskell-multi",
+ "sha256": "0k1qc0r0gr7f9l5if2a67cv4k73z5yxd6vxd6l1bqw500y0aajxz",
+ "rev": "d2c9aeffd33440d360c1ea0c5aef6d1f171599f9"
+ },
+ "recipe": {
+ "sha256": "0cyzmmghwkkv6020s6n436lwymi6dr49i7gkci5n0hw5pdywcaij",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.3",
+ "deps": [
+ "flymake-easy"
+ ]
+ },
+ "git-timemachine": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "pidu",
+ "repo": "git-timemachine",
+ "sha256": "1wkjh7pwrkdnihyknr76anyj41i6sv3qhq61kmw83clyh64yp6as",
+ "rev": "bde589fbeb3b5326e89573cbb9a6fd08d832d073"
+ },
+ "recipe": {
+ "sha256": "0nhl3g31r4a8j7rp5kbh17ixi16w32h80bc92vvjj3dlmk996nzq",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "2.7",
+ "deps": []
+ },
+ "evil-search-highlight-persist": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "juanjux",
+ "repo": "evil-search-highlight-persist",
+ "sha256": "1jfi2k9dm0cc9bx8klppm965ydhdw17a2n664199vhxrap6g27yk",
+ "rev": "0e2b3d4e3dec5f38ae95f62519eb2736f73c0b85"
+ },
+ "recipe": {
+ "sha256": "0iia136js364iygi1mydyzwvizhic6w5z9pbwmhva4654pq8dzqy",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.8",
+ "deps": [
+ "highlight"
+ ]
+ },
+ "edn": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "expez",
+ "repo": "edn.el",
+ "sha256": "06v34l9dkykrrdfpnm3zi5wjm0fdvy76pbkfnk92wqkjp8fqimhd",
+ "rev": "bb035dcbeccccdb2c899d2cce8e81486764d0ad7"
+ },
+ "recipe": {
+ "sha256": "00cy8axhy2p3zalzl8k2083l5a7s3aswb9qfk9wsmf678m8pqwqg",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.1.2",
+ "deps": [
+ "cl-lib",
+ "dash",
+ "emacs",
+ "peg",
+ "s"
+ ]
+ },
+ "isearch-prop": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/isearch-prop.el",
+ "sha256": "190dlmrqk1g7ak5a3p6i97kwxk4lgz8y0kxf9ql75qis3hc4cl09"
+ },
+ "recipe": {
+ "sha256": "1z9y88b23m4ffil8p3wcq61q1fiyqjxphyd3wacs5fnc53mdzad9",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": []
+ },
+ "org-table-comment": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "mattfidler",
+ "repo": "org-table-comment.el",
+ "sha256": "1qx3kd02sxs9k7adlvdlbmyhkc5kr7ni5lw4gxjw3nphnc536bkb",
+ "rev": "33b9966c33ecbc3e27cca67c2f2cdea04364d74e"
+ },
+ "recipe": {
+ "sha256": "1d40vl8aa1x27z4gwnkzxgrqp7vd3ln2pc445ijjxp1wr8bjxvdz",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.2.0",
+ "deps": []
+ },
+ "hl-sexp": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "emacsmirror",
+ "repo": "hl-sexp",
+ "sha256": "1fsyj9cmqcz5nfxsfcyvpq2vqrhgl99xvq7ligviawl3x77376kw",
+ "rev": "0606100422321c18db51ceda80f25cd7717c2e01"
+ },
+ "recipe": {
+ "sha256": "0kg0m20i9ylphf4w0qcvii8yp65abdl2q5flyphilk0jahwbj9jy",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.0.0",
+ "deps": []
+ },
+ "avy-migemo": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "momomo5717",
+ "repo": "avy-migemo",
+ "sha256": "098bkqb2cndjx93jacj6p54xfy14m1iknvpv1y5rffy9p4l2cbd3",
+ "rev": "f2498ed4a476a554c84716f5a8131f9b78a45185"
+ },
+ "recipe": {
+ "sha256": "1zvgkhma445gj1zjl8j25prw95bdpjbvfy8yr0r5liay6g2hf296",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.2.11",
+ "deps": [
+ "avy",
+ "emacs",
+ "migemo"
+ ]
+ },
+ "crosshairs": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/crosshairs.el",
+ "sha256": "0m2qggd8q3r32c8ipnp14093p0hbdd7i66nrv3q739wid7j98s8b"
+ },
+ "recipe": {
+ "sha256": "1gf73li6q5rg1dimzihxq0rdxiqzbl2w78r1qzc9mxw3qj7azxqp",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": [
+ "col-highlight",
+ "hl-line+",
+ "vline"
+ ]
+ },
+ "osx-browse": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "rolandwalker",
+ "repo": "osx-browse",
+ "sha256": "0g1xhh88a65vcq6rlh7ii16pra4pv519ajcws0h93ldbbjiy7p0m",
+ "rev": "6186a6020e143e90d557c8d062c44fcdba0516c7"
+ },
+ "recipe": {
+ "sha256": "06rfzq2hxhzg6jh2zs28r7ffxwlq40nz954j13ly8403c7rmbrfm",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.8.8",
+ "deps": [
+ "browse-url-dwim",
+ "string-utils"
+ ]
+ },
+ "helm-orgcard": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "emacs-jp",
+ "repo": "helm-orgcard",
+ "sha256": "1zyjxrrda7nxxjqczv2p3sfimxy2pq734kf51j6v2y0biclc4bk3",
+ "rev": "9655ac340d1ccc5f3d1c0f7c49be8dd3556d4d0d"
+ },
+ "recipe": {
+ "sha256": "1a56y8fny7qxxidc357n7l3yi7h66hidhvwhkam8y5wk6k61460p",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.2",
+ "deps": [
+ "helm-core"
+ ]
+ },
+ "phpcbf": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "nishimaki10",
+ "repo": "emacs-phpcbf",
+ "sha256": "09rinyx0621d7613xmbyvrrlav6d4ia332wkgg0m9dn265g3h56z",
+ "rev": "b556b548ceb061b002389d6165d2cc63d8bddb5d"
+ },
+ "recipe": {
+ "sha256": "1hf88ys4grffpqgavrbc72dn3m7crafgid2ygzx9c5j55syh8mfv",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.9.2",
+ "deps": [
+ "s"
+ ]
+ },
+ "dispass": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "ryuslash",
+ "repo": "dispass.el",
+ "sha256": "1b1a1bwc6nv6wkd8jg1cqmjb9m9pxi5i2wbrz97fgii23dwfmlnl",
+ "rev": "38b880e72cfe5e65179b16791903b0900c73eff4"
+ },
+ "recipe": {
+ "sha256": "08c1s4zgl4rha10mva48cfkxzrqnpdhy03pxq51ihw94v6vxzg3z",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.1.2",
+ "deps": []
+ },
+ "ac-inf-ruby": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "purcell",
+ "repo": "ac-inf-ruby",
+ "sha256": "1acm13n59sdgvvzicscxzrr5j1x5sa5x4rc4cnkbwb28nw5a5ysm",
+ "rev": "3e22b66d3d3e2712a0fe783b5cdd0583a0d4c318"
+ },
+ "recipe": {
+ "sha256": "04jclf0yxz78x1fsaf5sh1p466947nqrcx337kyhqn0nkj3hplqr",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.4",
+ "deps": [
+ "auto-complete",
+ "inf-ruby"
+ ]
+ },
+ "cider-eval-sexp-fu": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "clojure-emacs",
+ "repo": "cider-eval-sexp-fu",
+ "sha256": "1rkd76561h93si4lpisz3qnaj48dx8x01nd59a3lgpqsbbibnccf",
+ "rev": "dbe6a19c835ea42b099dd17f040db0baf9774aaf"
+ },
+ "recipe": {
+ "sha256": "1n4sgv042qd9560pllabysx0c5snly6i22bk126y8f8rn0zj58iq",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.0",
+ "deps": [
+ "emacs",
+ "eval-sexp-fu",
+ "highlight"
+ ]
+ },
+ "wn-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "luismbo",
+ "repo": "wn-mode",
+ "sha256": "0nmzh6dynbm8vglp4pqz81s2z68jbnasvamvi1x1iawf8g9zfyix",
+ "rev": "6e7029b0d5773a79914a289937be068784931cad"
+ },
+ "recipe": {
+ "sha256": "1qy1pkfdnm4pska4cnff9cx2c812ilymajhpmsfc9jdbvhzwrwg3",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.4",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "goto-last-change": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "camdez",
+ "repo": "goto-last-change.el",
+ "sha256": "1f0zlvva7d7iza1v79yjp0bm7vd011q4cy14g1saryll32z115z5",
+ "rev": "58b0928bc255b47aad318cd183a5dce8f62199cc"
+ },
+ "recipe": {
+ "sha256": "1yl9p95ls04bkmf4d6az72pycp27bv7q7wxxzvj8sj97bgwvwajx",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.2.1",
+ "deps": []
+ },
+ "flymake-css": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "purcell",
+ "repo": "flymake-css",
+ "sha256": "054ws88fcfz3hf3cha7dvndm52v5n4jc4vzif1lif44xq0iggwqa",
+ "rev": "3e56d47d3c53e39741aa4f702bb9fb827cce22ed"
+ },
+ "recipe": {
+ "sha256": "0kqm3wn9symqc9ivnh11gqgq8ql2bhpqvxfm86d8vwm082hd92c5",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.3",
+ "deps": [
+ "flymake-easy"
+ ]
+ },
+ "auto-yasnippet": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "abo-abo",
+ "repo": "auto-yasnippet",
+ "sha256": "0n3r7j83csby2s7284hy5pycynazyrkljxkn6xqn08gvxbbbdpdq",
+ "rev": "5cc54edbe03c0061bf69883a3e39d3bb16019e0f"
+ },
+ "recipe": {
+ "sha256": "02281gyy07cy72a29fjsixg9byqq3izb9m1jxv98ni8pcy3bpsqa",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.3.0",
+ "deps": [
+ "yasnippet"
+ ]
+ },
+ "emacsql-sqlite": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "skeeto",
+ "repo": "emacsql",
+ "sha256": "0ph0462shk00rhrkpvwgsr4biykimky2d89pvkbg377951jdga7i",
+ "rev": "03d478870834a683f433e7f0e288476748eec624"
+ },
+ "recipe": {
+ "sha256": "1vywq3ypcs61s60y7x0ac8rdm9yj43iwzxh8gk9zdyrcn9qpis0i",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "2.0.0",
+ "deps": []
+ },
+ "haskell-snippets": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "haskell",
+ "repo": "haskell-snippets",
+ "sha256": "0b3d7rvqvvcsp51aqfhl0zg9zg8j0p6vlfvga6jp9xc7626vh6f6",
+ "rev": "bcf12cf33a67ddc2f023a55072859e637fe4fa25"
+ },
+ "recipe": {
+ "sha256": "10bvv7q694fahcpm83v8lpqihg1gvfzrp1hdzwiffxydfvdbalh2",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.1.0",
+ "deps": [
+ "yasnippet"
+ ]
+ },
+ "typed-clojure-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "typedclojure",
+ "repo": "typed-clojure-mode",
+ "sha256": "1risfbsaafh760vnl4ryys91g4k78g0fxj2zlcndpxxv34gwkhy7",
+ "rev": "00bc20db78901204a67722ab47482660e36d0463"
+ },
+ "recipe": {
+ "sha256": "1579zkhk2lwl5ij7dm9n2drggs5fmhpljrshc4ghhvig7nlyqjy3",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.0.0",
+ "deps": [
+ "cider",
+ "clojure-mode"
+ ]
+ },
+ "vim-region": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "ongaeshi",
+ "repo": "emacs-vim-region",
+ "sha256": "1750gx65ymibam8ahx5blfv5jc26f3mzbklk1jrmfwpsalyghdd9",
+ "rev": "e5359cc584a0cfa9270a76866a5eff7d3f44eb3d"
+ },
+ "recipe": {
+ "sha256": "1dcnx799lpjsdnnjxqzgskkfj2nx7f4kwf0xjhbg35ny4nyn81dx",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.3.0",
+ "deps": [
+ "expand-region"
+ ]
+ },
+ "hideshowvis": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/hideshowvis.el",
+ "sha256": "15ax1j3j7kylyc8a91ja825sp4mhbdgx0j4i5kqxwhvmwvpmyrv6"
+ },
+ "recipe": {
+ "sha256": "1ajr71fch3v5g8brb83kwmlakcam5w21i3yr8df00c5j2pnc6v1f",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": []
+ },
+ "tumble": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "febuiles",
+ "repo": "tumble",
+ "sha256": "0ihjjw5wxz5ybl3600k937pszw3442cijs4gbqqip9vhd5y9m8gy",
+ "rev": "a1db6dac5720b9f468a79e0efce04f77c0a458e3"
+ },
+ "recipe": {
+ "sha256": "1c9ybq0mb2a0pw15fmm13vfwcnr2h9fb1xsm5nrff1cg7913pgv9",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.5",
+ "deps": []
+ },
+ "aurel": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "alezost",
+ "repo": "aurel",
+ "sha256": "01ig5v5f2xya7hyq678nd8j8x972yfbni813c0imxkkba996a2k7",
+ "rev": "3458214e0d2942b03c2926de67ca06cbe42b37d0"
+ },
+ "recipe": {
+ "sha256": "13zyi55ksv426pcksbm3l9s6bmp102w7j1xbry46bc48al6i2nnl",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.7",
+ "deps": []
+ },
+ "anaconda-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "proofit404",
+ "repo": "anaconda-mode",
+ "sha256": "0sj6cr2bghy80dnwgl7rg61abdlvgfzi0jjc7jrxz7fdzwkcq714",
+ "rev": "2ad7c1ee5b786d900154982270e4c68a4fe5b404"
+ },
+ "recipe": {
+ "sha256": "0gz16aam4zrm3s9ms13h4qcdflf55506kgkpyncq3bi54cvv8n1r",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.1.1",
+ "deps": [
+ "dash",
+ "emacs",
+ "f",
+ "pythonic",
+ "s"
+ ]
+ },
+ "js2-closure": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "jart",
+ "repo": "js2-closure",
+ "sha256": "0d2hqlgm09rw0azha5dxmq63b56sa8b9qj7gd7invibl6nnyjh4a",
+ "rev": "e1b3e7db13285e63c3c428d87c018289352bd043"
+ },
+ "recipe": {
+ "sha256": "19732bf98lk2ah2ssgkr1ngxx7rz3nhsiw84lsfmydb0vvm4fpk7",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.4",
+ "deps": [
+ "js2-mode"
+ ]
+ },
+ "drag-stuff": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "rejeep",
+ "repo": "drag-stuff",
+ "sha256": "0wncdlc45flggn6sq5a95y7k6q11hy7zxp0ddhsjqccl30mdwax5",
+ "rev": "3265e4fe93323bc9089d12db3d466d49bc44a99d"
+ },
+ "recipe": {
+ "sha256": "0hzbh58ijv1akamav8r0zs76pwda2zd9mjaj31ffalzhhsm5jnyc",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.1.0",
+ "deps": []
+ },
+ "dsvn": {
+ "fetch": {
+ "tag": "fetchsvn",
+ "url": "http://svn.apache.org/repos/asf/subversion/trunk/contrib/client-side/emacs/",
+ "sha256": "016dxpzm1zba8rag7czynlk58hys4xab4mz1nkry5bfihknpzcrq",
+ "rev": "1720849"
+ },
+ "recipe": {
+ "sha256": "12cviq6v08anif762a5qav3l8ircp81kmnl9q4yl6bkh9zxv7vy6",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": []
+ },
+ "clocker": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "roman",
+ "repo": "clocker.el",
+ "sha256": "1s05644m048clz0lxizzgarh1bkyjxr96b0mbpxi2p003322aw09",
+ "rev": "6faf5a23dc9cbe506f21a11fae4f6c4bbb1d4b01"
+ },
+ "recipe": {
+ "sha256": "0cckrk40k1labiqjh7ghzpx5zi136xz70j3ipp117x52qf24k10k",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.0.10",
+ "deps": [
+ "dash",
+ "projectile"
+ ]
+ },
+ "hl-spotlight": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/hl-spotlight.el",
+ "sha256": "1mvcvd8401w0xw8kjq6rwmmqa41npgdxgpghf4nxl6rghza77nwh"
+ },
+ "recipe": {
+ "sha256": "1166g27fp2pj4j3a8904pzvp5idlq4l22i0w6lbk5c9zh5pqyyf3",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": []
+ },
+ "instapaper": {
+ "fetch": {
+ "tag": "fetchhg",
+ "url": "https://bitbucket.com/jfm/emacs-instapaper",
+ "sha256": "0krscid3yz2b7kv75gd9fs92zgfl7pnl77dbp5gycv5rmw5mivp8",
+ "rev": "8daa0058ede7"
+ },
+ "recipe": {
+ "sha256": "1yibdpj3lx6vr33s75s1y415lxqljrk7pqc901f8nfa01kca7axn",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.9.5",
+ "deps": []
+ },
+ "tracking": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "jorgenschaefer",
+ "repo": "circe",
+ "sha256": "0q3rv6lk37yybkbswmn4pgzca0nfhvf4h3ac395fr16k5ixybc5q",
+ "rev": "ac1cddf946e0af90ab453dd816f7173e0d4000e5"
+ },
+ "recipe": {
+ "sha256": "096h5bl7jcwz5hpbm2139bf8a784hijfy40vzf42y1c9794al46z",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "2.1",
+ "deps": []
+ },
+ "findr": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/findr.el",
+ "sha256": "0a04mgya59w468jv2bmkqlayzgh0r8sdz0qg3n70wn9rhdcwnl9q"
+ },
+ "recipe": {
+ "sha256": "0pxyfnn3f70gknxv09mfkjixqkzn77rdbql703wsslrj2v1l7bfq",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": []
+ },
+ "whitaker": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "Fuco1",
+ "repo": "whitaker",
+ "sha256": "01fwhrfi92pcrwc4yn03pflc9wj07mhzj0a0i5amar4f9bj6m5b4",
+ "rev": "28172edce0f727f0f7f17d8ba71d5510d877bb45"
+ },
+ "recipe": {
+ "sha256": "17fnvb3jh6fi4wddn5qnp6i6ndidg8jf9ac69q9j032c2msr07nj",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.3",
+ "deps": [
+ "dash"
+ ]
+ },
+ "company": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "company-mode",
+ "repo": "company-mode",
+ "sha256": "08rrjfp2amgya1hswjz3vd5ja6lg2nfmm7454p0h1naz00hlmmw0",
+ "rev": "e085a333867959a1b36015a3ad8e12e5bd6550d9"
+ },
+ "recipe": {
+ "sha256": "0v4x038ly970lkzb0n8fbqssfqwx1p46xldr7nss32jiqvavr4m4",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.8.12",
+ "deps": [
+ "cl-lib",
+ "emacs"
+ ]
+ },
+ "macro-math": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "nschum",
+ "repo": "macro-math.el",
+ "sha256": "0dgsl1x6r8m9vvff1ia0kmz21h0dji2jl5cqlpx1m947zh45dahj",
+ "rev": "105e03c80290d1b88984b2d265a149a13d722920"
+ },
+ "recipe": {
+ "sha256": "1r7splwq5kdrdhbmw5zn81vxymsrllgil48g8dl0r60293384h00",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.0",
+ "deps": []
+ },
+ "elscreen-mew": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "masutaka",
+ "repo": "elscreen-mew",
+ "sha256": "091dxsb73bhqmrddwnmvblmfpwa7v7fa0ha18daxc8j0lrhzdhlh",
+ "rev": "f66a2a5a8dd904791ede5133fdd183522b061bba"
+ },
+ "recipe": {
+ "sha256": "06g4wcfjs036nn64ac0zsvr08cfmak2hyj83y7a0r35yxr1853w4",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.0.1",
+ "deps": [
+ "elscreen"
+ ]
+ },
+ "helm-backup": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "antham",
+ "repo": "helm-backup",
+ "sha256": "0d6h4gbb69abxxgm85pdi5rsaf9h72yryg72ykd5633i1g4s8a76",
+ "rev": "184026b9fe454aab8e7730106b4ca494fe307769"
+ },
+ "recipe": {
+ "sha256": "182jbm36yzayxi9y3vhpyn25ivrgay37sncqvah35vbw52lnjcn3",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.2.1",
+ "deps": [
+ "cl-lib",
+ "helm",
+ "s"
+ ]
+ },
+ "dired-sort-menu": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/dired-sort-menu.el",
+ "sha256": "1i42r7j1c8677qf79ig33bia24d2yvcj26y92migfvrlbi03w4qi"
+ },
+ "recipe": {
+ "sha256": "0n7zh8s3vdw3pcax8wkas9rykf917wn2dzikdlyrl5bbil9ijblb",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": []
+ },
+ "rinari": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "eschulte",
+ "repo": "rinari",
+ "sha256": "1wqhqv2fc5h10igv1php51bayx0s7qw4m9gzx9by80dab8lwa0vk",
+ "rev": "e2ed2fa55ac3435a86b1cf6a4f2d29aebc309135"
+ },
+ "recipe": {
+ "sha256": "0qknicg3vzl7zbkwsdvp10hrvlng6mbi8hgslx4ir522dflrf9p0",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "2.11",
+ "deps": [
+ "inf-ruby",
+ "jump",
+ "ruby-compilation",
+ "ruby-mode"
+ ]
+ },
+ "ucs-utils": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "rolandwalker",
+ "repo": "ucs-utils",
+ "sha256": "0qw9vwl1p0pjw1xmshxar1a8kn6gmin5rdvvnnly8b5z9hpkjf3m",
+ "rev": "cbfd42f822bf5717934fa2d92060e6e24a813433"
+ },
+ "recipe": {
+ "sha256": "111fwg2cqqzpa79rcqxidppb12c8g12zszppph2ydfvkgkryb6z2",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.8.4",
+ "deps": [
+ "list-utils",
+ "pcache",
+ "persistent-soft"
+ ]
+ },
+ "string-utils": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "rolandwalker",
+ "repo": "string-utils",
+ "sha256": "03azfs6z0jg66ppalijcxl973vdbhj4c3g84sm5dm8xv6rnxrv2s",
+ "rev": "3ae530143899f533a9ef5e1f26f28b577ebe72ee"
+ },
+ "recipe": {
+ "sha256": "1vsvxc06fd3wardldb83i5hjfibvmiqnxvcgdns7i5i8qlsrsx4v",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.3.2",
+ "deps": [
+ "list-utils"
+ ]
+ },
+ "nose": {
+ "fetch": {
+ "tag": "fetchhg",
+ "url": "https://bitbucket.com/durin42/nosemacs",
+ "sha256": "07bhzddaxdjd591xmg59yd657a1is0q515291jd83mjsmgq258bm",
+ "rev": "194d7789bf79"
+ },
+ "recipe": {
+ "sha256": "0l77hsmn3qk934ppdav1gy9sq48g0v1dzc5qy0rp9vv4yz2jx2jk",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.1.1",
+ "deps": []
+ },
+ "egison-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "egisatoshi",
+ "repo": "egison3",
+ "sha256": "16m7h477z10bmaymmgpj2id6l98iyrsp5wf69wd56534kh6qcajg",
+ "rev": "6debb5f36074811a1b2f9c9741dc8c1f3bd869de"
+ },
+ "recipe": {
+ "sha256": "0x11fhv8kkx34h831k2q70y5qfz7wnfia4ka5mbmps7mpr68zcwi",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "3.5.10",
+ "deps": []
+ },
+ "ido-occur": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "danil",
+ "repo": "ido-occur",
+ "sha256": "1xv8bryinn9qhjjxaxci4jnmz87jdm4nnhghl5lbpy7vzbhij490",
+ "rev": "13dc79ac2bb148b9fcbb470509a06ad1cb7008bb"
+ },
+ "recipe": {
+ "sha256": "058l2pklg12wkvyyshk8va6shphpbc508fv9a8x25pw857a28pji",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.1.0",
+ "deps": [
+ "dash",
+ "ido-vertical-mode"
+ ]
+ },
+ "cus-edit+": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/cus-edit+.el",
+ "sha256": "0qqfxnsy124nk61iqgb8rjwziyj6h4nvx0gdpsj03z1zh7gqms9s"
+ },
+ "recipe": {
+ "sha256": "1kazcdfajcnrzvhsgsmwwx96rkry0dglprrc02hbd7ky1fppp4sz",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": []
+ },
+ "outshine": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "tj64",
+ "repo": "outshine",
+ "sha256": "1v04iyx57w8scw3iqrivii7q0sh8sa7xacswdhd18mw9kvjrbj98",
+ "rev": "cf1097692b3ea0367d3c821769399fec5831e200"
+ },
+ "recipe": {
+ "sha256": "1i8c3q6n9hpfbpg2f8n8brwgaq36af1jn3g5js88yiyyb5dknxq4",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "2.0",
+ "deps": []
+ },
+ "ack-menu": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "chumpage",
+ "repo": "ack-menu",
+ "sha256": "0hib4a8385q2czi1yqs0hwnva2xi7kw0bdfnrgha1hrl30rilp2f",
+ "rev": "37e9979eb65e3803fc00829377397b4e6f2bd059"
+ },
+ "recipe": {
+ "sha256": "1d2kw04ndxji2qjcm1b65qnxpp08zx8gbia8bl6x6mnjb2isc2d9",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.2.3",
+ "deps": []
+ },
+ "golden-ratio": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "roman",
+ "repo": "golden-ratio.el",
+ "sha256": "00igv83hiyx7x3pf2grmjpd379brn33fm85f05k104mkkrhg99nm",
+ "rev": "79b1743fc1a2f3462445e9ddd0a869f30065bb6d"
+ },
+ "recipe": {
+ "sha256": "15fkrv0sgpzmnw2h4fp2gb83d8s42khkfq1h76l241njjayk1f81",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.0",
+ "deps": []
+ },
+ "evil-mark-replace": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "redguardtoo",
+ "repo": "evil-mark-replace",
+ "sha256": "01hccc49xxb6lnzr0lwkkwndbk4sv0jyyz3khbcxsgkpzjiydihv",
+ "rev": "56cf191724a3e82239ca47a17b071c20aedb0617"
+ },
+ "recipe": {
+ "sha256": "03cq43vlv1b53w4kw7mjvk026i8rzhhryfb27ddn6ipgc6xh68a0",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.0.4",
+ "deps": [
+ "evil"
+ ]
+ },
+ "helm-ag": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "syohex",
+ "repo": "emacs-helm-ag",
+ "sha256": "11m1r4bcwk3w2g8wsgc1fbmkj5c30qfljwxhg1zw3hakvmycnpg6",
+ "rev": "47aca7f291eccd81f1b1a4a8f96b8d8caec5242e"
+ },
+ "recipe": {
+ "sha256": "023zvgmi5b5b2qga3jqd7jrq9ap8n3rhvl6jrv9fsi565sg1fv43",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.48",
+ "deps": [
+ "cl-lib",
+ "helm"
+ ]
+ },
+ "direx-grep": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "aki2o",
+ "repo": "direx-grep",
+ "sha256": "0swdh0qynpijsv6a2d308i42hfa0jwqsnmf4sm8vrhaf3vv25f5h",
+ "rev": "1109a512a80b2673a70b18b8568514049017faad"
+ },
+ "recipe": {
+ "sha256": "0y2wrzq06prm55akwgaqjg56znknyvbayav13asirqzg258skvm2",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.1.0",
+ "deps": [
+ "direx"
+ ]
+ },
+ "muttrc-mode": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/muttrc-mode.el",
+ "sha256": "1xihp3zdqs9054j3bfrd9wnahsvvxjk1ags1iy50ncv5850ppjis"
+ },
+ "recipe": {
+ "sha256": "0ym6rfrhrmpnlqhkxv9ck5893qm0yhswslvgc9vb4nl9hyc1b5jn",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": []
+ },
+ "cmds-menu": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/cmds-menu.el",
+ "sha256": "1dfnvvdlyb8jlrj6zkmry075vmax77kyjnk5mjsfz2wwyk5lsfb5"
+ },
+ "recipe": {
+ "sha256": "12s75y9d75cxqgg3hj0s4w0d10zy8y230b5gy09685ab5lcajfks",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": []
+ },
+ "cmake-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "Kitware",
+ "repo": "CMake",
+ "sha256": "054i416l7kwdnwlb55ya89zpnsyxg9h4b2ll3d4dhx2qpph7w9s2",
+ "rev": "fd7180f0c0c2554c31afda235469df986a109fe4"
+ },
+ "recipe": {
+ "sha256": "0zbn8syb5lw5xp1qcy3qcl75zfiyik30xvqyl38gdqddm9h7qmz7",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "3.4.1",
+ "deps": []
+ },
+ "eyedropper": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/eyedropper.el",
+ "sha256": "1bs8239sv3mjyj2dw72wrl7yp1ds7gs3cs4a9ds7hlzzz7qw9s6s"
+ },
+ "recipe": {
+ "sha256": "07kdn90vm2nbdprw9hwdgi4py6gqzmrad09y1fwqdy49hrvbwdzk",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": [
+ "hexrgb"
+ ]
+ },
+ "interleave": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "rudolfochrist",
+ "repo": "interleave",
+ "sha256": "1bidhc4pgszx2gqsm125nw7i5ysy0mzc1ifcfkfgns1cpjr74rpn",
+ "rev": "d7bfe03dfdfbdd2abd0a96174cacd2ef1ecd2041"
+ },
+ "recipe": {
+ "sha256": "18b3fpxn07y5abkcnaw9is9ihdhik7xjdj6kzl1pz958lk9f4hfy",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.0.0",
+ "deps": []
+ },
+ "eyebrowse": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "wasamasa",
+ "repo": "eyebrowse",
+ "sha256": "0jc5wv2hkc89yh5ypa324xlfqdna20msr63g30njxq4g2vd0iqa7",
+ "rev": "6d75409a81a6447765ad2171e3d0b5a272e1f207"
+ },
+ "recipe": {
+ "sha256": "09fkzm8z8nkr4s9fbmfcjc80h50051f48v6n14l76xicglr5p861",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.6.9",
+ "deps": [
+ "dash",
+ "emacs"
+ ]
+ },
+ "delight": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/delight.el",
+ "sha256": "1gap2icsqi7cryfvcffh41zqg2ghl4y7kg9pngzdfjrc3m7sf635"
+ },
+ "recipe": {
+ "sha256": "1d9m5k18k73vhidwd50mcbq7mlvwdn4sb9ih8r5gri9a9whi2nkj",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": []
+ },
+ "speech-tagger": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "cosmicexplorer",
+ "repo": "speech-tagger",
+ "sha256": "1k6c7450v0ln6l9b8z1hib2s2b4rmjbskynvwwyilgdnvginfhi3",
+ "rev": "e6595bd0eea93ede1534c536c1746c9cf763b73c"
+ },
+ "recipe": {
+ "sha256": "0sqil949ny9qjxq7kpb4zmjd7770r0qvq4sz80agw6a27mqnaajc",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.0.0",
+ "deps": []
+ },
+ "whole-line-or-region": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "purcell",
+ "repo": "whole-line-or-region",
+ "sha256": "0ip0vkqb4dm88xqzgwc9yaxzf4sc4x006m6z73a3lbfmrncy2c1d",
+ "rev": "a60e022b30c2f4d3118bcaef1adb77b90e0ca941"
+ },
+ "recipe": {
+ "sha256": "1vs2i4cy1zc6nj660i9h36jbfgc3kvqivjnzlq5zwlxk5hcibqa1",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.3.1",
+ "deps": []
+ },
+ "git-link": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "sshaw",
+ "repo": "git-link",
+ "sha256": "171w8vx1r2v9yclnlk3mwbfaxhg0kbvk575jvi6vr9shpjqnrb0z",
+ "rev": "8ed8f209fe40b3852613691bd968484d6da79e5b"
+ },
+ "recipe": {
+ "sha256": "1vqabnmdw8pxd84c15ghh1rnglwb5i4zxicvpkg1ci8xalayn1c7",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.3.0",
+ "deps": []
+ },
+ "evil-nerd-commenter": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "redguardtoo",
+ "repo": "evil-nerd-commenter",
+ "sha256": "1c8zh5vykl4v57jrxcpyrbd1ih6nv306sfmb6ihiak6ncvllp8cx",
+ "rev": "770981cffd7e8d967e6291c738534a04bcd7f753"
+ },
+ "recipe": {
+ "sha256": "1pa5gh065hqn5mhs47qvjllwdwwafl0clk555mb6w7svq58r6i8d",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "2.2",
+ "deps": []
+ },
+ "aes": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "Sauermann",
+ "repo": "emacs-aes",
+ "sha256": "1y9bw2vkl952pha2dsi18swyr94mihgwlcg5m8hg4d5bfg2fzcb2",
+ "rev": "d78796facc034b09f379cda5f27090f3139305ec"
+ },
+ "recipe": {
+ "sha256": "11vl9x3ldrv7q7rd29xk4xmlvfxs0m6iys84f6mlgf00190l5r5v",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.8",
+ "deps": []
+ },
+ "orgit": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "magit",
+ "repo": "orgit",
+ "sha256": "0d7rh5bi5v04njj1nh8q8kdr6aw68lcw4ghx6kwq97aff4qmcrp1",
+ "rev": "731c5cb4f1c7e2ee5b819ca159c0c01e2b306c73"
+ },
+ "recipe": {
+ "sha256": "0askccb3h98v8gmylwxaph3gbyv5b1sp4slws76aqz1kq9x0jy7w",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.0.0",
+ "deps": [
+ "dash",
+ "emacs",
+ "magit",
+ "org"
+ ]
+ },
+ "jump-to-line": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "ongaeshi",
+ "repo": "jump-to-line",
+ "sha256": "1s9plmg323m1p625xqnks0yqz0zlsjacdj7pv8f783r0d9jmfq3s",
+ "rev": "01ef8c3529d85e6c59cc20840acbc4a8e8325bc8"
+ },
+ "recipe": {
+ "sha256": "09ifhsggl5mrb6l8nqnl38yph0v26v30y98ic8hl23i455hqkkdr",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.2.0",
+ "deps": []
+ },
+ "pkg-info": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "lunaryorn",
+ "repo": "pkg-info.el",
+ "sha256": "0nk12dcppdyhav6m6yf7abpywyd7amxd4237zsfd32w4zxsx39k1",
+ "rev": "f9bb471ee95d1c5fe9adc6b0e98db2ddff3ddc0e"
+ },
+ "recipe": {
+ "sha256": "0whcvralk76mfmvbvwn57va5dkb1irj7iwffgddi7r0ima49iszx",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.6",
+ "deps": [
+ "epl"
+ ]
+ },
+ "evil-space": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "linktohack",
+ "repo": "evil-space",
+ "sha256": "1rchanv0vq9rx6x69608dlpdybvkn8a9ymx8wzm7gqpz9qh6xqrk",
+ "rev": "f77860fa00662e2def3e1885adac777f051e1e61"
+ },
+ "recipe": {
+ "sha256": "1asvh873r1xgffvz3nr653yn8h5ifaphnafp6wf1b1mja6as7f23",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.0.6",
+ "deps": [
+ "evil"
+ ]
+ },
+ "wcheck-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "tlikonen",
+ "repo": "wcheck-mode",
+ "sha256": "1l92k59yvdfhmj4yghcl5bqprynavr3s28v7h8y98v82laxp2q9m",
+ "rev": "866954f040217059607633cf4c0f5e8a1ff5fd9a"
+ },
+ "recipe": {
+ "sha256": "0cmdvhgax6r5svn3wkwll4j271qj70g8182c58riwnkhiajxmn3k",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "2015.11.29",
+ "deps": []
+ },
+ "overseer": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "tonini",
+ "repo": "overseer.el",
+ "sha256": "0jz8p6bwpfncxwi6ssmi6ngx8sjjica565i6ln0gsr5i11zfb7nx",
+ "rev": "cf532a4e373e3da2077ccbaa48d4bfacd14661ba"
+ },
+ "recipe": {
+ "sha256": "04wfwcal051jrnmm5dga6vl4c9j10pm416586yxb8smi6fxws2jg",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.3.0",
+ "deps": [
+ "dash",
+ "emacs",
+ "pkg-info"
+ ]
+ },
+ "pp-c-l": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/pp-c-l.el",
+ "sha256": "0czz6qakz55776ji5472clvw13y32k3jvq8w5k9rdlmyxnc2vafd"
+ },
+ "recipe": {
+ "sha256": "0gbqxlrsh9lcdkrj8bqh1mpxyhdlwbaxz4ndp5s90inmisaqb83v",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": []
+ },
+ "win-switch": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "genovese",
+ "repo": "win-switch",
+ "sha256": "0ib20zl8l1fs69ca9rry27qz69sgf6ws1ca5nhm5llvpkjcgv53i",
+ "rev": "a0da96c23e8775a2dfdbe55ed3ec5b57f1ebb26a"
+ },
+ "recipe": {
+ "sha256": "1s6inp5kf763rngn58r02fd7n7z3dd55j6hb7s9dgvc856d5z3my",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.1",
+ "deps": []
+ },
+ "nrepl-sync": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "phillord",
+ "repo": "lein-sync",
+ "sha256": "1l07nrlfd5qj8jnqacjba7mb6prapg8d8h3881l3kb66sn02ahgy",
+ "rev": "471a08df87687a3eab61b3b8bf25a2e0962b5d5b"
+ },
+ "recipe": {
+ "sha256": "01b504b4d8rrhlf3sfq3kk9i222fch6jd5jbm02kqw20fgv6q3jd",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.3.1",
+ "deps": [
+ "cider"
+ ]
+ },
+ "erefactor": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "mhayashi1120",
+ "repo": "Emacs-erefactor",
+ "sha256": "17i567nfm0rykimh6bpcc5f2l7wsf8zcdy2jzd7sgrl54dvb0g9i",
+ "rev": "fde3fd42c815c76e8015f69518a92f6bfcfde990"
+ },
+ "recipe": {
+ "sha256": "0ma9sbrq4n8y5w7vvbhhgmw25aiykbq5yhxzm0knj32bgpviprw7",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.7.0",
+ "deps": [
+ "cl-lib"
+ ]
+ },
+ "identica-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "gabrielsaldana",
+ "repo": "Emacs-Identica-mode",
+ "sha256": "047gzycr49cs8wlmm9j4ry7b7jxmfhmbayx6rbbxs49lba8dgwlk",
+ "rev": "cf9183ee11ac922e85c7c908f04e2d00b03111b3"
+ },
+ "recipe": {
+ "sha256": "1r69ylykjap305g23cry4wajiqhpgw08nw3b5d9i1y3mwx0j253q",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.3.1",
+ "deps": []
+ },
+ "mentor": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "skangas",
+ "repo": "mentor",
+ "sha256": "1y4ra5z3ayw3w7dszzlkk3qz3nv2jg1vvx8cf0y5j1pqpx8vy3jf",
+ "rev": "bd8e4b89341686bbaf4c44680bbae778b96fb8f0"
+ },
+ "recipe": {
+ "sha256": "0nkf7f90m2qf11l97zwvb114yrpbqk1xxr2bh2nvbx8m1c8nad9s",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.1",
+ "deps": []
+ },
+ "etags-table": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/etags-table.el",
+ "sha256": "0apm8as606bbkpa7i1hkwcbajzsmsyxn6cwfk9dkkll5bh4vglqf"
+ },
+ "recipe": {
+ "sha256": "1jzij9jknab42jmx358g7f1c0d8lsp9baxbk3xsy7w4nl0l53d84",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": []
+ },
+ "ac-alchemist": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "syohex",
+ "repo": "emacs-ac-alchemist",
+ "sha256": "0a8widshsm39cbala17pmnk1sazazhhyqppwalysli170whk49c5",
+ "rev": "31114f3e1e7cc1e101d0b81819d7876d8861df92"
+ },
+ "recipe": {
+ "sha256": "02ll3hcixgdb8zyszn78714gy1h2q0vkhpbnwap9302mr2racwl0",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.01",
+ "deps": [
+ "alchemist",
+ "auto-complete",
+ "cl-lib"
+ ]
+ },
+ "jvm-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "martintrojer",
+ "repo": "jvm-mode.el",
+ "sha256": "1785nsv61m51lpykai2wxrv6zmwbm5654v937fgw177p37054s83",
+ "rev": "16d84c8c80bb214367bae6ed30b08756521c27d6"
+ },
+ "recipe": {
+ "sha256": "1r283b4s0pzq4hgwcz5cnhlvdvq4gy0x51g3vp0762s8qx969a5w",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.2.0",
+ "deps": [
+ "dash",
+ "emacs"
+ ]
+ },
+ "replace-symbol": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "bmastenbrook",
+ "repo": "replace-symbol-el",
+ "sha256": "1pxvwiqhv2nmsxkdwn9jx7na1vgk9dg9yxidglxpmvpid6fy4qdk",
+ "rev": "153197a4631a1ed0c3485d210efb41b4b727326c"
+ },
+ "recipe": {
+ "sha256": "07ljmw6aw9hsqffhwmiq2pvhry27acg6f4vgxgi91vjr8jj3r4ng",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.0",
+ "deps": []
+ },
+ "which-key": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "justbur",
+ "repo": "emacs-which-key",
+ "sha256": "11mi23djk690n4984hk3pv61rrkdnxpkmywsqibi3xki27v2al36",
+ "rev": "ad60a6c7206752d9b9cf4ba17c2293dba365e9fb"
+ },
+ "recipe": {
+ "sha256": "0vqbhfzcv9m58w41zdhpiymhgl38n15c6d7ffd99narxlkckcj59",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.8",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "esxml": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "tali713",
+ "repo": "esxml",
+ "sha256": "0k4vqlbk3h2snfiriraxhnjpdxgs49vcaazl191p9s2f799msd8p",
+ "rev": "cd096242fadbf878d9428786306e54ed60522b43"
+ },
+ "recipe": {
+ "sha256": "0nn074abkxz7p4w59l1za586p5ya392xhl3sx92yys8a3194n6hz",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.3.1",
+ "deps": [
+ "kv"
+ ]
+ },
+ "fwb-cmds": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "tarsius",
+ "repo": "fwb-cmds",
+ "sha256": "08qnyr945938hwjg1ypkf2x4mfxbh3bbf1xrgz1rk2ddrfv7hmkm",
+ "rev": "93504c2022799a84cc14d598e1413f8d9df4ee0e"
+ },
+ "recipe": {
+ "sha256": "0wnjvi0v0l2h1mhwlsk2d8ggwh3nk7pks48l55gp18nmj00jxycx",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.4.0",
+ "deps": []
+ },
+ "notmuch-labeler": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "DamienCassou",
+ "repo": "notmuch-labeler",
+ "sha256": "1ss87vlp7625lnn2iah3rc1xfxcbpx4kmiww9n16jx073fs2rj18",
+ "rev": "d65d1129555d368243df4770ecc1e7ccb88efc58"
+ },
+ "recipe": {
+ "sha256": "1c0cbkk5k8ps01xl63a0xa2adkqaj0znw8qs8ca4ai8v1420bpl0",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.1",
+ "deps": [
+ "notmuch"
+ ]
+ },
+ "helm-c-yasnippet": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "emacs-jp",
+ "repo": "helm-c-yasnippet",
+ "sha256": "108584bmadgidqkdfvf333zkyb5v9f84pasz5h01fkh57ks8by9f",
+ "rev": "1fa400233ba8e990066c47cca1e2af64bd192d4d"
+ },
+ "recipe": {
+ "sha256": "0jwj4giv6lxb3h7vqqb2alkwq5kp0shy2nraik33956p4l8dfs90",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.6.7",
+ "deps": [
+ "cl-lib",
+ "helm-core",
+ "yasnippet"
+ ]
+ },
+ "codic": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "syohex",
+ "repo": "emacs-codic",
+ "sha256": "14jcxrs3b02pbppvdsabr7c74i3c6d1lmd6l1p9dj8gv413pghsz",
+ "rev": "52bbb6997ef4ab9fb7fea43bbfff7f04671aa557"
+ },
+ "recipe": {
+ "sha256": "0fq2qfqhkd6injgl66vcpd61j67shl9xj260aj6cgb2nriq0jxgn",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.03",
+ "deps": [
+ "cl-lib",
+ "emacs"
+ ]
+ },
+ "spaceline": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "TheBB",
+ "repo": "spaceline",
+ "sha256": "1xyhayzr2mbsq9w448bxy7ja9cgy3vrgh70w36nqrrkl1pi7lm3b",
+ "rev": "2cc31a94b8b8c3eefc81ab409071365d120d2535"
+ },
+ "recipe": {
+ "sha256": "0jpcj0i8ckdylrisx9b4l9kam6kkjzhhv1s7mwwi4b744rx942iw",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.0.2",
+ "deps": [
+ "cl-lib",
+ "dash",
+ "emacs",
+ "powerline",
+ "s"
+ ]
+ },
+ "auto-complete-clang-async": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "Golevka",
+ "repo": "emacs-clang-complete-async",
+ "sha256": "1kp2l1cgzlg2g3wllz4gl1ssn4lnx2sn26xqigfrpr8y5rj2bsfj",
+ "rev": "a5114e3477793ccb9420acc5cd6a1cb26be65964"
+ },
+ "recipe": {
+ "sha256": "1jj0jn1v3070g7g0j5gvpybv145kki8nsjxqb8fjf9qag8ilfkjh",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.5",
+ "deps": []
+ },
+ "gscholar-bibtex": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "cute-jumper",
+ "repo": "gscholar-bibtex",
+ "sha256": "1dfd22629gz0c8r4wplvbn0n7bm20549mg5chq289s826ca0kxqk",
+ "rev": "00b32521de3aa689bc58516ae10ba7f3ef1b6c92"
+ },
+ "recipe": {
+ "sha256": "0d41gr9amf9vdn9pl9lamhp2swqllxslv9r3wsgzqvjl7zayd1az",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.3.1",
+ "deps": []
+ },
+ "anyins": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "antham",
+ "repo": "anyins",
+ "sha256": "1z6l72dn98icqsmxb3rrj6l63ijc3xgfa3vdl19yqa2rfy6ya721",
+ "rev": "1ff4673ca197c9bf64c65f718573bf7d478fc562"
+ },
+ "recipe": {
+ "sha256": "0ncf3kn8rackcidkgda2zs60km3hx87rwr9daj7ksmbb6am09s7c",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.1.1",
+ "deps": []
+ },
+ "d-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "Emacs-D-Mode-Maintainers",
+ "repo": "Emacs-D-Mode",
+ "sha256": "0apg6cpwjhp8spqq8yyfp56y3pn991sfc85kfnifyhz6v3y6vwv6",
+ "rev": "9b22a9373fc38cf3bc1ea9a814bcd8191d4c6626"
+ },
+ "recipe": {
+ "sha256": "060k9ndjx0n5vlpzfxlv5zxnizx72d7y9vk7gz7gdvpm6w2ha0a2",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "2.0.6",
+ "deps": []
+ },
+ "google-this": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "Malabarba",
+ "repo": "emacs-google-this",
+ "sha256": "0j31062zfqmcd0zsbp19f3h7gq7dn78sg4xf2x838sr9421x6w8x",
+ "rev": "879ab00f6b5584cfe327eb1c04cd9ff2323b3b11"
+ },
+ "recipe": {
+ "sha256": "0hg9y1b03aiamyn3mam3hyxmxy21wygxrnrww91zcbwlzgp4dd2c",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.10",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "goto-chg": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/goto-chg.el",
+ "sha256": "078d6p4br5vips7b9x4v6cy0wxf6m5ij9gpqd4g33bryn22gnpij"
+ },
+ "recipe": {
+ "sha256": "0fs0fc1mksbb1266sywasl6pppdn1f9a4q9dwycl9zycr588yjyv",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": []
+ },
+ "dired-fdclone": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "knu",
+ "repo": "dired-fdclone.el",
+ "sha256": "0lrc4082ghg77x5jl26hj8c7cp48yjvqhv4g3j0pznpzb4qyfnq0",
+ "rev": "8144c013d46c55b0471f31cdc3b5ead303286cbf"
+ },
+ "recipe": {
+ "sha256": "11aikq2q3m9h4zpgl24f8npvpwd98jgh8ygjwy2x5q8as8i89vf9",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.5.2",
+ "deps": []
+ },
+ "package-safe-delete": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "Fanael",
+ "repo": "package-safe-delete",
+ "sha256": "1pdv6d6bm5jmpgjqf9ycvzasxz1205zdi0zjrmkr33c03azwz7rd",
+ "rev": "138171e4fc03c0ef05a8260cbb5cd2e114c1c194"
+ },
+ "recipe": {
+ "sha256": "12ss5yjhnyxsif4vlbgxamn5jfa0wxkkphffxnv6drhvmpq226jw",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.1.7",
+ "deps": [
+ "emacs",
+ "epl"
+ ]
+ },
+ "emacsc": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "knu",
+ "repo": "emacsc",
+ "sha256": "1r6cpb7fck5znb7q7zrxcsjn7d3xiqhq8dp1ar1rsd6k4h05by4j",
+ "rev": "69607bdc3a0c070e924a3bcac93180f917992368"
+ },
+ "recipe": {
+ "sha256": "1fbf9al3yds0il18jz6hbpj1fsjlpb1kgp450gb6r09lc46x77mk",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.2.20131027",
+ "deps": []
+ },
+ "fuzzy": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "auto-complete",
+ "repo": "fuzzy-el",
+ "sha256": "1g7my9ha5cnwg3pjwa86wncg5gphv18xpnpmj3xc3vg7z5m45rss",
+ "rev": "939f4e9a3f08d83925b41dd3d23b2321f3f6b09c"
+ },
+ "recipe": {
+ "sha256": "1hwdh9bx4g4vzzyc20vdwxsii611za37kc9ik40kwjjk62qmll8h",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.1",
+ "deps": []
+ },
+ "evil-snipe": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "hlissner",
+ "repo": "evil-snipe",
+ "sha256": "143lgpvbjrddbgnyh9dfdhjj0gp69slv4fkiq53czz85ffwli5ig",
+ "rev": "9df049eb83789ea5711632672e077cebf4c54e14"
+ },
+ "recipe": {
+ "sha256": "0gcmpjw3iw7rjk86b2k6clfigp48vakfjd1a9n8qramhnc85rgkn",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.0",
+ "deps": []
+ },
+ "jedi": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "tkf",
+ "repo": "emacs-jedi",
+ "sha256": "0xbp9fcxgbf298w05hvf52z41kk7r52975ailgdn8sg60xc98fa7",
+ "rev": "8da022c8cda511428c72a6dc4c5be3c0a0c88584"
+ },
+ "recipe": {
+ "sha256": "1777060q25k9n2g6h1lm5lkki900pmjqkxq72mrk3j19jr4pk9m4",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.2.7",
+ "deps": [
+ "auto-complete",
+ "emacs",
+ "jedi-core"
+ ]
+ },
+ "cask-package-toolset": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "AdrieanKhisbe",
+ "repo": "cask-package-toolset.el",
+ "sha256": "1182z9h6xk8mj2blq4x4429kjg7b9s54gdhza4cdb6jk9409bdrn",
+ "rev": "27467a52e243f3ba4024ce19d8e1f4dbd5dd7c0b"
+ },
+ "recipe": {
+ "sha256": "13ix093c0a58rjqj7zfp3914xj3hvj276gb2d8zhvrx9vvs1345g",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.8.1",
+ "deps": [
+ "ansi",
+ "cl-lib",
+ "commander",
+ "dash",
+ "emacs",
+ "f",
+ "s",
+ "shut-up"
+ ]
+ },
+ "wc-goal-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "bnbeckwith",
+ "repo": "wc-goal-mode",
+ "sha256": "0mnfk2ys8axjh696cq5msr5cdr91icl1i3mi0dd2y00lvh6sbm7w",
+ "rev": "a8aa227b1a692dd6399855add84b5e37f6c5d9cb"
+ },
+ "recipe": {
+ "sha256": "0l3gh96njjldp7n13jn1zjrp17h7ivjak102j6wwspgg6v2h5419",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "2.1",
+ "deps": []
+ },
+ "grin": {
+ "fetch": {
+ "tag": "fetchhg",
+ "url": "https://bitbucket.com/dariusp686/emacs-grin",
+ "sha256": "0rqpgc50z86j4waijfm6kw4zjmzqfii6nnvyix4rkd4y3ryny1x2",
+ "rev": "f541aa22da52"
+ },
+ "recipe": {
+ "sha256": "0mvzwmws5pi6hpzgkc43fjxs98ngkr0jvqbclza2jbbqawifzzbk",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.0",
+ "deps": []
+ },
+ "window-numbering": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "nschum",
+ "repo": "window-numbering.el",
+ "sha256": "1rz2a1l3apavsknlfy0faaivqgpj4x9jz3hbysbg9pydpcwqgf64",
+ "rev": "653afce73854d629c2b9d63dad73126032d6a24c"
+ },
+ "recipe": {
+ "sha256": "0x3n0ni16q69lfpyjz61spqghmhvc3cwa4aj80ihii3pk80f769x",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.1.2",
+ "deps": []
+ },
+ "company-math": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "vspinu",
+ "repo": "company-math",
+ "sha256": "009f0p0sggfn0yz7sivkcv8zygvv4ssbwqykbxgdxh9n6zk4hjky",
+ "rev": "e82c91d960f9418774959f299d0e064fcb6ba0ad"
+ },
+ "recipe": {
+ "sha256": "0chig8k8l65bnd0a6734fiy0ikl20k9v2wlndh3ckz5a8h963g87",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.0.1",
+ "deps": [
+ "company",
+ "math-symbol-lists"
+ ]
+ },
+ "window-number": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/window-number.el",
+ "sha256": "1as3qbvj6d171qp2s8ycqqi16bgqm47vfk3fbxrl9szjzaxh9nw6"
+ },
+ "recipe": {
+ "sha256": "1qhlsdhs40cyly87pj3f1n6ckr7z5pmhqndgay5jyxwxxdpknpap",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": []
+ },
+ "minibuffer-complete-cycle": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "knu",
+ "repo": "minibuffer-complete-cycle",
+ "sha256": "1zyb6c3xwdzk7dpn7xi0mvbcjdfxvzz1a0zlbs053pfar8iim5fk",
+ "rev": "3df80135887d0169e02294a948711f6dfeca4a6f"
+ },
+ "recipe": {
+ "sha256": "0y1mxs6q9a8lzprrlb22qff6x5mvkw4gp2l6p2js2r0j9jzyffq2",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.25.20130814",
+ "deps": []
+ },
+ "imgix": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "imgix",
+ "repo": "imgix-emacs",
+ "sha256": "19jqcbiwqknlpij9q63m1p69k4zb3v1qdx0858drprc2rl1p55cd",
+ "rev": "cf3994f69b34a36f627e9ceaf3e6f4309ee9ec30"
+ },
+ "recipe": {
+ "sha256": "0dh7qsz5c9mflldcw60vc8mrxrw76n2ydd7blv6jfmsnr19ila4q",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.0.0",
+ "deps": [
+ "cl-lib",
+ "dash",
+ "ht",
+ "json",
+ "s"
+ ]
+ },
+ "bog": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "kyleam",
+ "repo": "bog",
+ "sha256": "1jm7qg7c75yrynrj66304p6ajamr8qxpaqbx9mjw5025936gsd18",
+ "rev": "19c70efa3e4e9bd27308f68bdae62dff16852c0f"
+ },
+ "recipe": {
+ "sha256": "1ci8xxca7dclmi5v37y5k45qlmzs6a9hi6m7czgiwxii902w5pkl",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.0.0",
+ "deps": [
+ "cl-lib"
+ ]
+ },
+ "fixmee": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "rolandwalker",
+ "repo": "fixmee",
+ "sha256": "1hnxdmzqmnp3dr7mpr58pjmigykb3cxwphxzia013kfi37ipf5a0",
+ "rev": "aa3be8ad9fcc9c0c7ff15f70cda4ba77de96dd74"
+ },
+ "recipe": {
+ "sha256": "0wnp6h8f547fsi1lkk4ajny7g21dnr76qfhxl82n0l5h1ps4w8mp",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.8.6",
+ "deps": [
+ "back-button",
+ "button-lock",
+ "nav-flash",
+ "smartrep",
+ "string-utils",
+ "tabulated-list"
+ ]
+ },
+ "thesaurus": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/thesaurus.el",
+ "sha256": "0zcyasdzb7dvmld8418cy2mg8mpdx01bv44cm0sp5950scrypsaq"
+ },
+ "recipe": {
+ "sha256": "1nyjk9jr1xvdkil13ylfsgg7q2sx71za05gi8m2v5f45pbmbi50h",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": []
+ },
+ "relax": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "technomancy",
+ "repo": "relax.el",
+ "sha256": "0lqbhwi1f8b4sv9p1rf0gyjllk0l7g6v6mlws496079wxx1n5j66",
+ "rev": "6e33892623ab87833082262321dc8e1977209626"
+ },
+ "recipe": {
+ "sha256": "0gfr4ym6aakawhkfz40ar2n0rfz503hq428yj6rbf7jmq3ajaysk",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.2",
+ "deps": [
+ "json"
+ ]
+ },
+ "omni-kill": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "AdrieanKhisbe",
+ "repo": "omni-kill.el",
+ "sha256": "07grj81alrr6qgs3jmqkjzphkvi26w6jm5hf1f5wyx7h6q293ady",
+ "rev": "8a1145b58b4736c9163bcd5b28c8fea80b2ea97b"
+ },
+ "recipe": {
+ "sha256": "03kydl16rd9mnc1rnan2byqa6f70891fhcj16wkavl2r68rfj75k",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.2.3",
+ "deps": []
+ },
+ "git": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "rejeep",
+ "repo": "git.el",
+ "sha256": "06ws3x5qa92drmn6rcp502jk2yil6q9gkzdmb2gww9gb2g695wl5",
+ "rev": "8b7f1477ef367b5b7de452589dd9a8ab30150d0a"
+ },
+ "recipe": {
+ "sha256": "1nd2yvfgin13m368gjn7xah99glspnam4g4fh348x4makxcaw8w5",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.1.1",
+ "deps": [
+ "dash",
+ "f",
+ "s"
+ ]
+ },
+ "operate-on-number": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "knu",
+ "repo": "operate-on-number.el",
+ "sha256": "12q09kdcgv6hl1hmgarl73j4g9gi4h7sj865655mdja0ns9n1pdb",
+ "rev": "6a17272e2b6e23260edb1b5eeb01905a1f37e0a6"
+ },
+ "recipe": {
+ "sha256": "1rw3fqbzfizgcbz3yaf99rr2546msna4z7dyfa8dbi8h7yzl4fhk",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.1.0",
+ "deps": []
+ },
+ "thumb-frm": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/thumb-frm.el",
+ "sha256": "1zyx30awgdvhfbr7fzgizm7gl93j0hqckiafp2jmlaarl8s2i36i"
+ },
+ "recipe": {
+ "sha256": "1fjjd80drm8banni909lww9zqazr1kk9m40xwwa1ln2zicaf091c",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": [
+ "frame-cmds",
+ "frame-fns"
+ ]
+ },
+ "browse-url-dwim": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "rolandwalker",
+ "repo": "browse-url-dwim",
+ "sha256": "08qz9l0gb7fvknzkp67srhldzkk8cylnbn0qwkflxgcs6ndfk95y",
+ "rev": "11f1c53126619c7ef1bb5f5d6914ce0b3cce0e30"
+ },
+ "recipe": {
+ "sha256": "13bv2ka5pp9k4kwrxfqfawwxzsqlakvpi9a32gxgx7qfi0dcb1rf",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.6.8",
+ "deps": [
+ "string-utils"
+ ]
+ },
+ "emmet-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "smihica",
+ "repo": "emmet",
+ "sha256": "1dsa85bk33j90h1ypaz1ylqh9yp2xvlga237h3kwa5y3sb0d5ydi",
+ "rev": "bf76d717c60f33d223cdac35513105e9f9244885"
+ },
+ "recipe": {
+ "sha256": "0w5nnhha70mndpk2a58raaxqanv868z05mfy1a8prgapm56mm819",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.0.8",
+ "deps": []
+ },
+ "edbi": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "kiwanami",
+ "repo": "emacs-edbi",
+ "sha256": "0xy3q68i47a3s81jwr0rdvc1722bp78ng56xm53pri05g1z0db9s",
+ "rev": "39b833d2e51ae5ce66ebdec7c5425ff0d34e02d2"
+ },
+ "recipe": {
+ "sha256": "0qq0j16n8lyvkqqlcsrq1m7r7f0in6b92d74mpx5c6siv6z2vxlr",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.1.2",
+ "deps": [
+ "concurrent",
+ "ctable",
+ "epc"
+ ]
+ },
+ "markdown-toc": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "ardumont",
+ "repo": "markdown-toc",
+ "sha256": "1syvz866xb0b0c3qkf786qzin4r27yppx0vmm9vx7rr0nfz7prz0",
+ "rev": "30b9cb4b79b210e150c4e2774ce2ef1a6c5230e4"
+ },
+ "recipe": {
+ "sha256": "0slky735yzmbfi4ld264vw64b4a4nllhywp19ya0sljbsfycbihv",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.0.8",
+ "deps": [
+ "dash",
+ "markdown-mode",
+ "s"
+ ]
+ },
+ "ac-html": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "cheunghy",
+ "repo": "ac-html",
+ "sha256": "19v9515ixg22m7h7riix8w3vyhzax1m2pbwdirp59v532xn9b0cz",
+ "rev": "415a78c3b84855b0c0411832d21a0fb63239b184"
+ },
+ "recipe": {
+ "sha256": "0qf8f75b6dvy844dq8vh8d9c6k599rh1ynjcif9bwvdpf6pxwvqa",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.31",
+ "deps": [
+ "auto-complete",
+ "web-completion-data"
+ ]
+ },
+ "swiper": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "abo-abo",
+ "repo": "swiper",
+ "sha256": "1kahl3h18vsjkbqvd84fb2w45s4srsiydn6jiv49vvg1yaxzxcbm",
+ "rev": "706349fcfae297ee285552af9246bc0cf00d9b7f"
+ },
+ "recipe": {
+ "sha256": "13lld7kjz1n1ryxvrfsy0iym5l9m9ybrf7bpcmkzsalpp15j3mvm",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.7.0",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "eldoc-eval": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "thierryvolpiatto",
+ "repo": "eldoc-eval",
+ "sha256": "1fh9dx669czkwy4msylcg64azz3az27akx55ipnazb5ghmsi7ivk",
+ "rev": "deca5e39f31282a06531002d289258cd099433c0"
+ },
+ "recipe": {
+ "sha256": "0z4scgi2xgrgd47aqqmyv1ww8alh43s0qny5qmh3f1nnppz3nd7c",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.1",
+ "deps": []
+ },
+ "elm-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "jcollard",
+ "repo": "elm-mode",
+ "sha256": "0asry7b5s1mj0hpvwhazrn7l1ipyzm0sv4jp6jxshsjvmy6mgxwd",
+ "rev": "51f0dabb23b924725744f36501468b2017972f56"
+ },
+ "recipe": {
+ "sha256": "18hky1d1d2q5paz271w17r6n1k2sb7rrski8dxq3q586k4lqykj2",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.5.0",
+ "deps": [
+ "emacs",
+ "f",
+ "let-alist",
+ "s"
+ ]
+ },
+ "helm-descbinds": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "emacs-helm",
+ "repo": "helm-descbinds",
+ "sha256": "1cm2vaw0j1x2w2m45k6iqbzm7nydfdx1x89673vsvb90whdgvjbp",
+ "rev": "5d8e84e6c047ce8a042fdcd827abb421f4848ac7"
+ },
+ "recipe": {
+ "sha256": "1890ss4pimjxskzzllf57fg07xbs8zqcrp6r8r6x989llrfvd1h7",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.08",
+ "deps": [
+ "helm"
+ ]
+ },
+ "wispjs-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "krisajenkins",
+ "repo": "wispjs-mode",
+ "sha256": "188h1sy4mxzrkwi3zgiw108c5f71rkj5agdkf9yy9v8c1bkawm4x",
+ "rev": "be094c3c3223c07b26b5d8bb8fa7aa6866369b3f"
+ },
+ "recipe": {
+ "sha256": "0qzm0dcvjndasnbqpkdc56f1qv66gxv8dfgfcwq5l1bp5wyx813p",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.2.0",
+ "deps": [
+ "clojure-mode"
+ ]
+ },
+ "neotree": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "jaypei",
+ "repo": "emacs-neotree",
+ "sha256": "1gmi0xxwkh33w5gxc8488m1vv6ycizqhlw1kpn81zhqdzzq3s06n",
+ "rev": "c4f32b489fb1f5f00897a7dbb58a27ee704f5493"
+ },
+ "recipe": {
+ "sha256": "05smm1xsn866lsrak0inn2qw6dvzy24lz6h7rvinlhk5w27xva06",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.2.1",
+ "deps": []
+ },
+ "magit-topgit": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "magit",
+ "repo": "magit-topgit",
+ "sha256": "0dj183vphnvz9k2amga0ydcb4gkjxr28qz67055mxrf89q1qjq33",
+ "rev": "732de604c31c74e9da24616428c6e9668b57c881"
+ },
+ "recipe": {
+ "sha256": "1ngrgf40n1g6ncd5nqgr0zgxwlkmv9k4fik96dgzysgwincx683i",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "2.1.1",
+ "deps": [
+ "emacs",
+ "magit"
+ ]
+ },
+ "express": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "rolandwalker",
+ "repo": "express",
+ "sha256": "106yh793scbyharsk1dvrirkj3c6666w8jqilpkaz78vwyw3zs5y",
+ "rev": "e6dc9abdc395ef537408befebeb4fd3ed4ee5c60"
+ },
+ "recipe": {
+ "sha256": "0lhisy4ds96bwpc7k8w9ws1zi1qh0d36nhxsp36bqzfi09ig0nb9",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.6.0",
+ "deps": [
+ "string-utils"
+ ]
+ },
+ "company-web": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "osv",
+ "repo": "company-web",
+ "sha256": "0b0k75rg43h48dbcqiid947nspqiqxkiqcmvph9aqpxlfr67bz5r",
+ "rev": "ffb6b969813041d2d90680a7696a9e0208eaed61"
+ },
+ "recipe": {
+ "sha256": "0dj0m6wcc8cyvblp9b5b3am95gc18j9y4va44hvljxv1h7l5hhvy",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.9",
+ "deps": [
+ "cl-lib",
+ "company",
+ "dash",
+ "web-completion-data"
+ ]
+ },
+ "helm-recoll": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "emacs-helm",
+ "repo": "helm-recoll",
+ "sha256": "16bwsmxqv7gnzh2hgn181h7fl1hficabzd8iq404g114a07p3hh1",
+ "rev": "957a099b9425b91d1c6a1fc43110aa5fc834e2e1"
+ },
+ "recipe": {
+ "sha256": "0pr2pllplml55k1xx9inr3dm90ichg2wb62dvgvmbq2sqdf4606b",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.2",
+ "deps": [
+ "helm"
+ ]
+ },
+ "sr-speedbar": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/sr-speedbar.el",
+ "sha256": "1ffnm2kfh8cg5rdhrkqmh4krggbxvqg3s6lc1nssv88av1c5cs3i"
+ },
+ "recipe": {
+ "sha256": "1zq3ysz1vpc98sz2kpq307v1fp1l4ivwgrfh2kdqkkdjm4fkya23",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": []
+ },
+ "emr": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "chrisbarrett",
+ "repo": "emacs-refactor",
+ "sha256": "0pl7i2a0mf2s33qpsc14dcvqbl6jm5xrvcnrhfr7visvnih29cy4",
+ "rev": "fd20fc1887e2ebcf752f0170b1f3bf697043fd4b"
+ },
+ "recipe": {
+ "sha256": "05vpfxg6lviclnms2zyrza8dc87m60mimlwd11ihvsbngi9gcw8x",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.3.6",
+ "deps": [
+ "cl-lib",
+ "dash",
+ "emacs",
+ "list-utils",
+ "paredit",
+ "popup",
+ "projectile",
+ "redshank",
+ "s"
+ ]
+ },
+ "emacs-eclim": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "emacs-eclim",
+ "repo": "emacs-eclim",
+ "sha256": "0b9hr3xg53nap6sik9d2cwqi8vfwzv8yqjcin4hab6rg2fkr5mra",
+ "rev": "c5c7272ae30e5017ebd08d4e03508abc6b23bf4c"
+ },
+ "recipe": {
+ "sha256": "1l55jhz5mb3bqw90cbf4jhcqgwj962br706qhm2wn5i2a1mg8xlv",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.3",
+ "deps": [
+ "dash",
+ "json",
+ "popup",
+ "s"
+ ]
+ },
+ "typo": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "jorgenschaefer",
+ "repo": "typoel",
+ "sha256": "1jhd4grch5iz12gyxwfbsgh4dmz5hj4bg4gnvphccg8dsnni05k2",
+ "rev": "e72171e4eb0b9ec80b9dabc3198d137d9fb4f972"
+ },
+ "recipe": {
+ "sha256": "07hmqrnbxbrhcbxdls8i4786lkqmfr3hv6va41xih1lxj0mk60bx",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.1",
+ "deps": []
+ },
+ "foreman-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "zweifisch",
+ "repo": "foreman-mode",
+ "sha256": "199kybf2bvywqfnwr5w893km82829k1j7sp079y6s2601hq8ylw9",
+ "rev": "e90d2b56e83ab914f9ba9e78126bd7a534d5b8fb"
+ },
+ "recipe": {
+ "sha256": "0p3kwbld05wf3dwcv0k6ynz727fiy0ik2srx4js9wvagy57x98kv",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.0.1",
+ "deps": [
+ "dash",
+ "dash-functional",
+ "emacs",
+ "f",
+ "s"
+ ]
+ },
+ "timesheet": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "tmarble",
+ "repo": "timesheet.el",
+ "sha256": "0p7piqbhwxp2idslqnzl5x4y9aqgba9ryxrjy3d0avky5z9kappl",
+ "rev": "354131b1216ccca51a68da74e9491b5518fd7820"
+ },
+ "recipe": {
+ "sha256": "1gy6bf4wqvp8cw2wjnrr9ijnzwav3p7j46m7qrn6l0517shwl506",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.3.0",
+ "deps": [
+ "auctex",
+ "org",
+ "s"
+ ]
+ },
+ "slideview": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "mhayashi1120",
+ "repo": "Emacs-slideview",
+ "sha256": "0rk12am1dq52khwkwrmg70zarhni2avj4sy44jqckb4x7sv7djfk",
+ "rev": "ec2340e7b0e74201206d14e3eaef1e77149f122d"
+ },
+ "recipe": {
+ "sha256": "0zr08yrnrz49zds1651ysmgjqgbnhfdcqbg90sbsb086iw89rxl1",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.6.1",
+ "deps": []
+ },
+ "direx": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "m2ym",
+ "repo": "direx-el",
+ "sha256": "0p8c2hjgr81idm1psv3i3v5hr5rv0875ig8app2yqjwzvl0nn73f",
+ "rev": "423caeed13249e37afc937dc8134cb3c53e0f111"
+ },
+ "recipe": {
+ "sha256": "1x3rnrhhyrrvgry9n7kc0734la1zp4gc4bpy50f2qpfd452jwqdm",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.0.0",
+ "deps": []
+ },
+ "yaxception": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "aki2o",
+ "repo": "yaxception",
+ "sha256": "0nqyn1b01v1qxv7rcf46qypca61lmpm8d7kqv63jazw3n05qdnj8",
+ "rev": "4e94cf3e0b9b5631b0e90eb4b7de597ee7185875"
+ },
+ "recipe": {
+ "sha256": "18n2kjbgfhkhcwigxmv8dk72jp57vsqqd20lc26v5amx6mrhgh58",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.3.3",
+ "deps": []
+ },
+ "haskell-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "haskell",
+ "repo": "haskell-mode",
+ "sha256": "1gmpmfkr54sfzrif87zf92a1i13wx75bhp66h1rxhflg216m62yv",
+ "rev": "ea81bbb966a839527a786739b7628fd9cd777456"
+ },
+ "recipe": {
+ "sha256": "0wijvcpfdbl17iwzy47vf8brkj2djarfr8y28rw0wqvbs381zzwp",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "13.16",
+ "deps": [
+ "cl-lib"
+ ]
+ },
+ "icicles": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/icicles.el",
+ "sha256": "1vr4wp808rv8kiq324ph2jfbqdw1wzii41rca45v5w21gway169s"
+ },
+ "recipe": {
+ "sha256": "15h2511gm38q14avsd86j5mnxhsjvcdmwbnhj66ashj5p5nxhr92",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": []
+ },
+ "linum-relative": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "coldnew",
+ "repo": "linum-relative",
+ "sha256": "1m4g4b96cxs05pfln7kdi6gvrdbv76f8dk806py5lq0gq7da2csc",
+ "rev": "1074e12904d08e00dda438d9700f2a3bff238bd5"
+ },
+ "recipe": {
+ "sha256": "0s1lc3lppazv0481dxknm6qrxhvkv0r9hw8xmdrpjc282l91whkj",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.4",
+ "deps": []
+ },
+ "flymake-jslint": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "purcell",
+ "repo": "flymake-jslint",
+ "sha256": "00zkm3wqlss386qd6jiq0siga7c48n5ykh0vf9q5v83rmpd79yri",
+ "rev": "30693f75059bab53a9d2eb676c68751f4d8b091c"
+ },
+ "recipe": {
+ "sha256": "1cq8fni4p0qhigx0qh34ypmcsbnilra1ixgnrn9mgg8x3cvcm4cm",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.23",
+ "deps": []
+ },
+ "org-bullets": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "sabof",
+ "repo": "org-bullets",
+ "sha256": "10nr4sjffnqbllv6gmak6pviyynrb7pi5nvrq331h5alm3xcpq0w",
+ "rev": "b70ac2ec805bcb626a6e39ea696354577c681b36"
+ },
+ "recipe": {
+ "sha256": "1kxhlabaqi1g6pz215afp65d9cp324s8mvabjh7q1h7ari32an75",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.2.4",
+ "deps": []
+ },
+ "wimpy-del": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/wimpy-del.el",
+ "sha256": "05gmqx9qj95fd4lryvpp7rk93f1ibsvl3lqanraph0s73ir48x3z"
+ },
+ "recipe": {
+ "sha256": "10qw5lfq2392fr5sdz5a9bc6rvsg0j4dkrwvdhip1kqvajznw49x",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": []
+ },
+ "help+": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/help+.el",
+ "sha256": "0vdga10l8vslsicrspl3wyhf6a5jxdwzqb7r8g07fbd4f09d57a4"
+ },
+ "recipe": {
+ "sha256": "1jx0wa4md1mvdsvjyx2yvi4hhm5w061qqcafsrw4axsz7gjpd4yi",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": []
+ },
+ "org-projectile": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "IvanMalison",
+ "repo": "org-projectile",
+ "sha256": "16aq5p65q5a0an14q9xzsnkaa5bzkrwhm9cv5ljajjfcjsjcvmb6",
+ "rev": "c2141ac997f4af49257595bab88adb9dd7b9b700"
+ },
+ "recipe": {
+ "sha256": "078s77wms1n1b29mrn6x25sksfjad0yns51gmahzd7hlgp5d56dm",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.2.0",
+ "deps": [
+ "dash",
+ "projectile"
+ ]
+ },
+ "doremi-mac": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/doremi-mac.el",
+ "sha256": "1zlb6r5qy46yf5x499gzk6kvdy427qf3s9gzmpf5mzszcy6rzsfx"
+ },
+ "recipe": {
+ "sha256": "0n9fffgxnpqc7cch7aci5kxbwzk36iljdz2r8gcp5y5n1p7aamls",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": []
+ },
+ "flyspell-popup": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "xuchunyang",
+ "repo": "flyspell-popup",
+ "sha256": "1rk7fsill0salrhb4anbf698nd21nxj8pni35brbmv64nj9fhfic",
+ "rev": "a3890c9272c0cfa1e2cde6526f7d6280ad4af00c"
+ },
+ "recipe": {
+ "sha256": "0wp15ra1ry6xpwal6mb53ixh3f0s4nps0rdyfli7hhaiwbr9bhql",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.2",
+ "deps": [
+ "popup"
+ ]
+ },
+ "pyvenv": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "jorgenschaefer",
+ "repo": "pyvenv",
+ "sha256": "0jidmc608amd0chs4598zkj0nvyll0al093121hkczsbpgbllq9z",
+ "rev": "5c48de2419ddf10c00e38f5940ed97a84c43f1ce"
+ },
+ "recipe": {
+ "sha256": "0gai9idss1wvryxyqk3pv854mc2xg9hd0r55r2blql8n5rd2yv8v",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.9",
+ "deps": []
+ },
+ "persp-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "Bad-ptr",
+ "repo": "persp-mode.el",
+ "sha256": "129cl5az4rr5j7krpyyi5khhbl8klw7ji9ysarz0s7ivy096jq7b",
+ "rev": "00e5f345f13b2b9e615082ac9ccbfd076592cc22"
+ },
+ "recipe": {
+ "sha256": "1bgni7y5xsn4a21494npr90w3320snfzw1hvql30xrr57pw3765w",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.1.7",
+ "deps": []
+ },
+ "replace-from-region": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/replace-from-region.el",
+ "sha256": "1clxkzxqsm91zbzv8nffav224ldr04ww5lppga2l41xjfl6z12qb"
+ },
+ "recipe": {
+ "sha256": "19q8hz2xiyamhw8hzpahqwd4352k1m9r9wlh9kdh6hbb6sjgllnb",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": []
+ },
+ "fuel": {
+ "fetch": {
+ "tag": "fetchgit",
+ "url": "git://factorcode.org/git/factor.git",
+ "sha256": "b348e285923e480fe696f888783c95becb392a6e05abc553d8be649987c7d190",
+ "rev": "905ec06d864537fb6be9c46ad98f1b6d101dfbf0"
+ },
+ "recipe": {
+ "sha256": "0m24p2788r4xzm56hm9kmpzcskwh82vgbs3hqfb9xygpl4isp756",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.96",
+ "deps": []
+ },
+ "mic-paren": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/mic-paren.el",
+ "sha256": "1ibim60fx0srmvchwbb2s04dmcc7mv7zyg1vqavas24ya2gmixc5"
+ },
+ "recipe": {
+ "sha256": "1kdmp0wd7838nk58lby8gx91pjan47lq3izk4vdb2vm0h0iq57sa",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": []
+ },
+ "helm-core": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "emacs-helm",
+ "repo": "helm",
+ "sha256": "1cl01rprns989k5gr89qjpa6sg0s2ndrsdcmcyszrnaisvz7im53",
+ "rev": "97e8ffaed3c5959e9c16e7a0e45cc0702218b2cc"
+ },
+ "recipe": {
+ "sha256": "1dyv8rv1728vwsp6vfdq954sp878jbp3srbfxl9gsgjnv1l6vjda",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.9.0",
+ "deps": [
+ "async",
+ "cl-lib",
+ "emacs"
+ ]
+ },
+ "sml-modeline": {
+ "fetch": {
+ "tag": "fetchbzr",
+ "url": "lp:~nxhtml/nxhtml/main",
+ "sha256": "1p10q1b5bvc8fvgfxynrq2kf1ygr6gad92x40zhaa5r1ksf6ryk4",
+ "rev": "835"
+ },
+ "recipe": {
+ "sha256": "086hslzznv6fmlhkf28mcl8nh4xk802mv6w0a4zwd5px2wyyaysd",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": []
+ },
+ "wonderland": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "kurisuwhyte",
+ "repo": "emacs-wonderland",
+ "sha256": "018r35dz8z03wcrx9s28pjisayy21549i232mp6wy9mxkrkxbzpc",
+ "rev": "28cf6b37000c395ece9519db53147fb826a42bc4"
+ },
+ "recipe": {
+ "sha256": "1b4p49mbzqffm2b2y8sbbi56vnkxap2jscsmla9l6l8brybqjppi",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.1.1",
+ "deps": [
+ "dash",
+ "dash-functional",
+ "emacs",
+ "multi"
+ ]
+ },
+ "plsense": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "aki2o",
+ "repo": "emacs-plsense",
+ "sha256": "0f00dv5jwbhs99j4jc6lvr5n0mv1y80yg7zpp6yrmhww6829l5rg",
+ "rev": "f6fb22607a5252b2556d2e7fa14f1bcab5d9747a"
+ },
+ "recipe": {
+ "sha256": "1ka06r4ashhjkfyzql9mfvs3gj7n684h4gaycj29w4nfqrhcw9va",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.4.7",
+ "deps": [
+ "auto-complete",
+ "log4e",
+ "yaxception"
+ ]
+ },
+ "synonyms": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/synonyms.el",
+ "sha256": "1vqsi13ygbzjh3a6hdzidjy1p1xjxxvbisax8lcppy99l2cymr20"
+ },
+ "recipe": {
+ "sha256": "0rnq97jpr047gpkxhw22jj3gw09r45vn6fwkzxnxjzcmsyk492d0",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": []
+ },
+ "save-load-path": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/save-load-path.el",
+ "sha256": "1p8p5b85sdnq45rdjq5wcr3xz7c22mr5bz41a21mkabc4j4fvd3z"
+ },
+ "recipe": {
+ "sha256": "01hm1rm9x3bqs6vf65l4xv2n4ramh3qwgmrp632fyfz5dlrvbssi",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": []
+ },
+ "fic-mode": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/fic-mode.el",
+ "sha256": "110h0ff7bkwx7icph0j997hq53zpyz426dji4vs89zf75cf1nl7s"
+ },
+ "recipe": {
+ "sha256": "037f2jr8bs2sfxw28cal2d49bsbrg0zkz2xdham627l04qnkgv8x",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": []
+ },
+ "dionysos": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "nlamirault",
+ "repo": "dionysos",
+ "sha256": "1xg9cschjd2m0zal296q54ifk5i4s1s3azwfdkbgshxxgvxaky0w",
+ "rev": "92578e813b92c8aae12948b44e0c7757cc9b3d9b"
+ },
+ "recipe": {
+ "sha256": "1wjgj74dnlwd79gc3l7ymbx75jka8rw9smzbb10dsfppw3rrzfmz",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.3.0",
+ "deps": [
+ "dash",
+ "libmpdee",
+ "pkg-info",
+ "s"
+ ]
+ },
+ "graphene": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "rdallasgray",
+ "repo": "graphene",
+ "sha256": "1f34bhjxmbf2jjrkpdvqg2gwp83ka6d5vrxmsxdl3r57yc6rbrwa",
+ "rev": "dcc0e34c6c4632d5d5445ec023f5b1ca04c7d1b7"
+ },
+ "recipe": {
+ "sha256": "1wz3rvd8b7gx5d0k7yi4dd69ax5bybcm10vdc7xp4yn296lmyl9k",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.9.5",
+ "deps": [
+ "company",
+ "dash",
+ "exec-path-from-shell",
+ "flycheck",
+ "graphene-meta-theme",
+ "ido-ubiquitous",
+ "ppd-sr-speedbar",
+ "smartparens",
+ "smex",
+ "sr-speedbar",
+ "web-mode"
+ ]
+ },
+ "flycheck-package": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "purcell",
+ "repo": "flycheck-package",
+ "sha256": "0aa8cnh9f0f2zr2kkba2kf9djzjnsd51fzj8l578pbj016zdarwd",
+ "rev": "ff93e8986a1021daf542c441c1fd50436ee83cba"
+ },
+ "recipe": {
+ "sha256": "0068kpia17rsgjdmzsjnw0n6x5z9jvfxggxlzkszvwsx73mvcs2d",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.8",
+ "deps": [
+ "cl-lib",
+ "emacs",
+ "flycheck"
+ ]
+ },
+ "org-mac-iCal": {
+ "fetch": {
+ "tag": "fetchgit",
+ "url": "git://orgmode.org/org-mode.git",
+ "sha256": "5cb84c3c4bf3f7c3e0c9ab869dababb785d44198b1e1072dc9c0937fc483aa14",
+ "rev": "592dc2ee7e4c80b9b61efb77117c8dc22d6cefd1"
+ },
+ "recipe": {
+ "sha256": "1ilzvmw1x5incagp1vf8d9v9mz0krlv7bpv428gg3gpqzpm6kksw",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "7.9.3e",
+ "deps": []
+ },
+ "annotate": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "bastibe",
+ "repo": "annotate.el",
+ "sha256": "18ninv1z8zdqpqnablbds4zgxgk4c1nmznlfdicj6qs738c5c30s",
+ "rev": "a1690384317ce366e5a33aec916949e3328a0117"
+ },
+ "recipe": {
+ "sha256": "1ajykgara2m713blj2kfmdz12fzm8jw7klyakkyi6i3c3a9m44jy",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.4.4",
+ "deps": []
+ },
+ "zerodark-theme": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "NicolasPetton",
+ "repo": "zerodark-theme",
+ "sha256": "1pxy6ia7di3i5kigybkz78f7fgbsyr1js9asrfbbx3kkpxpm2vfc",
+ "rev": "5f7e16b35b2b42e4a286ca0cece4766a69cd7321"
+ },
+ "recipe": {
+ "sha256": "1nqzswmnq6h0av4rivqm237h7ghp7asa2nvls7nz4ma467p9qhp9",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.0",
+ "deps": []
+ },
+ "flx": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "lewang",
+ "repo": "flx",
+ "sha256": "0sjybrcnb2sl33swy3q664vqrparajcl0m455gciiih2j87hwadc",
+ "rev": "7fce6a4cdb65ac1b52e2b409ba548767581ce34c"
+ },
+ "recipe": {
+ "sha256": "04plfhrnw7jx2jaxhbhw4ypydfcb8v0x2m5hyacvrli1mca2iyf9",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.6.1",
+ "deps": [
+ "cl-lib"
+ ]
+ },
+ "hardhat": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "rolandwalker",
+ "repo": "hardhat",
+ "sha256": "0mbdnsm903s380ajjgjjqa0m4mxsddzqfjdafrngy0pxgs16iv1f",
+ "rev": "fa42fa4a07dc59f253950c5a8aa5257263a41cdf"
+ },
+ "recipe": {
+ "sha256": "16pdbpm647ag9cadmdm75nwwyzrqsd9y1b4zgkl3pg669mi5vl5z",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.4.4",
+ "deps": [
+ "ignoramus"
+ ]
+ },
+ "pinyin-search": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "xuchunyang",
+ "repo": "pinyin-search.el",
+ "sha256": "12jhdkgfck2a6d5jj65l9d98dm34gsyi0ya4h21dbbvz35zivz70",
+ "rev": "5895cccfa6b43263ee243c5642cc16dd9a69fb4e"
+ },
+ "recipe": {
+ "sha256": "1si693nmmxgg0kp5mxvj5nq946kfc5cv3wfsl4znbqzps8qb2b7z",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.1.0",
+ "deps": []
+ },
+ "mouse+": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/mouse+.el",
+ "sha256": "1l29smg3r2b2b08869wsrwyr5239gznd88xwf40q7qi350cj8fwy"
+ },
+ "recipe": {
+ "sha256": "1fv7jnqzskx9iv92dm2pf0mqy2accl0svjl2kkb6v273n1day3f8",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": []
+ },
+ "sexp-move": {
+ "fetch": {
+ "tag": "fetchFromGitLab",
+ "owner": "elzair",
+ "repo": "sexp-move",
+ "sha256": "11h5z2gmwq07c4gqzj2c9apksvqk3k8kpbb9kg78bbif2xfajr3m",
+ "rev": "117f7a91ab7c25e438413753e916570122011ce7"
+ },
+ "recipe": {
+ "sha256": "0lcxmr2xqh8z7xinxbv1wyrh786zlahhhj5nnbv83i8m23i3ymmd",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.2.6",
+ "deps": []
+ },
+ "mc-extras": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "knu",
+ "repo": "mc-extras.el",
+ "sha256": "0252wdq4sd6jhzfy0pn3gdm6aq2h13nnp8hvrn1mpml9x473a5n1",
+ "rev": "71cf966be06d9c74e781a87bb30fa4cf657ee852"
+ },
+ "recipe": {
+ "sha256": "0b110x6ygc95v5pb9lk1i731x5s6dagl5afzv37l1qchys36xrym",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.2.1",
+ "deps": [
+ "multiple-cursors"
+ ]
+ },
+ "desktop-registry": {
+ "fetch": {
+ "tag": "fetchgit",
+ "url": "git://ryuslash.org/desktop-registry.git",
+ "sha256": "7c7727dd1d63be98e428700bfe340f2c4e7ff713fcc9b2b743a3366d786ae02d",
+ "rev": "244c2e7f9f0a1050aa8a47ad0b38f4e4584682dd"
+ },
+ "recipe": {
+ "sha256": "02mj0nlawx6vpksqsvp1q7l8rd6b1bs8f9c8c2rmda46jaf5npyr",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.2.0",
+ "deps": []
+ },
+ "test-kitchen": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "jjasghar",
+ "repo": "test-kitchen-el",
+ "sha256": "02vp4m3aw7rs4gxn91v6j3y8pr04hpydrg05ck3ivv46snkfagdn",
+ "rev": "9464c7dda14020099053218e959971117396091e"
+ },
+ "recipe": {
+ "sha256": "1bl3yvj56dq147yplrcwphcxiwvmx5n97y4qpkm9imiv8cnjm1g0",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.2.1",
+ "deps": []
+ },
+ "thrift": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "apache",
+ "repo": "thrift",
+ "sha256": "1srylw9wwkyq92f9v6ds9zp9z8sl800wbxjbir80g1lwv4hghaii",
+ "rev": "53dd39833a08ce33582e5ff31fa18bb4735d6731"
+ },
+ "recipe": {
+ "sha256": "0p1hxmm7gvhyigz8aylncgqbhk6cyf75rbcqis7x552g605mhiy9",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.9.3",
+ "deps": []
+ },
+ "better-defaults": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "technomancy",
+ "repo": "better-defaults",
+ "sha256": "09cn3dnaq88jwmmxfg76168s8f4wbmp6y2dv13rhwagihx9mf20m",
+ "rev": "c286d55528f148733c696fe07eb01073dc412fb8"
+ },
+ "recipe": {
+ "sha256": "13bqcmx2gagm2ykg921ik3awp8zvw5d4lb69rr6gkpjlqp7nq2cm",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.1.2",
+ "deps": []
+ },
+ "plsense-direx": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "aki2o",
+ "repo": "plsense-direx",
+ "sha256": "0s34nbqqy6aqi113xj452pbmqp43046wfbfbbfv1xwhybgq0c1j1",
+ "rev": "8a2f465264c74e04524cc789cdad0190ace43f6c"
+ },
+ "recipe": {
+ "sha256": "0qd4b7gkmn5ydadhp70995rap3643s1aa8gfi5izgllzhg0i864j",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.2.0",
+ "deps": [
+ "direx",
+ "log4e",
+ "plsense",
+ "yaxception"
+ ]
+ },
+ "cygwin-mount": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/cygwin-mount.el",
+ "sha256": "09my4gj3qm9rdpk8lg6n6ki8ywj7kwzwd4hhgwascfnfi1hzwdvw"
+ },
+ "recipe": {
+ "sha256": "0ik2c8ab9bsx58mgcv511p50h45cpv7455n4b0kri83sx9xf5abb",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": []
+ },
+ "stgit": {
+ "fetch": {
+ "tag": "fetchgit",
+ "url": "git://repo.or.cz/stgit.git",
+ "sha256": "12c5df549d653c8ec3476ed271a4e9a4065a61a467229c070bb2e6295e285e16",
+ "rev": "48e5cef14cea5c810833d119900cd484c2a6ca85"
+ },
+ "recipe": {
+ "sha256": "102s9lllrcxsqs0lgbrcljwq1l3s8ri4276wck6rcypck5zgzj89",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.17.1",
+ "deps": []
+ },
+ "ac-html-bootstrap": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "osv",
+ "repo": "ac-html-bootstrap",
+ "sha256": "1zmjqnlbfchnb7n2v7ms7q06xma1lmf9ry3v6f4pfnwlmz5lsf3a",
+ "rev": "591e1e996c820da218ea1eee0a500c556769f128"
+ },
+ "recipe": {
+ "sha256": "0z71m6xws0k9smhsswaivpikr64mv0wh6klnmi5cwhwcqas6kdi1",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.9.3",
+ "deps": [
+ "web-completion-data"
+ ]
+ },
+ "julia-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "JuliaLang",
+ "repo": "julia",
+ "sha256": "0ahn6bdl6vmy71knag1m4nq4s8gsmf239fhjn0mhpnavx9lv1apq",
+ "rev": "bb73f3489d837e3339fce2c1aab283d3b2e97a4c"
+ },
+ "recipe": {
+ "sha256": "0c5bdgh98hw7484s2is84af7hznd8c4z5vlzfd98s8qxi7bldqjm",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.4.2",
+ "deps": []
+ },
+ "flycheck-status-emoji": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "liblit",
+ "repo": "flycheck-status-emoji",
+ "sha256": "0yi2xmk0bxzqmjf9sy3r3gacqw7z1jrf6hwn05zaqqgn7y78z37i",
+ "rev": "37ed04b76b7338afd2237d3a11487bef3970ff0f"
+ },
+ "recipe": {
+ "sha256": "0p42424b1fsmfcjyl252vhblppmpjwd6br2yqh10fi60wmprvn2p",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.1",
+ "deps": [
+ "emacs",
+ "flycheck",
+ "let-alist"
+ ]
+ },
+ "gitlab": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "nlamirault",
+ "repo": "emacs-gitlab",
+ "sha256": "1hc7j3gwljb1wk2727f66m3f7ga4icbklp54vlm0vf2bmii1ynil",
+ "rev": "90be6027eb59a967e5bbceaa5f32c098472ca245"
+ },
+ "recipe": {
+ "sha256": "0vxsqfnipgapnd2ijvdnkspk68dlnki3pkpkzg2h6hyazmzrsqnq",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.7.0",
+ "deps": [
+ "dash",
+ "pkg-info",
+ "request",
+ "s"
+ ]
+ },
+ "highlight-tail": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/highlight-tail.el",
+ "sha256": "1bbiyqddqkrp3c7xsg1m4143611bhg1kkakrwscqjb4cfmx29qqg"
+ },
+ "recipe": {
+ "sha256": "187kv3n262l38jdapi9bwcafz8fh61pdq2zliwiz7m7xdspp2iws",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": []
+ },
+ "common-lisp-snippets": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "mrkkrp",
+ "repo": "common-lisp-snippets",
+ "sha256": "1cc9ak9193m92g6l4mrfxbkkmvljl3c51d0xzdidwww978q3x6ad",
+ "rev": "3b2b50fda8b1526d45a74e3d30f560d6b6bbb284"
+ },
+ "recipe": {
+ "sha256": "0ig8cz00cbfx0jckqk1xhsvm18ivl2mjvcn65s941nblsywfvxjl",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.1.1",
+ "deps": [
+ "yasnippet"
+ ]
+ },
+ "apples-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "tequilasunset",
+ "repo": "apples-mode",
+ "sha256": "13j2r4nx2x6j3qx50d5rdnqd8nl5idxdkhizsk7ccz3v2607fbyy",
+ "rev": "fac47b6255e79a373c5d5e1abe66ea5d74588e9f"
+ },
+ "recipe": {
+ "sha256": "05ssnxs9ybc26jhr69xl9jpb41bz1688minmlc9msq2nvyfnj97s",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.0.2",
+ "deps": []
+ },
+ "reveal-in-osx-finder": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "kaz-yos",
+ "repo": "reveal-in-osx-finder",
+ "sha256": "1q13cgpz4wzhnqv84ablawy3y2wgdwy46sp7454mmfx9m77jzb2v",
+ "rev": "5710e5936e47139a610ec9a06899f72e77ddc7bc"
+ },
+ "recipe": {
+ "sha256": "00jgrmh5s3vlpj1jjf8l3c3h4hjk5x781m95sidw6chimizvfmfc",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.3.3",
+ "deps": []
+ },
+ "minitest": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "arthurnn",
+ "repo": "minitest-emacs",
+ "sha256": "0nd0jl5r5drnh98wdpqj2i7pgs7zvcizsh4qbvh8n0iw0c3f0pwh",
+ "rev": "2bed01262b0d888473468b5c7bd7d73694d31320"
+ },
+ "recipe": {
+ "sha256": "0x6nd4kkhiw8hh79r69861pf41j8p1y39kzf2rl61zlmyjz9zpmw",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.8.0",
+ "deps": [
+ "dash"
+ ]
+ },
+ "evil-matchit": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "redguardtoo",
+ "repo": "evil-matchit",
+ "sha256": "0kf4m1ghpxfalqx2zwm1d8xav4d6l6bpk79g5cvssk5jz5913fbi",
+ "rev": "8b80b3df9472217d55962981025539f2da603296"
+ },
+ "recipe": {
+ "sha256": "01z69n20qs4gngd28ry4kn825cax5km9hn96i87yrvq7nfa64swq",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "2.1.2",
+ "deps": []
+ },
+ "sqlup-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "trevoke",
+ "repo": "sqlup-mode.el",
+ "sha256": "1dcb18fq84vlfgb038i2x6vy7mhin2q6jn4jl9fh256n12cx4nrn",
+ "rev": "7a51e34685c65952cd0635c3d35a36337fde361b"
+ },
+ "recipe": {
+ "sha256": "06a0v2qagpd9p2bh19bfw14a6if8kjjc4yyhm5nwp8a8d2vnl5l7",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.5.3",
+ "deps": []
+ },
+ "flycheck-gometalinter": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "favadi",
+ "repo": "flycheck-gometalinter",
+ "sha256": "1ypa4x096wlvgl5nak8sgpgxslv3px3f21mmvqjb4p1sc8vbbb1p",
+ "rev": "554a806e9ad6ddb6299bcfe469dd7d20cf98b473"
+ },
+ "recipe": {
+ "sha256": "1bnvj5kwgbh0dv989rsjcvmcij1ahwcz0vpr6a8f2p6wwvksw1h2",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.1.0",
+ "deps": [
+ "emacs",
+ "flycheck"
+ ]
+ },
+ "ir-black-theme": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "jmdeldin",
+ "repo": "ir-black-theme.el",
+ "sha256": "036q933yw7pimnnq43ydaqqfccgf4iwvjhjmsavp7l6y1w16rvmy",
+ "rev": "b1ca1d0778e3e6228ff756e7fdaf5f5982000fa2"
+ },
+ "recipe": {
+ "sha256": "1qpq9zbv63ywzk5mlr8x53g3rn37k0mdv6x1l1hcd90gka7vga9v",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.0.1",
+ "deps": []
+ },
+ "password-store": {
+ "fetch": {
+ "tag": "fetchgit",
+ "url": "http://git.zx2c4.com/password-store",
+ "sha256": "f71d0b36570983c35e08b6672c186b5c308b57536a96a747f09665bab794be30",
+ "rev": "1aac79d9617431bbaf218f9a9d270929762d2816"
+ },
+ "recipe": {
+ "sha256": "1jh24737l4hccr1k0b9fnq45ag2dsk84fnfs86hcgsadl94d6kss",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.6.5",
+ "deps": [
+ "dash",
+ "f",
+ "s"
+ ]
+ },
+ "subr+": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/subr+.el",
+ "sha256": "16k141aikvwg5dsw8mfkv222ikjdch0178dm8w58km0mjj7j81wk"
+ },
+ "recipe": {
+ "sha256": "1vrv64768f7rk58mqr4pq1fjyi5n5kfqk90hzrwbvblkkrmilmfs",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": []
+ },
+ "extend-dnd": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "mattfidler",
+ "repo": "extend-dnd",
+ "sha256": "1k2j8szavyq2wy5c0skvs03a88cr9njy7y63b7knh2m92nw4830d",
+ "rev": "a1923d57f8f5e862cc66c189b5e6627bc84a2119"
+ },
+ "recipe": {
+ "sha256": "0rknpvp8yw051pg3blvmjpp3c9a82jw7f10mq67ggbz98w227417",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.5",
+ "deps": []
+ },
+ "ac-haskell-process": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "purcell",
+ "repo": "ac-haskell-process",
+ "sha256": "0m33v9iy3y37sicfmpx7kvmn8v1a8k6cs7d0v9v5k93p4d5ila41",
+ "rev": "0362d4323511107ec70e7165cb612f3ab01b712f"
+ },
+ "recipe": {
+ "sha256": "0kv4z850kv03wiax1flnrp6sgqja25j23l719w7rkr7ck110q8rw",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.7",
+ "deps": [
+ "auto-complete",
+ "haskell-mode"
+ ]
+ },
+ "flx-ido": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "lewang",
+ "repo": "flx",
+ "sha256": "0sjybrcnb2sl33swy3q664vqrparajcl0m455gciiih2j87hwadc",
+ "rev": "7fce6a4cdb65ac1b52e2b409ba548767581ce34c"
+ },
+ "recipe": {
+ "sha256": "00wcwbvfjbcx8kyap7rl1b6nsgqdwjzlpv6al2cdpdd19rm1vgdc",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.6.1",
+ "deps": [
+ "cl-lib",
+ "flx"
+ ]
+ },
+ "helm-open-github": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "syohex",
+ "repo": "emacs-helm-open-github",
+ "sha256": "1hq1nnmgkx0a8sv6g8k4v9f0102qg7jga0hcjnr8lcji51nqrcya",
+ "rev": "95140bbacc66320a032d3cdd9e1c31aeb47eb83d"
+ },
+ "recipe": {
+ "sha256": "121sszwvihbv688nq5lhdclvsjj8759glh42h82r4pcw30lxggxb",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.14",
+ "deps": [
+ "cl-lib",
+ "gh",
+ "helm-core"
+ ]
+ },
+ "nvm": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "rejeep",
+ "repo": "nvm.el",
+ "sha256": "1624jj922l0bbav1v8szdr0lpyx0ng959fg3sspg1j15kgkir8kf",
+ "rev": "d18b13e8275a57ee6c55dc71b671f02a8e6522ad"
+ },
+ "recipe": {
+ "sha256": "03gy7wavc2q02lnr9pmp3l1pn0lzbdq0kwnmg9fvklmq6r6n3x34",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.2.0",
+ "deps": [
+ "dash",
+ "dash-functional",
+ "f",
+ "s"
+ ]
+ },
+ "editorconfig-core": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "editorconfig",
+ "repo": "editorconfig-emacs",
+ "sha256": "1z073j9bf31izj05k0vgpv6iwhx0k4m7ikdxgj4sd99svsv84nv9",
+ "rev": "3d1e4797ea3f5a1bb6d0ec296f04ce05e6e368b4"
+ },
+ "recipe": {
+ "sha256": "18d7byqkxn6lyw3nqsvqs5vyj9alh9wjd2mim44a3zcc9r2j061r",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.6.1",
+ "deps": [
+ "cl-lib",
+ "editorconfig-fnmatch"
+ ]
+ },
+ "imenu-list": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "bmag",
+ "repo": "imenu-list",
+ "sha256": "192i3iaykw5a9fb9xaivfjj2pbziqdnadlrvqbxbl9h5wi52qq9c",
+ "rev": "1324cffd571df5e35113efc57e1cdc8490068f9c"
+ },
+ "recipe": {
+ "sha256": "092fsn7hnbfabcyakbqyk20pk62sr8xrs45aimkv1l91681np98s",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.4",
+ "deps": [
+ "cl-lib"
+ ]
+ },
+ "minor-mode-hack": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/minor-mode-hack.el",
+ "sha256": "0vwvvhzqiad82qvfwygb2arq1mdvh1lj6q2as0a92fg1vc95qcb0"
+ },
+ "recipe": {
+ "sha256": "1f2wy25iphk3hzjy39ls5j04173g7gaq2rdp2grkawfhwx0ld4pj",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": []
+ },
+ "flymake-less": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "purcell",
+ "repo": "flymake-less",
+ "sha256": "0ggvmsjj6p6a7cwr2bzhlcf8ab4v6a2bz5djsscd2ryy570p367z",
+ "rev": "8cbb5e41c8f4b988cee3ef4449cfa9aea3540893"
+ },
+ "recipe": {
+ "sha256": "05k5daphxy94164c73ia7f4l1gv2cmlw8xzs8xnddg7ly22gjhi0",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.3",
+ "deps": [
+ "less-css-mode"
+ ]
+ },
+ "malinka": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "LefterisJP",
+ "repo": "malinka",
+ "sha256": "0hwxwwjzjxv2mmkxmalr2hp3x8apwcyvn2bz4d4yd4wrzcscay97",
+ "rev": "81cf7dd81fbf124ceda31ee963cce8c3616f28f1"
+ },
+ "recipe": {
+ "sha256": "1245mpxsxwnnpdsf0pd28mddgdfhh7x32a2l3sxfq0dyg2xlgvrp",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.3.1",
+ "deps": [
+ "cl-lib",
+ "dash",
+ "f",
+ "projectile",
+ "rtags",
+ "s"
+ ]
+ },
+ "aggressive-indent": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "Malabarba",
+ "repo": "aggressive-indent-mode",
+ "sha256": "0nss26rz8qly0q00iq7i7q4ss3xvs4s5ndjjmfxhybmnb71a8y9k",
+ "rev": "970c5e3bd4519deed8b8b604a5a96269166bf697"
+ },
+ "recipe": {
+ "sha256": "1qi8jbr28gax35siim3hnnkiy8pa2vcrzqzc6axr98wzny46x0i2",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.4.2",
+ "deps": [
+ "cl-lib",
+ "emacs"
+ ]
+ },
+ "helm-pt": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "ralesi",
+ "repo": "helm-pt",
+ "sha256": "0jm6nnnjyd4kmm1knh0mq3xhnw2hvs3linwlynj8yaliqvlv6brv",
+ "rev": "03e35e2bb5b683d79897d07acb57ee67009cc6cd"
+ },
+ "recipe": {
+ "sha256": "1imhy0bsm9aldv0pvf88280qdya01lznxpx5gi5wffhrz17yh4pi",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.2",
+ "deps": [
+ "helm"
+ ]
+ },
+ "subemacs": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "kbauer",
+ "repo": "subemacs",
+ "sha256": "189547d0g9ax0nr221bkdchlfcj60dsy8lgbbrvq3n3xrmlvl362",
+ "rev": "24f0896f1995a3ea42a58b0452d250dcc6802944"
+ },
+ "recipe": {
+ "sha256": "0sqh80jhh3v37l5af7w6k9lqvj39bd91pn6a9rwdlfk389hp90zm",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.0",
+ "deps": []
+ },
+ "magit-find-file": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "bradleywright",
+ "repo": "magit-find-file.el",
+ "sha256": "1jlww053s580d7rlvmr1dl79wxasa0hhh2jnwb1ra353d6h3a73w",
+ "rev": "035da838b1a19e7a5ee135b4ca8475f4e235b61e"
+ },
+ "recipe": {
+ "sha256": "1d5flydyhwhvhlhi541zcnz2b03bi07zrp21bfz5sm069bf2c96b",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "2.1.0",
+ "deps": [
+ "dash",
+ "magit"
+ ]
+ },
+ "awk-it": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/awk-it.el",
+ "sha256": "1r1vbi1r3rdbkyb2naciqwja7hxigjhqfxsfcinnygabsi7fw9aw"
+ },
+ "recipe": {
+ "sha256": "1rnrm9jf9wvfrwyylhj0bfrz9140945lc87lrh21caf7q88fpvkw",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": []
+ },
+ "ace-isearch": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "tam17aki",
+ "repo": "ace-isearch",
+ "sha256": "0233ai62zhsy5yhv72016clygwp2pcg80y6kr4cjm2k1k2wwy7m9",
+ "rev": "7e041d058492c5c35ec70de0e7c5586043e7e5ec"
+ },
+ "recipe": {
+ "sha256": "0n8qf08z9n8c2sp5ks29nxcfks5mil1jj6wq348apda8safk36hm",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.1.4",
+ "deps": [
+ "ace-jump-mode",
+ "avy",
+ "emacs",
+ "helm-swoop"
+ ]
+ },
+ "sparkline": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "woudshoo",
+ "repo": "sparkline",
+ "sha256": "1gmmmkzxxlpz2ml6qk24vndlrbyl55r5cba76jn342zrxvb357ny",
+ "rev": "e44498cf1a58fb165991198fe5104d51c92ea904"
+ },
+ "recipe": {
+ "sha256": "081jzaxjb32nydvr1kmyafxqxi610n0yf8lwz9vldm84famf3g7y",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.0.2",
+ "deps": [
+ "cl-lib"
+ ]
+ },
+ "slime-volleyball": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "fitzsim",
+ "repo": "slime-volleyball",
+ "sha256": "00v4mh04affd8kkw4rn51djpyga2rb8f63mgy86napglqnkz40r3",
+ "rev": "159b5c0f40b109e3854e94b89ec5383854c46ae3"
+ },
+ "recipe": {
+ "sha256": "1dzvj8z3l5l9ixjl3nc3c7zzi23zc2300r7jzw2l3bvg64cfbdg7",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.1",
+ "deps": []
+ },
+ "emms-player-simple-mpv": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "momomo5717",
+ "repo": "emms-player-simple-mpv",
+ "sha256": "15bb8fp2lwr5brfrsjwa47yvja5g2wyaac5a4sh5rn734s64x2sq",
+ "rev": "ae4c0032d4d2d0b069ee147b19f962e6a8a73c79"
+ },
+ "recipe": {
+ "sha256": "15aljprjd74ha7wpzsmv3d873i6fy3x1jwhzm03hvw0sw18m25i1",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.3.0",
+ "deps": [
+ "cl-lib",
+ "emacs",
+ "emms"
+ ]
+ },
+ "ta": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "kuanyui",
+ "repo": "ta.el",
+ "sha256": "09nndx83ws5v2i9x0dzk6l1a0lq29ffzh3y05n0n64nf5j0a7zvk",
+ "rev": "9226afbe7abbefb825844ef3ba4ca15f1934cfc2"
+ },
+ "recipe": {
+ "sha256": "0kn2k4n0xfwsrniaqb36v3rxj2pf2sai3bmjksbn1g2kf5g156ll",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.5",
+ "deps": [
+ "cl-lib",
+ "emacs"
+ ]
+ },
+ "enlive": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "zweifisch",
+ "repo": "enlive",
+ "sha256": "08j6b79vy8ry4ad1abk3hvxjbb4ylrhkvrbrnq1gcikl4h1p2v63",
+ "rev": "60facaf8bc48b660d209551c0ce4d17e5c907ab8"
+ },
+ "recipe": {
+ "sha256": "1dyayk37zik12qfh8zbjmhsch64yqsx3acrlm7hcnavx465hmhnz",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.0.1",
+ "deps": []
+ },
+ "rake": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "asok",
+ "repo": "rake",
+ "sha256": "1q65jj6bghvzhlqmpg61a7vn8izc01wp2fjiqx013zxpg9awvzmq",
+ "rev": "a9e65cb23d3dc700f5b41ff365153ef6a259d4f0"
+ },
+ "recipe": {
+ "sha256": "0cw47g6cjnkh3z4hbwwq1f8f5vrvs84spn06k53bx898brqdh8ns",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.4.0",
+ "deps": [
+ "cl-lib",
+ "dash",
+ "f"
+ ]
+ },
+ "slim-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "slim-template",
+ "repo": "emacs-slim",
+ "sha256": "1cl8amk1kc7a953l1khjms04j40mfkpnbsjz3qa123msgachrsg7",
+ "rev": "fe8abb644b7b9cc0ed1e76d9ca8d6c01edccbdb8"
+ },
+ "recipe": {
+ "sha256": "1hip0r22irr9sah3b65ky71ic508bhqvj9hj95a81qvy1zi9rcac",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.1",
+ "deps": []
+ },
+ "mu4e-maildirs-extension": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "agpchil",
+ "repo": "mu4e-maildirs-extension",
+ "sha256": "1lyd8pcawn106zwlbq6gdq05i2zhry1qh9cdyjiw61nvgbbfi0yx",
+ "rev": "8b384b0bbda46c473dea3ee7dc68c2b3f2548528"
+ },
+ "recipe": {
+ "sha256": "1xz19dxrj1grnl7wy9qglh08xb3dr509232l3xizpkxgqqk8pwbi",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.8",
+ "deps": []
+ },
+ "header2": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/header2.el",
+ "sha256": "04gp3km2d163cw8gqzb02dj3kq23s96ncip5c03whpja2sj9ji6f"
+ },
+ "recipe": {
+ "sha256": "1dg25krx3wxma2l5vb2ji7rpfp17qbrl62jyjpa52cjfsvyp6v06",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": []
+ },
+ "move-dup": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "wyuenho",
+ "repo": "move-dup",
+ "sha256": "01mdy7sps0xryz5gfpl083rv7ixkxs2rkz5yaqjlam2rypdcsyy2",
+ "rev": "4df67072eebac69d6be7619335b03f56f9960235"
+ },
+ "recipe": {
+ "sha256": "0b0lmiisl9yckblwf7619if88qsmbka3bl4qiaqam7fka7psxs7f",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.2.1",
+ "deps": []
+ },
+ "stash": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "vermiculus",
+ "repo": "stash.el",
+ "sha256": "0igqifws73cayvjnhhrsqpy14sr27avymfhaqzrpj76m2fsh6fj4",
+ "rev": "638ae8a4f6d33af54fe77d57c2c0eb1800dd2e19"
+ },
+ "recipe": {
+ "sha256": "116k40ispv7sq3jskwc1lvmhmk3jjz4j967r732s07f5h11vk1z9",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.4.1",
+ "deps": []
+ },
+ "autopair": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "capitaomorte",
+ "repo": "autopair",
+ "sha256": "0g6kd1r0wizamw26bhp5jkvpsd98rcybkfchc622b9v5b89a07nq",
+ "rev": "2d1eb81d12f71248ad305e70cceddf08d4fe2b39"
+ },
+ "recipe": {
+ "sha256": "161qhk8rc1ldj9hpg0k9phka0gflz9vny7gc8rnylk90p6asmr28",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.6.1",
+ "deps": [
+ "cl-lib"
+ ]
+ },
+ "chinese-word-at-point": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "xuchunyang",
+ "repo": "chinese-word-at-point.el",
+ "sha256": "1jsy43avingxxccs0zw2qm5ysx8g76xhhh1mnyypxskl9m60qb4j",
+ "rev": "36a03cce32fe059d2b581cb2e029715c0be81074"
+ },
+ "recipe": {
+ "sha256": "0pjs4ckncv84qrdj0pyibrbiy86f1gmjla9n2cgh10xbc7j9y0c4",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.2.3",
+ "deps": [
+ "cl-lib"
+ ]
+ },
+ "key-seq": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "vlevit",
+ "repo": "key-seq.el",
+ "sha256": "05vpydcgiaya35b62cdjxna9y02vnwzzg6p8jh0dkr9k44h4iy3f",
+ "rev": "e29b083a6427d061638749194fc249ef69ad2cc0"
+ },
+ "recipe": {
+ "sha256": "166k6hl9vvsnnksvhrv5cbhv9bdiclnbfv7qf67q4c1an9xzqi74",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.0.1",
+ "deps": [
+ "key-chord"
+ ]
+ },
+ "ox-pandoc": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "kawabata",
+ "repo": "ox-pandoc",
+ "sha256": "0h49pfl97vl796sm7r62rpv3slj0z5krm4zrqkgz0q6zlyrjay29",
+ "rev": "035f1d60a0139349232c382cfd23a96902b7003d"
+ },
+ "recipe": {
+ "sha256": "0wy6yvwd4vyq6xalkrshnfjjxlh1p24y52z49894nz5fl63b74xc",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.150707",
+ "deps": [
+ "dash",
+ "emacs",
+ "ht",
+ "org"
+ ]
+ },
+ "helm-ghc": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "david-christiansen",
+ "repo": "helm-ghc",
+ "sha256": "00ls9v3jdpz3wka90crd193z3ipwnf1b0slmldn4vb9ivrndh6wn",
+ "rev": "d3603ee18299b789be255297dc42af16dd431869"
+ },
+ "recipe": {
+ "sha256": "1q5ia8sgpflv2hhvw7hjpkfb25vmrjwlrqz1f9qj2qgmki5mix2d",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.1.0",
+ "deps": [
+ "cl-lib",
+ "emacs",
+ "ghc",
+ "helm"
+ ]
+ },
+ "projectile": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "bbatsov",
+ "repo": "projectile",
+ "sha256": "1rl6n6v9f4m7m969frx8b51a4lzfix2bxx6rfcfbh6kzhc00qnxf",
+ "rev": "1159110e83490f3b30d4d39e8c48022d3006900a"
+ },
+ "recipe": {
+ "sha256": "1kf8hql59nwiy13q0p6p6rf5agjvah43f0sflflfqsrxbihshvdn",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.13.0",
+ "deps": [
+ "dash",
+ "pkg-info"
+ ]
+ },
+ "fabric": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "nlamirault",
+ "repo": "fabric.el",
+ "sha256": "0crhkdbxz1ldbrvppi95g005ni5zg99z1271rkrnk5i6cvc4hlq5",
+ "rev": "004934318f63d8cf955022f87b2c33eb97ada280"
+ },
+ "recipe": {
+ "sha256": "1mkblsakdhvi10b67bv3j0jsf7hr8lf9sibmprvx8smqsih7l88m",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.2.0",
+ "deps": []
+ },
+ "sage-shell-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "stakemori",
+ "repo": "sage-shell-mode",
+ "sha256": "0aw95qkql6apyn79la0jbpr0nlixhl9zvi9miry2h5y5pawb3yvf",
+ "rev": "8e659438ff419f7f1fddd1b56fb706dbecf9e469"
+ },
+ "recipe": {
+ "sha256": "18k7yh8rczng0kn2wsawjml70cb5bnc5jr2gj0hini5f7jq449wx",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.0.8.9",
+ "deps": [
+ "cl-lib",
+ "deferred"
+ ]
+ },
+ "flycheck": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "flycheck",
+ "repo": "flycheck",
+ "sha256": "19mnx2zm71qrf7qf3mk5kriv5vgq0nl67lj029n63wqd8jcjb5fi",
+ "rev": "efaf2e3894428fec065ac6ab0b204db66dbdaa85"
+ },
+ "recipe": {
+ "sha256": "045k214dq8bmrai13da6gwdz97a2i998gggxqswqs4g52l1h6hvr",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.25.1",
+ "deps": [
+ "cl-lib",
+ "dash",
+ "emacs",
+ "let-alist",
+ "pkg-info",
+ "seq"
+ ]
+ },
+ "cuda-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "chachi",
+ "repo": "cuda-mode",
+ "sha256": "1y685qfdkjyl7dwyvivlgc2lwp102vy6hvcb9zynw84c49f726sn",
+ "rev": "c8cf7d92b8039cdd0bd525c258ab42f49a0f91cf"
+ },
+ "recipe": {
+ "sha256": "0ip4vax93x72bjrh6prik6ddmrvszpsmgm0fxfz772rp24smc300",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.0.0",
+ "deps": []
+ },
+ "dired+": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/dired+.el",
+ "sha256": "0pgm5pg3z7cbrvs12fwj6g2kxm7qqq0410lsb1kpsdlgixb2yh5q"
+ },
+ "recipe": {
+ "sha256": "1dmp6wcynran03nsa0fd26b9q0zj9wp8ngaafx1i1ybwn2gx32g5",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": []
+ },
+ "mocker": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "sigma",
+ "repo": "mocker.el",
+ "sha256": "1lav7am41v63xgavq8pr88y828jmd1cxd4prjq7jlbxm6nvrwxh2",
+ "rev": "55b078b53ea49e48bd1821d96f0fb86f794fdc6c"
+ },
+ "recipe": {
+ "sha256": "1g90jp1czrrzrmn7n4linby3q4fb4gcflzv2amjv0sdimw1ln1w3",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.3.1",
+ "deps": [
+ "eieio",
+ "el-x"
+ ]
+ },
+ "hide-region": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/hide-region.el",
+ "sha256": "1zxrygpf47bzj6p808r3qhj3dfr3m8brp1xgxs33c7f88rinfval"
+ },
+ "recipe": {
+ "sha256": "0nsc6m3yza658xsxvjz8766vkp71rcm6vwnvcv225r2pr94mq7vm",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": []
+ },
+ "pungi": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "mgrbyte",
+ "repo": "pungi",
+ "sha256": "012lv7hrwlhvins81vw3yjkhdwbpi6g1dx55i101qyrpzv5ifngm",
+ "rev": "41c9f8b7795e083bfd63ba0d06c789c250998723"
+ },
+ "recipe": {
+ "sha256": "1v9fsd764z5wdcips63z53rcipdz7bha4q6s4pnn114jn3a93ls1",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.1",
+ "deps": [
+ "jedi",
+ "pyvenv"
+ ]
+ },
+ "colorsarenice-theme": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "Fanael",
+ "repo": "colorsarenice-theme",
+ "sha256": "18hzm7yzwlfjlbkx46rgdl31p9xyfqnxlvg8337h2bicpks7kjia",
+ "rev": "3cae55d0c7aeda3a8ef731ebc3886b2449ad87e6"
+ },
+ "recipe": {
+ "sha256": "09zlglldjbjr97clwyzyz7c0k8hswclnk2zbkm03nnn9n9yyg2qi",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.0.20",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "browse-kill-ring+": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/browse-kill-ring+.el",
+ "sha256": "0av8fv2xf8b3qs32hxv90pglv9a90z2865rlja21hsyi5isw8vca"
+ },
+ "recipe": {
+ "sha256": "1flw7vmqgsjjvr2zlgz2909gvpq9mhz8qkg6hvsrzwg95f4l548w",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": [
+ "browse-kill-ring"
+ ]
+ },
+ "ace-jump-buffer": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "waymondo",
+ "repo": "ace-jump-buffer",
+ "sha256": "1z82a0lrb61msamqpsy7rxcgs2nfhhckkk4zw0aw49l248p2nrgs",
+ "rev": "41f8bb0744cdf9c219d25b417f2ffbd0883469e7"
+ },
+ "recipe": {
+ "sha256": "0hkxa0ps0v1hwmjafqbnyr6rc4s0w95igk8y3w53asl7f5sj5mpi",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.3.1",
+ "deps": [
+ "ace-jump-mode",
+ "dash"
+ ]
+ },
+ "find-dired+": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/find-dired+.el",
+ "sha256": "1x0zn9kpnvxhgljp4ii4f11hgncj9smdkn64ihih00w7qgg7sif2"
+ },
+ "recipe": {
+ "sha256": "06a6lwx61xindlchh3ps8khhxc6sr7i9d7i60rjw1h07nxmh0fli",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": []
+ },
+ "ac-octave": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "coldnew",
+ "repo": "ac-octave",
+ "sha256": "16f8hvdz6y8nsfj7094yrvw194ag3w1jvz81h287vcgcvmyb7wdf",
+ "rev": "eb6463631a69dfd06fe750c1c155594d11de0590"
+ },
+ "recipe": {
+ "sha256": "1g5s4dk1rcgkjn17jfw6g201pw0vfhqcx1nhigmnizpnzy0man9z",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.4",
+ "deps": [
+ "auto-complete"
+ ]
+ },
+ "ansi": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "rejeep",
+ "repo": "ansi",
+ "sha256": "1hbddxarr40ygvaw4pwaivq2l4f0brszw73w1r50lkjlggb7bl3g",
+ "rev": "a042c5954453bab9a74177e2b78ad17a824caebc"
+ },
+ "recipe": {
+ "sha256": "04n0kvaqq8214prdk20bplqyzlsnlzfzsg23ifkrzjgqjjpdcyi1",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.4.1",
+ "deps": [
+ "dash",
+ "s"
+ ]
+ },
+ "ido-describe-bindings": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "danil",
+ "repo": "ido-describe-bindings",
+ "sha256": "19chkraanp4fbg5a7mrrjycqd87y5z4a65psy5wdhrp30ykhm7iq",
+ "rev": "a4048d5d1a6aad93c0206dbe4f34f4edb21a04d2"
+ },
+ "recipe": {
+ "sha256": "1lsa09h025vd908r9q571iq2ia0zdpnq04mlihb3crpp5v9n9ws2",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.0.5",
+ "deps": [
+ "dash",
+ "ido-vertical-mode"
+ ]
+ },
+ "birds-of-paradise-plus-theme": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "jimeh",
+ "repo": "birds-of-paradise-plus-theme.el",
+ "sha256": "1r3f5d67x257g8kvdbdsl4w3y1dvc1d6s9x8bygbkvyahfi5m5hn",
+ "rev": "ba2c4443388a73f2c5e2de0c24d3106676aeb6fa"
+ },
+ "recipe": {
+ "sha256": "0vdv2siy30kf1qhzrc39sygjk17lwm3ix58pcs3shwkg1y5amj3m",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.1.1",
+ "deps": []
+ },
+ "elixir-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "elixir-lang",
+ "repo": "emacs-elixir",
+ "sha256": "07kgzdla31nc146xya21rn4hyr76h5lyabla8yh4qjsvnknb7cbj",
+ "rev": "bfc95d9d444bf4002d340d37ad30954dd86c0e94"
+ },
+ "recipe": {
+ "sha256": "1dba3jfg210i2rw8qy866396xn2xjgmbcyl006d6fibpr3j4lxaf",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "2.2.8",
+ "deps": [
+ "emacs",
+ "pkg-info"
+ ]
+ },
+ "hookify": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "Silex",
+ "repo": "hookify",
+ "sha256": "1yvz9d5h7npxhsdf6s9fgxpmqk5ixx91iwivbhzcz935gs2886hc",
+ "rev": "e76127230716f7fab6662410c03c3872d17a172b"
+ },
+ "recipe": {
+ "sha256": "0prls539ifk2fsqklcxmbrwmgbm9hya50z486d7sw426lh648qmy",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.2.1",
+ "deps": [
+ "dash",
+ "s"
+ ]
+ },
+ "gntp": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "tekai",
+ "repo": "gntp.el",
+ "sha256": "1nvyjjjydrimpxy4cpg90si7sr8lmldbhlcm2mx8npklp9pn5y3a",
+ "rev": "767571135e2c0985944017dc59b0be79af222ef5"
+ },
+ "recipe": {
+ "sha256": "1ywj3p082g54dcpy8q4jnkqfr12npikx8yz14r0njxdlr0janh4f",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.1",
+ "deps": []
+ },
+ "github-browse-file": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "osener",
+ "repo": "github-browse-file",
+ "sha256": "07vgnmfn0kbg3h3vhf3xk443yi1b55761x881xlmw9sr9nraa578",
+ "rev": "fa5cc00a40869430fb44596792961a4cddf9c265"
+ },
+ "recipe": {
+ "sha256": "03xvgxlw7wmfby898din7dfcg87ihahkhlav1n7qklw6qi7skjcr",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.5.0",
+ "deps": [
+ "cl-lib"
+ ]
+ },
+ "diminish": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "myrjola",
+ "repo": "diminish.el",
+ "sha256": "0qpgfgp8hrzz4vdifxq8h25n0a0jlzgf7aa1fpy6r0080v5rqbb6",
+ "rev": "0211de96b7cfba9c9dc8d2d392dbd4ccdb22bc65"
+ },
+ "recipe": {
+ "sha256": "1h6a31jllypk47akjflz89xk6h47na96pim17d6g4rpqcafc2k43",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.45",
+ "deps": []
+ },
+ "easy-kill-extras": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "knu",
+ "repo": "easy-kill-extras.el",
+ "sha256": "18fdlxz9k961k8wafdw0gq0y514bvrfvx6qc1lmm4pk3gdcfbbi0",
+ "rev": "242844bc95b9015396405d84c4335338037968c3"
+ },
+ "recipe": {
+ "sha256": "0xzlzv57nvrc142saydwfib51fyqcdzjccc1hj6xvgcdbwadlnjy",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.9.4",
+ "deps": [
+ "easy-kill"
+ ]
+ },
+ "projekt": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "tekai",
+ "repo": "projekt",
+ "sha256": "1rw55w2fpb3rw7j136kclkhppz21f7d7di4cvlv7zj5zpdl5zz88",
+ "rev": "107232c191375b59d065354470d0af83062e2a4c"
+ },
+ "recipe": {
+ "sha256": "1bhb24701flihl54w8xrj6yxhynpq4dk0fp5ciac7k28n4930lw8",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.1",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "naked": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/naked.el",
+ "sha256": "0fr7l8ab6wmffyjs7vc38x6ca37w8c00fjhi3br3g7cgi0bna0wi"
+ },
+ "recipe": {
+ "sha256": "06p6dzhn34dva3677mrvwq2a2x3bhw7f486y654hszla7i75pilq",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": []
+ },
+ "ranger": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "ralesi",
+ "repo": "ranger.el",
+ "sha256": "0fkj89p0rb0r472p1rk8xpx8c74pg968pc2mmw3838y4fpc8i198",
+ "rev": "4b778da7aafe1dc4077a3c891ae918eae929fae6"
+ },
+ "recipe": {
+ "sha256": "14g4r4iaz0nzfsklslrswsik670pvfd0605xfjghvpngn2a8ych4",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.9.7",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "yascroll": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "m2ym",
+ "repo": "yascroll-el",
+ "sha256": "007837w6gd7k253h7g2in6l3ihcbwv733yiffs26pnymgk21xdqz",
+ "rev": "0a8b531b3a3c8afe7235c8c212e08bfe2021a629"
+ },
+ "recipe": {
+ "sha256": "11g7wn4hgdwnx3n7ra0sh8gk6rykwvrg9g2cihvcv7mjbqgcv53f",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.1",
+ "deps": []
+ },
+ "date-at-point": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "alezost",
+ "repo": "date-at-point.el",
+ "sha256": "06aprbhhxb6bbzmf0r5yq2ry6x7708vp4d94ja3ir6zcwc96wn0k",
+ "rev": "662f8350a83311503dc0aae47a28752f9f1270c9"
+ },
+ "recipe": {
+ "sha256": "0r26df6px6q5jlxj29nhl3qbp6kzy9hs5vd72kpiirgn4wlmagp0",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.1",
+ "deps": []
+ },
+ "flycheck-ledger": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "purcell",
+ "repo": "flycheck-ledger",
+ "sha256": "1pdssw5k88ym5fczllfjv26sp4brlyrywnlzq5baha5pq91h9cb6",
+ "rev": "9401b6c83f60bfd29edfc62fee76f75e17a3a41e"
+ },
+ "recipe": {
+ "sha256": "0807pd2km4r60wgd6jakscbx63ab22d9kvf1cml0ad8wynsap7jl",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.4",
+ "deps": [
+ "flycheck"
+ ]
+ },
+ "killer": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "tarsius",
+ "repo": "killer",
+ "sha256": "0imylcaiwpzvvb3g8kpsna1vk7v7bwdjfcsa98i41m1rv9yla86l",
+ "rev": "52256640aebbb8c25f8527843c2425b848031cd8"
+ },
+ "recipe": {
+ "sha256": "10z4vqwrpss7mk0gq8xdsbsl0qibpp7s1g0l8wlmrsgn6kjkr2ma",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.2.2",
+ "deps": []
+ },
+ "flycheck-tip": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "yuutayamada",
+ "repo": "flycheck-tip",
+ "sha256": "0azjr5mfb3hnb66m1b2319i035mn5i9qz24y7fj5crhnc9vp8w3s",
+ "rev": "0bfddf52ae4ec48d970324f8336a5d62986bbc9e"
+ },
+ "recipe": {
+ "sha256": "0zab1zknrnsw5xh5pwzzcpz7p40bbywkf9zx99sgsd6b5j1jz656",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.5.0",
+ "deps": [
+ "emacs",
+ "flycheck",
+ "popup"
+ ]
+ },
+ "tablist": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "politza",
+ "repo": "tablist",
+ "sha256": "0gy9hxm7bca0l1hfy2pzn86avpifrz3bs8xzpicj4kxw5wi4ygns",
+ "rev": "ef38312867bc0268b1584dd890b1c420bb77ec11"
+ },
+ "recipe": {
+ "sha256": "0c10g86xjhzpmc2sqjmzcmi393qskyw6d9bydqzjk3ffjzklm45p",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.70",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "iedit": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "victorhge",
+ "repo": "iedit",
+ "sha256": "06qv95bgcb6n3zcjs2i1q80v9040z7m9pb9xbhxmqzcx68vpbpdm",
+ "rev": "b95c35107a429d63b99f888b52eb0f74105d0da0"
+ },
+ "recipe": {
+ "sha256": "02gjshvkcvyr58yf6vlg3s2pzls5sd54xpxggdmqajfg8xmpkq04",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.9.9",
+ "deps": []
+ },
+ "term-alert": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "CallumCameron",
+ "repo": "term-alert",
+ "sha256": "1d1hrnxhi7h5d5i4198hx5lj7fbc280lpkxmk2nb8z6j7z0aki7g",
+ "rev": "879ea638120639299aae602f06c46d9c27312ff1"
+ },
+ "recipe": {
+ "sha256": "0x4rc1y311ivaj6mlks1j8sgzrrwqn8vx171vw7s1kgf1qzk826n",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.0",
+ "deps": [
+ "alert",
+ "term-cmd"
+ ]
+ },
+ "org-vcard": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "flexibeast",
+ "repo": "org-vcard",
+ "sha256": "1qf4pqsg12y1qx7di0y5dp0f4slyp69h2q6y21hldzknhwxx4yy4",
+ "rev": "5c4e17c166fb0406d5dfdc8876b0e182ba7af8fd"
+ },
+ "recipe": {
+ "sha256": "0l6azshvzl1wws582njqr3qx4h73gwrdqwa3jcic1qbs9hg2l4yl",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.1.0",
+ "deps": []
+ },
+ "eide": {
+ "fetch": {
+ "tag": "fetchgit",
+ "url": "git://git.tuxfamily.org/gitroot/eide/emacs-ide.git",
+ "sha256": "3f41ade3332a3f1dc5cfb0b33077396feb7b683b2cf2c235b7a5f07f0b2e3271",
+ "rev": "524494fd2b23217c6807b30b43bb95b5724f809e"
+ },
+ "recipe": {
+ "sha256": "16cf32n2l4wy1px7fm6x4vxx7pbqdp7zh2jn3bymg0b40i2321sz",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "2.1.1",
+ "deps": []
+ },
+ "simple+": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/simple+.el",
+ "sha256": "0y1c87288cj7kwdq5ww6rvd4g4afssw22b7d0wa5ihl85nnf21kv"
+ },
+ "recipe": {
+ "sha256": "12fsgjk53fq2316j8nm6wvdckpyg9hq3v65j5c52i0g0cwmx62ra",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": [
+ "strings"
+ ]
+ },
+ "weather-metno": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "ruediger",
+ "repo": "weather-metno-el",
+ "sha256": "0qx92jqzsimjk92pql2h8pzhq66mqijwqgjqwp7rmq5b6k0nvx1z",
+ "rev": "b59680c1ab908b32513954034ba894dfb8564dd8"
+ },
+ "recipe": {
+ "sha256": "0h7p4l8y75h27pgk45f0mk3gjd43jk8q97gjf85a9b0afd63d3f6",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.1.0",
+ "deps": [
+ "cl-lib",
+ "emacs"
+ ]
+ },
+ "gitconfig": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "tonini",
+ "repo": "gitconfig.el",
+ "sha256": "0j0w6ywhiapmx7dk20yw3zgf8803kmccnjsr664am3g85kbb644v",
+ "rev": "6c313a39e20702ddcebc12d146f69db1ce668901"
+ },
+ "recipe": {
+ "sha256": "126znl1c4vwgskj7ka9id8v2bdrdn5nkyx3mmc6cz9ylc27ainm7",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.0.0",
+ "deps": []
+ },
+ "auth-password-store": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "DamienCassou",
+ "repo": "auth-password-store",
+ "sha256": "0gi65n1np63zi2ylc4y1licwvk97jl92s1v98fv5y61kppi1d8sq",
+ "rev": "d7fc1f026c3f43190cacedfa6eff8da916e607f5"
+ },
+ "recipe": {
+ "sha256": "118ll12dhhxmlsp2mxmy5cd91166a1qsk406yhap5zw1qvyg58w5",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.0.3",
+ "deps": [
+ "cl-lib",
+ "emacs",
+ "password-store",
+ "seq"
+ ]
+ },
+ "cpputils-cmake": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "redguardtoo",
+ "repo": "cpputils-cmake",
+ "sha256": "03nzbrvvs31xgaqhxmrj9bypywsg42q06k4z4z1fpjssg9az0j4p",
+ "rev": "d11e5496a0bf885900e7d0d004decc66f95dda3f"
+ },
+ "recipe": {
+ "sha256": "0fswmmmrjv897n51nidmn8gs8yp00595g35vwjafsq6rzfg58j60",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.5.2",
+ "deps": []
+ },
+ "anzu": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "syohex",
+ "repo": "emacs-anzu",
+ "sha256": "1d2laybz1igrr9nnkmfsnrvsjw7qmrgby4wnrxprins9gq263lra",
+ "rev": "6fded24b366efc4cf27166104c1928f7d1fedaa7"
+ },
+ "recipe": {
+ "sha256": "0i2ia0jisj31vc2pjx9bhv8jccbp24q7c406x3nhh9hxjzs1f41i",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.59",
+ "deps": [
+ "cl-lib",
+ "emacs"
+ ]
+ },
+ "format-sql": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "paetzke",
+ "repo": "format-sql.el",
+ "sha256": "0mikksamljps1czacgqavlnzzhgs8s3f8q4jza6v3csf8kgp5zd0",
+ "rev": "97f475c245cd6c81a72a265678e2087cee66ac7b"
+ },
+ "recipe": {
+ "sha256": "0684xqzs933vj9d3n3lv7afk4gii41kaqykbb05cribaswapsanj",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.4",
+ "deps": []
+ },
+ "writegood-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "bnbeckwith",
+ "repo": "writegood-mode",
+ "sha256": "1nnjn1r669hvvzfycllwap4w04m8rfsk4nzcg8057m1f263kj31b",
+ "rev": "4302169c1563cab9319745083f9b9a7f5f4af0bd"
+ },
+ "recipe": {
+ "sha256": "1lxammisaj04g5vr5lwms64ywf39w8knrq72x4i94wwzwx5ywi1d",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "2.0.2",
+ "deps": []
+ },
+ "simpleclip": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "rolandwalker",
+ "repo": "simpleclip",
+ "sha256": "0v0vmkix9f0hb2183irr6xra8mwi47g6rn843sas7jy2ycaqd91v",
+ "rev": "eba19a21da2e4d1e11abdc158f72d6513afaa669"
+ },
+ "recipe": {
+ "sha256": "07qkfwlg8vw5kb097qbsv082hxir047q2bcvc8scbak2dr6pl12s",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.0.0",
+ "deps": []
+ },
+ "pallet": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "rdallasgray",
+ "repo": "pallet",
+ "sha256": "03mlg6dmpjw8fq2s3c4gpqj20kjhzldz3m51bf6s0mxq9bclx2xw",
+ "rev": "0e1ae11e1ebfe644cbf832df62ac2dbf6ecd0501"
+ },
+ "recipe": {
+ "sha256": "0q50cdwnn2w1n5h4bappncjjyi5yaixxannwgy23fngdrz1mxwd7",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.9.2",
+ "deps": [
+ "cask",
+ "dash",
+ "f",
+ "s"
+ ]
+ },
+ "org-sync": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "arbox",
+ "repo": "org-sync",
+ "sha256": "0zx9gpvm5gy9k45lbhaks9s935id727lszsh40gmpdp5zxf3rjk1",
+ "rev": "8c65dceaa2f3d436f83ed591916f22556a6e7f91"
+ },
+ "recipe": {
+ "sha256": "0n8fz2d1vg9r8dszgasbnb6pgaxr2i8mqrp953prf1nhmfpjpxad",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.3.0",
+ "deps": [
+ "cl-lib",
+ "emacs",
+ "org"
+ ]
+ },
+ "rcirc-styles": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "aaron-em",
+ "repo": "rcirc-styles.el",
+ "sha256": "1y4gmrayw9aq1w8c98mpl3zlr9mc2wr2mmcs2pyhcrkncfazmxvn",
+ "rev": "37cc85b6f3608db08b59d158d87da544b1a5a41e"
+ },
+ "recipe": {
+ "sha256": "01dxhnzsnljig769dk9axdi970b3lw2s6p1z3ljf29qlb5j4548r",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.1",
+ "deps": [
+ "cl-lib"
+ ]
+ },
+ "key-chord": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/key-chord.el",
+ "sha256": "03m44pqggfrd53nh9dvpdjgm0rvca34qxmd30hr33hzprzjambxg"
+ },
+ "recipe": {
+ "sha256": "0cr9lx1pvr0qc762nn5pbh8w93dx1hh1zzf806cag2b9pgk6d4an",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": []
+ },
+ "yatemplate": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "mineo",
+ "repo": "yatemplate",
+ "sha256": "1yplaj7pry43qps8hvqxj9983ah4jvaiq94l171a7f8qi28386s8",
+ "rev": "a49a218b6fcfbbf6e51021be78aee6d3b220e3f6"
+ },
+ "recipe": {
+ "sha256": "05gd9sxdiqpw2p1kdagwgxd94wiw1fmmcsp9v4p74i9sqmf6qn6q",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.0",
+ "deps": [
+ "yasnippet"
+ ]
+ },
+ "nginx-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "ajc",
+ "repo": "nginx-mode",
+ "sha256": "08bpyk0brx0x2l0y8hn8zpkaxb2ndmxz22kzxxypj6hdz303wf38",
+ "rev": "8a296e30b01adbc40d1aa9ccde369a972ac5ceab"
+ },
+ "recipe": {
+ "sha256": "07k17m64zhv6gik8v4n73d8l1k6fsp4qp8cl94r384ny0187y65c",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.1.4",
+ "deps": []
+ },
+ "emoji-fontset": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "zonuexe",
+ "repo": "emoji-fontset.el",
+ "sha256": "0qi7p1grann3mhaq8kc0yc27cp9fm983g2gaqddljchn7lmgagrr",
+ "rev": "3b8c2204284b95934383836b5b36efeefb65663b"
+ },
+ "recipe": {
+ "sha256": "19affsvlm1rzrzdh1k6xsv79icdkzx4izxivrd2ia6y2wcg9wc5d",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.1.0",
+ "deps": []
+ },
+ "ergoemacs-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "ergoemacs",
+ "repo": "ergoemacs-mode",
+ "sha256": "19m6chwc2awbsk5z03q1yhq84m481pff2609a8bxymcvm6yaamvf",
+ "rev": "295ce7a4a5341d9e144a06e91befeebfac1239d9"
+ },
+ "recipe": {
+ "sha256": "0h99m0n3q41lw5fm33pc1405lrxyc8rzghnc6c7j4a6gr1d82s62",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "5.14.7.3.1",
+ "deps": [
+ "emacs",
+ "undo-tree"
+ ]
+ },
+ "cyphejor": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "mrkkrp",
+ "repo": "cyphejor",
+ "sha256": "1vkwm1n0amf0y0jdyvqskp00b6aijqhd7wclzkzrq7glrvj2z1xw",
+ "rev": "1025d82a9abaca132f5855e72d56c0c2ccc0eef4"
+ },
+ "recipe": {
+ "sha256": "18l5km4xm5j3vv19k3fxs8i3rg4qnhrvx7b62vmyfcqmpiasrh6g",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.1.0",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "guide-key-tip": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "aki2o",
+ "repo": "guide-key-tip",
+ "sha256": "040mcfhj2gggp8w1pgip7rxb1bnb23rxlm02wl6x1qv5i0q7g5x3",
+ "rev": "e08b2585228529aeaae5e0ae0948f898e83a6200"
+ },
+ "recipe": {
+ "sha256": "0h2vkkbxq361dkn6irm1v19qj7bkhxcjljiksd5wwlq5zsq6bd06",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.0.1",
+ "deps": [
+ "guide-key",
+ "pos-tip"
+ ]
+ },
+ "apache-mode": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/apache-mode.el",
+ "sha256": "1jndhcjvj6s1clmyyphl5ss5267c7b5a58fz8gbp1ffk1d9ylfik"
+ },
+ "recipe": {
+ "sha256": "1a1pj3bk0gplfx217yd6qdn7qrhfbkx2bhkk33k0gq5sia6rzs44",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": []
+ },
+ "ac-racer": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "syohex",
+ "repo": "emacs-ac-racer",
+ "sha256": "0g7xbfsfqpmcay56y8xbmif52ccz430s3rjxf5bgl9ahkk7zgkzl",
+ "rev": "2708b0a49afc89fb99a6d74a016cff6b94138ed0"
+ },
+ "recipe": {
+ "sha256": "1vkvh8y3ckvzvqxj4i2k6jqri94121wbfjziybli74qba8dca4yp",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.01",
+ "deps": [
+ "auto-complete",
+ "cl-lib",
+ "racer"
+ ]
+ },
+ "nemerle": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "rsdn",
+ "repo": "nemerle",
+ "sha256": "19xxg4ya6vndk2ljdnl284zs8qf9dkq4ghr7pmsclp9n7zh46v48",
+ "rev": "556270ce8b97668a65e9ec20a05f78c3dffeac60"
+ },
+ "recipe": {
+ "sha256": "0698hbgk80w7wp0ssx9pl13aapm7rc6l3y2zydfkyqdfwy5y71v6",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.2",
+ "deps": []
+ },
+ "haskell-emacs": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "knupfer",
+ "repo": "haskell-emacs",
+ "sha256": "1qgqsy7wnqyzkc3b0wixxb8mapmgpi36dignvf8w2raw9ma3q2n0",
+ "rev": "f242ac4d0312aee5d162be82ae14b7154bb0db19"
+ },
+ "recipe": {
+ "sha256": "1wkh7qws35c32hha0p9rpjz5pls2844920nh919lvp2wmq9l6jd6",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "3.1.2",
+ "deps": []
+ },
+ "terraform-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "syohex",
+ "repo": "emacs-terraform-mode",
+ "sha256": "0jv047dhvbfjyw6ca73gjdrqb1rf2vykvdyrp9581als8n8xyy0y",
+ "rev": "86e661cfcdc56677d7f4935a187ed72d208b9140"
+ },
+ "recipe": {
+ "sha256": "1m3s390mn4pba7zk17xfk045dqr4rrpv5gw63jm18fyqipsi6scn",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.03",
+ "deps": [
+ "cl-lib"
+ ]
+ },
+ "elpa-audit": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "purcell",
+ "repo": "elpa-audit",
+ "sha256": "1q4krfrc2dy0vr7q148msfpkcwj55mlsrn4n5xjnya4xj0134ib7",
+ "rev": "a7a1806278c73ea6cb6d235714e7bc8088971df5"
+ },
+ "recipe": {
+ "sha256": "0l8har14zrlh9kdkh9vlmkmzg49vb0r8j1wnznryaidalvk84a52",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.4",
+ "deps": []
+ },
+ "ruby-block": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/ruby-block.el",
+ "sha256": "0c4vy9xsw44g6q9nc8aaav5avgp34h24mvgcnww468afiimivdcq"
+ },
+ "recipe": {
+ "sha256": "0jfimjq1xpwxkxya452kp27h0fdiy87aj713w3zsm04k7l6i12hm",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": []
+ },
+ "inline-crypt": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "Sodel-the-Vociferous",
+ "repo": "inline-crypt-el",
+ "sha256": "0jipds844432a8m4d5gxbbkk2h1rsq9fg748g6bxy2q066kyzfz6",
+ "rev": "497ce9dc29a8ccac0b6dd6854f5d120514350282"
+ },
+ "recipe": {
+ "sha256": "04mcyyqa9h6g6wrzphzqalpqxsndmzxpavlpdc24z4a2c5s3yz8n",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.1.4",
+ "deps": []
+ },
+ "fsharp-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "rneatherway",
+ "repo": "emacs-fsharp-mode-bin",
+ "sha256": "133fb08j6z09zpjqcr69yvx9csdzwcnfmnkwk8g4dw2yllc94gz3",
+ "rev": "21ec2209cf0aa33f6046735e2455fe58490b7406"
+ },
+ "recipe": {
+ "sha256": "07pkj30cawh0diqhrp3jkshgsd0i3y34rdnjb4af8mr7dsbsxb6z",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.7.1",
+ "deps": [
+ "auto-complete",
+ "dash",
+ "popup",
+ "pos-tip",
+ "s"
+ ]
+ },
+ "mmm-mako": {
+ "fetch": {
+ "tag": "fetchhg",
+ "url": "https://bitbucket.com/pjenvey/mmm-mako",
+ "sha256": "0rpp748ym79sxccp9pyrwri14m7624zzb80srfgjfdpysrrs0jrr",
+ "rev": "5c9ff92137b5"
+ },
+ "recipe": {
+ "sha256": "0a4af5q9wxafrid8visp30cz6073ig0c961b78vmmgqrwvvxd3kn",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.1",
+ "deps": [
+ "mmm-mode"
+ ]
+ },
+ "auto-complete-pcmp": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "aki2o",
+ "repo": "auto-complete-pcmp",
+ "sha256": "1hf2f903hy9afahrgy2fx9smgn631drs6733188zgqi3nkyizj26",
+ "rev": "2595d3dab1ef3549271ca922f212928e9d830eec"
+ },
+ "recipe": {
+ "sha256": "1mpgkwj8jwpvxphlm6iaprwjrldmihbgg97jav0fbm1kjnm4azna",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.0.2",
+ "deps": [
+ "auto-complete",
+ "log4e",
+ "yaxception"
+ ]
+ },
+ "macrostep": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "joddie",
+ "repo": "macrostep",
+ "sha256": "0dkigxa39f3cmndxw79mgadwsj7w3bphns6l2hzhv6w0wdllpifp",
+ "rev": "8950313a4e6e3e4bc1d9b0ce4ad4e3bf2f3eb73a"
+ },
+ "recipe": {
+ "sha256": "1wjibxbdsp5qfhq8xy0mcf3ms0q74qhdrhqndprn6jh3kcn5q63c",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.8",
+ "deps": []
+ },
+ "keydef": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "emacsorphanage",
+ "repo": "keydef",
+ "sha256": "0dkc51bmix4b8czs2wg6vz8vk32qlll1b9fjmx6xshrxm85cyhvv",
+ "rev": "dff2be9f58d12d8c6a490ad0c1b2b10b55528dc0"
+ },
+ "recipe": {
+ "sha256": "0yb2vgj7abyg8j7qmv74nsanv50lf350q1m58rjv8wm31yykg992",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.15",
+ "deps": []
+ },
+ "flymake-coffee": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "purcell",
+ "repo": "flymake-coffee",
+ "sha256": "1svj5n7mmzhq03azlv4n33rz0nyqb00qr8ihdbc8hh2xnp63j5rc",
+ "rev": "d4ef325255ea36d1dd622f29284fe72c3fc9abc0"
+ },
+ "recipe": {
+ "sha256": "1aig1d4fgjdg31vrg8k43z5hbqiydgfvxi45p1695s3kbdm8pr2d",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.12",
+ "deps": [
+ "flymake-easy"
+ ]
+ },
+ "magit-svn": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "magit",
+ "repo": "magit-svn",
+ "sha256": "1g8zq0s38di96wlhljp370kyj4a0ir1z3vb94k66v2m5nj83ap68",
+ "rev": "c6222981d4aae088d658cce5e58a14efea8590d6"
+ },
+ "recipe": {
+ "sha256": "02n732z06f0bhxqkxzlvm36bpqr40pas09zbzpfdk4pb6f9f80s0",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "2.1.1",
+ "deps": [
+ "emacs",
+ "magit"
+ ]
+ },
+ "hl-defined": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/hl-defined.el",
+ "sha256": "19pvwdkw833c84j9ynn2x8s8lv1bi98gkkmppn01v08yyzi3kr7y"
+ },
+ "recipe": {
+ "sha256": "1y7vbhvpwxz70kja5hfm4i57mdd1cv43m4y9fr978y3nk265p8xx",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": []
+ },
+ "diffview": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "mgalgs",
+ "repo": "diffview-mode",
+ "sha256": "1ci2gmyl0i736b2sxh77fyg4hs2pkn6rn9z7v2hzv6xlgqd6j3z6",
+ "rev": "471dc36af93e68849bf2da0db991e186283b3546"
+ },
+ "recipe": {
+ "sha256": "0vlzmykvxjwjww313brl1nr13kz41jypsk0s3l8q3rbsnkpfic5k",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.0",
+ "deps": []
+ },
+ "tree-mode": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/tree-mode.el",
+ "sha256": "0hffnzvzbvmzf23z9z7n7y53l5i7kza9hgfl39qqcnw4njg48llx"
+ },
+ "recipe": {
+ "sha256": "0xwyhlc5lagj46nd70l81rvb43hs08pic96grk62zknig8354c24",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": []
+ },
+ "helm-cscope": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "alpha22jp",
+ "repo": "helm-cscope.el",
+ "sha256": "0xnqkc4z22m41v5lgf87dd8xc4gmf932zbnbdhf9xic1gal1779c",
+ "rev": "b82db54071bd2d1c77db2e648f8b4e61b1abe288"
+ },
+ "recipe": {
+ "sha256": "13a76wc1ia4c0v701dxqc9ycbb43d5k09m5pfsvs8mccisfzk9y4",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.1.1",
+ "deps": [
+ "cl-lib",
+ "emacs",
+ "helm",
+ "xcscope"
+ ]
+ },
+ "cil-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "ForNeVeR",
+ "repo": "cil-mode",
+ "sha256": "1w0ya0446rqsg1j59fd1mp4wavv2f3h1k3mw9svm5glymdirw4d1",
+ "rev": "1cacd8bca125dbdeb97fdf156e32c2b74bac2186"
+ },
+ "recipe": {
+ "sha256": "1h18r086bqspyn5n252yzw8x2zgyaqzdd8pbcf5gqlh1w8kapq4y",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.3",
+ "deps": []
+ },
+ "babel": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "juergenhoetzel",
+ "repo": "babel",
+ "sha256": "0px1xggk6qyrwkma1p3d7b4z2id2gbrsxkliw3nwc1q4zndg1zr7",
+ "rev": "65b55ad89017c9b3a1c8c241ac4b4541eabdaf5f"
+ },
+ "recipe": {
+ "sha256": "0sdpp4iym61ni32zv75n48ylj4jib8ca6n9hyqwj1b7nqg76mm1c",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.4",
+ "deps": []
+ },
+ "hide-lines": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/hide-lines.el",
+ "sha256": "1q87yp1pr62cza3pqimqd09a39yyij4c7pncdww84zz7cii9qrn2"
+ },
+ "recipe": {
+ "sha256": "146sgvd88w20rqvd8y8kc76cb1nqk6dvqsz9rgl4rcrf0xfqvp7q",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": []
+ },
+ "helm-firefox": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "emacs-helm",
+ "repo": "helm-firefox",
+ "sha256": "0xzwnfkz22ljgwfb1lwsfpdj1nhhp1w9f7hsrbqsg2c16rvmkqj4",
+ "rev": "8be9312e8751dce73c7cdbd33a525bbbbff1736f"
+ },
+ "recipe": {
+ "sha256": "0677nj0zsk11vvp3q3xl9nk8dhz3ki9yl3kfb57wgnmprp109wgs",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.0",
+ "deps": [
+ "cl-lib",
+ "emacs",
+ "helm"
+ ]
+ },
+ "engine-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "hrs",
+ "repo": "engine-mode",
+ "sha256": "1dsa3r39ip20ddbw0m9vq8z3r4ahrxvb37adyqi4mbdgyr6fq6sw",
+ "rev": "9e8b10b029f63bc0399f8975a28247eaa78dfcbc"
+ },
+ "recipe": {
+ "sha256": "1gg7i93163m7k7lr3pnal1svymnhzwrfpfcdc0798d7ybv26gg8c",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.0.0",
+ "deps": []
+ },
+ "textmate": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "defunkt",
+ "repo": "textmate.el",
+ "sha256": "1a0fzn66gv421by0x6wj3z6bvzv274a9p8c2aaax0dskncl5lgk1",
+ "rev": "484845493a3c9b570799aea5195a5435a5a01b76"
+ },
+ "recipe": {
+ "sha256": "119w944pwarpqzcr9vys17svy1rkfs9hiln8903q9ff4lnjkpf1v",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1",
+ "deps": []
+ },
+ "flycheck-clojure": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "clojure-emacs",
+ "repo": "squiggly-clojure",
+ "sha256": "1i824iyjsg4d786kx5chsb64wlqd8vn2vsrhq6rmdx2x3gzdfcsx",
+ "rev": "9e07fd2526ab6e2c4db7d7d6b8c9e44be6e90298"
+ },
+ "recipe": {
+ "sha256": "1b20gcs6fvq9pm4nl2qwsf34sg6wxngdql921q2pyh5n1xsxhm28",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.1.3",
+ "deps": [
+ "cider",
+ "emacs",
+ "flycheck",
+ "let-alist"
+ ]
+ },
+ "modeline-char": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/modeline-char.el",
+ "sha256": "0z3izd0wvnqh3r8535rzxi0xab6hz46njw4m24nl6xps2n7fcwmi"
+ },
+ "recipe": {
+ "sha256": "1cb6pm69db0jbksmc4mkawf643i74is9v7ka34pv3mb21nj095qp",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": []
+ },
+ "el-autoyas": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "mattfidler",
+ "repo": "el-autoyas.el",
+ "sha256": "0dbp2zz993cm7mrd58c4iflbzqwg50wzgn2cpwfivk14w1mznh4n",
+ "rev": "bde0251ecb504f585dfa27c205c8e312655310cc"
+ },
+ "recipe": {
+ "sha256": "0hh5j79f3z82nmb3kqry8k8lgc1qswk6ni3g9jg60pasc3wkbh6c",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.5",
+ "deps": []
+ },
+ "system-specific-settings": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "DarwinAwardWinner",
+ "repo": "emacs-system-specific-settings",
+ "sha256": "1hixilnnybv2v3p1wpn7a0ybwah17grawszs3jycsjgzahpgckv7",
+ "rev": "0050d85b2175095aa5ecf580a2fe43c069b0eef3"
+ },
+ "recipe": {
+ "sha256": "1ydmxi8aw2lf78wv4m39yswbqkmcadqg0wmzg9s8b5h9bxxwvppp",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.2",
+ "deps": []
+ },
+ "haskell-emacs-base": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "knupfer",
+ "repo": "haskell-emacs",
+ "sha256": "1qgqsy7wnqyzkc3b0wixxb8mapmgpi36dignvf8w2raw9ma3q2n0",
+ "rev": "f242ac4d0312aee5d162be82ae14b7154bb0db19"
+ },
+ "recipe": {
+ "sha256": "1fwkds6qyhbxxdgxfzmgd7dlcxr08ynrrg5jdp9r7f924pd536vb",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "3.1.2",
+ "deps": [
+ "haskell-emacs"
+ ]
+ },
+ "windata": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/windata.el",
+ "sha256": "0dcbnqcqw7jzwwdn0rxxlixga1zw1x3a2zbpxvd90xp7zig4f0yz"
+ },
+ "recipe": {
+ "sha256": "0xq51rdanq5as6kfyi97hsqmig5g35w7xv8c96bhzyflranw7jw5",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": []
+ },
+ "ert-async": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "rejeep",
+ "repo": "ert-async.el",
+ "sha256": "0hn9i405nfhjd1h9vnwj43nxbbz00khrwkjq0acfyxjaz1shfac9",
+ "rev": "f64a7ed5b0d2900c9a3d8cc33294bf8a79bc8526"
+ },
+ "recipe": {
+ "sha256": "004798ckri5j72j0xvzkyciss1iz4lw9gya2749hkjxlamg14cn5",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.1.2",
+ "deps": []
+ },
+ "textmate-to-yas": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "mattfidler",
+ "repo": "textmate-to-yas.el",
+ "sha256": "0fjapb7naysf34g4ac5gsa90b2s2ss7qgpyd9mfv3mdqrsp2dyw7",
+ "rev": "8805e5159329e1b74629b7b584373fc446f57d31"
+ },
+ "recipe": {
+ "sha256": "04agz4a41h0givfdw88qjd3c7pd418qyigsij4la5f37j5rh338l",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.21",
+ "deps": []
+ },
+ "dracula-theme": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "zenorocha",
+ "repo": "dracula-theme",
+ "sha256": "1x7hyj5qi9f222zwhwjqr98zzcvqjqfwxlglph8nsbadkv4s8c3v",
+ "rev": "ee065fed126eecdfe33a1a578d9f1e20687d2f3a"
+ },
+ "recipe": {
+ "sha256": "0ayv00wvajia8kbfrqkrkpb3qp3k70qcnqkav7am16p5kbvzp10r",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.2.0",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "elixir-yasnippets": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "hisea",
+ "repo": "elixir-yasnippets",
+ "sha256": "0dx5h3sfccc2bp1jxnqqki95x5hp1skw8n5n4lnh703yjga5gkrz",
+ "rev": "6b55c88ce483932f226b6bca0212b589d1d393ea"
+ },
+ "recipe": {
+ "sha256": "0927znqd9j91wc51hdwcl2rxb66i1h549nyr1h39r13353gbwk3a",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.0.1",
+ "deps": [
+ "yasnippet"
+ ]
+ },
+ "misc-cmds": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/misc-cmds.el",
+ "sha256": "0akrb0gd4ywrib9bg3q5qjf991gnkggivmg1nsn9snc6il8yjaxq"
+ },
+ "recipe": {
+ "sha256": "0bylb84icddgznmim18fwq1mhh3qz8yh8ch6lpadf9p3h420qgcl",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": []
+ },
+ "drupal-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "arnested",
+ "repo": "drupal-mode",
+ "sha256": "12lxqrcfv5salmcslw3kggymcwwc0lzq1b6iqd7x4zizp0sjf09s",
+ "rev": "cf0364cbaf727bcd21ab7c2a14cc987c49fd97d0"
+ },
+ "recipe": {
+ "sha256": "14jvk4phq3wcff3yvhygix0c9cpbphh0dvm961i93jpsx7g9awgn",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.6.1",
+ "deps": [
+ "php-mode"
+ ]
+ },
+ "company-jedi": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "syohex",
+ "repo": "emacs-company-jedi",
+ "sha256": "1ihqapp4dv92794rsgyq0rmhwika60cmradqd4bn9b72ss6plxs1",
+ "rev": "ad49407451c7f28fe137f9c8f3a7fc89e8693a1b"
+ },
+ "recipe": {
+ "sha256": "1krrgrjq967c3j02y0i345yx6w4crisnj1k3bhih6j849fvy3fvj",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.04",
+ "deps": [
+ "cl-lib",
+ "company",
+ "emacs",
+ "jedi-core"
+ ]
+ },
+ "termbright-theme": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "bmastenbrook",
+ "repo": "termbright-theme-el",
+ "sha256": "0gfsqpza8phvma5y3ck0n6p197x1i33w39m3c7jmja4ml121n73d",
+ "rev": "bec6ab14336c0611e85f45486276004f16d20607"
+ },
+ "recipe": {
+ "sha256": "14q88qdbnyzxr8sr8i5glj674sb4150b9y6nag0dqrxs629is6xj",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.0",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "list-utils": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "rolandwalker",
+ "repo": "list-utils",
+ "sha256": "0dmcmvf3dxmp1f71nq5xwsdrnyb04qr14ay4ckpaca2bmi7q0x5x",
+ "rev": "ecd6c91c71e37734af9ff4df003cb96b9d236a97"
+ },
+ "recipe": {
+ "sha256": "0bknprr4jb1d20i9lj2aa17vpg1kqwdyzzwmy1kfydnkpf5scnr3",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.4.2",
+ "deps": []
+ },
+ "helm-ack": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "syohex",
+ "repo": "emacs-helm-ack",
+ "sha256": "0ps86zpyywibjwcm9drmamla979ad61fyqr8d6bv71fr56k9ak21",
+ "rev": "5982f3cb6ec9f460ebbe06ec0ce7b3590bca3118"
+ },
+ "recipe": {
+ "sha256": "1a8sc5gd2g57dl9g18wyydfmihy74yniwhjr27h7vxylnf2g3pni",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.13",
+ "deps": [
+ "cl-lib",
+ "helm"
+ ]
+ },
+ "packed": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "tarsius",
+ "repo": "packed",
+ "sha256": "0k5l0l4vjw38r911zd9c9cv015vpw2y8abp82s2s9pm8nqc3bnci",
+ "rev": "478613da38b0a47f4419acc50017ac871433b13c"
+ },
+ "recipe": {
+ "sha256": "0sw7d2l17bq471i4isrf2xf0z85nqqiciw25whw0c0chdzwzai6z",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.5.0",
+ "deps": [
+ "cl-lib",
+ "dash"
+ ]
+ },
+ "guide-key": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "kai2nenobu",
+ "repo": "guide-key",
+ "sha256": "1bmcvn8a7g9ahpv2fww673hx9pa7nnrj9kpljq65azf61vq2an2g",
+ "rev": "626f3aacfe4561eddc46617570426246b88e9cab"
+ },
+ "recipe": {
+ "sha256": "0zjrdvppcg8b2k6hfdj45rswc1ks9xgimcr2yvgpc8prrwk1yjsf",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.2.5",
+ "deps": [
+ "popwin"
+ ]
+ },
+ "pip-requirements": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "Wilfred",
+ "repo": "pip-requirements.el",
+ "sha256": "1dsg49156mfhkd8ip4ny03sc06zchxr1qpbcx48f5sn4m9j5d3vs",
+ "rev": "733ec3e4c30875944601b566e9dba6ef05812fcd"
+ },
+ "recipe": {
+ "sha256": "1wsjfyqga7pzp8gsm5x53qrkn40srairbjpifyrqbi2fpzmwhrnz",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.4",
+ "deps": [
+ "dash"
+ ]
+ },
+ "cliphist": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "redguardtoo",
+ "repo": "cliphist",
+ "sha256": "11c0zpk8gg70d4xiiyjc7v13knwb2ihbrxnlaxzh3rdg2c12676q",
+ "rev": "c0db2da95fa3d3a58160f465c636989bb4b251d5"
+ },
+ "recipe": {
+ "sha256": "0mg6pznijba3kvp3r57pi54v6mgih2vfwj2kg6qmcy1abrc0xq29",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.1.1",
+ "deps": [
+ "popup"
+ ]
+ },
+ "haskell-emacs-text": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "knupfer",
+ "repo": "haskell-emacs",
+ "sha256": "1qgqsy7wnqyzkc3b0wixxb8mapmgpi36dignvf8w2raw9ma3q2n0",
+ "rev": "f242ac4d0312aee5d162be82ae14b7154bb0db19"
+ },
+ "recipe": {
+ "sha256": "1j18fhhra6lv32xrq8jc6l8i56fgn68da81wymcimpmpbp0hl5fy",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "3.1.2",
+ "deps": [
+ "haskell-emacs"
+ ]
+ },
+ "synosaurus": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "rootzlevel",
+ "repo": "synosaurus",
+ "sha256": "0hi2jflrlpp7xkbj852vp9hcl8bfmf04jqw1hawxrw4bxdp95jh2",
+ "rev": "56efdc38952b9bd56a445591fcdeb626aede8678"
+ },
+ "recipe": {
+ "sha256": "16i2ag4l824h1kq4cy01zf01zrms4v6ldwlsixwfyb1mh97lqljg",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.1.0",
+ "deps": [
+ "cl-lib"
+ ]
+ },
+ "flycheck-color-mode-line": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "flycheck",
+ "repo": "flycheck-color-mode-line",
+ "sha256": "11xc08xld758xx9myqjsiqz8vk3gh4d9c4yswswvky6mrx34c0y5",
+ "rev": "c85319f8d2579e770c9060bfef11bedc1370d8be"
+ },
+ "recipe": {
+ "sha256": "0hw19nsh5h2l8qbp7brqmml2fhs8a0x850vlvq3qfd7z248gvhrq",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.3",
+ "deps": [
+ "dash",
+ "emacs",
+ "flycheck"
+ ]
+ },
+ "ph": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "gromnitsky",
+ "repo": "ph",
+ "sha256": "1qxsc5wyk8l9gkgmqy3mzwxdhji1ljqw9s1jfxkax7fyv4d1v31p",
+ "rev": "ed45c371642e313810b56c45af08fdfbd71a7dfe"
+ },
+ "recipe": {
+ "sha256": "0azx4cpfdn01yrqyn0q1gg9z7w0h0rn7zl39v3dx6yidd76ysh0l",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.1.0",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "es-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "dakrone",
+ "repo": "es-mode",
+ "sha256": "105ydizdlak951kfr5mjmk7vkqfkj6r1z0gs5ldz1g19wwc7rhjk",
+ "rev": "bee766109b8da1bba925d6998ef288b8a55f3c8f"
+ },
+ "recipe": {
+ "sha256": "1541c7d8gbi4mgxwk886hgsxhq7bfx8is7hjjg80sfn40z6kdwcp",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "4.0.0",
+ "deps": []
+ },
+ "flymake-ruby": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "purcell",
+ "repo": "flymake-ruby",
+ "sha256": "0d2vmpgr5c2cbpxcqm5x1ckfysbpwcbaa9frcnp2yfp8scvkvqj0",
+ "rev": "e14e8e2abda223bd3920dbad0eefd5af5973ae6d"
+ },
+ "recipe": {
+ "sha256": "1shr6d03vx85nmyxnysglzlc1pz0zy3n28nrcmxqgdm02g197bzr",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.8",
+ "deps": [
+ "flymake-easy"
+ ]
+ },
+ "commander": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "rejeep",
+ "repo": "commander.el",
+ "sha256": "1j6hhyzww7wfwk6bllbb5mk4hw4qs8hsgfbfdifsam9c6i4spm45",
+ "rev": "2c8a57b9c619e29ccbe2d5a85921b9c689e95bf9"
+ },
+ "recipe": {
+ "sha256": "17y0hg6a90hflgwn24ww23qmvc1alzivpipca8zvpf0nih4fl393",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.7.0",
+ "deps": [
+ "cl-lib",
+ "dash",
+ "f",
+ "s"
+ ]
+ },
+ "olivetti": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "rnkn",
+ "repo": "olivetti",
+ "sha256": "1rj97yg2n9fi80qlb4z6iahqid3yinlhx9mrbh6gi1niz58ws69h",
+ "rev": "26f3db0bc37324444e41a1d4797056b61b56b004"
+ },
+ "recipe": {
+ "sha256": "0fkvw2y8r4ww2ar9505xls44j0rcrxc884p5srf1q47011v69mhd",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.3.0",
+ "deps": []
+ },
+ "gmpl-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "cute-jumper",
+ "repo": "gmpl-mode",
+ "sha256": "0x0a94bfkk72kqyr5m6arx450qsg1axmp5r0c4r9m84z8j08r4v1",
+ "rev": "25d20f9d24594e85cb6f80d35d7c73b7e82cbc71"
+ },
+ "recipe": {
+ "sha256": "1f60xim8h85jmqpvgfg402ff8mjd66gla8fa0cwi7l18ijnjblpz",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.1.0",
+ "deps": []
+ },
+ "back-button": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "rolandwalker",
+ "repo": "back-button",
+ "sha256": "0hmn3jlsqgpc602lbcs9wzw0hgr5qpjdcxi2hjlc1cp27ilyscnf",
+ "rev": "c7b50a3e087a8dc5588d7292379cd387a1afff87"
+ },
+ "recipe": {
+ "sha256": "0vyhvm445d0rs14j5xi419akk5nd88d4hvm4251z62fmnvs50j85",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.6.6",
+ "deps": [
+ "nav-flash",
+ "pcache",
+ "persistent-soft",
+ "smartrep",
+ "ucs-utils"
+ ]
+ },
+ "ox-twbs": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "marsmining",
+ "repo": "ox-twbs",
+ "sha256": "10mshzmjh03nr434qyvh0dc8qi2z0aybn945l2v1f3hlz6xss8n9",
+ "rev": "b54058ae4e26e8ce2318c36e5b7369cbbed7c4b1"
+ },
+ "recipe": {
+ "sha256": "15csgnph5wh2dvcc2dnvrlm7whh428rq8smqji1509ib7aw9y5mx",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.0.3",
+ "deps": []
+ },
+ "mediawiki": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "hexmode",
+ "repo": "mediawiki-el",
+ "sha256": "1vsla0a5x4kfyj3ca4r1v8cspp12dadi0frpailclaxfmpmpl5d3",
+ "rev": "f8f95722193cb74da2f6a01a0e558707c9b8c46d"
+ },
+ "recipe": {
+ "sha256": "17cbrzfdp6jbbf74mn2fi1cwv7d1hvdbw9j84p43jzscnaa5ikx6",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "2.2.5",
+ "deps": []
+ },
+ "helm-pydoc": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "syohex",
+ "repo": "emacs-helm-pydoc",
+ "sha256": "1ik0vllakh73kc2zbgii4sm33n9pj388gaz69j4drz2mik307zvs",
+ "rev": "30f1814b5b16db0413ffe74b0d0420b38e153df9"
+ },
+ "recipe": {
+ "sha256": "0cnbhjw951f8sci63cvzcc65d0ffdx3rb8l1g38qql5rzkam48fn",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.07",
+ "deps": [
+ "cl-lib",
+ "helm-core"
+ ]
+ },
+ "org-pdfview": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "markus1189",
+ "repo": "org-pdfview",
+ "sha256": "14lshgyrlzjcrqdfsn17llm70ijbs86cv9mccy87vlr01rbsz6lj",
+ "rev": "c1ca137ef90e442592ce88ef16437dc7dfa9c5dd"
+ },
+ "recipe": {
+ "sha256": "1z4gb5lw7ngphixw06b5484kwlxbc098w2xshzml5sywr16a4iab",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.3",
+ "deps": [
+ "org",
+ "pdf-tools"
+ ]
+ },
+ "pushbullet": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "theanalyst",
+ "repo": "revolver",
+ "sha256": "03ivg3ddhy5zh410wgwxa17m98wywqhk62jgijhjd00b6l8i4aym",
+ "rev": "73c59a0f1dc04875b3e5a2c8afbc26c32128e445"
+ },
+ "recipe": {
+ "sha256": "1swzl25rcw7anl7q099qh14yhnwlbn3m20ib9kis0l1rv59kkarl",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.5.2",
+ "deps": [
+ "grapnel",
+ "json"
+ ]
+ },
+ "vline": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/vline.el",
+ "sha256": "1ys6928fgk8mswa4gv10cxggir8acck27g78cw1z3pdz5gakbgnj"
+ },
+ "recipe": {
+ "sha256": "0p59xhyrv7fmcn3qi51sp8v9v2y71ray2s756zbhzgzg63h3nbjp",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": []
+ },
+ "artbollocks-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "sachac",
+ "repo": "artbollocks-mode",
+ "sha256": "133c1n4ra7z3vb6y47400y71a6ac19pyji0bgd4kr9fcbx0flx91",
+ "rev": "583c7048a1b09cd79554423d5115f5ddd129d190"
+ },
+ "recipe": {
+ "sha256": "0dlnxicn6nzyiz44y92pbl4nzr9jxfb9a99wacjrwq2ahdrwhhjp",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.1.2",
+ "deps": []
+ },
+ "org-elisp-help": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "tarsius",
+ "repo": "org-elisp-help",
+ "sha256": "18x8c6jcqkfam79z4hskr8h1lvzvd5rlfgymmj1ps6p6hd3j4ihl",
+ "rev": "0ead4f715b0a8fd21428f763cfc502177d82b3db"
+ },
+ "recipe": {
+ "sha256": "0a4wvz52hkcw5nrml3h1yp8w97vg5jw22wnpfbb827zh7iwb259h",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.1.0",
+ "deps": [
+ "cl-lib",
+ "org"
+ ]
+ },
+ "elpy": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "jorgenschaefer",
+ "repo": "elpy",
+ "sha256": "0kzara7r6gvgf3p06xswxbhq01dbhmwx1pldx3mmv7knvm2mdxq8",
+ "rev": "96fa05708629600fd79c4b0fcafe63ec97f5ce07"
+ },
+ "recipe": {
+ "sha256": "051irp7k0cp1hqp3hzrmapllf2iim7cq0iz38489g4fkh2ybk709",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.10.0",
+ "deps": [
+ "company",
+ "find-file-in-project",
+ "highlight-indentation",
+ "pyvenv",
+ "yasnippet"
+ ]
+ },
+ "fcitx": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "cute-jumper",
+ "repo": "fcitx.el",
+ "sha256": "1b0xm3zkdqj1k4bz9dnqhmgs3z9wfhzxbbrq86s1iqpvzvzrza1x",
+ "rev": "bdcbccc04934766e6d3fc54b2bccfe38c25859c1"
+ },
+ "recipe": {
+ "sha256": "0a8wd588c26p3czfp5hn2n46f2vwyg5v301sv0y07b55b1i3ynmx",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.2",
+ "deps": []
+ },
+ "avy-zap": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "cute-jumper",
+ "repo": "avy-zap",
+ "sha256": "0lmv34pi9qdh76fi3w4lrfyfhzr824nsiif4nyjvpnmrabxgk309",
+ "rev": "67fed60d0dfe9087ca4fe3332f4a78e775b8d239"
+ },
+ "recipe": {
+ "sha256": "1zbkf21ggrmg1w0xaw40i3swgc1g4fz0j8p0r9djm9j120d94zkx",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.1.4",
+ "deps": [
+ "avy"
+ ]
+ },
+ "inf-ruby": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "nonsequitur",
+ "repo": "inf-ruby",
+ "sha256": "11zsprv5ycnfqi358dd4cx70dbn6a8hccd4prf28lln7vhldbmjz",
+ "rev": "d130ede56a1203d0aa1c8e5bca5fedbfb14e7ce8"
+ },
+ "recipe": {
+ "sha256": "02f01vwzr6j9iqcdns4l579bhia99sw8hwdqfwqjs9gk3xampfpp",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "2.4.0",
+ "deps": []
+ },
+ "confluence": {
+ "fetch": {
+ "tag": "fetchsvn",
+ "url": "http://confluence-el.googlecode.com/svn/trunk/",
+ "sha256": "1l6970ng046hw2izzb15cbbbf83l6m8c9mvic8fzjixfi3g1dl55",
+ "rev": "170"
+ },
+ "recipe": {
+ "sha256": "003lykwd3ya0xwlahmm35nx9p6mk8vylq57yxrmgdcc64630bdpf",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": [
+ "xml-rpc"
+ ]
+ },
+ "dictionary": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "myrkr",
+ "repo": "dictionary-el",
+ "sha256": "05xfgn9sabi1ykk8zbk2vza1g8pdrg08j5cb58f50nda3q8ndf4s",
+ "rev": "9ef1672ecd367827381bbbc9af93685980083c5c"
+ },
+ "recipe": {
+ "sha256": "0zr9sm5rmr0frxdr0za72wiffip9391fn9dm5y5x0aj1z4c1n28w",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.10",
+ "deps": []
+ },
+ "backup-each-save": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/backup-each-save.el",
+ "sha256": "0b9vvi2m0fdv36wj8mvawl951gjmg3pypg08a8n6rzn3rwg0fwz7"
+ },
+ "recipe": {
+ "sha256": "1fv9sf6vkjyv93vil4l9hjm2fg73zlxbnif0xfm3kpmva9xin337",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": []
+ },
+ "cl-lib-highlight": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "skeeto",
+ "repo": "cl-lib-highlight",
+ "sha256": "12vgi5dicx3lxzngjcg9g3nflrhfy9wdw6ldm72zarp1h96jy5cw",
+ "rev": "c117451df8455769701af6c8e92a8fb29c05e1fa"
+ },
+ "recipe": {
+ "sha256": "13qdrvpxq928p27b1xdcbsscyhqk042rwfa17037gp9h02fd42j8",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.0.0",
+ "deps": [
+ "cl-lib"
+ ]
+ },
+ "ob-http": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "zweifisch",
+ "repo": "ob-http",
+ "sha256": "1zbqiqilms8vxqlvzb3gjh8gh2cl7cpmh3yiqsj94jx69w8dy4xl",
+ "rev": "89ba18b22cf6b8533358a9c76a82326343391f0b"
+ },
+ "recipe": {
+ "sha256": "0b7ghz9pqbyn3b52cpmnwa2wnd4svj23p6gc48ybwzwiid42wiss",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.0.3",
+ "deps": [
+ "cl-lib",
+ "s"
+ ]
+ },
+ "wiki-nav": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "rolandwalker",
+ "repo": "button-lock",
+ "sha256": "1kqcc1d56jz107bswlzvdng6ny6qwp93yck2i2j921msn62qvbb2",
+ "rev": "cd0bf4a3c2f224d851e6ed8a54a6e80c129b225f"
+ },
+ "recipe": {
+ "sha256": "19mabz0y3fcqsm68ijwwbbqylxgp71anc0a31zgc1blha9jivvwy",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.0.2",
+ "deps": [
+ "button-lock",
+ "nav-flash"
+ ]
+ },
+ "ac-clang": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "yaruopooner",
+ "repo": "ac-clang",
+ "sha256": "1sdgpyq5p824dnxv6r7djwvhyhdmnis8k6992klr8iz7anhxzdam",
+ "rev": "610ff778697eb5499394be3fc3652756d0bfb772"
+ },
+ "recipe": {
+ "sha256": "070s06xhkzaqfc3j8c4i44rks6gn8z66lwd54j17p8d91x3qjpr4",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.6.0",
+ "deps": [
+ "auto-complete",
+ "cl-lib",
+ "emacs",
+ "pos-tip",
+ "yasnippet"
+ ]
+ },
+ "stekene-theme": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "Fanael",
+ "repo": "stekene-theme",
+ "sha256": "0pik6mq8syhxk9l9ns8wgvg5312qkckm3cilb3irwdm1dvnl5hpf",
+ "rev": "5a5ed0aed5c6c6c56aa1e59516a40c697b04a673"
+ },
+ "recipe": {
+ "sha256": "0v1kwlnrqaygzaz376a5njg9kv4yf5l35k87xga4wdd2mxfwrmf1",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.0.15",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "checkbox": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "camdez",
+ "repo": "checkbox.el",
+ "sha256": "09ypxhfad3v1pz0xhw4xgxvfj7ad2kb3ff9zy1mnw7fzsa7gw6nj",
+ "rev": "2afc2011fa35ccfa0ce9ef46cb1896911fa340d1"
+ },
+ "recipe": {
+ "sha256": "17gw6w1m6bs3sfx8nqa8nzdq26m8w85a0fca5qw3bmd18bcmknqa",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.2.1",
+ "deps": [
+ "cl-lib",
+ "emacs"
+ ]
+ },
+ "color-theme-modern": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "emacs-jp",
+ "repo": "replace-colorthemes",
+ "sha256": "0q9ss11i31iiv0vn8238922fkic7j6d02f9ykbip04sm46p5k6kj",
+ "rev": "0a804c611da57b2d7c02c95f26eb8a7fc305f159"
+ },
+ "recipe": {
+ "sha256": "0f662ham430fgxpqw96zcl1whcm28cv710g6wvg4fma60sblaxcm",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.0.1",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "opam": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "lunaryorn",
+ "repo": "opam.el",
+ "sha256": "119pk7gg4fw5bdvir8077ra603b5nbqvd7ph9cqrwxa056jzvry8",
+ "rev": "83fb2850d29ec792754e0af18b015e089aad2695"
+ },
+ "recipe": {
+ "sha256": "004r93nn1ranvxkcc0y5m3p8gh4axgghgnsvim38nc1sqda5h6xa",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.1",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "ycmd": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "abingham",
+ "repo": "emacs-ycmd",
+ "sha256": "094alkjrh285qy3sds8dkvxsbnaxnppz1ab0i5r575lyhli9lxia",
+ "rev": "8fb29b84d42c0aea71fe7db088b0b7a5a0c6b34c"
+ },
+ "recipe": {
+ "sha256": "06psmcr5132vn72l0amzj14dy43aradnbmlvvms55srvici6r60q",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.9",
+ "deps": [
+ "dash",
+ "deferred",
+ "emacs",
+ "f",
+ "popup"
+ ]
+ },
+ "zone-nyan": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "wasamasa",
+ "repo": "zone-nyan",
+ "sha256": "1lrgirfvcvbir7csshkhhwj99jj1x5aprhw7xfiicv7nan9m6gjy",
+ "rev": "e36875d83ad3dce14f23864688959fa0d98ba410"
+ },
+ "recipe": {
+ "sha256": "165sgjaahz038isii971m02hr2g5iqhbhiwf5kdn8c739cjaa17b",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.2.2",
+ "deps": [
+ "esxml"
+ ]
+ },
+ "cursor-chg": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/cursor-chg.el",
+ "sha256": "1mvfg2m3wq5rbbxs2a84pd69yb82dag4g5mpzr16xi0gn6ybj4s7"
+ },
+ "recipe": {
+ "sha256": "0d1ilall8c1y4w014wks9yx4fz743hvx5lc8jqxxlrq7pmqyqdxk",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": []
+ },
+ "gitattributes-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "magit",
+ "repo": "git-modes",
+ "sha256": "1ipr51v7nhbbgxbbz0fp3i78ypp73kyxgc4ni8nnr7yirjhsksfd",
+ "rev": "9d8f6eda6ee97963e4085da8988cad2c0547b8df"
+ },
+ "recipe": {
+ "sha256": "1gjs0pjh6ap0h54savamzx94lq6vqrg58jxqaq5n5qplrbg15a6x",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.2.0",
+ "deps": []
+ },
+ "emojify": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "iqbalansari",
+ "repo": "emacs-emojify",
+ "sha256": "03hc2c8cyn0saasw63vv75iswcxxj8xd8ni78xnccpni1i16lgwj",
+ "rev": "e3c269838277db29560352365b7b9ceb3db9593e"
+ },
+ "recipe": {
+ "sha256": "15v2h5jfksfc208qphiczplg56yka07qv4w4482c10yzwq76zp17",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.2",
+ "deps": [
+ "emacs",
+ "ht",
+ "seq"
+ ]
+ },
+ "sx": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "vermiculus",
+ "repo": "sx.el",
+ "sha256": "02f63k8rzb3bcch6vj6w5c5ncccqg83siqnc8hyi0lhy1bfx240p",
+ "rev": "4892f45746fb217d059f4fa074a237c5bac7dd6c"
+ },
+ "recipe": {
+ "sha256": "1ml1rkhhk3hkd16ij2zwng591rxs2yppsfq9gwd4ppk02if4v517",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.4",
+ "deps": [
+ "cl-lib",
+ "emacs",
+ "json",
+ "let-alist",
+ "markdown-mode"
+ ]
+ },
+ "mykie": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "yuutayamada",
+ "repo": "mykie-el",
+ "sha256": "0550k0rfm0zai306642v689mcpsw9pbd5vs0il82cihwvrxjifc5",
+ "rev": "ab8f7549f9018c26278d101af1b90997c9e5e0b3"
+ },
+ "recipe": {
+ "sha256": "12ram39fp3m9ar6q184rsnpkxb14y0ajibng7ia2ck54ck7n36cj",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.3.1",
+ "deps": [
+ "cl-lib",
+ "emacs"
+ ]
+ },
+ "esup": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "jschaf",
+ "repo": "esup",
+ "sha256": "1pzbd2ka6h5ipiivfwfgq1hq80ww59xvyldmx406mdd5vn7yqk5z",
+ "rev": "f9514db82c06680c7f354a2e50c2ca66e8aa0171"
+ },
+ "recipe": {
+ "sha256": "0cv3zc2zzm38ki3kxq58g9sp4gsk3dffa398wky6z83a3zc02zs0",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.4",
+ "deps": []
+ },
+ "evil-rsi": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "linktohack",
+ "repo": "evil-rsi",
+ "sha256": "1ygrpffa847144i74z2yy5r5vcvd334gad5mg18ffydacddcyqmq",
+ "rev": "4e0cb07d0e1c2a5e463ea1ea146f019c47a29e61"
+ },
+ "recipe": {
+ "sha256": "0mc39n72420n36kwyf9zpw1pgyih0aigfnmkbywb0yxgj7myc345",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.1.1",
+ "deps": [
+ "evil"
+ ]
+ },
+ "letcheck": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "Fuco1",
+ "repo": "letcheck",
+ "sha256": "1l9qjmyb4a3f6i2iimpmjczbx890cd1p24n941s13sg67xfbm7hn",
+ "rev": "e85b185993a2eaeec6490709f4c131fde2edd672"
+ },
+ "recipe": {
+ "sha256": "1sjwi1ldg6b1qvj9cvfwxq3qlkfas6pm8zasf43baljmnz38mxh2",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.4",
+ "deps": []
+ },
+ "zoom-frm": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/zoom-frm.el",
+ "sha256": "0y424lw7j0p0i0s7az7fabk9k4d0shcp4mimlkfl3whci24rbq6y"
+ },
+ "recipe": {
+ "sha256": "111lr29zhj8w8j7dbzl58iisqxjhccxpw4spfxx08zxh4623g5mk",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": [
+ "frame-cmds",
+ "frame-fns"
+ ]
+ },
+ "find-file-in-repository": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "hoffstaetter",
+ "repo": "find-file-in-repository",
+ "sha256": "0wbmmrd7brf4498pdyilz17rzv7221cj8sd4h11gac2r72f1q2md",
+ "rev": "8b888f85029a2ff9159a724b42aeacdb051c3420"
+ },
+ "recipe": {
+ "sha256": "0q1ym06w2yn3nzpj018dj6h68f7rmkxczyl061mirjp8z9c6a9q6",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.2",
+ "deps": []
+ },
+ "auto-install": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/auto-install.el",
+ "sha256": "043pb2wk7jh0jgxphdl4848rjyabna26gj0vlhpiyd8zc361pg9d"
+ },
+ "recipe": {
+ "sha256": "1gaxc2ya4r903k0jf3319wg7wg5kzq7k8rfy8ac9b0wfzv247ixk",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": []
+ },
+ "clojure-snippets": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "mpenet",
+ "repo": "clojure-snippets",
+ "sha256": "1p0w83m9j4a6va4g68a4gcfbdkp8nic0q8cm28l8nr7czd5s0yl6",
+ "rev": "30cd52379b856cf80eab2b541c32b1bcdcff3db2"
+ },
+ "recipe": {
+ "sha256": "15622mdd6b3fpwp22d32p78yap08pyscs2vc83sv1xz4338i0lij",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.0.0",
+ "deps": [
+ "yasnippet"
+ ]
+ },
+ "helm-lobsters": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "julienXX",
+ "repo": "helm-lobste.rs",
+ "sha256": "1nd562lffc41r3y5x7y46f37ra97avllk2m95w23f9g42h47f1ar",
+ "rev": "d798bebb1a65e255c8ec791753a0c78e6b19243b"
+ },
+ "recipe": {
+ "sha256": "0dkb78n373kywxj8zba2s5a2g85vx19rdswv9i78xjwv1lqh8cpp",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.1.0",
+ "deps": []
+ },
+ "helm-commandlinefu": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "xuchunyang",
+ "repo": "helm-commandlinefu",
+ "sha256": "1l61csd1gqz7kg5zjx60cfy824g42p682z7pk0rqzlrz8498wvkh",
+ "rev": "e11cd3e961c1c4c973b51d8d12592e7235a4971b"
+ },
+ "recipe": {
+ "sha256": "150nqib0sr4n35vdj1xrxcja8gkv3chzhdbgkjxqgkz2yq10xxnd",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.3",
+ "deps": [
+ "emacs",
+ "helm",
+ "json",
+ "let-alist"
+ ]
+ },
+ "ac-emoji": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "syohex",
+ "repo": "emacs-ac-emoji",
+ "sha256": "0cc3jpc4pihbyznyzvf6i3xwc2x78gb5m36ba9gkvxhabsljnlfg",
+ "rev": "53677f754929ead403ccde64b714ebb6b8fc808e"
+ },
+ "recipe": {
+ "sha256": "0msh3dh89jzk6hxva34gp9d5pazchgdknxjbi72z26rss9bkp1mw",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.02",
+ "deps": [
+ "auto-complete",
+ "cl-lib"
+ ]
+ },
+ "ido-load-library": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "rolandwalker",
+ "repo": "ido-load-library",
+ "sha256": "1z7az7h90v72llxvdclcywvf1qd0nhkfa45bp99xi7cy7sqsqssf",
+ "rev": "8589cb1e4303066eb333f1cfc789835d1cbe21df"
+ },
+ "recipe": {
+ "sha256": "13f83gqh39p3yjy7r7qc7kzgdcmqh4b5c07zl7rwzb8y9rz59lhj",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.2.0",
+ "deps": [
+ "pcache",
+ "persistent-soft"
+ ]
+ },
+ "elmacro": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "Silex",
+ "repo": "elmacro",
+ "sha256": "0l2iincskpks9yvj3y9zh1b48xli1q39wybr5n96rys5gv0drc9h",
+ "rev": "20a0d1e220984ec6079dda9419b3bb44a88edae3"
+ },
+ "recipe": {
+ "sha256": "0644rgwawivrq1shsjx1x2p53z7jgr6bxqgn2smzql8pp6azy7xz",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.3.0",
+ "deps": [
+ "cl-lib",
+ "dash",
+ "s"
+ ]
+ },
+ "fit-frame": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/fit-frame.el",
+ "sha256": "15697xc2gr5x9wj472jyzjhnim1jlx3ai3anzx8apngpqa9caiq1"
+ },
+ "recipe": {
+ "sha256": "1xcq4n9gj0npjjl98vqacms0a0wnzw62a9iplyf7bgj7n77pgkjb",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": []
+ },
+ "helm-make": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "abo-abo",
+ "repo": "helm-make",
+ "sha256": "17ls0bplnja2qvg3129x2irgsgs7l4bjj0qi7b9z16i6knjkwfya",
+ "rev": "6558a79d20d04465419b312da198190be6832647"
+ },
+ "recipe": {
+ "sha256": "1r6jjy1rlsii6p6pinbz7h6gcw4vmcycd3vj338bfbnqp5rrf2mc",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.1.0",
+ "deps": [
+ "helm",
+ "projectile"
+ ]
+ },
+ "go-autocomplete": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "nsf",
+ "repo": "gocode",
+ "sha256": "03snnra31b5j6iy94gql240vhkynbjql9b4b5j8bsqp9inmbsia3",
+ "rev": "eef10fdde96a12528a6da32f51bf638b2863a3b1"
+ },
+ "recipe": {
+ "sha256": "1v9fsyaby77fr30nnhr7dmlrmrlyz2grkhzg62illln66b9m5nlr",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20150303",
+ "deps": [
+ "auto-complete"
+ ]
+ },
+ "beeminder": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "sodaware",
+ "repo": "beeminder.el",
+ "sha256": "01d10algmi9a4xd7mzf7n3zxfs2qf5as66wx17mff5cd8dahxj1q",
+ "rev": "54cc1277f2a7667a7b0d999dc49ceffcf2862b44"
+ },
+ "recipe": {
+ "sha256": "0aj7ix7nrsl89f9c449kik8fbzhfk9li50wrh50cdwgfh8gda0fx",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.0.0",
+ "deps": []
+ },
+ "idris-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "idris-hackers",
+ "repo": "idris-mode",
+ "sha256": "0iwgbaq2797k1f7ql86i2pjfa67cha4s2v0mgmrd0qcgqkxsdq92",
+ "rev": "314a0baea5752069de08e814bb134a9643fb675d"
+ },
+ "recipe": {
+ "sha256": "0hiiizz976hz3z3ciwg1gs9y10qhxbs8givhz89kvyn4s4861a1s",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.9.19",
+ "deps": [
+ "cl-lib",
+ "emacs",
+ "prop-menu"
+ ]
+ },
+ "exec-path-from-shell": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "purcell",
+ "repo": "exec-path-from-shell",
+ "sha256": "0nhc3m88i6rl2y426ksmjbbaqwfrjnwbzqq1bvd6r0bkcwgfwfml",
+ "rev": "30c793b388312e5044afb7549b50996bf2b71941"
+ },
+ "recipe": {
+ "sha256": "1j6f52qs1m43878ikl6nplgb72pdbxfznkfn66wyzcfiz2hrvvm9",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.10",
+ "deps": []
+ },
+ "highlight-symbol": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "nschum",
+ "repo": "highlight-symbol.el",
+ "sha256": "09z13kv2g21kjjkkm3iyaz93sdjmdy2d563r8n7r7ng94acrn7f6",
+ "rev": "6136dac6d4328c19077a838dfbae2efc4caa4db2"
+ },
+ "recipe": {
+ "sha256": "0gw8ffr64s58qdbvm034s1b9xz1hynzvbk8ld67j06fxpc98qaj4",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.3",
+ "deps": []
+ },
+ "ppd-sr-speedbar": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "rdallasgray",
+ "repo": "ppd-sr-speedbar",
+ "sha256": "0pv671j8g09pn61kkfb3pa9axfa9zd2jdrkgr81rm2gqb2vh1hsq",
+ "rev": "19d3e924407f40a6bb38c8fe427a159af755adce"
+ },
+ "recipe": {
+ "sha256": "1m2918hqvb9c6rgb5szs95ds99gdjdxggcbdfqzmbb5sz2936av8",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.0.6",
+ "deps": [
+ "project-persist-drawer",
+ "sr-speedbar"
+ ]
+ },
+ "reveal-next": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/reveal-next.el",
+ "sha256": "0bpcx6jlv0m5bg1zrkak471fa2yj4m517zn72ajvp5r9y408i82y"
+ },
+ "recipe": {
+ "sha256": "0fp6ssd4fad0s2pbxbw75bnx7fcgasig8xvcx7nls8m9p6zbbmh2",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": []
+ },
+ "vbasense": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "aki2o",
+ "repo": "emacs-vbasense",
+ "sha256": "19j5q2f6pybvjq3ryjcyihzlw348hqyjhfcy3qflry6w786dqcgn",
+ "rev": "8c61a492d7c15218ae1a96e2aebfe6f78bfff6db"
+ },
+ "recipe": {
+ "sha256": "1440q2bi4arpl5lbqh7zscg7v3884clqx54p2fdfcfkz47ky4z9n",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.1.1",
+ "deps": [
+ "auto-complete",
+ "log4e",
+ "yaxception"
+ ]
+ },
+ "lively": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/lively.el",
+ "sha256": "1z9b0arn7vby4fkwzgj3ml537lh94gvf61vs03cqfkc95lv14r76"
+ },
+ "recipe": {
+ "sha256": "1wjd6kfnknhw9lc2p9iipaxfm9phpkqqmjw43bhc70ybsq1xaln7",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": []
+ },
+ "creds": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "ardumont",
+ "repo": "emacs-creds",
+ "sha256": "169ai0xkh3988racnhaapxw0v1pbxvcaq470x1qacdzdpka4a7bs",
+ "rev": "00ebefd10005c170b790a01380cb6a98f798ce5c"
+ },
+ "recipe": {
+ "sha256": "0n11xxaf93bbc9ih25wj09zzw4sj32wb99qig4zcy8bpkl5y3llk",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.0.6.1",
+ "deps": [
+ "dash",
+ "s"
+ ]
+ },
+ "helm-project-persist": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "Sliim",
+ "repo": "helm-project-persist",
+ "sha256": "1q7hfj8ldwivhjp9ns5pvsn0ds6pyvl2zhl366c22s6q8jmbr8ik",
+ "rev": "df63a21b9118f9639f0f4a336127b4fb8ec6deec"
+ },
+ "recipe": {
+ "sha256": "1n87kn1n3453mpdj6amyrgivslskmnzdafpspvkz7b0smf9mv2ld",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.0.0",
+ "deps": [
+ "helm",
+ "project-persist"
+ ]
+ },
+ "eval-sexp-fu": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "hchbaw",
+ "repo": "eval-sexp-fu.el",
+ "sha256": "0lwpl9akdxml9f51pgsv0g7k7mr8dvqm94l01i7vq8jl6vd6v6i5",
+ "rev": "b28d9c4d57511072aa17b2464693e38b769482e0"
+ },
+ "recipe": {
+ "sha256": "17cazf81z4cszflnfp66zyq2cclw5sp9539pxskdf267cf7r0ycs",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.4.0",
+ "deps": []
+ },
+ "httprepl": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "gregsexton",
+ "repo": "httprepl.el",
+ "sha256": "0dd257988bdar9hl2711ch5qshx9jc11fqxcvbrd7rc1va5cshs9",
+ "rev": "d2de8a676544deed1a5e084631a7799e487dbe55"
+ },
+ "recipe": {
+ "sha256": "0899qb1yfnsyf04hhvnk47qnq4d1f4vd5ghj43x4743wd2b9qawh",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.1",
+ "deps": [
+ "dash",
+ "emacs",
+ "s"
+ ]
+ },
+ "tern-auto-complete": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "marijnh",
+ "repo": "tern",
+ "sha256": "14s9740f0kgvgwz17y01f6lg9nv2jmzjilljdli064izsw474i0a",
+ "rev": "d4803588928d22cb18044b2e20fedd97e2d348ee"
+ },
+ "recipe": {
+ "sha256": "0lq924c5f6bhlgyqqzc346n381qf0fp66h50a0zqz2ch66kanni1",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.16.0",
+ "deps": [
+ "auto-complete",
+ "cl-lib",
+ "emacs",
+ "tern"
+ ]
+ },
+ "ox-ioslide": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "coldnew",
+ "repo": "org-ioslide",
+ "sha256": "047fcvpvwzaqisw4q3p6hxgjyqsi2n9nms1qx9w4znvxrnjq8jz3",
+ "rev": "e81f7a6dab512da7eaa8c2c50c673538b97db267"
+ },
+ "recipe": {
+ "sha256": "0z0qnvpw64wxbgz8203rphswlh9hd2i11pz2mlay8l3bzz4gx4vc",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.2",
+ "deps": [
+ "cl-lib",
+ "emacs",
+ "f",
+ "org"
+ ]
+ },
+ "quasi-monochrome-theme": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "lbolla",
+ "repo": "emacs-quasi-monochrome",
+ "sha256": "0lfmdlb626b3gbmlvacwn84vpqam6gk9lp29wk0hcraw69vaw1v8",
+ "rev": "e329a8d55b22151e29df1f81552a4361f85aeafa"
+ },
+ "recipe": {
+ "sha256": "0h5pqrklyga40jg8qc47lwmf8khn0vcs5jx2sdycl2ipy0ikmfs0",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.0",
+ "deps": []
+ },
+ "rfringe": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/rfringe.el",
+ "sha256": "02i5znln0aphvmvaia3sz75bvjhqwyjq1blf5qkcbprnn95lm3yh"
+ },
+ "recipe": {
+ "sha256": "171gzfciz78l6b653acgfailxpwmh8m1dm0dzpg0b1k0ny3aiwf6",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": []
+ },
+ "editorconfig": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "editorconfig",
+ "repo": "editorconfig-emacs",
+ "sha256": "1z073j9bf31izj05k0vgpv6iwhx0k4m7ikdxgj4sd99svsv84nv9",
+ "rev": "3d1e4797ea3f5a1bb6d0ec296f04ce05e6e368b4"
+ },
+ "recipe": {
+ "sha256": "0na5lfi9bs4k1q73pph3ff0v8k8vzrfpzh47chyzk8nxsmvklw35",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.6.1",
+ "deps": [
+ "editorconfig-core"
+ ]
+ },
+ "evil-anzu": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "syohex",
+ "repo": "emacs-evil-anzu",
+ "sha256": "0lw7fg4gqwj30r0l6k2ni36sxqkf65zf0d0z3rxnpwbxlf8dlkrr",
+ "rev": "64cc08a3546373f28cd7bfd76a3e93bd78efa251"
+ },
+ "recipe": {
+ "sha256": "19cmc61l370mm4h2m6jw5pdcsvj4wcv9zpa8z7k1fjg57mwmmn70",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.03",
+ "deps": [
+ "anzu",
+ "evil"
+ ]
+ },
+ "hl-anything": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "boyw165",
+ "repo": "hl-anything",
+ "sha256": "12ab825dldiqymy4md8ssfnbbhrgczkwdiwd3llsdq6sayar16as",
+ "rev": "990fe4b323b6222d6c6a35898d8128cddda34848"
+ },
+ "recipe": {
+ "sha256": "15n998nhirvg3f719b7x9s7jpqv6gzkr22kp4zbbq99lbx2wfc1k",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.0.9",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "restart-emacs": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "iqbalansari",
+ "repo": "restart-emacs",
+ "sha256": "0y4ga1lj2x2f0r535ivs09m2l0q76iz72w42wknhsw9lmdsyl5nz",
+ "rev": "e9292fe88d8be7d0ecf9f4f30ed98ffbc6bd689b"
+ },
+ "recipe": {
+ "sha256": "03aabz7fmy99nwimvjn7qz6pvc94i470hfgiwmjz3348cw02k0n6",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.1.1",
+ "deps": []
+ },
+ "lispxmp": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/lispxmp.el",
+ "sha256": "1m07gb3v1a7al0h4nj3914y8lqrwzi8fwb1ih66nxzn6kb0qj3mf"
+ },
+ "recipe": {
+ "sha256": "02gfbyng3dh2445jfkasxzjc9dlk02dafbfkjm40iwmb8h0fzji4",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": []
+ },
+ "passthword": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "pidu",
+ "repo": "passthword",
+ "sha256": "1g0mvg9i8f2qccb4b0m4d74zkjx9gjfv47x57by6cdaf9yywqryi",
+ "rev": "58a91defdbeec9014b4e46f909a7411b3a627285"
+ },
+ "recipe": {
+ "sha256": "076jayziipjx260yk3p37pf5k0qsagalidah3y6hiflrlq4sfgjn",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.4",
+ "deps": [
+ "cl-lib"
+ ]
+ },
+ "s": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "magnars",
+ "repo": "s.el",
+ "sha256": "16b0xh2n33v9q47223rfvcvl7x08c70zaa8f62vm7yfif6mmjln9",
+ "rev": "b16c6641649cb79435f745863bd76aaed3da3698"
+ },
+ "recipe": {
+ "sha256": "0b2lj6nj08pk5fnxvjkc1d9hvi29rnjjy4n5ns4pq6wxpfnlcw64",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.10.0",
+ "deps": []
+ },
+ "sweetgreen": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "CestDiego",
+ "repo": "sweetgreen.el",
+ "sha256": "1h56qkbx5abz1l94wrdpbzspiz24mfgkppzfalvbvx5qwl079cvs",
+ "rev": "9de3916023872ab054e1c7301175fa27fdb1de0c"
+ },
+ "recipe": {
+ "sha256": "1v75wk0gq5fkz8i1r8pl4gqnxbv1d80isyn48w2hxj2fmdn2xhpy",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.5",
+ "deps": [
+ "cl-lib",
+ "dash",
+ "helm",
+ "request"
+ ]
+ },
+ "immutant-server": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "leathekd",
+ "repo": "immutant-server.el",
+ "sha256": "1pf7pqh8yzyvh4gzvp5npfq8kcfjcbzra0kkw7zmz769xxc8v84x",
+ "rev": "6f3d303354a229780a33e6bae64460a95bfefe60"
+ },
+ "recipe": {
+ "sha256": "15vcxag1ni41ja4b3q0444sq5ysrisis59la7li6h3617wy8r02i",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.2.0",
+ "deps": []
+ },
+ "git-ps1-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "10sr",
+ "repo": "git-ps1-mode-el",
+ "sha256": "0pkzpihn94z2xy28nwaiv7883hq604xbmhrpxz2xh8cjix81h8ha",
+ "rev": "003d9dd264afdc71ae4635fef8c5d7bc901e3ddf"
+ },
+ "recipe": {
+ "sha256": "15gswi9s0m3hrsl1qqyjnjgbglsai95klbdp51h3pcq7zj22wkn6",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.1.1",
+ "deps": []
+ },
+ "evil-textobj-anyblock": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "noctuid",
+ "repo": "evil-textobj-anyblock",
+ "sha256": "0vsf7yzlb2j7c5c7cnk81y1979psy6a9v7klg6c2j9lkcn3cqpvj",
+ "rev": "068d26a625cd6202aaf70a8ff399f9130c0ffa68"
+ },
+ "recipe": {
+ "sha256": "03vk30s2wkcszcjxmh5ww39rihnag9cp678wdzq4bnqy0c6rnjwa",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.1",
+ "deps": [
+ "cl-lib",
+ "evil"
+ ]
+ },
+ "osx-plist": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "emacsmirror",
+ "repo": "osx-plist",
+ "sha256": "0830kkmvc3ss7ygqfwz3j75s7mhxfxyadaksrp0v2cc4y6wn6nfv",
+ "rev": "5e6de2622fdfe552d4902904f05ea03bc5a6ebd0"
+ },
+ "recipe": {
+ "sha256": "0zaqmhf5nm6jflwgxnknhi8zn97vhsia2xv8jm677l0h23pk2va8",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.0.0",
+ "deps": []
+ },
+ "cyberpunk-theme": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "n3mo",
+ "repo": "cyberpunk-theme.el",
+ "sha256": "12lkhlsi48wc5cy3zw57wihh9d4ixs2mcbvz9mdgjyhc2xhx3na8",
+ "rev": "08ac966ce38be4a3de0a6f6051b8763b5c85e534"
+ },
+ "recipe": {
+ "sha256": "0l2bwb5afkkhrbh99v2gns1vil9s5911hbnlq5w35nmg1wvbmbc9",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.16",
+ "deps": []
+ },
+ "elwm": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "Fuco1",
+ "repo": "elwm",
+ "sha256": "1k7npf93xbmrsq607x8zlgrpzqvplgia3ixz5w1lr1jlv1m2m8x2",
+ "rev": "c33b183f006ad476c3a44dab316f580f8b369930"
+ },
+ "recipe": {
+ "sha256": "0rf663ih3lfg4n4pj4dpp133967zha5m1wr46riaxpha7xr59al9",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.0.2",
+ "deps": [
+ "dash"
+ ]
+ },
+ "airline-themes": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "AnthonyDiGirolamo",
+ "repo": "airline-themes",
+ "sha256": "0q9m7lih760p7yrpqvpxdks5h6ac7dj4fi0qviyicbjlz9mqw7wp",
+ "rev": "b7d06424ce7d596f5bff3105d3eaa416f173436a"
+ },
+ "recipe": {
+ "sha256": "0jkhb6nigyjmwqny7g59h4ssfy64vl3qnwcw46wnx5k9i73cjyih",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.2",
+ "deps": [
+ "powerline"
+ ]
+ },
+ "shackle": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "wasamasa",
+ "repo": "shackle",
+ "sha256": "1v8pm8rfqkfbx8ifj2ra78h64zxcl15rpwgaw99xl88j388xyfsl",
+ "rev": "7542039876325d9b2051b77a0cbe15986154ac1a"
+ },
+ "recipe": {
+ "sha256": "159z0cwg7afrmym0xk902d8z093sqv39jig25ds7z4a224yrv5w6",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.8.1",
+ "deps": [
+ "cl-lib"
+ ]
+ },
+ "scpaste": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "technomancy",
+ "repo": "scpaste",
+ "sha256": "13s8hp16wxd9fb8gf05dn0xr692kkgiqg7v49fgr00gas4xgpfpm",
+ "rev": "cca8f4ee5402bbf9a4bbb24e81372067cb21bba4"
+ },
+ "recipe": {
+ "sha256": "02dqmx6v3jxdn5yz1z74624sc6sz2bm4qjyi78w9akhp2jplwlk1",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.6.5",
+ "deps": [
+ "htmlize"
+ ]
+ },
+ "helm-themes": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "syohex",
+ "repo": "emacs-helm-themes",
+ "sha256": "0rzbdrs5d5a0icpxrqik2iaz8i5bacw6nm2caf75s9w9j0j6s9li",
+ "rev": "8c979f4efc6174eed7df5f3b62db955246202818"
+ },
+ "recipe": {
+ "sha256": "1j64w6dnxmq0rfycci9wfy2z5lbddsggf486pknxfgwwqgvns90l",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.05",
+ "deps": [
+ "helm"
+ ]
+ },
+ "gnuplot": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "bruceravel",
+ "repo": "gnuplot-mode",
+ "sha256": "0bwri3cvm2vr27kyqkrddm28fs08axnd4nm9amfgp54xp20bn4yn",
+ "rev": "aefd4f671485fbcea42511ce79a7a60e5e0110a3"
+ },
+ "recipe": {
+ "sha256": "06c5gqf02fkra8c52xck1lqvf4yg45zfibyf9zqmnbwk7p2jxrds",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.7.0",
+ "deps": []
+ },
+ "ac-etags": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "syohex",
+ "repo": "emacs-ac-etags",
+ "sha256": "0ijni3qgd68jhznhirhgcl59cr7hwfvbwgf6z120x56jmp8h01d2",
+ "rev": "8cd188b2e4908285ba8178bbd18a555edd7282e8"
+ },
+ "recipe": {
+ "sha256": "0ag49k9izrs4ikzac9lifvvwhcn5n89lr2vb20pngsvg1czdyhzb",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.06",
+ "deps": [
+ "auto-complete"
+ ]
+ },
+ "rect+": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "mhayashi1120",
+ "repo": "Emacs-rectplus",
+ "sha256": "1vpsihrl03hkd6n6b7mrjccm0a023qf3154a8rw4chihikxw27pj",
+ "rev": "299b742faa0bc4448e0d5fe9cb98ab1eb93b8dcc"
+ },
+ "recipe": {
+ "sha256": "0vk0jwpl6yp2md9nh0ghp2qn883a8lr3cq8c9mgq0g552dwdiv5m",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.0.10",
+ "deps": []
+ },
+ "flymake-hlint": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "purcell",
+ "repo": "flymake-hlint",
+ "sha256": "1ygg51r4ym4x7h4svizwllsvr72x9np6jvjqpk8ayv3w2fpb9l31",
+ "rev": "d540e250a80a09da3036c16bf86f9deb6d738c9c"
+ },
+ "recipe": {
+ "sha256": "0wq1ijhn3ypy31yk8jywl5hnz0r0vlhcxjyznzccwqbdc5vf7b2x",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.2",
+ "deps": [
+ "flymake-easy"
+ ]
+ },
+ "flycheck-ycmd": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "abingham",
+ "repo": "emacs-ycmd",
+ "sha256": "094alkjrh285qy3sds8dkvxsbnaxnppz1ab0i5r575lyhli9lxia",
+ "rev": "8fb29b84d42c0aea71fe7db088b0b7a5a0c6b34c"
+ },
+ "recipe": {
+ "sha256": "0m99ssynrqxgzf32d35n17iqyh1lyc6948inxpnwgcb98rfamchv",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.9",
+ "deps": [
+ "dash",
+ "emacs",
+ "flycheck",
+ "ycmd"
+ ]
+ },
+ "ansible-doc": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "lunaryorn",
+ "repo": "ansible-doc.el",
+ "sha256": "05z379k6a7xq9d2zapf687x3f37jpmh6kfghpgxdd18v0hzca8ds",
+ "rev": "6ab94392c860e23439ea3213b74ca56834d1ab14"
+ },
+ "recipe": {
+ "sha256": "03idvnn79fr9id81aivkm7g7cmlsg0c520wcq4da8g013xvi342w",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.3",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "ido-vertical-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "creichert",
+ "repo": "ido-vertical-mode.el",
+ "sha256": "1lv82q639xjnmvby56nwqn23ijh6f163bk675s33dkingm8csj8k",
+ "rev": "c3e0514405ba5c15b5527e7f8e2d42dff259788f"
+ },
+ "recipe": {
+ "sha256": "1vg5s6nd6v2g8ychz1q9cdqvsdw6vag7d9w68sn7blpmlr0nqhfm",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.1.6",
+ "deps": []
+ },
+ "stan-snippets": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "stan-dev",
+ "repo": "stan-mode",
+ "sha256": "1yx8n2c9bls0cvc53d69nyrg44yc3py51lzci0cviwszmnbbrljx",
+ "rev": "3a1b9a714ae7a547638a449f5a9ac487003c55b8"
+ },
+ "recipe": {
+ "sha256": "021skkvak645483s7haz1hsz98q3zd8hqi9k5zdzaqlabwdjwh85",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "7.1.0",
+ "deps": [
+ "stan-mode",
+ "yasnippet"
+ ]
+ },
+ "emacsql-mysql": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "skeeto",
+ "repo": "emacsql",
+ "sha256": "0ph0462shk00rhrkpvwgsr4biykimky2d89pvkbg377951jdga7i",
+ "rev": "03d478870834a683f433e7f0e288476748eec624"
+ },
+ "recipe": {
+ "sha256": "1c20zhpdzfqjds6kcjhiq1m5ch53fsx6n1xk30i35kkg1wxaaqzy",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "2.0.0",
+ "deps": [
+ "cl-lib",
+ "emacs",
+ "emacsql"
+ ]
+ },
+ "cdlatex": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "cdominik",
+ "repo": "cdlatex",
+ "sha256": "1jj9vmhc4s3ych08bjm1c2xwi81z1p20rj7bvxrgvb5aga2ghi9d",
+ "rev": "b7183c2200392b6d85fca69390f4a65fac7a7b19"
+ },
+ "recipe": {
+ "sha256": "1jsfmzl13fykbg7l4wv9si7z11ai5lzvkndzbxh9cyqlvznq0m64",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "4.7",
+ "deps": []
+ },
+ "sourcekit": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "nathankot",
+ "repo": "company-sourcekit",
+ "sha256": "1l9xrw88wq32wm3qx922ihdb9mlv9rrdalwvz9i2790fmw7y84vz",
+ "rev": "ea26c1284ccf72d6e3a850c6725433f0f8e2b3f9"
+ },
+ "recipe": {
+ "sha256": "1lvk3m86awlinivpg89h6zvrwrdqa5ljdp563k3i4h9384w82pks",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.1.4",
+ "deps": [
+ "dash",
+ "dash-functional",
+ "emacs"
+ ]
+ },
+ "guru-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "bbatsov",
+ "repo": "guru-mode",
+ "sha256": "1y46qd9cgkfb0wp2cvksjncyp77hd2jnr4bm4zafqirc3qhbysx0",
+ "rev": "62a9a0025249f2f8866b94683c4114c39f48e1fa"
+ },
+ "recipe": {
+ "sha256": "0j25nxs3ndybq1ik36qyqdprmhav4ba8ny7v2z61s23id8hz3xjs",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.2",
+ "deps": []
+ },
+ "msvc": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "yaruopooner",
+ "repo": "msvc",
+ "sha256": "1draiwbwb8zfi6rdr5irv8091xv2pmnifq7pzi3rrvjb8swb28z3",
+ "rev": "e7a61fa5b98a129637f970ac6db9163e330b3d02"
+ },
+ "recipe": {
+ "sha256": "04gq2klana557qvsi3bv6416l0319jsqb6bdfs7y6729qd94hlq3",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.2.2",
+ "deps": [
+ "ac-clang",
+ "cedet",
+ "cl-lib",
+ "emacs"
+ ]
+ },
+ "describe-number": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "netromdk",
+ "repo": "describe-number",
+ "sha256": "13fasbhdjwc4jh3cy25gm5sbbg56hq8la271098qpx6dhqm2wycq",
+ "rev": "40618345a37831804b29589849a785ef5aa5ac24"
+ },
+ "recipe": {
+ "sha256": "0gvriailni2ppz69g0bwnb1ik1ghjkj341k45vllz30j0frp9iji",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.3.1",
+ "deps": [
+ "yabin"
+ ]
+ },
+ "smex": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "nonsequitur",
+ "repo": "smex",
+ "sha256": "1hcjh577xz3inx28r8wb4g2b1424ccw8pffvgdmpf80xp1llldj5",
+ "rev": "97b4a4d82a4449e3f1a3fa8a93387d6eb0ef9c26"
+ },
+ "recipe": {
+ "sha256": "1rwyi7gdzswafkwpfqd6zkxka1mrf4xz17kld95d2ram6cxl6zda",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "3.0",
+ "deps": []
+ },
+ "fancy-battery": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "lunaryorn",
+ "repo": "fancy-battery.el",
+ "sha256": "05lwcwf412m717yhwpjrswqkm8c3i7391rmiwv2k8xc1vk6dpp4g",
+ "rev": "5b8115bbeb67c52d4202a12dcd5726fb66e0a1ff"
+ },
+ "recipe": {
+ "sha256": "03rkfdkrzyal9abdiv8c73w10sm974hxf3xg5015hibfi6kzg8ii",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.2",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "org-trello": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "org-trello",
+ "repo": "org-trello",
+ "sha256": "1561nxjva8892via0l8315y3fih4r4q9gzycmvh33db8gqzq4l86",
+ "rev": "3718ed704094e5e5a491749f1f722d76ba4b7d73"
+ },
+ "recipe": {
+ "sha256": "1rm91xccvdsqghdnrnjvyp8xfvrw5ac677vzzz24rz9dssh2mz9b",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.7.5",
+ "deps": [
+ "dash",
+ "dash-functional",
+ "deferred",
+ "emacs",
+ "request-deferred",
+ "s"
+ ]
+ },
+ "know-your-http-well": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "for-GET",
+ "repo": "know-your-http-well",
+ "sha256": "077hidc464kpmgd1vz50j0pygl956llhbqy1c9mwl3r0jh86q0rg",
+ "rev": "a7fb26fd5a8bf658d1c7d62f77a37fd772a144b0"
+ },
+ "recipe": {
+ "sha256": "0k2x0ajxkivim8nfpli716y7f4ssrmvwi56r94y34x4j3ib3px3q",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.2.0",
+ "deps": []
+ },
+ "homebrew-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "dunn",
+ "repo": "homebrew-mode",
+ "sha256": "1n8r4jrk71dg25ca6bsw11ky0dszdj4pvqwsmy3msqlji1ckvqyn",
+ "rev": "359b5a0e42c6dab618bb9bcf03ad3dfe3b2a3d12"
+ },
+ "recipe": {
+ "sha256": "088wc5fq4r5yj1nbh7mriyqf0xwqmbxvblj9d2wwrkkdm5flc8mj",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.3.2",
+ "deps": [
+ "dash",
+ "emacs",
+ "inf-ruby"
+ ]
+ },
+ "caml": {
+ "fetch": {
+ "tag": "fetchsvn",
+ "url": "http://caml.inria.fr/svn/ocaml/trunk/emacs/",
+ "sha256": "16qw82m87i1fcnsccqcvr9l6p2cy0jdhljsgaivq0q10hdmbgqdw",
+ "rev": "16548"
+ },
+ "recipe": {
+ "sha256": "0kxrn9s1h2l05akcdcj6fd3g6x5wbi511mf14g9glcn8azyfs698",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": []
+ },
+ "deft": {
+ "fetch": {
+ "tag": "fetchgit",
+ "url": "git://jblevins.org/git/deft.git",
+ "sha256": "2b6d9dbc07fb68c99fe36c9f0663c67f3e9d0c245c2d226d297641246396b724",
+ "rev": "f2735d28f50962eb8db717d231e7779bd99bf873"
+ },
+ "recipe": {
+ "sha256": "1c9kps0lw97nl567ynlzk4w719a86a18q697rcmrbrg5imdx4y5p",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.6",
+ "deps": []
+ },
+ "autodisass-java-bytecode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "gbalats",
+ "repo": "autodisass-java-bytecode",
+ "sha256": "1pf2mwnicj5x2kksxwmrzz2vfxj9y9r6rzgc1fl8028mfrmrmg8s",
+ "rev": "3d61dbe266133c950b39e880f78d142751c7dc4c"
+ },
+ "recipe": {
+ "sha256": "1k19nkbxnysm3qkpdhz4gv2x9nnrp94xl40x84q8n84s6xaan4dc",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.3",
+ "deps": []
+ },
+ "helm-bundle-show": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "masutaka",
+ "repo": "emacs-helm-bundle-show",
+ "sha256": "1w0x4bn9x16pd7s1j4max6268qd4r16709sya646sbqdkk41rcxj",
+ "rev": "6dffd602a4cc5d85eade7de3be99a22b246fc437"
+ },
+ "recipe": {
+ "sha256": "1af5g233kjf04m2fryizk51a1s2mcmj36zip5nyb8skcsfl4riq7",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.1.4",
+ "deps": [
+ "helm"
+ ]
+ },
+ "irony": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "Sarcasm",
+ "repo": "irony-mode",
+ "sha256": "1wsh72dzm54srxdnlhnmbi8llc30syhbckycj5wmsamw8b89p7c2",
+ "rev": "9f0b33a5369806ba9c2f62238f64d6455a67af9e"
+ },
+ "recipe": {
+ "sha256": "1xcxrdrs7imi31nxpszgpaywq4ivni75hrdl4zzrf103xslqpl8a",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.1.2",
+ "deps": [
+ "cl-lib"
+ ]
+ },
+ "swiper-helm": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "abo-abo",
+ "repo": "swiper-helm",
+ "sha256": "1y2dbd3ikdpjvi8xz10jkrx2773h7cgr6jxm5b2bldm81lvi8x64",
+ "rev": "f3d6dba865629eed8fb14f92dab1fad50734891b"
+ },
+ "recipe": {
+ "sha256": "011ln6vny7z5vw67cpzldxf5n6sk2hjdkllyf7v6sf4m62ws93ph",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.1.0",
+ "deps": [
+ "emacs",
+ "helm",
+ "swiper"
+ ]
+ },
+ "e2wm-sww": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "aki2o",
+ "repo": "e2wm-sww",
+ "sha256": "0mz43mwcgyc1c9p9b7nflnjxdxjm2nxbhl0scj6llzphikicr35g",
+ "rev": "1063f9854bd34db5ac771cd1036cecc89834729d"
+ },
+ "recipe": {
+ "sha256": "0x45j62cjivf9v7jp1b41yya3f9akp92md6cbv0v7bwz98g2vsk8",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.0.2",
+ "deps": [
+ "e2wm"
+ ]
+ },
+ "wisp-mode": {
+ "fetch": {
+ "tag": "fetchhg",
+ "url": "https://bitbucket.com/ArneBab/wisp",
+ "sha256": "0ppj8mrlc20i2syyiwvj5rp53swrm929h0ksxxlqvn3nvl9gsajd",
+ "rev": "34fc6f12d740"
+ },
+ "recipe": {
+ "sha256": "10zkp1qbvl8dmxij7zz4p1fixs3891xr1nr57vyb3llar9fgzglc",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.9.0",
+ "deps": []
+ },
+ "syntactic-sugar": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "rolandwalker",
+ "repo": "syntactic-sugar",
+ "sha256": "1pn69f4w48jdj3wd1myj6qq2mhvygmlzbq2dws2qkjlp3kbwa6da",
+ "rev": "06d943c6ad9507603bb6ab6d37be2d359d0763a9"
+ },
+ "recipe": {
+ "sha256": "12b2vpvz5h4wzxrk8jrbgc8v0w6bzzvxcyfs083fi1791qq1rw7r",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.9.4",
+ "deps": []
+ },
+ "savekill": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/savekill.el",
+ "sha256": "1qfq83cb4qixdl15j28rlslkq6g88ig55ydg747jqb3dqyp3qaah"
+ },
+ "recipe": {
+ "sha256": "1l14p6wkzfhlqxnd9fpw123vg9q5k20ld7rciyzbfdb99pk9z02i",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": []
+ },
+ "smartrep": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "myuhe",
+ "repo": "smartrep.el",
+ "sha256": "0j5lg9gryl8vbzw8d3r2fl0c9wxa0c193mcvdfidd25b98wccc3f",
+ "rev": "0b73bf3d1a3c795671bfee0a36cecfaa54729446"
+ },
+ "recipe": {
+ "sha256": "1ypls52d51lcqhz737rqg73c6jwl6q8b3bwb29z51swyamf37rbn",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.0.0",
+ "deps": []
+ },
+ "prodigy": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "rejeep",
+ "repo": "prodigy.el",
+ "sha256": "0r32rjfsbna0g2376gdv0c0im1lzw1cwbp9690rgqjj95ls4saa3",
+ "rev": "7034873908a616853b3a65258a7580a3b402e8a2"
+ },
+ "recipe": {
+ "sha256": "032868bgy2wmb2ws48lfibs4118inpna7mmml8m7i4m4y9ll6g85",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.6.0",
+ "deps": [
+ "dash",
+ "emacs",
+ "f",
+ "s"
+ ]
+ },
+ "scss-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "antonj",
+ "repo": "scss-mode",
+ "sha256": "0zpjf9cp8g4rgnwgmhlpwnanf9lzqm3rm1mkihf0gk5qzxvwsdh9",
+ "rev": "d663069667d9b158d56e863b80dd4cc02984e49f"
+ },
+ "recipe": {
+ "sha256": "1g27xnp6bjaicxjlb9m0njc6fg962j3hlvvzmxvmyk7gsdgcgpkv",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.5.0",
+ "deps": []
+ },
+ "buttercup": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "jorgenschaefer",
+ "repo": "emacs-buttercup",
+ "sha256": "1xmzvl9l87adw7kqznnzhnh8l3iplbf82vmqax38bd8ykbw92jlf",
+ "rev": "87e0c0dab4b04d1c1a76a952b741ba6de3121bb5"
+ },
+ "recipe": {
+ "sha256": "1grrrdk5pl9l1jvnwzl8g0102gipvxb5qn6k2nmv28jpl57v8dkb",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.1",
+ "deps": []
+ },
+ "maude-mode": {
+ "fetch": {
+ "tag": "fetchsvn",
+ "url": "svn://svn.code.sf.net/p/maude-mode/code/trunk",
+ "sha256": "06k07qvhm2mbqasn72649lx3pwzb0r466854a18g6lciwhiww7vy",
+ "rev": "63"
+ },
+ "recipe": {
+ "sha256": "04b6q328hj0w33z4c50nqyark0pn5sqi0s8096m9di4rjwxaw0ma",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": []
+ },
+ "list-register": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/list-register.el",
+ "sha256": "1sv1x2bc1xg7z3q4r9pbvjspj041q4zn883w9m071h7dgx8i9a6l"
+ },
+ "recipe": {
+ "sha256": "06q7q3j9qvqbp25cx9as2ckmgcz2myfvi2n34jp60v3ayhna79r4",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": []
+ },
+ "thingatpt+": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/thingatpt+.el",
+ "sha256": "1fyx4z7ci5yisfng0ps2q1nwvziidamam1m2n53rkfmm2gprxqhb"
+ },
+ "recipe": {
+ "sha256": "0w031lzjl5phvzsmbbxn2fpziwkmdyxsn08h6b9lxbss1prhx7aa",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": []
+ },
+ "hide-comnt": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/hide-comnt.el",
+ "sha256": "1xvchpbrfwnqlh32pj0fg7n0x8csfm0mn09z7p45w3wf1mz0ckbn"
+ },
+ "recipe": {
+ "sha256": "181kns2rg4rc0pyyxw305qc06d10v025ad7v2m037y72vfwb0igx",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": []
+ },
+ "emms-player-mpv": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "dochang",
+ "repo": "emms-player-mpv",
+ "sha256": "1yy4dmjp53l2df5qix31g4vizhv80wm88vjqq6qqa9p822732n0m",
+ "rev": "a1be1d266530ede3780dd69a7243d898f1016127"
+ },
+ "recipe": {
+ "sha256": "175rmqx3bgys4chw8ylyf9rk07sg0llwbs9ivrv2d3ayhcz1lg9y",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.0.7",
+ "deps": [
+ "emms"
+ ]
+ },
+ "kibit-helper": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "brunchboy",
+ "repo": "kibit-helper",
+ "sha256": "0ky167xh1hrmqsldybzjhyqjizgjzs1grn5mf8sm2j9qwcvjw2zv",
+ "rev": "ec5f154db3bb0c838e86f527353f08644cede926"
+ },
+ "recipe": {
+ "sha256": "15viybjqksylvm5ash2kzsil0cpdka56wj1rryixa8y1bwlj8y4s",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.1.1",
+ "deps": [
+ "emacs",
+ "s"
+ ]
+ },
+ "slime": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "slime",
+ "repo": "slime",
+ "sha256": "10ydinwsm7m5jlggynhsihxl18zl8cph4rliic8i72hjc3nhqfmy",
+ "rev": "da7c32d0c54a6f2d9a4be0662c7b2d576b11eda1"
+ },
+ "recipe": {
+ "sha256": "04zcvjg0bbx5mdbsk9yn7rlprakl89dq6jmnq5v2g0n6q0mh6ign",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "2.15",
+ "deps": [
+ "cl-lib"
+ ]
+ },
+ "define-word": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "abo-abo",
+ "repo": "define-word",
+ "sha256": "1lyqd9cgj7cb2lasf6ycw5j8wnsx2nrfm8ra4sg3dgcspm01a89g",
+ "rev": "38e2f94779652fc6280a51b68dc910431513a8e1"
+ },
+ "recipe": {
+ "sha256": "035fdfwnxw0mir1dyvrimygx2gafcgnvlcsmwmry1rsfh39n5b9a",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.1.0",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "zeitgeist": {
+ "fetch": {
+ "tag": "fetchbzr",
+ "url": "lp:zeitgeist-datasources",
+ "sha256": "0f80fxh0y9lfa08fnic7ln0jn8vngfbiygy6sizdmrcxz67559vc",
+ "rev": "181"
+ },
+ "recipe": {
+ "sha256": "0gzmiwxmzcrl5mf0s7vs09p2wl7slq8xbl6ynl76iwzwjxjizahk",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": []
+ },
+ "ecukes": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "ecukes",
+ "repo": "ecukes",
+ "sha256": "1r5hlcspznvfm111l1z0r4isd582qj64sa8cqk6hyi3y1hyp1xxs",
+ "rev": "2bba6266a3fff772cd54a6cd1b1aee2c36872aa5"
+ },
+ "recipe": {
+ "sha256": "0ava8hrc7r1mzv6xgbrb84qak5xrf6fj8g9qr4i4g0cr7843nrw0",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.6.15",
+ "deps": [
+ "ansi",
+ "commander",
+ "dash",
+ "espuds",
+ "f",
+ "s"
+ ]
+ },
+ "shell-switcher": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "DamienCassou",
+ "repo": "shell-switcher",
+ "sha256": "0ia7sdip4hl27avckv3qpqgm3k4ynvp3xxq1cy53bqfzzx0gcria",
+ "rev": "2c5575ae859a82041a4bacd1793b844bfc24c34f"
+ },
+ "recipe": {
+ "sha256": "07g9naiv2jk9jxwjywrbb05dy0pbfdx6g8pkra38rn3vqrjzvhyx",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.0.1",
+ "deps": []
+ },
+ "dash": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "magnars",
+ "repo": "dash.el",
+ "sha256": "1njv5adcm96kdch0jb941l8pm51yfdx7mlz83y0pq6jlzjs9mwaa",
+ "rev": "fec6f5480d0ce03ead0e6117ac77dc7e757e76f8"
+ },
+ "recipe": {
+ "sha256": "0azm47900bk2frpjsgy108fr3p1jk4h9kmp4b5j5pibgsm26azgz",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "2.12.1",
+ "deps": []
+ },
+ "haml-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "nex3",
+ "repo": "haml-mode",
+ "sha256": "0fmr7ji8x5ki9fzybpbg3xbhzws6n7ffk7d0zf9jl1x3jd8d6988",
+ "rev": "5e0baf7b795b9e41ac03b55f8feff6b51027c43b"
+ },
+ "recipe": {
+ "sha256": "0ih0m7zr6kgn6zd45zbp1jgs1ydc5i5gmq6l080wma83v5w1436f",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "3.1.9",
+ "deps": [
+ "ruby-mode"
+ ]
+ },
+ "helm-github-stars": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "Sliim",
+ "repo": "helm-github-stars",
+ "sha256": "1sbhh3dmb47sy3r2iw6vmvbq5bpjac4xdg8i5a0m0c392a38nfqn",
+ "rev": "9211be3fbb65ca8819e0d1a54524ed8abbfaa4fa"
+ },
+ "recipe": {
+ "sha256": "1r4mc4v71171sq9rbbhm346s92fb7jnvvl91y2q52jqmrnzzl9zy",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.3.2",
+ "deps": [
+ "emacs",
+ "helm"
+ ]
+ },
+ "elmine": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "leoc",
+ "repo": "elmine",
+ "sha256": "080nnw6ddsczbm7gk50x4dkahi77fsybfiki5iyp39fjpa7lfzq3",
+ "rev": "091f61c70c9e7630a74b7b127488051d143a35e7"
+ },
+ "recipe": {
+ "sha256": "1gi94dyz9x50swkvryd4vj36rqgz4s58nrb4h4vwwviiiqmc8fvz",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.3",
+ "deps": []
+ },
+ "ace-jump-zap": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "waymondo",
+ "repo": "ace-jump-zap",
+ "sha256": "0yng6qayzqadk4cdviri84ghld4can35q134hm3n3j3vprhpbmca",
+ "rev": "0acdd83a5abd59606495e67a4ee01f7856e5d359"
+ },
+ "recipe": {
+ "sha256": "07bkmly3lvlbby2m13nj3m1q0gcnwy5sas7d6ws6vr9jh0d36byb",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.1.1",
+ "deps": [
+ "ace-jump-mode",
+ "dash"
+ ]
+ },
+ "anchored-transpose": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/anchored-transpose.el",
+ "sha256": "1hklypbp79pgaf1yklbm3qx4skm3xlml0cm1r9b9js3dbqyha651"
+ },
+ "recipe": {
+ "sha256": "19dgj1605qxc2znvzj0cj6x29zyrh00qnzk2rlwpn9hvzypg9v7w",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": []
+ },
+ "smeargle": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "syohex",
+ "repo": "emacs-smeargle",
+ "sha256": "1pcpg3lalbrc24z3vwcaysps8dbdzmncdgqdd5ig6yk2a9wyj9ng",
+ "rev": "fe0494bb859ea51800d6e7ae7d9eda2fe98e0097"
+ },
+ "recipe": {
+ "sha256": "1dy87ah1w21csvrkq5icnx7g7g7nxqkcyggxyazqwwxvh2silibd",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.02",
+ "deps": [
+ "cl-lib",
+ "emacs"
+ ]
+ },
+ "epc": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "kiwanami",
+ "repo": "emacs-epc",
+ "sha256": "05r2m7zghbdrgscg0x78jnhk1g6fq8iylar4cx699zm6pzvlq98z",
+ "rev": "152e6e10a79b56ebc7568054589cf6c3c44595c7"
+ },
+ "recipe": {
+ "sha256": "1l9rcx07pa4b9z5654gyw6b64c95lcigzg15amphwr56v2g3rbzx",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.1.0",
+ "deps": [
+ "concurrent",
+ "ctable"
+ ]
+ },
+ "suomalainen-kalenteri": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "tlikonen",
+ "repo": "suomalainen-kalenteri",
+ "sha256": "1b637p2cyc8a83qv9vba4yamzhk08f62zykqh5p35jwvym8wkann",
+ "rev": "b7991cb35624ebc04a89bbe759d40f186c9c097e"
+ },
+ "recipe": {
+ "sha256": "1wzijbgcr3jc47ccr7nrdkqha16s6gw0xiccnmdczi48cvnvvlkh",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "2015.11.29",
+ "deps": []
+ },
+ "init-loader": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "emacs-jp",
+ "repo": "init-loader",
+ "sha256": "031vb7ndz68x0119v4pyizz0ykd341ywcp5s7i4z35zx1vcqj8az",
+ "rev": "128ee76adbf431f0b8c30a3a29cb20c9c5100cde"
+ },
+ "recipe": {
+ "sha256": "0rq7759abp0ml0l8dycvdl0j5wsxw9z5y9pyx68973a4ssbx2i0r",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.02",
+ "deps": []
+ },
+ "font-lock+": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/font-lock+.el",
+ "sha256": "1w159k5hn9z7ydx5gq4hph7gvbqs4ml4qbfgpsib5z39v7x6wkv4"
+ },
+ "recipe": {
+ "sha256": "1wn99cb53ykds87lg9mrlfpalrmjj177nwskrnp9wglyqs65lk4g",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": []
+ },
+ "session": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "emacsorphanage",
+ "repo": "session",
+ "sha256": "0sp952abz7dkq8b8kkzzmnwnkq5w15zsx5dr3h8lzxb92lnank9v",
+ "rev": "19ea0806873daac3539a4b956e15655e99e3dd6c"
+ },
+ "recipe": {
+ "sha256": "0fghxbnf1d5iyrx1q8xd0lbw9nvkdgg2v2f89j6apnawisrsbhwx",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "2.3a",
+ "deps": []
+ },
+ "bundler": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "tobiassvn",
+ "repo": "bundler.el",
+ "sha256": "18d74nwcpk1i8adxzfwz1lgqqcxsc4wkrb490v64pph79dxsi80h",
+ "rev": "4cb4fafe092d587cc9e58ff61cf900fb7f409adf"
+ },
+ "recipe": {
+ "sha256": "0i5ybc6i8ackxpaa75kwrg44zdq3jkvy48c42vaaafpddjwjnsy4",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.1.0",
+ "deps": [
+ "inf-ruby"
+ ]
+ },
+ "jsfmt": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "brettlangdon",
+ "repo": "jsfmt.el",
+ "sha256": "0pjmslxwmlb9cb3j5qfsyxq1lg1ywzw1p9dvj330c2m7nla1j70x",
+ "rev": "c5d9742872509143db0250a77db705ef78f02cd0"
+ },
+ "recipe": {
+ "sha256": "1syy32sv2d57b3gja0ly65h36mfnyq6hzf5lnnl3r58yvbdzngqd",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.2.0",
+ "deps": []
+ },
+ "go-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "dominikh",
+ "repo": "go-mode.el",
+ "sha256": "1qqsck11v3ki18qld7hrb7dis60c2ylmq15s7srsppzwil8wm3fx",
+ "rev": "dce210fdde620bed3d179816fda79dc83a66b8de"
+ },
+ "recipe": {
+ "sha256": "1852zjxandmq0cpbf7m56ar3rbdi7bx613gdgsf1bg8hsdvkgzfx",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.3.1",
+ "deps": []
+ },
+ "xtest": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "promethial",
+ "repo": "xtest",
+ "sha256": "1wqx6hlqcmqiljydih5fx89dw06g8w728pyn4iqsap8jwgjngb09",
+ "rev": "b227414d714e7baddef79bd306a43024b9a34d45"
+ },
+ "recipe": {
+ "sha256": "1vbs4sb4frzg8d3l96ip9cc6lc86nbj50vpdfqazvxmdfd1sg4i7",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.1.0",
+ "deps": [
+ "cl-lib"
+ ]
+ },
+ "noccur": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "NicolasPetton",
+ "repo": "noccur.el",
+ "sha256": "0wk86gm0by9c8mfbvydz5va07qd30n6wx067inqfa7wjffaq0xr7",
+ "rev": "6cc02ce07178a61ae38a849f80472c01969272bc"
+ },
+ "recipe": {
+ "sha256": "0a8l50v09bgap7rsls808k9wyjpjbcxaffsvz7hh9rw9s7m5fz5g",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.2",
+ "deps": []
+ },
+ "speck": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/speck.el",
+ "sha256": "1i2z57aasljia6xd2xn1mryklc2gc9c2q1fad8wn7982sl277d10"
+ },
+ "recipe": {
+ "sha256": "19h3syk4kjmcy7jy9nlsbq6gyxwl4xsi84dy66a3cpvmknm25kyg",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": []
+ },
+ "lispyscript-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "krisajenkins",
+ "repo": "lispyscript-mode",
+ "sha256": "0qyj04p63fdh3iasp5cna1z5fhibmfyl9lvwyh22ajzsfbr3nhnk",
+ "rev": "9a4200085e2a15725a58616d131a56f5edce214b"
+ },
+ "recipe": {
+ "sha256": "02biai45l5xl2m9l1drphrlj6r01msmadhyg774ijdk1x4gm5nhr",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.3.5",
+ "deps": []
+ },
+ "ac-anaconda": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "proofit404",
+ "repo": "ac-anaconda",
+ "sha256": "0vrd6g9cl02jjxrjxpshq4pd748b5xszhpmakywrw8s08nh8jf44",
+ "rev": "d0dec5c026235f65f9fd6594540df8886ed1b6a8"
+ },
+ "recipe": {
+ "sha256": "124nvigk6y3iw0lj2r7div88rrx8vz59xwqph1063jsrc29x8rjf",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.1.0",
+ "deps": [
+ "anaconda-mode",
+ "auto-complete",
+ "dash"
+ ]
+ },
+ "fliptext": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/fliptext.el",
+ "sha256": "1viigj04kla20dk46xm913jzqrmx05rpjrpghnc0ylbqppqdwzpw"
+ },
+ "recipe": {
+ "sha256": "0cmyan9hckjsv5wk1mvjzif9nrc07frhzkhhl6pkgm0j0f1q30ji",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": []
+ },
+ "magit": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "magit",
+ "repo": "magit",
+ "sha256": "01x9kahr3szzc00wlfrihl4x28yrq065fq4rpzx9dxiksayk24pd",
+ "rev": "16a7a12c44d63e78e9b223fca7c1c23a144d3ef1"
+ },
+ "recipe": {
+ "sha256": "0kcx8pqzvl7xgx7f8q7xck83ghkx6cjsa2nczxj1virap1nkfhkw",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "2.3.1",
+ "deps": [
+ "async",
+ "dash",
+ "emacs",
+ "git-commit",
+ "magit-popup",
+ "with-editor"
+ ]
+ },
+ "sly": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "capitaomorte",
+ "repo": "sly",
+ "sha256": "1aihr5pbdqjb5j6xsghi7qbrmp46kddv76xmyx5z98m93n70wzqf",
+ "rev": "1942c53fc40fd6ace0e822b5c9bf551f59061f32"
+ },
+ "recipe": {
+ "sha256": "1pmyqjk8fdlzwvrlx8h6fq0savksfny78fhmr8r7b07pi20y6n9l",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "2.14",
+ "deps": []
+ },
+ "magit-stgit": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "magit",
+ "repo": "magit-stgit",
+ "sha256": "1mk8g8rr9vf8jm0mmsj33p8gc71nhlv3847hvqywy6z40nhcjnyb",
+ "rev": "d1793345a8d32b2c509077d634ca73148a68de4b"
+ },
+ "recipe": {
+ "sha256": "12wg1ig2jzy2np76brpwxdix9pwv75chviq3c24qyv4y80pd11sv",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "2.1.2",
+ "deps": [
+ "emacs",
+ "magit"
+ ]
+ },
+ "shelltest-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "rtrn",
+ "repo": "shelltest-mode",
+ "sha256": "0mn7bwvj1yv75a2531jp929j6ypckdfqdg6b5ig0kkbcrrwb7kxs",
+ "rev": "fead97c7ff1b39715ec033a793de41176f1788f5"
+ },
+ "recipe": {
+ "sha256": "1inb0vq34fbwkr0jg4dv2lljag8djggi8kyssrzhfawri50m81nh",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.1",
+ "deps": []
+ },
+ "tagedit": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "magnars",
+ "repo": "tagedit",
+ "sha256": "0kq40g46s8kgiafrhdq99h79rz9h5fvgz59k7ralmf86bl4sdmdb",
+ "rev": "3fcf54b824b75c5ad68f5438d5638103049a389f"
+ },
+ "recipe": {
+ "sha256": "0vfkbrxmrw4fwdz324s734zxdxm2nj3df6i8m6lgb9pizqyp2g6z",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.4.0",
+ "deps": [
+ "dash",
+ "s"
+ ]
+ },
+ "navi-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "tj64",
+ "repo": "navi",
+ "sha256": "15jh1lsgqfnpbmrikm8kdh5bj60yb96f2as2anppjjsgl6w96glh",
+ "rev": "5c979b3b3873b0e67751a1321a9e271d066f2022"
+ },
+ "recipe": {
+ "sha256": "0f5db983w9kxq8mcjr22zfrm7cpxydml4viac62lvab2kwbpbrmi",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "2.0",
+ "deps": []
+ },
+ "flymake-sass": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "purcell",
+ "repo": "flymake-sass",
+ "sha256": "0c74qdgy9c4hv3nyjnbqdzypbg9399vq3p5ngp5lasc7iz6vi0h8",
+ "rev": "1c7664818db539de7f3dab396c013528a3f5b8b4"
+ },
+ "recipe": {
+ "sha256": "0sz6n5r9pdphgvvaljg9zdwj3dqayaxzxmb4s8x4b05c8yx3ba0d",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.6",
+ "deps": [
+ "flymake-easy"
+ ]
+ },
+ "sackspace": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "cofi",
+ "repo": "sackspace.el",
+ "sha256": "06gqqbkn85l2p05whmr4wkg9axqyzb7r7sgm3r8wfshm99kgpxvl",
+ "rev": "fd0480eaaf6d3d11fd30ac5feb2da2f4f7572708"
+ },
+ "recipe": {
+ "sha256": "1m10iw83k6m7v7sg2dxzdy83zxq6svk8h9fh4ankyn3baqrdxg5z",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.8.2",
+ "deps": []
+ },
+ "org2blog": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "punchagan",
+ "repo": "org2blog",
+ "sha256": "0av1477jn3s4s5kymd7sbb0av437vb5mnfc6rpfgzwji7b8mfr7l",
+ "rev": "ad389ae994d269a57e56fbea68df7e6fe5c2ff55"
+ },
+ "recipe": {
+ "sha256": "0ancvn4ji4552k4nfd2ijclsd027am93ngg241ll8f6h6k0wpmzq",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.9.2",
+ "deps": [
+ "metaweblog",
+ "org",
+ "xml-rpc"
+ ]
+ },
+ "mhc": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "yoshinari-nomura",
+ "repo": "mhc",
+ "sha256": "1bp4xqklf422n0zwwyj0ag3a4nndg8klazrga6rlvpy01hgg3drl",
+ "rev": "46d2a983b77b3139c9694ffba16ae875edc7d5b0"
+ },
+ "recipe": {
+ "sha256": "02ikn9hx0kcfc2xrx4f38zpkfi6vgz7chcxk6q5d0vcsp93b4lql",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.1.1",
+ "deps": [
+ "calfw"
+ ]
+ },
+ "company-ghc": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "iquiw",
+ "repo": "company-ghc",
+ "sha256": "0y9i0q37xjbnlnlxq7xjvnpn6ykzbd55g6nbw10z1wg0m2v7f96r",
+ "rev": "64e4f9d0cf9377138a8dee34c69e7d578fd71090"
+ },
+ "recipe": {
+ "sha256": "07adykza4dqs64bk8vjmgryr54khxmcy28hms5z8i1qpsk9vmvnn",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.1.0",
+ "deps": [
+ "cl-lib",
+ "company",
+ "emacs",
+ "ghc"
+ ]
+ },
+ "evil": {
+ "fetch": {
+ "tag": "fetchhg",
+ "url": "https://bitbucket.com/lyro/evil",
+ "sha256": "0m1nd5v0f72lvispjrsfph8iyv2z7gsf8awwmfdghag348bmvjn3",
+ "rev": "73ad80e8fea1"
+ },
+ "recipe": {
+ "sha256": "09qrhy7l229w0qk3ba1i2xg4vqz8525v8scrbm031lqp30jp54hc",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.2.8",
+ "deps": [
+ "goto-chg",
+ "undo-tree"
+ ]
+ },
+ "ruby-end": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "rejeep",
+ "repo": "ruby-end",
+ "sha256": "1cpz9vkp57nk682c5xm20g7bfj5g2aq5ahpk4nhgx7pvd3xvr1ds",
+ "rev": "648b81af136a581bcef387744d93c011d9cdf54b"
+ },
+ "recipe": {
+ "sha256": "0cx121hji8ws6s3p2xfdgidm363y05g2n880fqrmzyz27cqkljis",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.4.1",
+ "deps": []
+ },
+ "f": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "rejeep",
+ "repo": "f.el",
+ "sha256": "13issmwp77mswrqwhx2qcyxavv68x7lrql5za5cz24yzzy6zrp2x",
+ "rev": "7003428ead6d80e81ff14c3614239efdbce7391b"
+ },
+ "recipe": {
+ "sha256": "0s7fqav0dc9g4y5kqjjyqjs90gi34cahaxyx2s0kf9fwcgn23ja2",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.18.0",
+ "deps": [
+ "dash",
+ "s"
+ ]
+ },
+ "ac-cider": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "clojure-emacs",
+ "repo": "ac-cider",
+ "sha256": "1vpj0lxbvlxffj2z29l109w70hcphiavyvglsw524agxql3c8yf9",
+ "rev": "0dcb8e3028f9f658cacbe1ac3e99b02575e2ecd4"
+ },
+ "recipe": {
+ "sha256": "1dszpb706h34miq2bxqyq1ycbran5ax36vcniwp8vvhgcjsw5sz6",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.2.1",
+ "deps": [
+ "auto-complete",
+ "cider",
+ "cl-lib"
+ ]
+ },
+ "project-root": {
+ "fetch": {
+ "tag": "fetchhg",
+ "url": "https://bitbucket.com/piranha/project-root",
+ "sha256": "08dd2y6hdsj1rxcqa2hnjypnn9c2z43y7z2hz0fi4vny547qybz8",
+ "rev": "fcd9df2eadca"
+ },
+ "recipe": {
+ "sha256": "0xjir204zk254y2x70k9vqwirx2ljmrikpsgn5kn170d1bxvhwmb",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.7",
+ "deps": []
+ },
+ "irfc": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/irfc.el",
+ "sha256": "197ybqwbj8qjh2p9pkf5mvqnrkpcgmv8c5s2gvl6msyrabk0mnca"
+ },
+ "recipe": {
+ "sha256": "0186l6zk5l427vjvmjvi0xhwk8a4fjhsvw9kd0yw88q3ggpdl25i",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": []
+ },
+ "swbuff-x": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/swbuff-x.el",
+ "sha256": "1fkicyjvanh8yk2y27sq075sarcyqhsdz0r4xhillpnv34ji98r5"
+ },
+ "recipe": {
+ "sha256": "1wglcxgfr839lynwsl8i7fm70sxxjidy3ib6ibz0kgiwr41rh49y",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": [
+ "swbuff"
+ ]
+ },
+ "sound-wav": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "syohex",
+ "repo": "emacs-sound-wav",
+ "sha256": "0q2ragq4hw89d3w48ykwljb19n2nhz8z6bsmb10shimaf203652g",
+ "rev": "215e23b118fba11a7132b7c79326ad0a723e2605"
+ },
+ "recipe": {
+ "sha256": "1vrwzk6zqma7r0w5ivbx16shys6hsifj52fwlf5rxs6jg1gqdb4f",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.01",
+ "deps": [
+ "cl-lib",
+ "deferred"
+ ]
+ },
+ "psession": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "thierryvolpiatto",
+ "repo": "psession",
+ "sha256": "0msa8c29djhy5h3zpdvx25f4y1c50rgsk8iz6r127psrxdlfrvg8",
+ "rev": "138b27f57bdc3ff53ec5896439e8ed00294a5ea2"
+ },
+ "recipe": {
+ "sha256": "18va6kvpia5an74vkzccs72z02vg4vq9mjzr5ih7xbcqxna7yv3a",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.1",
+ "deps": [
+ "cl-lib",
+ "emacs"
+ ]
+ },
+ "elfeed-web": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "skeeto",
+ "repo": "elfeed",
+ "sha256": "0132jl4fl2ycais9l0csykg466ppq8cc4181d3dx87zf7fdhrgwp",
+ "rev": "4c15ed9f9559285df196c9b793bd5168662b6532"
+ },
+ "recipe": {
+ "sha256": "14ydwvjjc6wbhkj4g4xdh0c3nh4asqsz8ln7my5vjib881vmaq1n",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.3.0",
+ "deps": [
+ "elfeed",
+ "emacs",
+ "simple-httpd"
+ ]
+ },
+ "cljr-helm": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "philjackson",
+ "repo": "cljr-helm",
+ "sha256": "18gv8vmmpiyq16cq4nr9nk2bmc5y2rsv21wjl4ji29rc7566shha",
+ "rev": "916d070503d0f484f36626c7a42f156b737e3fab"
+ },
+ "recipe": {
+ "sha256": "108a1xgnc6qy088vs41j3npwk25a5vny0xx4r3yh76jsmpdpcgnc",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.7",
+ "deps": [
+ "clj-refactor",
+ "helm"
+ ]
+ },
+ "ansible": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "k1LoW",
+ "repo": "emacs-ansible",
+ "sha256": "03d240jngxw51ybrsjw8kdxygrr0ymdckzwga2jr1bqf26v559j2",
+ "rev": "e9b9431738de4808d8ef70871069f68885cc0d98"
+ },
+ "recipe": {
+ "sha256": "1xdc05fdglqfbizra6s1zl6knnvaq526dkxqnw9g7w269j8f4z8g",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.1.0",
+ "deps": [
+ "f",
+ "s"
+ ]
+ },
+ "japanlaw": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "mhayashi1120",
+ "repo": "japanlaw.el",
+ "sha256": "08gkxxaw789g1r0dql11skz6i8bdrrz4wp87fzs9f5rgx99xxr6h",
+ "rev": "d90b204b018893d5d75286c92948c0bddf94cce2"
+ },
+ "recipe": {
+ "sha256": "1pxss1mjk5660k80r1xqgslnbrsr6r4apgp9abjwjfxpg4f6d0sa",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.9.1",
+ "deps": []
+ },
+ "link-hint": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "noctuid",
+ "repo": "link-hint.el",
+ "sha256": "1v4fadxv7ym6lc09nd2xpz2k5vrikjv7annw99ii5cqrwhqa5838",
+ "rev": "d26b5330e6e42b4bed4e4730054b4c5e308ceab2"
+ },
+ "recipe": {
+ "sha256": "12fb2zm9jnh92fc2nzmzmwjlhi64rhakwbh9lsydx9svsvkgcs89",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.1",
+ "deps": []
+ },
+ "git-commit": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "magit",
+ "repo": "magit",
+ "sha256": "01x9kahr3szzc00wlfrihl4x28yrq065fq4rpzx9dxiksayk24pd",
+ "rev": "16a7a12c44d63e78e9b223fca7c1c23a144d3ef1"
+ },
+ "recipe": {
+ "sha256": "1i7122fydqga68cilgzir80xfq77hnrw75zrvn52mjymfli6aza2",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "2.3.1",
+ "deps": [
+ "dash",
+ "emacs",
+ "with-editor"
+ ]
+ },
+ "json-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "joshwnj",
+ "repo": "json-mode",
+ "sha256": "0sxkp9m68rvff8dbr8jlsx85w5ngifn19lwhcydysm7grbwzrdi3",
+ "rev": "ce275e004dc7265047a80dec68b24eb058b200f0"
+ },
+ "recipe": {
+ "sha256": "014j10wgxsqy6d6aksnkz2dr5cmpsi8c7v4a825si1vgb4622a70",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.6.0",
+ "deps": [
+ "json-reformat",
+ "json-snatcher"
+ ]
+ },
+ "fountain-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "rnkn",
+ "repo": "fountain-mode",
+ "sha256": "0yycn339vqglny1bs4c8jsaf85cyj0rzzn8wzsf5k5srh9yivzdq",
+ "rev": "167238b3cdd5e510300abe3afd02b820f026b501"
+ },
+ "recipe": {
+ "sha256": "1i55gcjy8ycr1ww2fh1a2j0bchx1bsfs0zd6v4cv5zdgy7vw6840",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.5.0",
+ "deps": [
+ "s"
+ ]
+ },
+ "ace-jump-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "winterTTr",
+ "repo": "ace-jump-mode",
+ "sha256": "1bwvzh056ls2v7y26a0s4j5mj582dmds04lx4x6iqihs04ss74bb",
+ "rev": "a62a6867811cd739dd98a5e00a2d2e17edfb5b71"
+ },
+ "recipe": {
+ "sha256": "0yk0kppjyblr5wamncrjm3ym3n8jcl0r0g0cbnwni89smvpngij6",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "2.0",
+ "deps": []
+ },
+ "ob-translate": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "krisajenkins",
+ "repo": "ob-translate",
+ "sha256": "10hm20dzhkxk61ass3bd5gdn1bs2l60y3zjnpkxinzn7m6aaniia",
+ "rev": "6b39cc1a94a1071107a4391684b1bffb5b9826f3"
+ },
+ "recipe": {
+ "sha256": "1hi0rxbyxvk9sbk2fy3kqw7l4lgri921vya1mn4i1q2i1979r2gz",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.1.2",
+ "deps": [
+ "google-translate",
+ "org"
+ ]
+ },
+ "default-text-scale": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "purcell",
+ "repo": "default-text-scale",
+ "sha256": "031f8ls1q80j717cg6b4pjd37wk7vrl5hcycsn8ca7yssmqa8q81",
+ "rev": "c90c08b9fe5f25474067a00c4a4babdb413b25b1"
+ },
+ "recipe": {
+ "sha256": "18r90ic38fnlsbg4gi3r962vban398x2bf3rqhrc6z4jk4aiv3mi",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.1",
+ "deps": []
+ },
+ "shm": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "chrisdone",
+ "repo": "structured-haskell-mode",
+ "sha256": "1vf766ja8f4xp1f5pmwgz6a85km0nxvc5dn571lwidfrrdbr9rkk",
+ "rev": "8abc5cd73e59ea85bef906e14e87dc388c4f350f"
+ },
+ "recipe": {
+ "sha256": "1qmp8cc83dcz25xbyqd4987i0d8ywvh16wq2wfs4km3ia8a2vi3c",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.0.20",
+ "deps": []
+ },
+ "strings": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/strings.el",
+ "sha256": "0svvgrssd4r027d25g167lf9cpks3la5zhvyd50gjrhryyxkf225"
+ },
+ "recipe": {
+ "sha256": "0n3239y7biq3rlg74m7nqimhf654w4snnw2zm7z84isgwzz2dphk",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": []
+ },
+ "iy-go-to-char": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/iy-go-to-char.el",
+ "sha256": "19l9d5gp1xj40iyy35r8hh7v6bjnzjx7pb8dvwrmndzg0rlsp7mi"
+ },
+ "recipe": {
+ "sha256": "055qj2pc32l824vyjl2w2j8c3rpd9g4x0sazi8svqf923lgcs5s8",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": []
+ },
+ "git-gutter-fringe": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "syohex",
+ "repo": "emacs-git-gutter-fringe",
+ "sha256": "1cw5x1w14lxy8mqpxdrd9brgps0nig2prjjjda4a19wfsvy3clmv",
+ "rev": "3efa997ec8330d3e408a225616273d1d40327aec"
+ },
+ "recipe": {
+ "sha256": "14wyiyyi2rram2sz3habvmygy5a5m2jfi6x9fqcyfr3vpcjn1k4i",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.22",
+ "deps": [
+ "cl-lib",
+ "emacs",
+ "fringe-helper",
+ "git-gutter"
+ ]
+ },
+ "flyspell-lazy": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "rolandwalker",
+ "repo": "flyspell-lazy",
+ "sha256": "1g09s57b773nm9xqslzbin5i2h18k55nx00s5nnkvx1qg0n0mzkm",
+ "rev": "31786fe04a4732d2f845e1c7e96fcb030182ef10"
+ },
+ "recipe": {
+ "sha256": "0lzazrhsfh5m7n57dzx0v46d5mg87wpwwkjzf5j9gpv1mc1xfg1y",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.6.10",
+ "deps": []
+ },
+ "insert-shebang": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "psachin",
+ "repo": "insert-shebang",
+ "sha256": "1mqnz40zirnyn3wa71wzzjph3a0sbgvzcywcr7xnzqpl6sp7g93f",
+ "rev": "4161cc8c7d07d0979684838fa8e3eec582351d97"
+ },
+ "recipe": {
+ "sha256": "0z88l1q925v9lwzr6nas9qjy0f57qxilg6smgpx9wj6lll3f7p5v",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.9.4",
+ "deps": []
+ },
+ "anything-exuberant-ctags": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "k1LoW",
+ "repo": "anything-exuberant-ctags",
+ "sha256": "01lw9159axg5w9bpdy55m4zc902zmsqvk213ky1nmgnln0fvq3rd",
+ "rev": "97fa91eb04df11bdf4558fe7bb2f6aebf8be0d6c"
+ },
+ "recipe": {
+ "sha256": "0p0jq2ggdgaxv2gd9m5iza0y3mjjc82xmgp899yr15pfffa4wihk",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.1.2",
+ "deps": [
+ "anything"
+ ]
+ },
+ "py-autopep8": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "paetzke",
+ "repo": "py-autopep8.el",
+ "sha256": "06xdq2slwhkcqlbv7x86zmv55drzif9cwjlj543cwhncphl2x9rd",
+ "rev": "685414b19106b99a4384fa0c9ce4817c659e0e81"
+ },
+ "recipe": {
+ "sha256": "1argjdmh0x9c90zkb6cr4z3zkpgjp2mkpsw0dr4v6gg83jcggfpp",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.7.0",
+ "deps": []
+ },
+ "syntax-subword": {
+ "fetch": {
+ "tag": "fetchhg",
+ "url": "https://bitbucket.com/jpkotta/syntax-subword",
+ "sha256": "1p9bp09nibw7rra3r6nj496zdx09db6k82dxnxs1lfgdiswfdq2h",
+ "rev": "a1e0accb754d"
+ },
+ "recipe": {
+ "sha256": "1as89ffqz2h69fdwybgs5wibnrvskm7hd58vagfjkla9pjlpffpm",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.2",
+ "deps": []
+ },
+ "nyan-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "TeMPOraL",
+ "repo": "nyan-mode",
+ "sha256": "14vd0f4y5l470hx7kg54sx3352459mhjnrh7jl822gkl8c904lmw",
+ "rev": "251d8f9c3686183294d76abcd816c8d69b6a71a3"
+ },
+ "recipe": {
+ "sha256": "1z2wnsbjllqa533g1ab5cgbv3d9hjix7fsd7z9c45nqh5cmadmyv",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.0.0",
+ "deps": []
+ },
+ "repeatable-motion": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "willghatch",
+ "repo": "emacs-repeatable-motion",
+ "sha256": "007lqahjbig6yygqik6fgbq114784z6l40a3vrc4qs9361zqizck",
+ "rev": "e664b0a4a3e39c4085378a28b5136b349a0afb22"
+ },
+ "recipe": {
+ "sha256": "12z4z8apd8ksf6dfvqm54l71mx68j0yg4hrjypa9p77fpcd6p0zw",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.2",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "abc-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "mkjunker",
+ "repo": "abc-mode",
+ "sha256": "13f4l9xzx4xm5m80kkb49zh31w0bn0kw9m5ca28rrx4aysqmwryv",
+ "rev": "6b5ab7402287dab5a091e94fec9982dc45d9d287"
+ },
+ "recipe": {
+ "sha256": "0qf5lbszyscmagiqhc0d05vzkhdky7ini4w33z1h3j5417sscrcx",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20140225.944",
+ "deps": []
+ },
+ "enotify": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "laynor",
+ "repo": "enotify",
+ "sha256": "1in4wbwkxn8qfcsfjbczzk73z74w4ixlml61wk666dw0kpscgbs5",
+ "rev": "75c84b53703e5d52cb18acc9251b87ffa400f388"
+ },
+ "recipe": {
+ "sha256": "0mii6m6zw9y8njgzi79rcf1n251iw7qz3yqjjij3c19rk3zpm5qi",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.1.3",
+ "deps": []
+ },
+ "org-outlook": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "mattfidler",
+ "repo": "org-outlook.el",
+ "sha256": "15fy6xpz6mk4j3nkrhiqal2dp77rhxmk8a7xiw037xr1jgq9sd9a",
+ "rev": "070c37d017ccb71d94c3c69c99632fa6570ec2cc"
+ },
+ "recipe": {
+ "sha256": "0cn8h6yy67jr5h1yxsfqmr8q7ii4f99pgghfp821m01pj55qyjx9",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.11",
+ "deps": []
+ },
+ "kill-ring-search": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "nschum",
+ "repo": "kill-ring-search.el",
+ "sha256": "0axvhikhg4fikiz4ifg0p4a5ygphbpjs0wd0gcbx29n0y54d1i93",
+ "rev": "3a5bc1767f742c91aa788df79ecec836a0946edb"
+ },
+ "recipe": {
+ "sha256": "1pg4j1rrji64rrdv2xpwz33vlyk8r0hz4j4fikzwpbcbmni3skan",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.1",
+ "deps": []
+ },
+ "scala-outline-popup": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "ancane",
+ "repo": "scala-outline-popup",
+ "sha256": "1sq0p0na0yxkipv6fv4wcrfpl1k9sb8nyqmwg0ql2i7gwlpiqrx9",
+ "rev": "f950e026ffbf471046f02edea56f0d329cca0e01"
+ },
+ "recipe": {
+ "sha256": "1fq0k6l57wkya1ycm4cc190kg90j2k9clnl0sc70achp4i47qbk7",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.3.4",
+ "deps": [
+ "dash",
+ "popup",
+ "scala-mode2"
+ ]
+ },
+ "smart-tabs-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "jcsalomon",
+ "repo": "smarttabs",
+ "sha256": "1kfihh4s8578cwqyzn5kp3iib7f9vvg6rfc3klqzgads187ryd4z",
+ "rev": "8b196d596b331f03fba0efdb4e31d2fd0752c4a7"
+ },
+ "recipe": {
+ "sha256": "1fmbi0ypzhsizzb1vm92hfaq23swiyiqvg0pmibavzqyc9lczhhl",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.0",
+ "deps": []
+ },
+ "amd-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "NicolasPetton",
+ "repo": "amd-mode.el",
+ "sha256": "00kfnkr0rclzbir2xxzr9wf2g0hf1alc004v8i9mqf3ab6dgdqiy",
+ "rev": "16500ccc16e98bf28395b576afa83ec7bcb7b101"
+ },
+ "recipe": {
+ "sha256": "17ry6vm5xlmdfs0mykdyn05cik38yswq5axdgn8hxrvvb6f58d06",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.0",
+ "deps": [
+ "dash",
+ "f",
+ "js2-mode",
+ "js2-refactor",
+ "makey",
+ "projectile",
+ "s"
+ ]
+ },
+ "lua-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "immerrr",
+ "repo": "lua-mode",
+ "sha256": "1psk4202rmkkfy1ir1ax4x4djfngd5pfry7x30ybq2ifqzymb9qb",
+ "rev": "bdf121b2c05bc74d3d7961a91d7afeb6176e0f45"
+ },
+ "recipe": {
+ "sha256": "0gyi7w2h192h3pmrhq39lxwlwd9qyqs303lnp2655pikdzk9js94",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20151025",
+ "deps": []
+ },
+ "ace-window": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "abo-abo",
+ "repo": "ace-window",
+ "sha256": "07mcdzjmgrqdvjs94f2n5bkrf5vrq2fwzz256wbm3wzqxqkfy1q6",
+ "rev": "eef897e590c4ce63c28fd29ebff3c97aec8a69ae"
+ },
+ "recipe": {
+ "sha256": "1k0x8m1phmvgdxb5aj841iai9q96a5lfq8i4b5vnlbc3w888n3xa",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.9.0",
+ "deps": [
+ "avy"
+ ]
+ },
+ "ace-popup-menu": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "mrkkrp",
+ "repo": "ace-popup-menu",
+ "sha256": "061gi4w43dvdys2i0ffc3bnzhrkc83h5x2c43yv4fwb3xz0zn9h0",
+ "rev": "eb8d0d938debdf89575d2ed204aeb7c0b52060b0"
+ },
+ "recipe": {
+ "sha256": "1cq1mpv7v98bqrpsm598krq1741b6rwih71cx3yjifpbagrv4m5s",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.1.1",
+ "deps": [
+ "avy",
+ "cl-lib",
+ "emacs"
+ ]
+ },
+ "zoom-window": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "syohex",
+ "repo": "emacs-zoom-window",
+ "sha256": "1dwf3980rnwc85s73j8accwgpcdhsa6fqdrppbrqb8f7c05q8303",
+ "rev": "d92dcf265170cf8ea0294d1aaf2e6025eda228e6"
+ },
+ "recipe": {
+ "sha256": "0l9683nk2bdm49likk9c55c23qfy6f1pn04drqwd1vhpanz4l4b3",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.02",
+ "deps": []
+ },
+ "ghc-imported-from": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "david-christiansen",
+ "repo": "ghc-imported-from-el",
+ "sha256": "1ywwyc2kz1c1s26c412nmzh55cinh84cfiazyyi3jsy5zzwhrbhi",
+ "rev": "fcff08628a19f5d26151564659218cc677779b79"
+ },
+ "recipe": {
+ "sha256": "10cxz4c341lknyz4ns63bri00mya39278xav12c73if03llsyzy5",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.1.2",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "company-emoji": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "dunn",
+ "repo": "company-emoji",
+ "sha256": "1f8sjjms9kxni153pia6b45p2ih2mhm2r07d0j3fmxmz3q2jdldd",
+ "rev": "c77e9c6f87a7853787c70eae885e12b6162d4cc5"
+ },
+ "recipe": {
+ "sha256": "1mflqqw9gnfcqjb6g8ivdfl7s4mdyjg7j0457hamgyvgvpxsh8x3",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "2.3.0",
+ "deps": [
+ "cl-lib",
+ "company"
+ ]
+ },
+ "graphene-meta-theme": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "rdallasgray",
+ "repo": "graphene-meta-theme",
+ "sha256": "1bidfn4x5lb6dylhadyf05g4l2k7jg83mi058cmv76av1glawk17",
+ "rev": "5d848233ac91c1e3560160a4eba60944f5837d35"
+ },
+ "recipe": {
+ "sha256": "1cqdr93lccdpxkzgap3r3qc92dh8vqgdlnxvqkw7lrcbs31fvf3q",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.0.2",
+ "deps": []
+ },
+ "e2wm-term": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "aki2o",
+ "repo": "e2wm-term",
+ "sha256": "0qv3kh6q3q7vgfsd8x25x8agi3fp96dkpjnxdidkwk6k8h9n0jzw",
+ "rev": "65b5ac88043d5c4048920a048f3599904ca55981"
+ },
+ "recipe": {
+ "sha256": "0wrq06yap80a96l9l0hs7x7rng7sx6vi1hz778kknb6il4f2f45g",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.0.5",
+ "deps": [
+ "e2wm",
+ "log4e",
+ "yaxception"
+ ]
+ },
+ "files+": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/files+.el",
+ "sha256": "0yl98k1yxmqidyc08dn20dmqkb450xnanqr0iqs01z3q6agpqc0v"
+ },
+ "recipe": {
+ "sha256": "1m1pxf6knrnyc9ygmyr27gm709ydxf0kkh1xrfcza6n476frmwr8",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": []
+ },
+ "x86-lookup": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "skeeto",
+ "repo": "x86-lookup",
+ "sha256": "13id1vf590gc0kwkhh6mgq2gj2bra2kycxjlvql7v0s7cdvamjhq",
+ "rev": "cac42bd9f27bff92e0b1cf6fb20563061885239f"
+ },
+ "recipe": {
+ "sha256": "1clv1npvdkzsy0a08xrb880yflwzl4d5cc2c5xrs7b837mqpj8hd",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.0.0",
+ "deps": [
+ "cl-lib",
+ "emacs"
+ ]
+ },
+ "badwolf-theme": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "bkruczyk",
+ "repo": "badwolf-emacs",
+ "sha256": "1plh7i4zhs5p7qkv7p7lnfrmkszn8b3znwvbxgp7wpxay5safc5j",
+ "rev": "24a557f92a702f632901a5b7bee59945a0a8cde9"
+ },
+ "recipe": {
+ "sha256": "03plkzpmlh0pgfp1c9padsh4w2g23clsznym8x4jabxnk0ynhq41",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.2",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "rspec-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "pezra",
+ "repo": "rspec-mode",
+ "sha256": "0hrn5n7aaymwimk511kjij44vqaxbmhly1gwmlmsrnbvvma7f2mp",
+ "rev": "e289e52ec4b3aa1caf35957d721e5568eca2a3bb"
+ },
+ "recipe": {
+ "sha256": "0nyib9rx9w9cbsgkcjx9n8fp77xkzxg923z0rdm3f9kc7njcn0zx",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.11",
+ "deps": [
+ "cl-lib",
+ "ruby-mode"
+ ]
+ },
+ "mb-url": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "dochang",
+ "repo": "mb-url",
+ "sha256": "1si2givpzihjb1szbcdm3iy9kkm7bj0hq10s0h2dfm8axdnlirm5",
+ "rev": "34234214d1e62b9980cc64dac582e6771c92638d"
+ },
+ "recipe": {
+ "sha256": "1nf8ssan00qsn3d4dc6h6qzdwqzh977qb5d2m33kiwi6qb98988h",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.0.3",
+ "deps": [
+ "cl-lib"
+ ]
+ },
+ "shell-toggle": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "knu",
+ "repo": "shell-toggle.el",
+ "sha256": "0wvaa5nrbblayjvzjyj6cd942ywg7xz5d8fqaffxcvwlcdihvm7q",
+ "rev": "9820b0ad6f22c700759555aae8a454a7dc5a46b3"
+ },
+ "recipe": {
+ "sha256": "1ai0ks7smr8b221j9hmsikswpxqraa9b13fpwv4wwagavnlah446",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.3.1",
+ "deps": []
+ },
+ "idomenu": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "birkenfeld",
+ "repo": "idomenu",
+ "sha256": "0bq0kx0889rdy8aasxbpmb0a4awpk2b24zv6x1dmhacmc5rj11i0",
+ "rev": "5daaf7e06e4704ae43c825488109d7eb8c049321"
+ },
+ "recipe": {
+ "sha256": "0mg601ak9mhp2fg5n13npcfzphgyms4vkqd18ldmv098z2z1412h",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.1",
+ "deps": []
+ },
+ "goto-gem": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "pidu",
+ "repo": "goto-gem",
+ "sha256": "188q7jr1y872as3w32m8lf6vwl2by1ibgdk6zk7dhpcjwd0ik7x7",
+ "rev": "6f5bd405c096ef879fed1298c09d0daa0bae5dac"
+ },
+ "recipe": {
+ "sha256": "06vy9m01qccvahxr5xn0plzw9knl5ig7gi5q5r1smfx92bmzkg3a",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.2",
+ "deps": [
+ "s"
+ ]
+ },
+ "minibuffer-cua": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "knu",
+ "repo": "minibuffer-cua.el",
+ "sha256": "07nbn2pwlp33kr136xsm6lzddhjs538xkz0fbays89psblmy4kwj",
+ "rev": "e8dcddc24d4f2e8d7987336fb58259e3cc78bbcb"
+ },
+ "recipe": {
+ "sha256": "1ragvr73ykbvpgynnq3z0z4yzrlfhfqlwc1vbxclb8x2xmxq7pzw",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.0.0",
+ "deps": []
+ },
+ "clang-format": {
+ "fetch": {
+ "tag": "fetchsvn",
+ "url": "http://llvm.org/svn/llvm-project/cfe/trunk/tools/clang-format",
+ "sha256": "1rzax55darnj4h8i3qyrm2rqdwcvqggsz7kv6gi2i174fbdkbzfr",
+ "rev": "256039"
+ },
+ "recipe": {
+ "sha256": "19qaihb0lqnym2in4465lv8scw6qba6fdn8rcbkpsq09hpzikbah",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": [
+ "cl-lib"
+ ]
+ },
+ "yagist": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "mhayashi1120",
+ "repo": "yagist.el",
+ "sha256": "0l9b888wv72j4hhkcfzsh09iqjxp2qjbjcjcfmvfhxf7il11pv8h",
+ "rev": "97723a34750ccab5439eb9f6a2f67e4e0e234167"
+ },
+ "recipe": {
+ "sha256": "1mz86fq0pb4w54c66vd19m2492mkrzq2qi6ssnn2xwmn8vv02wdd",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.8.12",
+ "deps": [
+ "cl-lib"
+ ]
+ },
+ "maxframe": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "rmm5t",
+ "repo": "maxframe.el",
+ "sha256": "08gbkd8wln89j9yxp0zzd539hbwy1db31gca3vxxrpszixx8280y",
+ "rev": "4f1dbbe68048864037eae277b9280b90fd701ff1"
+ },
+ "recipe": {
+ "sha256": "10cwy3gi3xb3pfdh6xiafxp3vvssawci3y26jda6550d0w5vardj",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.5",
+ "deps": []
+ },
+ "company-irony": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "Sarcasm",
+ "repo": "company-irony",
+ "sha256": "1gdsaa8zcs3layivn3ndbd5z1zflblmbxl251ld67bq763ga49cz",
+ "rev": "29becb8824cacb1ea6f8c823d06ba65512c62e3d"
+ },
+ "recipe": {
+ "sha256": "15adamk1b9y1i6k06i5ahf1wn70cgwlhgk0x6fk8pl5izg05z1km",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.1.0",
+ "deps": [
+ "cl-lib",
+ "company",
+ "emacs",
+ "irony"
+ ]
+ },
+ "easy-kill": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "leoliu",
+ "repo": "easy-kill",
+ "sha256": "0r56nqrj6iaz57ys6hqdq5qkyliv7dj6dv274l228r7x0axrwd9m",
+ "rev": "e3b2442e2096cefff94ea8656e49af07fee58f47"
+ },
+ "recipe": {
+ "sha256": "10jcv7a4vcnaj3wkabip2xwzcwlmvdlqkl409a9lnzfasxcpf32i",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.9.3",
+ "deps": [
+ "cl-lib",
+ "emacs"
+ ]
+ },
+ "dired-imenu": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "DamienCassou",
+ "repo": "dired-imenu",
+ "sha256": "088h9yn6wndq4pq6f7q4iz17f9f4ci29z9nh595idljp3vwr7qid",
+ "rev": "610e21fe0988c85931d34894d3eee2442c79ab0a"
+ },
+ "recipe": {
+ "sha256": "09yix4fkr03jq6j2rmvyg6gkmcnraw49a8m9649r3m525qdnhxs1",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.5.0",
+ "deps": []
+ },
+ "nix-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "NixOS",
+ "repo": "nix",
+ "sha256": "03kbdrar5w475qng4j7bbak5y6ipb7pgpxj3hblcn3pnvgh7whv6",
+ "rev": "71a5161365f40699092e491bbff88473237fc432"
+ },
+ "recipe": {
+ "sha256": "00rqawi8zs2x79c91gmk0anfyqbwalvfwmpak20i11lfzmdsza1s",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.10",
+ "deps": []
+ },
+ "angular-snippets": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "magnars",
+ "repo": "angular-snippets.el",
+ "sha256": "0h9i0iimanbvhbqy0cj9na335rs961pvhxjj4k8y53qc73xm102a",
+ "rev": "8f737c2cf5fce758a7a3833ebad2952b5398568d"
+ },
+ "recipe": {
+ "sha256": "057phgizn1c6njvdfigb23ljs31knq247gr0rcpqfrdaxsnnzm5c",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.2.3",
+ "deps": [
+ "dash",
+ "s"
+ ]
+ },
+ "emacsagist": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "echosa",
+ "repo": "emacsagist",
+ "sha256": "0ciqxyahlzaxq854jm25zbrbmrhcaj5csdhxa0az9crwha8wkmw2",
+ "rev": "aba342ba59c254a88017f25e9fb7a8cd6f2fda83"
+ },
+ "recipe": {
+ "sha256": "1cyz7nf0zxa21979jf5kdmkgwiyd17vsmpcmrw1af37ly27l8l64",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.0.0",
+ "deps": [
+ "cl-lib"
+ ]
+ },
+ "yafolding": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "zenozeng",
+ "repo": "yafolding.el",
+ "sha256": "1rplafm6mldsirj7xg66vsx03n263yii3il3fkws69xmv7sx1a6i",
+ "rev": "9b5a3f1b8dff6ddaf6369681820753afbbd1f388"
+ },
+ "recipe": {
+ "sha256": "1z70ismfwmh9a83a7h5lbhw7iywfib5fis7y8gx8020wfjq9g2yq",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.1.4",
+ "deps": []
+ },
+ "term-cmd": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "CallumCameron",
+ "repo": "term-cmd",
+ "sha256": "1idz9c38q47lll55w1znya00hlkwa42029ys70sb14inc51cml51",
+ "rev": "52651fcfbd0b0be0bddc66bf27f36243140698a4"
+ },
+ "recipe": {
+ "sha256": "0fn4f32zpl0p2lid159q59lzjv4xqmc23a64kcclqp9db8b1m5fy",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.0",
+ "deps": []
+ },
+ "shell-split-string": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "10sr",
+ "repo": "shell-split-string-el",
+ "sha256": "0mcxp74sk9bn36gbhhimgns07iqa4dgbq2pvpqy41igqwb84w306",
+ "rev": "6d01c9249853fe1f8fd925ee80f97232d4e3e5eb"
+ },
+ "recipe": {
+ "sha256": "1yj1h7za4ylxh2nikj7s1qqlilpsk05x9571a2fymfyznm3iq77m",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.1",
+ "deps": []
+ },
+ "evil-visual-mark-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "roman",
+ "repo": "evil-visual-mark-mode",
+ "sha256": "07cmql8zsqz1qchq2mp3qybbay499dk1yglisig6jfddcmrbbggz",
+ "rev": "094ee37599492885ff3144918fcdd9b74dadaaa0"
+ },
+ "recipe": {
+ "sha256": "1qgr2dfhfz6imnlznicl7lplajd1s8wny7mlxs1bkms3xjcjfi48",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.0.3",
+ "deps": [
+ "dash",
+ "evil"
+ ]
+ },
+ "package+": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "zenspider",
+ "repo": "package",
+ "sha256": "1xv0ra130qg0ksgqi4npspnv0ckq77k7f5kcibavj030h578kj97",
+ "rev": "4a9618a44ec4f26a14e0136cd9d3c4855fceb25b"
+ },
+ "recipe": {
+ "sha256": "1mbsxr4llz8ny7n7w3lykld9yvbaywlfqnvr9l0aiv9rvmdv03bn",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.1.0",
+ "deps": []
+ },
+ "faces+": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/faces+.el",
+ "sha256": "0mgj7mdadc62wpav7z138jsjvbvkxg05h5z9kmjw8jl5x4m334lq"
+ },
+ "recipe": {
+ "sha256": "0k3m434f3d3061pvir0dnykmv6r9jswl7pzybzja3afiy591hh92",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": []
+ },
+ "rvm": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "senny",
+ "repo": "rvm.el",
+ "sha256": "0iblk0vagjcg3c8q9hlpwk7426ms7aq0s80izgvascfmyqycv6qm",
+ "rev": "8e45a9bad8e317ff195f384dab14d3402497dc79"
+ },
+ "recipe": {
+ "sha256": "08i7cmav2cz73jp88ww0ay2yjhk9dj8146836q4sij1bl1slbaf8",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.4.0",
+ "deps": []
+ },
+ "isgd": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "chmouel",
+ "repo": "isgd.el",
+ "sha256": "09hx28lmldm7z3x22a0qx34id09fdp3z61pdr61flgny213q1ach",
+ "rev": "764306dadd5a9213799081a48aba22f7c75cca9a"
+ },
+ "recipe": {
+ "sha256": "0yc9mkjzj3w64f48flnjvd193mk9gndrrqbxz3cvmvq3vgahhzyi",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.1",
+ "deps": []
+ },
+ "swift-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "chrisbarrett",
+ "repo": "swift-mode",
+ "sha256": "1fi5zdvplw7h5hnyi37k92c8s8qnjgizbnv1mah18y8d30n1r77n",
+ "rev": "e09694f0f95a64b2c96487cbdcb66636a77ea22a"
+ },
+ "recipe": {
+ "sha256": "1imr53f8agfza9zxs1h1mwyhg7yaywqqffd1lsvm1m84nvxvri2d",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.3.0",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "logview": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "doublep",
+ "repo": "logview",
+ "sha256": "1yacic778ranlqblrcdhyf5igbrcin8aj30vjdm4klpmqb73hf1s",
+ "rev": "f53693b37b46af448d0ac102ebbb152a1cb915aa"
+ },
+ "recipe": {
+ "sha256": "0gks3j5avx8k3427a36lv7gr95id3cylaamgn5qwbg14s54y0vsh",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.4.2",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "facemenu+": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/facemenu+.el",
+ "sha256": "0b8all1l4v98iz1y4zbc0l9zxrdbgkljzahs2yrbl9md2qj3j91d"
+ },
+ "recipe": {
+ "sha256": "0lbggalgkj59wj67z95949jmppmqrzrp63mdhw42r2x0fz1ir0iv",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": []
+ },
+ "narrow-reindent": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "emallson",
+ "repo": "narrow-reindent.el",
+ "sha256": "10yn215xb4s6kshk108y75im1xbdp0vwc9kah5bbaflp9234i0zh",
+ "rev": "87466aac4dbeb79597124dd077bf5c704872fd3d"
+ },
+ "recipe": {
+ "sha256": "0fybal70kk62zlra63x4jb72694m0mzv4cx746prx9anvq1ss2i0",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.2.0",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "epl": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "cask",
+ "repo": "epl",
+ "sha256": "0sjxd5y5hxhrbgfkpwx6m724r3841b53hgc61a0g5zwispw5pmrr",
+ "rev": "a76ec344a7fee3ca7e7dfb98b86ebc3b8c1a3837"
+ },
+ "recipe": {
+ "sha256": "0zr3r2hn9jaxscrl83hyixznb8l5dzfr6fsac76aa8x12xgsc5hn",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.8",
+ "deps": [
+ "cl-lib"
+ ]
+ },
+ "paradox": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "Malabarba",
+ "repo": "paradox",
+ "sha256": "06c2a55bmnhfvjpd43kq6d2l9yijgiq16yq19x6m8050f8hzxnyb",
+ "rev": "d62d883b8c980d679970bed79c12091df9120a77"
+ },
+ "recipe": {
+ "sha256": "1xq14nfvprsq18464qr4mhphq7cl1f570lji5n8z6j9vpfm9a4p2",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "2.3.6",
+ "deps": [
+ "cl-lib",
+ "emacs",
+ "hydra",
+ "json",
+ "let-alist",
+ "seq",
+ "spinner"
+ ]
+ },
+ "ix": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "theanalyst",
+ "repo": "ix.el",
+ "sha256": "0rpxh1jv98dl9b5ldjkljk70z4hkl61kcmvy1lhpj3lxn8ysv87a",
+ "rev": "498dac674f4f1910d39087b1457c5da5465a0614"
+ },
+ "recipe": {
+ "sha256": "1fl76dk8vgw3mrh5iz99lrsllwya6ij9d1lj3szcrs4qnj0b5ql3",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.7",
+ "deps": [
+ "grapnel"
+ ]
+ },
+ "req-package": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "edvorg",
+ "repo": "req-package",
+ "sha256": "1xzp2hnkr9lsjx50cxlpki9mvyhjsv0vyc77480jrlnpspakj7qs",
+ "rev": "374c6d1a81b5448a66295be8c132c42ca44eeddb"
+ },
+ "recipe": {
+ "sha256": "1438f60dnmc3a2dh6hd0wslrh25nd3af797aif70kv6qc71h87vf",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.9",
+ "deps": [
+ "dash",
+ "log4e",
+ "use-package"
+ ]
+ },
+ "cmake-project": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "alamaison",
+ "repo": "emacs-cmake-project",
+ "sha256": "10xlny2agxjknvnjdnw41cyb3d361yy0wvpc8l1d0xwnmmfh3bxk",
+ "rev": "ec61f687772cccdb699f64ebe1e8dc8ba83f790f"
+ },
+ "recipe": {
+ "sha256": "13n6j9ljvzjzkknbm9zkhxljcn12avl39gxqq95hah44dr11rns3",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.7",
+ "deps": []
+ },
+ "matlab-mode": {
+ "fetch": {
+ "tag": "fetchcvs",
+ "module": "matlab-emacs",
+ "cvsRoot": ":pserver:anonymous@matlab-emacs.cvs.sourceforge.net:/cvsroot/matlab-emacs",
+ "sha256": "694652e361b9d15a3f1542d45b43c6516f20030dbaa8a058b5fdb4c833885465"
+ },
+ "recipe": {
+ "sha256": "06s7mrbfbkk6baf8j1vc26nb2bg3ma1n7d297zqz8ay90cv81y76",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": []
+ },
+ "org-time-budgets": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "leoc",
+ "repo": "org-time-budgets",
+ "sha256": "09iw2jffb2qrx5r07zd1j8sk5wafamjkc2khqyfwc5kx6xyp1f46",
+ "rev": "f2a8fe3d9d6104f3dd61fabbb385a596363b360b"
+ },
+ "recipe": {
+ "sha256": "0r8km586n6xdnjha7xnzlh03nw1dp066hydaz8kxfmhvygl9cpah",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.0.1",
+ "deps": [
+ "alert",
+ "cl-lib"
+ ]
+ },
+ "fancy-narrow": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "Malabarba",
+ "repo": "fancy-narrow",
+ "sha256": "10ds6nlzm1s5xsp53a52qlzrnph7in6gib67qhgnwpj33wp8gs91",
+ "rev": "cd381c1acd5e0d9b6acd7f3e76c3b1de21e8b6df"
+ },
+ "recipe": {
+ "sha256": "15i86jz6rdpva1az7gqp1wbm8kispcfc8h6v9fqsbag9sbzvgcyv",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.9.4",
+ "deps": []
+ },
+ "dirtree": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/dirtree.el",
+ "sha256": "1q03q4j0wkbg9p2nzf1kb7l517b21mskp2v52i95jbxh09igbjjx"
+ },
+ "recipe": {
+ "sha256": "0wfz9ks5iha2n0rya9yjmrb6f9lhp620iaqi92lw9smm7w83zj29",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": [
+ "tree-mode",
+ "windata"
+ ]
+ },
+ "test-case-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "ieure",
+ "repo": "test-case-mode",
+ "sha256": "108csr1d7w0105rb6brzgbksb9wmq1p573vxbq0miv5k894j447f",
+ "rev": "26e397c0f930b7eb0be413ef7dd257b1da052bec"
+ },
+ "recipe": {
+ "sha256": "1iba97yvbi5vr7gvc58gq2ah6jg2s7apc9ssq7mdzki823n8z2qi",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.0",
+ "deps": [
+ "fringe-helper"
+ ]
+ },
+ "fiplr": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "d11wtq",
+ "repo": "fiplr",
+ "sha256": "0lwgbd9zwdv7qs39c3fp4hrc17d9wrwwjgba7a14zwrhb27m7j07",
+ "rev": "100dfc33f43da8c49e50e8a2222b9d95532f6e24"
+ },
+ "recipe": {
+ "sha256": "0l68rl5cy2maynny6iq6c4qr6c99y44i0i1z613k9rk08z7h0k5i",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.2.4",
+ "deps": [
+ "grizzl"
+ ]
+ },
+ "rainbow-blocks": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "istib",
+ "repo": "rainbow-blocks",
+ "sha256": "02x5ciyafqwak06yk813kl8p92hq03wjsk1882q8axr9q231100c",
+ "rev": "8335993563aadd4290c5fa09dd7a6a81691b0690"
+ },
+ "recipe": {
+ "sha256": "08p41wvrw1j3h7j7lyl8nxk1gcc2id9ikljmiklg0kc6s8ijhng8",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.0.0",
+ "deps": []
+ },
+ "ucs-cmds": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/ucs-cmds.el",
+ "sha256": "0s65g6rdrjn4ypdny68fjk58yddn921xkbl811izxyc3q6q2z0k4"
+ },
+ "recipe": {
+ "sha256": "1n0f0qf8w8ark78fs67aaxnqpk0km97hy59pnxwfyahgjl2qz6d1",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": []
+ },
+ "dot-mode": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/dot-mode.el",
+ "sha256": "0xhbzq3yvfvvvl6mfihrzkd3pn5p5yxvbcyf2jhsppk7lscifsgk"
+ },
+ "recipe": {
+ "sha256": "1fik32635caq3r5f9k62qbj2dkwczz2z1v28mc7bcj7jv2p93nvh",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": []
+ },
+ "ido-grid-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "larkery",
+ "repo": "ido-grid-mode.el",
+ "sha256": "0f1p6cnl0arcc2y1h99nqcflp7byvyf6hj6fmv5xqggs66qc72lb",
+ "rev": "8bbd66e365d4f6f352bbb17673be5869ab26d7ab"
+ },
+ "recipe": {
+ "sha256": "1wl1yclcxmkbfnvp0il23csdf6gprzf7fkcknpivk784fhl19acr",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.1.5",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "company-sourcekit": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "nathankot",
+ "repo": "company-sourcekit",
+ "sha256": "1l9xrw88wq32wm3qx922ihdb9mlv9rrdalwvz9i2790fmw7y84vz",
+ "rev": "ea26c1284ccf72d6e3a850c6725433f0f8e2b3f9"
+ },
+ "recipe": {
+ "sha256": "0hr5j1ginf43h4qf3fvsh3z53z0c7w5a9lhrvdwmlzj396qhqmzs",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.1.4",
+ "deps": [
+ "company",
+ "dash",
+ "dash-functional",
+ "emacs",
+ "sourcekit"
+ ]
+ },
+ "kaesar-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "mhayashi1120",
+ "repo": "Emacs-kaesar",
+ "sha256": "03l9w238a5kyfin3v1fy1q2pl0gvmb87j0v89g6nk114s7m4y3r8",
+ "rev": "4fa74851cd928f30e9f2ee1aa27ee6074ad253ea"
+ },
+ "recipe": {
+ "sha256": "0yqnlchbpmhsqc8j531n08vybwa32cy0v9sy4f9fgxa90rfqczry",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.9.0",
+ "deps": [
+ "cl-lib",
+ "kaesar"
+ ]
+ },
+ "e2wm-pkgex4pl": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "aki2o",
+ "repo": "e2wm-pkgex4pl",
+ "sha256": "1vrlfzy1wynm7x4m7pl8vim7ykqd6qkcilwz7sjc1lbckz11ig0d",
+ "rev": "7ea994450727190c4f3cb46cb429ba41b692ecc0"
+ },
+ "recipe": {
+ "sha256": "0hgdbqfw3015fr929m36kfiqqzsid6afs3222iqq0apg7gfj7jil",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.0.1",
+ "deps": [
+ "e2wm",
+ "plsense-direx"
+ ]
+ },
+ "org-linkany": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "aki2o",
+ "repo": "org-linkany",
+ "sha256": "1bggz782ci0z6aw76v51ykbmfzh5g6cxh43w798as1152sn7im3p",
+ "rev": "ed4a6614b56c9baef31647ea728b3d5fae6ed3a2"
+ },
+ "recipe": {
+ "sha256": "0arjj3c23yqm1ljvbnl7v9cqvd9lbz4381g8f3jyqbafs25bdc3c",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.0.2",
+ "deps": [
+ "log4e",
+ "yaxception"
+ ]
+ },
+ "powershell": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "jschaf",
+ "repo": "powershell.el",
+ "sha256": "010b151wblgxlfpy590yanbl2r8qhpbqgi02v0pyir340frm9ngn",
+ "rev": "7316f44d0b528552f5a0692f778e5f0efd964299"
+ },
+ "recipe": {
+ "sha256": "162k8y9k2n48whaq93sqk86zy3p9qvsfxgyfv9n1nvk4l5wn70wk",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.1",
+ "deps": []
+ },
+ "underwater-theme": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "jmdeldin",
+ "repo": "underwater-theme.el",
+ "sha256": "1g1ldyz42q3i2xlgvhd4s93cvkh0fm8m3l344zjcw8rvqaisyphj",
+ "rev": "1fbd4ecd4538256c6c46f9638f883072c73ac927"
+ },
+ "recipe": {
+ "sha256": "0ab2bcqfdi9ml3z9d511pbfwcbp8hkkd36xxp61k36gkyi3acvlr",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.1.0",
+ "deps": []
+ },
+ "column-marker": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/column-marker.el",
+ "sha256": "05bv198zhqw5hqq6cr11mhz02dpca74hhp1ycwq369m0yb2naxy9"
+ },
+ "recipe": {
+ "sha256": "1xgfsiw46aib2vb9bbjlgnhcgfnlfhdcxd0cl0jqj4fjfxzbz0bq",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": []
+ },
+ "magit-popup": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "magit",
+ "repo": "magit",
+ "sha256": "01x9kahr3szzc00wlfrihl4x28yrq065fq4rpzx9dxiksayk24pd",
+ "rev": "16a7a12c44d63e78e9b223fca7c1c23a144d3ef1"
+ },
+ "recipe": {
+ "sha256": "0w6m384bbmp3bd4qbss5h1jvcfp4qnpqvzlfykhdgjwpv2b2a2fj",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "2.3.1",
+ "deps": [
+ "async",
+ "dash",
+ "emacs"
+ ]
+ },
+ "bbdb-vcard": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "tohojo",
+ "repo": "bbdb-vcard",
+ "sha256": "0fg72qnb40djyciy4gzj359lqlcbbrq0indbkzd0dj09zipkx0df",
+ "rev": "9e11fafef1a94bc6395bd1eeacd00f94848ac560"
+ },
+ "recipe": {
+ "sha256": "1kn98b7mh9a28933r4yl8qfl9p92rpix4vkp71sar9cka0m71ilj",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.3",
+ "deps": []
+ },
+ "helm-hayoo": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "markus1189",
+ "repo": "helm-hayoo",
+ "sha256": "1imfzz6cfdq7fgrcgrafy2nln929mgh31vybk9frm7a9jpamqdxp",
+ "rev": "f49a77e8b8704bb7eb0d1097eefb8010a6617664"
+ },
+ "recipe": {
+ "sha256": "0xdvl6q2rpfsma4hx8m4snbd05s4z0bi8psdalixywlp5s4vzr32",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.0.5",
+ "deps": [
+ "haskell-mode",
+ "helm",
+ "json"
+ ]
+ },
+ "igrep": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/igrep.el",
+ "sha256": "0qiv69v7ig38iizif7zg8aljdmpa1jk8bsfa0iyhqqqrkvsmhc29"
+ },
+ "recipe": {
+ "sha256": "1vyhrziy29q6w8w9vvanb7d29r1n7nfkznbcd62il991n48d08i3",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": []
+ },
+ "gnome-calendar": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "NicolasPetton",
+ "repo": "gnome-calendar.el",
+ "sha256": "160qm8xf0yghygb52p8cykhb5vpg9ww3gjprcdkcxplr4b230nnc",
+ "rev": "58c3a3c32aff9901c679bdf9091ed934897b84a0"
+ },
+ "recipe": {
+ "sha256": "00clamlm5b42zqggxywdqrf6s2dnsxir5rpd8mjpyc502kqmsfn6",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.2",
+ "deps": []
+ },
+ "evil-org": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "edwtjo",
+ "repo": "evil-org-mode",
+ "sha256": "09l0ph9rc941kr718zq0dw27fq6l7rb0h2003ihw7q0a5yr8fpk7",
+ "rev": "2d7c58dbeca0d4ac7b4eab5f47b77946951f27e9"
+ },
+ "recipe": {
+ "sha256": "18w07fbafry3wb87f55kd8y0yra3s18a52f3m5kkdlcz5zwagi1c",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.1.1",
+ "deps": [
+ "evil",
+ "org"
+ ]
+ },
+ "modalka": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "mrkkrp",
+ "repo": "modalka",
+ "sha256": "1pgr1zlp26c7xy77qfvjfmv5i2j1c45xp59x83k8nllyhckxyqn6",
+ "rev": "f8ee86264a8e961b5821e11fdd490d5c4fc489c3"
+ },
+ "recipe": {
+ "sha256": "0bkjykvl6sw797h7j76dzn1viy598asly98gcl5wrq13n4w1md4c",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.1.1",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "subshell-proc": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "andrewmains12",
+ "repo": "subshell-proc",
+ "sha256": "0mx892vn4a32df30iqmf2vsz1gdl3i557fw0194g6a66n9w2q7xf",
+ "rev": "bf475eb7b0684af967755e91c9cabd19f953b03b"
+ },
+ "recipe": {
+ "sha256": "1fnp49yhnhsj7paj0b25vr6r03hr5kpgcrci439ffpbd2c85fkw2",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.1",
+ "deps": []
+ },
+ "imenu+": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/imenu+.el",
+ "sha256": "16f2a6jgwgczsaps55pnnyi38mw5z3fn4abybyr7hn0kf5xqip6q"
+ },
+ "recipe": {
+ "sha256": "1v2h3xs5pnv7z5qphkn2y5pa1p8pivrknkw7xihm5yr4a4dqjv5d",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": []
+ },
+ "phi-search-mc": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "knu",
+ "repo": "phi-search-mc.el",
+ "sha256": "0r6cl1ng41s6wsy5syjlkaip0mp8h491diipdc1psbhnpk4vabsv",
+ "rev": "4c6d2d39feb502febb81fc98b7b5854d88150c69"
+ },
+ "recipe": {
+ "sha256": "07hd80rbyzr5n3yd7hv1j51nl6pvcxmln20g6xvw8gh5yfl9k0m8",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "2.2.1",
+ "deps": [
+ "multiple-cursors",
+ "phi-search"
+ ]
+ },
+ "bury-successful-compilation": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "EricCrosson",
+ "repo": "bury-successful-compilation",
+ "sha256": "03hab3iw2jjckal20zwsw7cm38nf7pan0m96d8ab4i75phy6liyw",
+ "rev": "ca58a5df0aa3f266a8df0e3e5d3d962c086be0a9"
+ },
+ "recipe": {
+ "sha256": "1gkq4r1573m6m57fp7x69k7kcpqchpcqfcz3792v0wxr22zhkwr3",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.1",
+ "deps": []
+ },
+ "html-to-markdown": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "Malabarba",
+ "repo": "html-to-markdown",
+ "sha256": "0c648dl5zwjrqx9n6zr6nyzx2zcnv05d5i4hvhjpl9q3y011ncns",
+ "rev": "0fa0effd71acd8981a425ef11e0e63d53aea3199"
+ },
+ "recipe": {
+ "sha256": "1gjh9ndqsb3nfb7w5h7carjckkgy6qh63b4mg141j19dsyx9rrjv",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.5.1",
+ "deps": []
+ },
+ "srefactor": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "tuhdo",
+ "repo": "semantic-refactor",
+ "sha256": "0wx8l8gkh8rbf2g149f35gpnmkk45s9x4r844aqw5by4zkvix4rc",
+ "rev": "ecd40713f736b243285c07f4cfd77113794d4f9f"
+ },
+ "recipe": {
+ "sha256": "01cd40jm4h00c5q2ix7cskp7klbkcd3n5763y5lqfv59bjxwdqd2",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.5",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "wacspace": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "shosti",
+ "repo": "wacspace.el",
+ "sha256": "0jl3n79wmbxnrbf83qjq0v5pzhvv67i9r5sp2zj8nc86hh7dvjsd",
+ "rev": "b951995c204ff23699d2bda515a96221147a725d"
+ },
+ "recipe": {
+ "sha256": "1xy0mprvyi37zmgj1yrlh5ni08j47lpag1jm3a76cgghgmlfjxrl",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.4.2",
+ "deps": [
+ "cl-lib",
+ "dash"
+ ]
+ },
+ "helm-pages": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "david-christiansen",
+ "repo": "helm-pages",
+ "sha256": "1r2ndmrw5ivawb940j8jnmqzxv46qrzd3cqh9fvxx5yicf020fjf",
+ "rev": "e334ca3312e51d6fdfa989df5d3ebe683d673c0e"
+ },
+ "recipe": {
+ "sha256": "1v3w8100invb5wsmm3dyl41pjs7s889s3b1rlr6vlcspa1ncv3wj",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.1.1",
+ "deps": [
+ "cl-lib",
+ "emacs",
+ "helm"
+ ]
+ },
+ "php-auto-yasnippets": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "ejmr",
+ "repo": "php-auto-yasnippets",
+ "sha256": "0zs11811kx6x1zgc1icd8gw420saa7z6zshpzmrddnbznya4qql6",
+ "rev": "1950d83cbcc5c5d62cd3bc432e1595870fe8cabf"
+ },
+ "recipe": {
+ "sha256": "1hhddvpc80b6wvjpbpibsf24rp5a5p45m0bg7m0c8mx181h9mqgn",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "2.3.1",
+ "deps": [
+ "php-mode",
+ "yasnippet"
+ ]
+ },
+ "summarye": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/summarye.el",
+ "sha256": "0q5m8d6p9aqbfx17zgznkqw2jgh027xix4894wrdz91670zxd3py"
+ },
+ "recipe": {
+ "sha256": "1znd96ixg1n90yjiny84igb7m8qsbiibn7s6bky8g6n2k7zzmq65",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": []
+ },
+ "helm-ls-git": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "emacs-helm",
+ "repo": "helm-ls-git",
+ "sha256": "0azs971d7pqd4ddxzy7bfs52cmrjbafwrcnf57afw39d772rzpdf",
+ "rev": "c5e43f4083af3949c5d5afdfbbf26d01881cb0e2"
+ },
+ "recipe": {
+ "sha256": "08rsy9479nk03kinjfkxddrq6wi4sx2a0wrz37cl2q517qi7sibj",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.8.0",
+ "deps": [
+ "helm"
+ ]
+ },
+ "hl-todo": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "tarsius",
+ "repo": "hl-todo",
+ "sha256": "07irwpg794fdzsixmcbi1lnafj5gynhrdam7frcpmvb26a0l8fxq",
+ "rev": "878220c111add155b9ee1aeb3d3475cc5e488525"
+ },
+ "recipe": {
+ "sha256": "1iyh68xwldj1r02blar5zi01wnb90dkbmi67vd6h78ksghl3z9j4",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.4.5",
+ "deps": []
+ },
+ "cython-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "cython",
+ "repo": "cython",
+ "sha256": "0kbk2gp2avp0da32mr003ziigmi98zi0fvwia4knylllmrkl3pvq",
+ "rev": "dc00a176d896f0df892aad8b305d946d3ed632a0"
+ },
+ "recipe": {
+ "sha256": "0asai1f1pncrfxx296fn6ky09hj1qam5j0dpxxkzhy0a34xz0k2i",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.23.4",
+ "deps": []
+ },
+ "cider": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "clojure-emacs",
+ "repo": "cider",
+ "sha256": "1bcmqbqc5p4m31rximdpzwlrv2nann5mkbfxiba2xm7fgl2iym64",
+ "rev": "7cc4a192323ef0911c150e6150d3bbd319253342"
+ },
+ "recipe": {
+ "sha256": "1a6hb728a3ir18c2dn9zfd3jn79fi5xjn5gqr7ljy6qb063xd4qx",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.10.0",
+ "deps": [
+ "clojure-mode",
+ "emacs",
+ "pkg-info",
+ "queue",
+ "seq",
+ "spinner"
+ ]
+ },
+ "sudo-ext": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/sudo-ext.el",
+ "sha256": "0fpz73r52j7sk1w7my0002wg7isrp54w28nnrwk9xb9il4qpxag2"
+ },
+ "recipe": {
+ "sha256": "1iirrpa4rnz7rm85yjg60vdfca1ipxbk3qkld8lgwwm242pvvkw3",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": []
+ },
+ "levenshtein": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/levenshtein.el",
+ "sha256": "0m94z18i1428bispxi285flvjf22kjm33s4sm0ad11m0w0jizir6"
+ },
+ "recipe": {
+ "sha256": "1iypnz0bw3baqxa9gldz8cikxvdhw60pvqp00kq5p3v4x3xcy4z2",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": []
+ },
+ "ac-slime": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "purcell",
+ "repo": "ac-slime",
+ "sha256": "13yghv7p6c91fn8mrxbwrb6ldk5n3b6nj6a7pwsvks1q73i1pl88",
+ "rev": "df6c4e88b5ba2d15d47a651ecf7edc0986624112"
+ },
+ "recipe": {
+ "sha256": "0mk3k1lcbqa16xvsbgk28x09vzqyaidqaqpq934xdbrwhdgwgckg",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.8",
+ "deps": [
+ "auto-complete",
+ "cl-lib",
+ "slime"
+ ]
+ },
+ "fastnav": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "gleber",
+ "repo": "fastnav.el",
+ "sha256": "0h32w63vv451797zi6206j529fd4j8l3fp7rqip3s8xn8d4728x1",
+ "rev": "54626e9e7cc7be5bc2bd01732e95ed2afc2312a1"
+ },
+ "recipe": {
+ "sha256": "08hg256w8k9f5nzgpyl1jykbf28vmvv09kkhzs0s2zhwbl2158a5",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.0.7",
+ "deps": []
+ },
+ "etags-select": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/etags-select.el",
+ "sha256": "0gmlmxlwfsfk5axn3x5cfvqy9bx26ynpbg50mdxiljk7wzqs5dyb"
+ },
+ "recipe": {
+ "sha256": "0j6mxj10n7jf087l7j86s3a8si5hzpwmvrpqisfvlnvn6a0rdy7h",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": []
+ },
+ "traad-autocomplete": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "abingham",
+ "repo": "traad",
+ "sha256": "1w2haj7grs4h9wiqkcpb28kl7zqlyba4pcgc07n1mvgksvnj729m",
+ "rev": "8852b4dc2b2113a1597301c0b03712b65f50747f"
+ },
+ "recipe": {
+ "sha256": "0psk4gb903slcsppgplawz6gsv1w1nw1vqj4y0rfql6rxnbl3jf2",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.4",
+ "deps": []
+ },
+ "el-init-viewer": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "HKey",
+ "repo": "el-init-viewer",
+ "sha256": "1488wv0f9ihzzf9fl8cki044k61b0kva604hdwpb2qk9gnjr4g1l",
+ "rev": "dcc595ba51b5aff972292278aa528c7ddb46f1b5"
+ },
+ "recipe": {
+ "sha256": "0kkmsml9xf2n8nlrcicfg2l78s3dlhd6ssx0s62v77v4wdpl297m",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.1.0",
+ "deps": [
+ "anaphora",
+ "cl-lib",
+ "ctable",
+ "dash",
+ "el-init",
+ "emacs"
+ ]
+ },
+ "gist": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "defunkt",
+ "repo": "gist.el",
+ "sha256": "0q3ps5f6mr9hyf6nq1wshcm1z6a5yhskqd7dbbwq5dm78552z6z8",
+ "rev": "144280f5353bceb902d5278fa64078337e99fa4d"
+ },
+ "recipe": {
+ "sha256": "053fl8aw0ram9wsabzvmlm5w2klwd2pgcn2w9r1yqfs4xqja5sd3",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.3.1",
+ "deps": [
+ "emacs",
+ "gh"
+ ]
+ },
+ "clojure-mode-extra-font-locking": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "clojure-emacs",
+ "repo": "clojure-mode",
+ "sha256": "0mrkw8l736pddddl0vx9j910g1l492mascqb93h0sxv8ps4xcc53",
+ "rev": "8b01df6c881929540b59444a54b37c03ffe6fc17"
+ },
+ "recipe": {
+ "sha256": "00nff9mkj61i76dj21x87vhz0bbkzgvkx1ypkxcv6yf3pfhq7r8n",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "5.0.1",
+ "deps": [
+ "clojure-mode"
+ ]
+ },
+ "ggo-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "mkjunker",
+ "repo": "ggo-mode",
+ "sha256": "1m9ra9qp7bgf6anfqyn56n3xa9a25ran10k9wd355qknd5skq1zz",
+ "rev": "ea5097f87072309c7b77204888d459d084bf630f"
+ },
+ "recipe": {
+ "sha256": "1403x530n90jlfz3lq2vfiqx84cxsrhgs6hhmniq960cjj31q35p",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "20130521",
+ "deps": []
+ },
+ "clojure-cheatsheet": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "clojure-emacs",
+ "repo": "clojure-cheatsheet",
+ "sha256": "1x1kfycf3023z0r3v7xqci59k8jv5wn2vqc9y0nx7k5qgifmswrx",
+ "rev": "f8db406b7b13a580c142d08865c9a03c101235fa"
+ },
+ "recipe": {
+ "sha256": "05sw3bkdcadslpsk64ds0ciavmdgqk7fr5q3z505vvafmszfnaqv",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.4.0",
+ "deps": [
+ "cider",
+ "helm"
+ ]
+ },
+ "org-gnome": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "NicolasPetton",
+ "repo": "org-gnome.el",
+ "sha256": "0b57ik05iax2h3nrj96kysbk4hxmxlaabd0n6lv1xsayrlli3sj1",
+ "rev": "1012d47886cfd30eed25b73d9f18e475e0155f88"
+ },
+ "recipe": {
+ "sha256": "0c37gfs6xs0jbvg6ypd4z5ip1khm26wr5lxgmv1dzcc383ynzg0v",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.3",
+ "deps": [
+ "alert",
+ "gnome-calendar",
+ "telepathy"
+ ]
+ },
+ "osx-dictionary": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "xuchunyang",
+ "repo": "osx-dictionary.el",
+ "sha256": "1vywqzw8hydi944q4ghgxbbvvmwfpa9wj5nmrnixfcw8h4mfcxvv",
+ "rev": "b909e38723caa37157ad6be90ac107c1c7102e07"
+ },
+ "recipe": {
+ "sha256": "13033fxc5vjd1f7mm6znmprcp3mwxbvblb2d25shr8d4imqqhv82",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.2.1",
+ "deps": [
+ "chinese-word-at-point",
+ "cl-lib"
+ ]
+ },
+ "zzz-to-char": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "mrkkrp",
+ "repo": "zzz-to-char",
+ "sha256": "1hif9jrp4w7xvca0a4qm29scpkwhf5n61c4i5x8n5p7gbwjhh98q",
+ "rev": "82dc3382e58091ae32160a91e8c781b813faf856"
+ },
+ "recipe": {
+ "sha256": "16vwp0krshmn5x3ry1j512g4kydx39znjqzri4j7wgg49bz1n7vh",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.1.0",
+ "deps": [
+ "avy",
+ "cl-lib",
+ "emacs"
+ ]
+ },
+ "pass": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "NicolasPetton",
+ "repo": "pass",
+ "sha256": "18m0973l670cjbzpa1vfv06gymhsa2f1pjcp329s0npb735x5whj",
+ "rev": "93d99883a95e70f931d2abad87e697f5243115d3"
+ },
+ "recipe": {
+ "sha256": "1vvyvnqf6k7wm0p45scwi6ny86slkrcbr36lnxdlkf96cqyrqzfr",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.1",
+ "deps": [
+ "emacs",
+ "f",
+ "password-store"
+ ]
+ },
+ "request": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "tkf",
+ "repo": "emacs-request",
+ "sha256": "0j7nakxj750rhdnm0nk075s7rx38rc9npbb55kg7r9vb2qilnvmr",
+ "rev": "b548f8bd9c4372232cb3d3633b9fcfffb2f535ff"
+ },
+ "recipe": {
+ "sha256": "0h4jqg98px9dqqvjp08vi2z1lhmk0ca59lnrcl96bi7gkkj3jiji",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.1.0",
+ "deps": []
+ },
+ "markdown-mode": {
+ "fetch": {
+ "tag": "fetchgit",
+ "url": "git://jblevins.org/git/markdown-mode.git",
+ "sha256": "89a2577a17836715d06cbeba64364accedaf603bb4cca9627b7e3116ea51ddd8",
+ "rev": "a3f710de163ec729090ecc13d03e400793fb9e95"
+ },
+ "recipe": {
+ "sha256": "02lmhihv495drv9cb40h6l0xsbx7yglbvsdzc4r0vf78j87rs33f",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "2.0",
+ "deps": []
+ },
+ "sphinx-doc": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "naiquevin",
+ "repo": "sphinx-doc.el",
+ "sha256": "1q6v0xfdxm57lyj4zxyqv6n5ik5w9drk7yf9w8spb5r22jg0dg8c",
+ "rev": "b3459ecb9e6d3fffdee3cb7342563a56a32ce666"
+ },
+ "recipe": {
+ "sha256": "00h3wx2p5hzbw6sggggdrzv4jrn1wc051iqql5y2m1hsh772ic5z",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.1.0",
+ "deps": [
+ "cl-lib",
+ "s"
+ ]
+ },
+ "evil-smartparens": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "expez",
+ "repo": "evil-smartparens",
+ "sha256": "0j2m3rsszivyjhv8bjid5fdqaf1vwp8rf55b27y4vc2489wrw415",
+ "rev": "12521212b8e4a02cbec733882bb89c6fac37301f"
+ },
+ "recipe": {
+ "sha256": "1viwrd6gfqmwhlil80pk68dikn3cjf9ddsy0z781z3qfx0j35qza",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.3.0",
+ "deps": [
+ "cl-lib",
+ "emacs",
+ "evil",
+ "smartparens"
+ ]
+ },
+ "org-protocol-jekyll": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "vonavi",
+ "repo": "org-protocol-jekyll",
+ "sha256": "1cxjzj955rvp0ijbp7ifpmkxdhimz8hqjw5c9gv6zwjqb5iih9ry",
+ "rev": "c1ac46793eb9bf22b1a601e841947428be5c9766"
+ },
+ "recipe": {
+ "sha256": "18wg489n2d1sx9jk00ki6p2rxkqz67kqwnmy2kb1ga1rmb6x9wfs",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.1",
+ "deps": []
+ },
+ "autodisass-llvm-bitcode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "gbalats",
+ "repo": "autodisass-llvm-bitcode",
+ "sha256": "1hyp49bidwc53cr25wwwyzcd0cbbqzxkfcpnccimphv24qfsai85",
+ "rev": "14bb1bfe2be3b04d6e0c87a7a9d1e88ce15506d0"
+ },
+ "recipe": {
+ "sha256": "0bh73nzll9jp7kiqfnb5dwkipw85p3c3cyq58s0nghig02z63j01",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.1",
+ "deps": []
+ },
+ "sourcemap": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "syohex",
+ "repo": "emacs-sourcemap",
+ "sha256": "1k2gfw4dydzqxbfdmcghajbb2lyg1j4wgdhp8chlql3dax1f503d",
+ "rev": "065a0c3bd8ca5fe6a45e8f983f932c3c9fac5db9"
+ },
+ "recipe": {
+ "sha256": "0cjg90y6a0l59a9v7d7p12pgmr21gwd7x5msil3h6xkm15f0qcc5",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.02",
+ "deps": [
+ "cl-lib",
+ "emacs"
+ ]
+ },
+ "json-snatcher": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "Sterlingg",
+ "repo": "json-snatcher",
+ "sha256": "05zsgnk7grgw9jzwl80h5sxfpifxlr37b4mkbvx7mjq4z14xc2jw",
+ "rev": "c4cecc0a5051bd364373aa499c47a1bb7a5ac51c"
+ },
+ "recipe": {
+ "sha256": "0f6j9g3c5fz3wlqa88706cbzinrs3dnfpgsr2d3h3117gic4iwp4",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "1.0.0",
+ "deps": [
+ "emacs"
+ ]
+ },
+ "dired-details": {
+ "fetch": {
+ "tag": "fetchurl",
+ "url": "http://www.emacswiki.org/emacs/download/dired-details.el",
+ "sha256": "1ddrhj1kw0wl7jbs9jn067vfffsvqhz4izfw9f7ihxz34fdl2iza"
+ },
+ "recipe": {
+ "sha256": "1390vl3i4qbnl7lbia98wznhf6x887d24f8p7146fpqjsiwbm5ck",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "nil",
+ "deps": []
+ },
+ "org-link-travis": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "aki2o",
+ "repo": "org-link-travis",
+ "sha256": "1797pd264zn19zk93nifyw6pwk2a7wrpfir373qclk601yv2g5h8",
+ "rev": "596615ad8373d9090bd4138da683524f0ad0bda5"
+ },
+ "recipe": {
+ "sha256": "0hj4x7cw7a3ry8xislkz9bnavy77z4cpmnvns02yi3gnib53mlfs",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.0.1",
+ "deps": [
+ "org"
+ ]
+ },
+ "cryptol-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "thoughtpolice",
+ "repo": "cryptol-mode",
+ "sha256": "00wgbcw09xn9xi52swi4wyi9dj9p9hyin7i431xi6zkhxysw4q7w",
+ "rev": "a54d000d24757fad2a91ae2853b16a97ebe52771"
+ },
+ "recipe": {
+ "sha256": "08iq69gqmps8cckybhj9065b8a2a49p0rpzgx883qxnypsmjfmf2",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.1.0",
+ "deps": []
+ },
+ "company-ycmd": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "abingham",
+ "repo": "emacs-ycmd",
+ "sha256": "094alkjrh285qy3sds8dkvxsbnaxnppz1ab0i5r575lyhli9lxia",
+ "rev": "8fb29b84d42c0aea71fe7db088b0b7a5a0c6b34c"
+ },
+ "recipe": {
+ "sha256": "0fqmkb0q8ai605jzn2kwd585b2alwxbmnb3yqnn9fgkcvyc9f0pk",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.9",
+ "deps": [
+ "company",
+ "deferred",
+ "s",
+ "ycmd"
+ ]
+ },
+ "literate-coffee-mode": {
+ "fetch": {
+ "tag": "fetchFromGitHub",
+ "owner": "syohex",
+ "repo": "emacs-literate-coffee-mode",
+ "sha256": "1fh9wrw5irn0g3dy8gkk63csdcxgi3w2038mxx3sk6ki3r2bmhw8",
+ "rev": "39fe3bfa1f68a7b8b91160875589219b214a2cd6"
+ },
+ "recipe": {
+ "sha256": "1bll1y9q3kcg3v250asjvx2k9kb314qadaq1iwanwgdlp3qvvs40",
+ "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753"
+ },
+ "version": "0.04",
+ "deps": [
+ "coffee-mode"
+ ]
+ }
+}
\ No newline at end of file
diff --git a/pkgs/applications/editors/emacs-modes/melpa-stable-packages.nix b/pkgs/applications/editors/emacs-modes/melpa-stable-packages.nix
new file mode 100644
index 00000000000..7572c722e33
--- /dev/null
+++ b/pkgs/applications/editors/emacs-modes/melpa-stable-packages.nix
@@ -0,0 +1,73 @@
+/*
+
+# Updating
+
+To update the list of packages from MELPA Stable,
+
+1. Clone https://github.com/ttuegel/emacs2nix
+2. Clone https://github.com/milkypostman/melpa
+3. Run `./melpa-stable-packages.sh PATH_TO_MELPA_CLONE` from emacs2nix.
+ Error messages about missing versions are normal; most packages in
+ MELPA do not have a stable version.
+4. Copy the new melpa-stable-packages.json file into Nixpkgs
+5. `git commit -m "melpa-stable-packages $(date -Idate)"`
+
+*/
+
+{ lib }:
+
+let
+
+ inherit (lib) makeScope mapAttrs;
+
+ json = builtins.readFile ./melpa-stable-packages.json;
+ manifest = builtins.fromJSON json;
+
+ mkPackage = self: name: recipe:
+ let drv =
+ { melpaBuild, stdenv, fetchbzr, fetchcvs, fetchFromGitHub, fetchFromGitLab
+ , fetchgit, fetchhg, fetchsvn, fetchurl }:
+ let
+ unknownFetcher =
+ abort "emacs-${name}: unknown fetcher '${recipe.fetch.tag}'";
+ fetch =
+ {
+ inherit fetchbzr fetchcvs fetchFromGitHub fetchFromGitLab fetchgit fetchhg
+ fetchsvn fetchurl;
+ }."${recipe.fetch.tag}"
+ or unknownFetcher;
+ args = builtins.removeAttrs recipe.fetch [ "tag" ];
+ src = fetch args;
+ in melpaBuild {
+ pname = name;
+ inherit (recipe) version;
+ inherit src;
+ packageRequires =
+ let lookupDep = d: self."${d}" or null;
+ in map lookupDep recipe.deps;
+ meta = {
+ homepage = "http://stable.melpa.org/#/${name}";
+ license = stdenv.lib.licenses.free;
+ };
+ };
+ in self.callPackage drv {};
+
+in
+
+self:
+
+ let
+ super = mapAttrs (mkPackage self) manifest;
+
+ markBroken = pkg: pkg.override {
+ melpaBuild = args: self.melpaBuild (args // {
+ meta = (args.meta or {}) // { broken = true; };
+ });
+ };
+
+ melpaStablePackages = super // {
+ # broken upstream
+ ack-menu = markBroken super.ack-menu;
+ };
+ in
+ melpaStablePackages // { inherit melpaStablePackages; }
diff --git a/pkgs/applications/editors/idea/default.nix b/pkgs/applications/editors/idea/default.nix
index 5cce2416abe..4c9476d0b9f 100644
--- a/pkgs/applications/editors/idea/default.nix
+++ b/pkgs/applications/editors/idea/default.nix
@@ -237,25 +237,25 @@ in
idea-community = buildIdea rec {
name = "idea-community-${version}";
- version = "15.0.1";
- build = "IC-143.382";
+ version = "15.0.2";
+ build = "IC-143.1184";
description = "Integrated Development Environment (IDE) by Jetbrains, community edition";
license = stdenv.lib.licenses.asl20;
src = fetchurl {
url = "https://download.jetbrains.com/idea/ideaIC-${version}.tar.gz";
- sha256 = "1dbwzj12xkv2xw5nrhr779ac24hag0rb96dlagzyxcvc44xigjps";
+ sha256 = "0y8rrbsb87avn1dhw5r1xb4axpbm1qvgcd0aysir9bqzhx8qg64c";
};
};
idea-ultimate = buildIdea rec {
name = "idea-ultimate-${version}";
- version = "15.0.1";
- build = "IU-143.382";
+ version = "15.0.2";
+ build = "IU-143.1184";
description = "Integrated Development Environment (IDE) by Jetbrains, requires paid license";
license = stdenv.lib.licenses.unfree;
src = fetchurl {
url = "https://download.jetbrains.com/idea/ideaIU-${version}.tar.gz";
- sha256 = "0bw6qvsvhw0nabv01bgsbnl78vimnz2kb280jzv0ikmhxranyk0z";
+ sha256 = "1r8gw7mv1b0k223k76ib08f4yrrgrw24qmhkbx88rknmls5nsgss";
};
};
diff --git a/pkgs/applications/editors/nano/default.nix b/pkgs/applications/editors/nano/default.nix
index 9fc223d81da..9c8238244ff 100644
--- a/pkgs/applications/editors/nano/default.nix
+++ b/pkgs/applications/editors/nano/default.nix
@@ -11,10 +11,10 @@ with stdenv.lib;
stdenv.mkDerivation rec {
name = "nano-${version}";
- version = "2.4.2";
+ version = "2.5.0";
src = fetchurl {
url = "mirror://gnu/nano/${name}.tar.gz";
- sha256 = "1fb5gzdm3jdx1f2vyanjvdmppaz082lf4kinyffnssgmzhc7zkf8";
+ sha256 = "1vl9bim56k1b4zwc3icxp46w6pn6gb042j1h4jlz1jklxxpkwcpz";
};
buildInputs = [ ncurses ] ++ optional enableNls gettext;
configureFlags = ''
diff --git a/pkgs/applications/editors/sigil/default.nix b/pkgs/applications/editors/sigil/default.nix
index 2af662ded7f..ad6f599a361 100644
--- a/pkgs/applications/editors/sigil/default.nix
+++ b/pkgs/applications/editors/sigil/default.nix
@@ -1,5 +1,6 @@
{ stdenv, fetchurl, unzip, cmake, pkgconfig, makeWrapper
-, hunspell, minizip, boost, xercesc, qt5
+, hunspell, minizip, boost, xercesc
+, qtbase, qttools, qtwebkit, qtxmlpatterns
}:
let
@@ -17,7 +18,7 @@ stdenv.mkDerivation rec {
buildInputs = [
unzip cmake pkgconfig
- hunspell minizip boost xercesc qt5.base qt5.tools qt5.webkit qt5.xmlpatterns
+ hunspell minizip boost xercesc qtbase qttools qtwebkit qtxmlpatterns
];
# XXX: the compiler seems to treat the .h file inappropriately:
diff --git a/pkgs/applications/editors/tiled/default.nix b/pkgs/applications/editors/tiled/default.nix
index b885e26fbef..4590baf6b8e 100644
--- a/pkgs/applications/editors/tiled/default.nix
+++ b/pkgs/applications/editors/tiled/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchurl, qt5, pkgconfig, python }:
+{ stdenv, fetchurl, qtbase, qttools, pkgconfig, python }:
let
version = "0.12.3";
@@ -13,7 +13,7 @@ stdenv.mkDerivation rec {
inherit sha256;
};
- buildInputs = [ qt5.base qt5.tools pkgconfig python ];
+ buildInputs = [ qtbase qttools pkgconfig python ];
preConfigure = "qmake -r PREFIX=$out";
diff --git a/pkgs/applications/graphics/antimony/default.nix b/pkgs/applications/graphics/antimony/default.nix
index 589d20cb126..5e8dfd93f30 100644
--- a/pkgs/applications/graphics/antimony/default.nix
+++ b/pkgs/applications/graphics/antimony/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchgit, libpng, python3, boost, mesa, qt5, ncurses }:
+{ stdenv, fetchgit, libpng, python3, boost, mesa, qtbase, ncurses }:
let
gitRev = "745eca3a2d2657c495d5509e9083c884e021d09c";
@@ -19,7 +19,7 @@ in
buildInputs = [
libpng python3 (boost.override { python = python3; })
- mesa qt5.base ncurses
+ mesa qtbase ncurses
];
configurePhase = ''
diff --git a/pkgs/applications/graphics/apitrace/default.nix b/pkgs/applications/graphics/apitrace/default.nix
index 10d4f703a82..072cc698e92 100644
--- a/pkgs/applications/graphics/apitrace/default.nix
+++ b/pkgs/applications/graphics/apitrace/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchFromGitHub, cmake, libX11, procps, python, qt5 }:
+{ stdenv, fetchFromGitHub, cmake, libX11, procps, python, qtbase }:
let version = "7.1"; in
stdenv.mkDerivation {
@@ -11,7 +11,7 @@ stdenv.mkDerivation {
owner = "apitrace";
};
- buildInputs = [ libX11 procps python qt5.base ];
+ buildInputs = [ libX11 procps python qtbase ];
nativeBuildInputs = [ cmake ];
buildPhase = ''
diff --git a/pkgs/applications/graphics/awesomebump/default.nix b/pkgs/applications/graphics/awesomebump/default.nix
index 77bddec7eb8..c71b1f9335b 100644
--- a/pkgs/applications/graphics/awesomebump/default.nix
+++ b/pkgs/applications/graphics/awesomebump/default.nix
@@ -1,4 +1,4 @@
-{ lib, stdenv, fetchurl, qt5, makeWrapper }:
+{ lib, stdenv, fetchurl, qtbase, makeWrapper }:
stdenv.mkDerivation {
name = "awesomebump-4.0";
@@ -10,7 +10,7 @@ stdenv.mkDerivation {
setSourceRoot = "sourceRoot=$(echo */Sources)";
- buildInputs = [ qt5.base makeWrapper ];
+ buildInputs = [ qtbase makeWrapper ];
preBuild = "qmake";
diff --git a/pkgs/applications/graphics/luminance-hdr/default.nix b/pkgs/applications/graphics/luminance-hdr/default.nix
index 5e7835b3549..98152694c6d 100644
--- a/pkgs/applications/graphics/luminance-hdr/default.nix
+++ b/pkgs/applications/graphics/luminance-hdr/default.nix
@@ -1,5 +1,6 @@
-{ stdenv, cmake, fetchurl, fetchpatch, pkgconfig, qt5, boost, exiv2, fftwFloat, gsl
+{ stdenv, cmake, fetchurl, fetchpatch, pkgconfig, boost, exiv2, fftwFloat, gsl
, ilmbase, lcms2, libraw, libtiff, openexr
+, qtbase, qtdeclarative, qttools, qtwebkit
}:
stdenv.mkDerivation rec {
@@ -21,7 +22,7 @@ stdenv.mkDerivation rec {
buildInputs =
[
- qt5.base qt5.declarative qt5.tools qt5.webkit
+ qtbase qtdeclarative qttools qtwebkit
boost exiv2 fftwFloat gsl ilmbase lcms2 libraw libtiff openexr
];
diff --git a/pkgs/applications/graphics/photoqt/default.nix b/pkgs/applications/graphics/photoqt/default.nix
index 7ae6d6e050f..c96b0c182a6 100644
--- a/pkgs/applications/graphics/photoqt/default.nix
+++ b/pkgs/applications/graphics/photoqt/default.nix
@@ -1,11 +1,13 @@
-{ stdenv, fetchurl, cmake, makeWrapper, qt5, exiv2, graphicsmagick }:
+{ stdenv, fetchurl, cmake, makeWrapper, exiv2, graphicsmagick
+, qtbase, qtdeclarative, qtmultimedia, qtquickcontrols, qttools
+}:
let
version = "1.3";
qmlPath = stdenv.lib.makeSearchPath "lib/qt5/qml/" [
- qt5.quickcontrols
- qt5.declarative
- qt5.multimedia
+ qtquickcontrols
+ qtdeclarative
+ qtmultimedia
];
in
stdenv.mkDerivation rec {
@@ -15,7 +17,7 @@ stdenv.mkDerivation rec {
sha256 = "0j2kvxfb5pd9abciv161nkcsyam6n8kfqs8ymwj2mxiqflwbmfl1";
};
- buildInputs = [ cmake makeWrapper qt5.base qt5.tools exiv2 graphicsmagick ];
+ buildInputs = [ cmake makeWrapper qtbase qttools exiv2 graphicsmagick ];
preConfigure = ''
export MAGICK_LOCATION="${graphicsmagick}/include/GraphicsMagick"
diff --git a/pkgs/applications/graphics/phototonic/default.nix b/pkgs/applications/graphics/phototonic/default.nix
index f1a46b63d58..6803b969b4b 100644
--- a/pkgs/applications/graphics/phototonic/default.nix
+++ b/pkgs/applications/graphics/phototonic/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchFromGitHub, qt5, exiv2 }:
+{ stdenv, fetchFromGitHub, qtbase, exiv2 }:
stdenv.mkDerivation rec {
name = "phototonic-${version}";
@@ -11,7 +11,7 @@ stdenv.mkDerivation rec {
sha256 = "1agd3bsrpljd019qrjvlbim5l0bhpx53dhpc0gvyn0wmcdzn92gj";
};
- buildInputs = [ qt5.base exiv2 ];
+ buildInputs = [ qtbase exiv2 ];
configurePhase = ''
sed -i 's;/usr;;' phototonic.pro
diff --git a/pkgs/applications/graphics/rapcad/default.nix b/pkgs/applications/graphics/rapcad/default.nix
index 701ad47985b..cb92947b766 100644
--- a/pkgs/applications/graphics/rapcad/default.nix
+++ b/pkgs/applications/graphics/rapcad/default.nix
@@ -1,4 +1,6 @@
-{stdenv, fetchgit, qt5, cgal, boost, gmp, mpfr, flex, bison, dxflib, readline }:
+{ stdenv, fetchgit, cgal, boost, gmp, mpfr, flex, bison, dxflib, readline
+, qtbase
+}:
stdenv.mkDerivation rec {
version = "0.9.5";
@@ -9,8 +11,8 @@ stdenv.mkDerivation rec {
rev = "refs/tags/v${version}";
sha256 = "15c18jvgbwyrfhv7r35ih0gzx35vjlsbi984h1sckgh2z17hjq8l";
};
-
- buildInputs = [qt5.base cgal boost gmp mpfr flex bison dxflib readline ];
+
+ buildInputs = [ qtbase cgal boost gmp mpfr flex bison dxflib readline ];
configurePhase = ''
qmake;
diff --git a/pkgs/applications/graphics/sane/backends-git.nix b/pkgs/applications/graphics/sane/backends-git.nix
index 66e496557a8..0c74a470c25 100644
--- a/pkgs/applications/graphics/sane/backends-git.nix
+++ b/pkgs/applications/graphics/sane/backends-git.nix
@@ -6,13 +6,14 @@ let
in
assert hotplugSupport -> (stdenv.system == "i686-linux" || stdenv.system == "x86_64-linux");
+let version = "2015-12-20"; in
stdenv.mkDerivation {
- name = "sane-backends-1.0.25-180-g6d8b8d5";
+ name = "sane-backends-${version}";
src = fetchgit {
url = "git://alioth.debian.org/git/sane/sane-backends.git";
- rev = "6d8b8d5aa6e8da2b24e1caa42b9ea75e9624b45d";
- sha256 = "b5b2786eef835550e4a4522db05c8c81075b1a7aff5a66f1d4a498f6efe0ef03";
+ rev = "5136e664b8608604f54a2cc1d466019922b311e6";
+ sha256 = "998fdc9cdd3f9220c38244e0b87bba3ee623d7d20726479b04ed95b3836a37ed";
};
udevSupport = hotplugSupport;
@@ -39,6 +40,7 @@ stdenv.mkDerivation {
else "";
meta = with stdenv.lib; {
+ inherit version;
homepage = "http://www.sane-project.org/";
description = "SANE (Scanner Access Now Easy) backends";
longDescription = ''
diff --git a/pkgs/applications/graphics/simple-scan/default.nix b/pkgs/applications/graphics/simple-scan/default.nix
index c205c2a3f1c..c169d262fb6 100644
--- a/pkgs/applications/graphics/simple-scan/default.nix
+++ b/pkgs/applications/graphics/simple-scan/default.nix
@@ -1,5 +1,5 @@
{ stdenv, fetchurl, cairo, colord, glib, gtk3, gusb, intltool, itstool
-, libusb, libxml2, pkgconfig, saneBackends, vala, wrapGAppsHook }:
+, libusb1, libxml2, pkgconfig, saneBackends, vala, wrapGAppsHook }:
let version = "3.19.3"; in
stdenv.mkDerivation rec {
@@ -10,7 +10,7 @@ stdenv.mkDerivation rec {
url = "https://launchpad.net/simple-scan/3.19/${version}/+download/${name}.tar.xz";
};
- buildInputs = [ cairo colord glib gusb gtk3 libusb libxml2 saneBackends
+ buildInputs = [ cairo colord glib gusb gtk3 libusb1 libxml2 saneBackends
vala ];
nativeBuildInputs = [ intltool itstool pkgconfig wrapGAppsHook ];
diff --git a/pkgs/applications/misc/acbuild/default.nix b/pkgs/applications/misc/acbuild/default.nix
new file mode 100644
index 00000000000..3c8f4f335f2
--- /dev/null
+++ b/pkgs/applications/misc/acbuild/default.nix
@@ -0,0 +1,37 @@
+{ stdenv, lib, go, fetchFromGitHub }:
+
+stdenv.mkDerivation rec {
+ name = "acbuild-${version}";
+ version = "0.2.2";
+
+ src = fetchFromGitHub {
+ owner = "appc";
+ repo = "acbuild";
+ rev = "v${version}";
+ sha256 = "0sajmjg655irwy5fywk88cmwhc1q186dg5w8589pab2jhwpavdx4";
+ };
+
+ buildInputs = [ go ];
+
+ patchPhase = ''
+ sed -i -e 's|\$(git describe --dirty)|"${version}"|' build
+ '';
+
+ buildPhase = ''
+ patchShebangs build
+ ./build
+ '';
+
+ installPhase = ''
+ mkdir -p $out
+ mv bin $out
+ '';
+
+ meta = with stdenv.lib; {
+ description = "A build tool for ACIs";
+ homepage = https://github.com/appc/acbuild;
+ license = licenses.asl20;
+ maintainers = with maintainers; [ dgonyeo ];
+ platforms = platforms.linux;
+ };
+}
diff --git a/pkgs/applications/misc/calibre/default.nix b/pkgs/applications/misc/calibre/default.nix
index a3ecef308eb..6ab83e29cc1 100644
--- a/pkgs/applications/misc/calibre/default.nix
+++ b/pkgs/applications/misc/calibre/default.nix
@@ -1,5 +1,5 @@
{ stdenv, fetchurl, python, pyqt5, sip_4_16, poppler_utils, pkgconfig, libpng
-, imagemagick, libjpeg, fontconfig, podofo, qt5, icu, sqlite
+, imagemagick, libjpeg, fontconfig, podofo, qtbase, icu, sqlite
, makeWrapper, unrar, chmlib, pythonPackages, xz, libusb1, libmtp
, xdg_utils
}:
@@ -24,7 +24,7 @@ stdenv.mkDerivation rec {
buildInputs =
[ python pyqt5 sip_4_16 poppler_utils libpng imagemagick libjpeg
- fontconfig podofo qt5.base chmlib icu sqlite libusb1 libmtp xdg_utils
+ fontconfig podofo qtbase chmlib icu sqlite libusb1 libmtp xdg_utils
pythonPackages.mechanize pythonPackages.lxml pythonPackages.dateutil
pythonPackages.cssutils pythonPackages.beautifulsoup pythonPackages.pillow
pythonPackages.sqlite3 pythonPackages.netifaces pythonPackages.apsw
diff --git a/pkgs/applications/misc/copyq/default.nix b/pkgs/applications/misc/copyq/default.nix
new file mode 100644
index 00000000000..0892f889932
--- /dev/null
+++ b/pkgs/applications/misc/copyq/default.nix
@@ -0,0 +1,23 @@
+{ stdenv, fetchurl, cmake, qt4, libXfixes, libXtst}:
+
+let version = "2.5.0";
+in
+stdenv.mkDerivation {
+ name = "CopyQ-${version}";
+ src = fetchurl {
+ url = "https://github.com/hluk/CopyQ/archive/v${version}.tar.gz";
+ sha256 = "7726745056e8d82625531defc75b2a740d3c42131ecce1f3181bc0a0bae51fb1";
+ };
+
+ buildInputs = [ cmake qt4 libXfixes libXtst ];
+
+ meta = with stdenv.lib; {
+ homepage = "https://hluk.github.io/CopyQ";
+ description = "Clipboard Manager with Advanced Features";
+ license = licenses.gpl3;
+ maintainers = with maintainers; [ willtim ];
+ # NOTE: CopyQ supports windows and osx, but I cannot test these.
+ # OSX build requires QT5.
+ platforms = platforms.linux;
+ };
+}
diff --git a/pkgs/applications/misc/dfilemanager/default.nix b/pkgs/applications/misc/dfilemanager/default.nix
index ba3bd5f0f0d..1891c4f2174 100644
--- a/pkgs/applications/misc/dfilemanager/default.nix
+++ b/pkgs/applications/misc/dfilemanager/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchgit, cmake, qt5, file, kde5}:
+{ stdenv, fetchgit, cmake, file, qtbase, qttools, qtx11extras, solid }:
let
version = "git-2015-07-25";
@@ -11,7 +11,7 @@ stdenv.mkDerivation rec {
sha256 = "1dd21xl24xvxs100j8nzhpaqfqk8srqs92al9c03jmyjlk31s6lf";
};
- buildInputs = [ cmake qt5.base qt5.tools qt5.x11extras file kde5.solid];
+ buildInputs = [ cmake qtbase qttools qtx11extras file solid ];
cmakeFlags = "-DQT5BUILD=true";
diff --git a/pkgs/applications/misc/gosmore/default.nix b/pkgs/applications/misc/gosmore/default.nix
index 67c21aea9e6..e894ace0d45 100644
--- a/pkgs/applications/misc/gosmore/default.nix
+++ b/pkgs/applications/misc/gosmore/default.nix
@@ -5,10 +5,14 @@ let
in
stdenv.mkDerivation {
name = "gosmore-r${version}";
+ # the gosmore svn repository does not lock revision numbers of its externals
+ # so we explicitly disable them to avoid breaking the hash
+ # especially as the externals appear to be unused
src = fetchsvn {
url = http://svn.openstreetmap.org/applications/rendering/gosmore;
- sha256 = "0i6m3ikavsaqhfy18sykzq0cflw978nr4fhg18hawndcmr45v5zj";
+ sha256 = "0qsckpqx7i7f8gkqhkzdamr65250afk1rpnh3nbman35kdv3dsxi";
rev = "${version}";
+ ignoreExternals = true;
};
buildInputs = [ libxml2 gtk curl ];
diff --git a/pkgs/applications/misc/gpsbabel/default.nix b/pkgs/applications/misc/gpsbabel/default.nix
index 172f1347f6b..c21f8bbe814 100644
--- a/pkgs/applications/misc/gpsbabel/default.nix
+++ b/pkgs/applications/misc/gpsbabel/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchurl, zlib, qt5, which }:
+{ stdenv, fetchurl, zlib, qtbase, which }:
stdenv.mkDerivation rec {
name = "gpsbabel-${version}";
@@ -11,7 +11,7 @@ stdenv.mkDerivation rec {
sha256 = "0xf7wmy2m29g2lm8lqc74yf8rf7sxfl3cfwbk7dpf0yf42pb0b6w";
};
- buildInputs = [ zlib qt5.base which ];
+ buildInputs = [ zlib qtbase which ];
/* FIXME: Building the documentation, with "make doc", requires this:
diff --git a/pkgs/applications/misc/keepass-plugins/keefox/default.nix b/pkgs/applications/misc/keepass-plugins/keefox/default.nix
new file mode 100644
index 00000000000..e32f0b7ca01
--- /dev/null
+++ b/pkgs/applications/misc/keepass-plugins/keefox/default.nix
@@ -0,0 +1,33 @@
+{ stdenv, buildEnv, fetchurl, mono, unzip }:
+
+let
+ version = "1.5.4";
+ drv = stdenv.mkDerivation {
+ name = "keefox-${version}";
+ src = fetchurl {
+ url = "https://github.com/luckyrat/KeeFox/releases/download/v${version}/${version}.xpi";
+ sha256 = "c7c30770beb0ea32cbdee5311d03a9910fb7772695af3aa655e4ae64cd4d8335";
+ };
+
+ meta = {
+ description = "Keepass plugin for keefox Firefox add-on";
+ homepage = http://keefox.org;
+ platforms = with stdenv.lib.platforms; linux;
+ license = stdenv.lib.licenses.gpl2;
+ };
+
+ buildInputs = [ unzip ];
+
+ pluginFilename = "KeePassRPC.plgx";
+
+ unpackCmd = "unzip $src deps/$pluginFilename ";
+ sourceRoot = "deps";
+
+ installPhase = ''
+ mkdir -p $out/lib/dotnet/keepass/
+ cp $pluginFilename $out/lib/dotnet/keepass/$pluginFilename
+ '';
+ };
+in
+ # Mono is required to compile plugin at runtime, after loading.
+ buildEnv { name = drv.name; paths = [ mono drv ]; }
diff --git a/pkgs/applications/misc/keepass/default.nix b/pkgs/applications/misc/keepass/default.nix
index 950d16eeac8..6914120f296 100644
--- a/pkgs/applications/misc/keepass/default.nix
+++ b/pkgs/applications/misc/keepass/default.nix
@@ -1,6 +1,12 @@
-{ stdenv, fetchurl, buildDotnetPackage, makeWrapper, unzip, makeDesktopItem }:
+{ stdenv, lib, fetchurl, buildDotnetPackage, makeWrapper, unzip, makeDesktopItem, plugins ? [] }:
-buildDotnetPackage rec {
+# KeePass looks for plugins in under directory in which KeePass.exe is
+# located. It follows symlinks where looking for that directory, so
+# buildEnv is not enough to bring KeePass and plugins together.
+#
+# This derivation patches KeePass to search for plugins in specified
+# plugin derivations in the Nix store and nowhere else.
+with builtins; buildDotnetPackage rec {
baseName = "keepass";
version = "2.30";
@@ -11,10 +17,26 @@ buildDotnetPackage rec {
sourceRoot = ".";
- buildInputs = [ unzip ];
+ buildInputs = [ unzip makeWrapper ];
patches = [ ./keepass.patch ];
+ pluginLoadPathsPatch =
+ let outputLc = toString (add 8 (length plugins));
+ patchTemplate = readFile ./keepass-plugins.patch;
+ loadTemplate = readFile ./keepass-plugins-load.patch;
+ loads =
+ lib.concatStrings
+ (map
+ (p: replaceStrings ["$PATH$"] [ (unsafeDiscardStringContext (toString p)) ] loadTemplate)
+ plugins);
+ in replaceStrings ["$OUTPUT_LC$" "$DO_LOADS$"] [outputLc loads] patchTemplate;
+
+ passAsFile = [ "pluginLoadPathsPatch" ];
+ postPatch = ''
+ patch --binary -p1 <$pluginLoadPathsPatchPath
+ '';
+
preConfigure = "rm -rvf Build/*";
desktopItem = makeDesktopItem {
@@ -22,7 +44,7 @@ buildDotnetPackage rec {
exec = "keepass";
comment = "Password manager";
desktopName = "Keepass";
- genericName = "Password manager";
+ genericName = "Password manager";
categories = "Application;Other;";
};
@@ -30,9 +52,16 @@ buildDotnetPackage rec {
dllFiles = [ "KeePassLib.dll" ];
exeFiles = [ "KeePass.exe" ];
+ # plgx plugin like keefox requires mono to compile at runtime
+ # after loading. It is brought into plugins bin/ directory using
+ # buildEnv in the plugin derivation. Wrapper below makes sure it
+ # is found and does not pollute output path.
+ binPaths = lib.concatStrings (lib.intersperse ":" (map (x: x + "/bin") plugins));
+
postInstall = ''
mkdir -p "$out/share/applications"
cp ${desktopItem}/share/applications/* $out/share/applications
+ wrapProgram $out/bin/keepass --prefix PATH : "$binPaths"
'';
meta = {
diff --git a/pkgs/applications/misc/keepass/keepass-plugins-load.patch b/pkgs/applications/misc/keepass/keepass-plugins-load.patch
new file mode 100644
index 00000000000..872b6c06d78
--- /dev/null
+++ b/pkgs/applications/misc/keepass/keepass-plugins-load.patch
@@ -0,0 +1 @@
++ m_pluginManager.LoadAllPlugins("$PATH$/lib/dotnet/keepass");
diff --git a/pkgs/applications/misc/keepass/keepass-plugins.patch b/pkgs/applications/misc/keepass/keepass-plugins.patch
new file mode 100644
index 00000000000..1a32d77806a
--- /dev/null
+++ b/pkgs/applications/misc/keepass/keepass-plugins.patch
@@ -0,0 +1,14 @@
+--- old/KeePass/Forms/MainForm.cs
++++ new/KeePass/Forms/MainForm.cs
+@@ -384,9 +384,$OUTPUT_LC$ @@ namespace KeePass.Forms
+ m_pluginManager.Initialize(m_pluginDefaultHost);
+
+ m_pluginManager.UnloadAllPlugins();
+- if(AppPolicy.Current.Plugins)
+- m_pluginManager.LoadAllPlugins(UrlUtil.GetFileDirectory(
+- WinUtil.GetExecutable(), false, true));
++ if(AppPolicy.Current.Plugins) {
+$DO_LOADS$+ }
+
+ // Delete old files *after* loading plugins (when timestamps
+ // of loaded plugins have been updated already)
diff --git a/pkgs/applications/misc/keepassx/2.0.nix b/pkgs/applications/misc/keepassx/2.0.nix
index acdd91aaf68..aeccb874cb6 100644
--- a/pkgs/applications/misc/keepassx/2.0.nix
+++ b/pkgs/applications/misc/keepassx/2.0.nix
@@ -1,10 +1,12 @@
{ stdenv, fetchurl, cmake, libgcrypt, qt4, xorg, ... }:
-stdenv.mkDerivation {
- name = "keepassx2-2.0beta2";
+stdenv.mkDerivation rec {
+ name = "keepassx2-${version}";
+ version = "2.0";
+
src = fetchurl {
- url = "https://github.com/keepassx/keepassx/archive/2.0-beta2.tar.gz";
- sha256 = "0ljf9ws3wh62zd0gyb0vk2qw6pqsmxrlybrfs5mqahf44q92ca2q";
+ url = "https://www.keepassx.org/releases/${version}/keepassx-${version}.tar.gz";
+ sha256 = "1ri2r1sldc62hbg74m4pmci0nrjwvv38rqhyzhyjin247an0zd0f";
};
buildInputs = [ cmake libgcrypt qt4 xorg.libXtst ];
diff --git a/pkgs/applications/misc/keepassx/default.nix b/pkgs/applications/misc/keepassx/default.nix
index 02a299922f1..3d078d59be6 100644
--- a/pkgs/applications/misc/keepassx/default.nix
+++ b/pkgs/applications/misc/keepassx/default.nix
@@ -1,11 +1,12 @@
{ stdenv, fetchurl, bzip2, qt4, libX11, xextproto, libXtst }:
stdenv.mkDerivation rec {
- name = "keepassx-0.4.3";
+ name = "keepassx-${version}";
+ version = "0.4.4";
src = fetchurl {
- url = "mirror://sourceforge/keepassx/${name}.tar.gz";
- sha256 = "cd901a0611ce57e62cf6df7eeeb1b690b5232302bdad8626994eb54adcfa1e85";
+ url = "https://www.keepassx.org/releases/${version}/${name}.tar.gz";
+ sha256 = "1i5dq10x28mg7m4c0yacm32xfj4j7imir4ph8x9p0s2ym260c9ry";
};
configurePhase = ''
diff --git a/pkgs/applications/misc/mediainfo/default.nix b/pkgs/applications/misc/mediainfo/default.nix
index 40531ea58a1..b45bee56de0 100644
--- a/pkgs/applications/misc/mediainfo/default.nix
+++ b/pkgs/applications/misc/mediainfo/default.nix
@@ -15,15 +15,15 @@ stdenv.mkDerivation rec {
configureFlags = [ "--with-libmediainfo=${libmediainfo}" ];
preConfigure = "sh autogen.sh";
- meta = {
+ meta = with stdenv.lib; {
description = "Supplies technical and tag information about a video or audio file";
longDescription = ''
MediaInfo is a convenient unified display of the most relevant technical
and tag data for video and audio files.
'';
homepage = http://mediaarea.net/;
- license = stdenv.lib.licenses.bsd2;
- platforms = stdenv.lib.platforms.unix;
- maintainers = [ stdenv.lib.maintainers.devhell ];
+ license = licenses.bsd2;
+ platforms = platforms.unix;
+ maintainers = [ maintainers.devhell ];
};
}
diff --git a/pkgs/applications/misc/pdfmod/default.nix b/pkgs/applications/misc/pdfmod/default.nix
new file mode 100644
index 00000000000..f23238b2dc6
--- /dev/null
+++ b/pkgs/applications/misc/pdfmod/default.nix
@@ -0,0 +1,53 @@
+{ stdenv, fetchurl, fetchpatch, pkgconfig, gnome_doc_utils, intltool
+, mono, gtk-sharp, gnome-sharp, hyena
+, which, makeWrapper, glib, gnome3, poppler, wrapGAppsHook
+}:
+
+stdenv.mkDerivation rec {
+ name = "pdfmod-${version}";
+ version = "0.9.1";
+
+ src = fetchurl {
+ url = "mirror://gnome/sources/pdfmod/0.9/pdfmod-${version}.tar.bz2";
+ sha256 = "eb7c987514a053106ddf03f26544766c751c801d87762909b36415d46bc425c9";
+ };
+
+ patches = [ (fetchpatch {
+ url = "https://raw.githubusercontent.com/City-busz/Arch-Linux-Repository"
+ + "/master/gnome/pdfmod/pdfmod/pdfmod-mono-2.10.patch";
+ sha256 = "0fpz9ifr6476lqhd5rkb94dm68vlrwdq5w1aaxzgyjgdax9hxx81";
+ }) ];
+
+ buildInputs = [
+ pkgconfig gnome_doc_utils intltool mono gtk-sharp gnome-sharp
+ hyena which makeWrapper wrapGAppsHook
+ ];
+
+ preConfigure = ''
+ substituteInPlace configure --replace gmcs mcs
+ substituteInPlace lib/poppler-sharp/poppler-sharp/poppler-sharp.dll.config \
+ --replace libpoppler-glib.so.4 libpoppler-glib.so
+ '';
+
+ postInstall = ''
+ makeWrapper "${mono}/bin/mono" "$out/bin/pdfmod" \
+ --add-flags "$out/lib/pdfmod/PdfMod.exe" \
+ --prefix MONO_GAC_PREFIX : ${gtk-sharp} \
+ --prefix MONO_GAC_PREFIX : ${gnome-sharp} \
+ --prefix LD_LIBRARY_PATH : ${glib}/lib \
+ --prefix LD_LIBRARY_PATH : ${gtk-sharp}/lib \
+ --prefix LD_LIBRARY_PATH : ${gnome-sharp}/lib \
+ --prefix LD_LIBRARY_PATH : ${gtk-sharp.gtk}/lib \
+ --prefix LD_LIBRARY_PATH : ${gnome3.gconf}/lib \
+ --prefix LD_LIBRARY_PATH : ${poppler}/lib
+ '';
+
+ dontStrip = true;
+
+ meta = with stdenv.lib; {
+ homepage = "https://wiki.gnome.org/Apps/PdfMod";
+ description = "A simple application for modifying PDF documents";
+ platforms = platforms.all;
+ maintainers = with maintainers; [ obadz ];
+ };
+}
diff --git a/pkgs/applications/misc/qtpass/default.nix b/pkgs/applications/misc/qtpass/default.nix
index 3c6d3ed36ce..3d45ef6884c 100644
--- a/pkgs/applications/misc/qtpass/default.nix
+++ b/pkgs/applications/misc/qtpass/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchurl, git, gnupg, makeWrapper, pass, qt5 }:
+{ stdenv, fetchurl, git, gnupg, makeWrapper, pass, qtbase, qttools }:
stdenv.mkDerivation rec {
name = "qtpass-${version}";
@@ -9,7 +9,7 @@ stdenv.mkDerivation rec {
sha256 = "0c07bd1eb9e5336c0225f891e5b9a9df103f218619cf7ec6311edf654e8db281";
};
- buildInputs = [ git gnupg makeWrapper pass qt5.base qt5.tools ];
+ buildInputs = [ git gnupg makeWrapper pass qtbase qttools ];
configurePhase = "qmake CONFIG+=release PREFIX=$out DESTDIR=$out";
diff --git a/pkgs/applications/misc/robomongo/default.nix b/pkgs/applications/misc/robomongo/default.nix
index 80424a308d7..ebd97f6621d 100644
--- a/pkgs/applications/misc/robomongo/default.nix
+++ b/pkgs/applications/misc/robomongo/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchurl, qt5, openssl, boost, cmake, scons, python, pcre, bzip2 }:
+{ stdenv, fetchurl, qtbase, openssl, boost, cmake, scons, python, pcre, bzip2 }:
stdenv.mkDerivation {
name = "robomongo-0.8.4";
@@ -16,7 +16,7 @@ stdenv.mkDerivation {
NIX_CFLAGS_COMPILE = "-fno-stack-protector";
- buildInputs = [ cmake boost scons qt5.base openssl python pcre bzip2 ];
+ buildInputs = [ cmake boost scons qtbase openssl python pcre bzip2 ];
meta = {
homepage = "http://robomongo.org/";
diff --git a/pkgs/applications/misc/twmn/default.nix b/pkgs/applications/misc/twmn/default.nix
index e2a21822acd..bb3f359ab8f 100644
--- a/pkgs/applications/misc/twmn/default.nix
+++ b/pkgs/applications/misc/twmn/default.nix
@@ -1,4 +1,4 @@
-{ fetchurl, stdenv, fetchgit, qt5, pkgconfig, boost }:
+{ fetchurl, stdenv, fetchgit, qtbase, qtx11extras, pkgconfig, boost }:
stdenv.mkDerivation rec {
name = "twmn-git-2014-09-23";
@@ -9,7 +9,7 @@ stdenv.mkDerivation rec {
sha256 = "9c91e9d3d6d7f9d90d34da6f1a4b9f3dee65605c1e43729417d6921c54dded6b";
};
- buildInputs = [ qt5.base qt5.x11extras pkgconfig boost ];
+ buildInputs = [ qtbase qtx11extras pkgconfig boost ];
configurePhase = ''
sed -i s/-Werror// twmnd/twmnd.pro
diff --git a/pkgs/applications/networking/browsers/firefox-bin/sources.nix b/pkgs/applications/networking/browsers/firefox-bin/sources.nix
index acbcd075797..e9b171dc94d 100644
--- a/pkgs/applications/networking/browsers/firefox-bin/sources.nix
+++ b/pkgs/applications/networking/browsers/firefox-bin/sources.nix
@@ -4,185 +4,185 @@
# ruby generate_sources.rb > sources.nix
{
- version = "42.0";
+ version = "43.0.1";
sources = [
- { locale = "ach"; arch = "linux-i686"; sha256 = "f45ceba774989f09e6adb226f0e189c69092d9eccf67722b1876695d94b6a988"; }
- { locale = "ach"; arch = "linux-x86_64"; sha256 = "78f64d02e5a1548e0b9b9f9c36f1eb151dbc0212805f09658d61a35c8ef94380"; }
- { locale = "af"; arch = "linux-i686"; sha256 = "a3cb08c2d3879d46a2fe6b9567664d4c4a996bf10560079936d221e9588c5b76"; }
- { locale = "af"; arch = "linux-x86_64"; sha256 = "c580f19ac9909d28e5f3d55c3347893e088471a0fc7f4cb2e42fb1481218a1d3"; }
- { locale = "an"; arch = "linux-i686"; sha256 = "61a4fa6a4c3a8c814d3d81bf51e1780c148e366fe1355e621523f419d5e4c583"; }
- { locale = "an"; arch = "linux-x86_64"; sha256 = "2bbc6591669258fbc46944577ce6a4a091772b1cb8a4430d88d3f1b911da770c"; }
- { locale = "ar"; arch = "linux-i686"; sha256 = "1aa9e3e21c3d678135f009f8541999a18ea38ade9ae3d21b8da07a60d22eab91"; }
- { locale = "ar"; arch = "linux-x86_64"; sha256 = "eef01a5315eab457073ff01a51382a46200e84a6e87a91a3e38ab865b3304430"; }
- { locale = "as"; arch = "linux-i686"; sha256 = "e3949cd85c439f72e8051ece5c22b18f6802e29311b84c5e88b124ea72ced52f"; }
- { locale = "as"; arch = "linux-x86_64"; sha256 = "59178756fcd409765ff88324133bccdd0e43d2961a0fa15e2e53f7ed4fea3bac"; }
- { locale = "ast"; arch = "linux-i686"; sha256 = "88440f3f572421c0a7c2e95f3517289a33de474766185bacc0b93ef09673f1df"; }
- { locale = "ast"; arch = "linux-x86_64"; sha256 = "ce6fec215b11ecc2e5bd74d2dc47a09de9bcbf3df18e8f270c83967e605985a7"; }
- { locale = "az"; arch = "linux-i686"; sha256 = "1b0e3ce4799e4cf3bf6129298895e8aa48c38b6b138c5ebfdd694ae8811e51af"; }
- { locale = "az"; arch = "linux-x86_64"; sha256 = "6e0b73fc25a68d57117259043fd5bbd6dfbc8e32ba4090233303c5bf57d858b4"; }
- { locale = "be"; arch = "linux-i686"; sha256 = "c50492edb43b2d306c664bb174f89392e68a530eec4fef2aa39335b9d12b0e32"; }
- { locale = "be"; arch = "linux-x86_64"; sha256 = "2057d21e45538be260d723cf11bb36e32c79d87530fc19852a2f342d825d75cc"; }
- { locale = "bg"; arch = "linux-i686"; sha256 = "f87522d234e50d50509ead2800a804131b769235006aada0a379e46d290b6cc1"; }
- { locale = "bg"; arch = "linux-x86_64"; sha256 = "8793acfd7bbcc47e9ee19cfc2cb265a71f7dea5e98222fc541ae66c29bd8c39d"; }
- { locale = "bn-BD"; arch = "linux-i686"; sha256 = "d55de132e4d6c49053d2c843f91f7410188f62ee3e4bb56ac8b4370f55475274"; }
- { locale = "bn-BD"; arch = "linux-x86_64"; sha256 = "a5798d40795689f2c92cfd8cc3605c4a30e23e39d8db43a8e7415cb9e4c75a55"; }
- { locale = "bn-IN"; arch = "linux-i686"; sha256 = "28fd24e8e3069de9d1f81aff9e3671a806470e56f17ab0193566c8709eb1c268"; }
- { locale = "bn-IN"; arch = "linux-x86_64"; sha256 = "dd5b97f1b3acdb2ab1a2f75b4c236ce2b68365840ea6b3703969e57b2eaaf927"; }
- { locale = "br"; arch = "linux-i686"; sha256 = "5dd3132f6543c7dd5bf062d1222782b4bfd38b3f95088e2881c0b6f4362f1e3d"; }
- { locale = "br"; arch = "linux-x86_64"; sha256 = "69ff22dc400cbaa75e9799929fd2496e8e2db6c5549d848abf642f58e73ad825"; }
- { locale = "bs"; arch = "linux-i686"; sha256 = "bfe4feb86124cde6ebd0e2449b5301657f1d62a073e98c888e81307832441b45"; }
- { locale = "bs"; arch = "linux-x86_64"; sha256 = "878712c2ff34e27181f8477440b2489c8c4c8b1cd2f6a03724ee4b9b5eabd031"; }
- { locale = "ca"; arch = "linux-i686"; sha256 = "a5fd111a60b81a11b233bc2720ca58a307d883a84cb2212644dc07a0acd8ed88"; }
- { locale = "ca"; arch = "linux-x86_64"; sha256 = "c8df6e52d22907615c0198a9c061d5836e43427e66964d9235662d1673ec0573"; }
- { locale = "cs"; arch = "linux-i686"; sha256 = "6f0ad2a1ec219a8aef9c762235fafc8113a06754aaab2c141812f9f062c1a0c4"; }
- { locale = "cs"; arch = "linux-x86_64"; sha256 = "d4a1c8becbeb05da17ffb6d1ba8625b7286a1591fc5f141202542ce769c29c13"; }
- { locale = "cy"; arch = "linux-i686"; sha256 = "4bae504ae202fbc75244fd476de80857dc33fe6a7dd3da2555e7efba279a5089"; }
- { locale = "cy"; arch = "linux-x86_64"; sha256 = "2133795258e00be82219dbd5f288ab76e5b218a4d298224fedcaf02ddc049b07"; }
- { locale = "da"; arch = "linux-i686"; sha256 = "64fbcfa9c645dd0986b85de286347eb223c81db45e405b2e29df47527edfe55a"; }
- { locale = "da"; arch = "linux-x86_64"; sha256 = "58af00c544e5a2c9a98cc2cb896db80052ee12e31d4215ae4b08862ac3d3caa3"; }
- { locale = "de"; arch = "linux-i686"; sha256 = "b8a48b676494ec7c9af8d24678dd1c719871c297887431b9360dea67d9bafb48"; }
- { locale = "de"; arch = "linux-x86_64"; sha256 = "8d6bc67c1db287c00c8782cb33b03ba0076f1b89064cdd0ddefcb37bffddbc68"; }
- { locale = "dsb"; arch = "linux-i686"; sha256 = "955968db11698942a86b79a9f5258c4636121e9c3350dfad70eab375f87c08e3"; }
- { locale = "dsb"; arch = "linux-x86_64"; sha256 = "f34efb2d427e23ea34a1f24cbbe32d6ce384e1e4055a83afc1d336bb31481095"; }
- { locale = "el"; arch = "linux-i686"; sha256 = "bff3a1efcaed403d2e465b92a88076fc0525534593d977423811c30a4abc757a"; }
- { locale = "el"; arch = "linux-x86_64"; sha256 = "0d83d214eb61c3d248291141fa6b5e29d72f62a030be39dc4ee7c1781424c421"; }
- { locale = "en-GB"; arch = "linux-i686"; sha256 = "593041d5b07665134bd61866b706e11f10168df72c9a033034e95fdecaa6f65c"; }
- { locale = "en-GB"; arch = "linux-x86_64"; sha256 = "eab33978a3cd15ad3ed86efd72eda53e65f6addfd352f1f372d8133fea7edc6b"; }
- { locale = "en-US"; arch = "linux-i686"; sha256 = "2c44f8ef07896f3e4c4ee555e35ebe5658f2721fdbdee4c70b153387472b781e"; }
- { locale = "en-US"; arch = "linux-x86_64"; sha256 = "e3077ca9aa246154acad2a264489e7cc68864035873e6c6d54b7fb3f9b832fd7"; }
- { locale = "en-ZA"; arch = "linux-i686"; sha256 = "8b78e83769d468dd7d5e9964ca99fd745f82341f8a426e7af82671c4515c8e70"; }
- { locale = "en-ZA"; arch = "linux-x86_64"; sha256 = "631da5975f08807bfa4519c1265d082bb6de8ba6b39bbf6c903e08cf5c85b2a3"; }
- { locale = "eo"; arch = "linux-i686"; sha256 = "16556716bb0cfcfade4c705bc641317c423dda976f68a1a78bf1b1df08883725"; }
- { locale = "eo"; arch = "linux-x86_64"; sha256 = "cb21a5ea8cb9ded9eb729864d20a538275b8f29e9b7a10ea9d9dcb2b7a2368b3"; }
- { locale = "es-AR"; arch = "linux-i686"; sha256 = "3b830fc45a2ad62253d51eb53ae2cf6345bcc2a348e43e5aa19a001506fe3f6e"; }
- { locale = "es-AR"; arch = "linux-x86_64"; sha256 = "9ede597d11d798c4369b74e74a67564152a793f4d2a655f422176a1e03d0f6f9"; }
- { locale = "es-CL"; arch = "linux-i686"; sha256 = "1384df5e31f49f8f647e21f1d5d4f3a2229dce389857219745d2e2e325c894b4"; }
- { locale = "es-CL"; arch = "linux-x86_64"; sha256 = "e1a56a69687e9fe0979602b9256b5f8f3e05596e8af23fc78b0459ad66950158"; }
- { locale = "es-ES"; arch = "linux-i686"; sha256 = "258a3ded204f66d20370f4ca34d668da38921302ba6844bb6b49525a911ef1f5"; }
- { locale = "es-ES"; arch = "linux-x86_64"; sha256 = "6563107eaadfad91f29b5d3084068ddf2b2959723f0bf38f8287e9b71dfafe68"; }
- { locale = "es-MX"; arch = "linux-i686"; sha256 = "00253b3a1c28f55199c74d1cce9fa1aff5cf6a7b3f77385f18836b36c961cbd1"; }
- { locale = "es-MX"; arch = "linux-x86_64"; sha256 = "897bfc04b17334ac1499a50c0fede1dda4dd9f667801d50a3c7221409158a39a"; }
- { locale = "et"; arch = "linux-i686"; sha256 = "fb4c11f82c492d02f15817c19d4450049ce8532741d6c2733302e06a77ed768a"; }
- { locale = "et"; arch = "linux-x86_64"; sha256 = "9e4c22e0e430bab1a85d83f8e77245390ecadc2af9c6fc6d408a1ccb388b5c5c"; }
- { locale = "eu"; arch = "linux-i686"; sha256 = "4be07916499253dee47572b0fe03318050f601ecd34a2578e3daaa2423ea0223"; }
- { locale = "eu"; arch = "linux-x86_64"; sha256 = "414366c5de7bd58f620a86d69b3fc618b4f2a41103e073197ed6f6326cb34173"; }
- { locale = "fa"; arch = "linux-i686"; sha256 = "84dd27e9f3f3736c2364f995b460a401ceccb5df88b9420fc5c4e10bed714ebd"; }
- { locale = "fa"; arch = "linux-x86_64"; sha256 = "e1e19b3a13e48ae5db809d781ed94a079dfcc23fef7b084e18589863fdda1e16"; }
- { locale = "ff"; arch = "linux-i686"; sha256 = "7de7ded84b96c8208796336b079294cb163e5a1717e7f0263fdbdf061bbd77a2"; }
- { locale = "ff"; arch = "linux-x86_64"; sha256 = "0c57b47227db17ec0b5cf05b2c839d01ef09e85e062af145cb063e9b431201a0"; }
- { locale = "fi"; arch = "linux-i686"; sha256 = "7bd42dd0dc3f3a9328f41f06f5f4409b611d17e1f3c71dc68b4f87aa1a5403ef"; }
- { locale = "fi"; arch = "linux-x86_64"; sha256 = "32aed7d397353791d0eeb4d64003ddc0206f43308020e4e003877741bbc4246a"; }
- { locale = "fr"; arch = "linux-i686"; sha256 = "274fb64798147b96c49117444a55b0d27da1ce58c64d0c72a8f4f2445ef8dcfa"; }
- { locale = "fr"; arch = "linux-x86_64"; sha256 = "17f3af176ce83481678ba5b496a6c576af1ad01a858714cec0c613219ef78105"; }
- { locale = "fy-NL"; arch = "linux-i686"; sha256 = "ef2a32e783456b8be56cc2fe16c4c9f80e174f5cbea5fcb0ffaa9dccc498c1bc"; }
- { locale = "fy-NL"; arch = "linux-x86_64"; sha256 = "76742465bfb95935e3f5531ef52f0d13021454887f20b5c60d903142e8bf29b7"; }
- { locale = "ga-IE"; arch = "linux-i686"; sha256 = "e23cd7c54f08fd952c40d88811ac0a8be7c54b8c44e8e948961c063bd833d720"; }
- { locale = "ga-IE"; arch = "linux-x86_64"; sha256 = "5f37a8add1753e41a75a1cd8f1edeeae0da89987939684e4f7ef46e139c0f2b6"; }
- { locale = "gd"; arch = "linux-i686"; sha256 = "1f65eeaa2e213a9a1bd48e12b978faf21a5cbc4db4e6257edd373c7f08fc63a6"; }
- { locale = "gd"; arch = "linux-x86_64"; sha256 = "25398b31be953a54107a38ea9476047e0ad6de8083d1330594522d261ef4f5de"; }
- { locale = "gl"; arch = "linux-i686"; sha256 = "13ec763f279c39b0a0082fde0331cde9cc3d9a3aa5155b8853c7acb92bd18d0b"; }
- { locale = "gl"; arch = "linux-x86_64"; sha256 = "46208cc319062483f85c5d801bc4822869bce916f78d2dd36670592794a266c3"; }
- { locale = "gu-IN"; arch = "linux-i686"; sha256 = "fad30f5fdcf5622b80f391bf2e957466e8955f23b91be2022ab5cc550b993d08"; }
- { locale = "gu-IN"; arch = "linux-x86_64"; sha256 = "4ef6713e394c72b5d9a5d49899ef952a4587a2f1e0b52307b5062d6807de8ba0"; }
- { locale = "he"; arch = "linux-i686"; sha256 = "211cafe7a39b45ca1cf471b2029f8981a26517114fcad3b40f0c5cd702988ee5"; }
- { locale = "he"; arch = "linux-x86_64"; sha256 = "ad85f5b69ff0d15f0eb17e81e5976635b3319f583938e0c2dcf59badcea71cc2"; }
- { locale = "hi-IN"; arch = "linux-i686"; sha256 = "8ec9ccd458b231d873e4272968be09b50d1629280014deacb2a74a754123208e"; }
- { locale = "hi-IN"; arch = "linux-x86_64"; sha256 = "1c78e8adb1047be3be2bb6bae776d1fb3e32b6bd888877d33abcbd56b858f70b"; }
- { locale = "hr"; arch = "linux-i686"; sha256 = "64436c22be8c7a873634de4d7677c93427c9307be40a95fa73dc509d32900a20"; }
- { locale = "hr"; arch = "linux-x86_64"; sha256 = "4485174c761aa49bebc7bbdd5d50ceb2ca70477560406b880181ee4ab5f51b26"; }
- { locale = "hsb"; arch = "linux-i686"; sha256 = "d5e6eb225d04124a9582e31de8c996512b9816bcaa72c4ef8d373f3cb77536be"; }
- { locale = "hsb"; arch = "linux-x86_64"; sha256 = "65642995943763d35a9816a02d95d3ad7c26f388a731749c96446308bad0d13d"; }
- { locale = "hu"; arch = "linux-i686"; sha256 = "2e4a1602fe3dc83f99b60df358e809cfc831d0c173d0fb1a0b5d0bcc8d5fd0be"; }
- { locale = "hu"; arch = "linux-x86_64"; sha256 = "39592f757f6066e060446cf9ac051cad58ae5e457dea5d28be8e6573a7712b3b"; }
- { locale = "hy-AM"; arch = "linux-i686"; sha256 = "e11c1f746e472855c99706d597107426e4f411ed6ab8f3066417a4bf788f6db7"; }
- { locale = "hy-AM"; arch = "linux-x86_64"; sha256 = "34fb58fc187a4afafe45f8b9463f725404bfc9fbb8374bbccd95fbe6a6127cfa"; }
- { locale = "id"; arch = "linux-i686"; sha256 = "33c1870c5be769d051ff52d0512253316357925c4074c9760ffdd7ae5eb38680"; }
- { locale = "id"; arch = "linux-x86_64"; sha256 = "f10a83c55a7164a88c387cff02d5fbca483901b8bface790fd064dc456637004"; }
- { locale = "is"; arch = "linux-i686"; sha256 = "312eb8e2613e6723182f1392b0d654488facd31866922241ec7366be3259b42c"; }
- { locale = "is"; arch = "linux-x86_64"; sha256 = "d850e5c4e18b1f3daeec9508f3d1a19771109a449a8b40106e20154c3128a43a"; }
- { locale = "it"; arch = "linux-i686"; sha256 = "782d2e791c1c241e068a7041244def8d3983c7d65372b8297f54010ed2723db5"; }
- { locale = "it"; arch = "linux-x86_64"; sha256 = "dcec427d3c22e7081d4657ea336aa3a2d1b728cc2ae917aadd89f1021fa53e44"; }
- { locale = "ja"; arch = "linux-i686"; sha256 = "8f36b884b8480a225a68a1f3583408132b58511bd3666a04c21a88d8ab9e1387"; }
- { locale = "ja"; arch = "linux-x86_64"; sha256 = "2727864ae1ebc4e0186214297d59cc531a06306059ccfd4a59d83a084cef81c0"; }
- { locale = "kk"; arch = "linux-i686"; sha256 = "50d46466bd31723f3116db503dba0b5d095679233ded63173b8b31740afa8ecc"; }
- { locale = "kk"; arch = "linux-x86_64"; sha256 = "5ae23bb07acdbfb45e49eb4afdbb6c84a00331f8c5c9824b9756e2e87f927934"; }
- { locale = "km"; arch = "linux-i686"; sha256 = "13e32146820f31f0c87f38b3cb636a6a25c5bdb2dbf3befc909f459b33c0ac71"; }
- { locale = "km"; arch = "linux-x86_64"; sha256 = "f81eebb081309200f2cec0cf742ac3aebe06ac09948a05af0961a572bc06b0a1"; }
- { locale = "kn"; arch = "linux-i686"; sha256 = "8db58576cbd2cb8f8c61d4278dcd0594c92fa707770255f1397272dacfb420c6"; }
- { locale = "kn"; arch = "linux-x86_64"; sha256 = "3a2002a54057c062ef720894147486c68b60e21c4bc57435b2ab1fe0f03f11e7"; }
- { locale = "ko"; arch = "linux-i686"; sha256 = "0e0f221ec6917635ea8519473a447ee8a572a439cfd2f5de1e1b4d63cfb1e1a8"; }
- { locale = "ko"; arch = "linux-x86_64"; sha256 = "ea4dfbad71d63702377b6a1641667b88ffa270cf37f77e223a88ed2ed6385f3f"; }
- { locale = "lij"; arch = "linux-i686"; sha256 = "92af63912444d8ccc43f4b0fa1ec25ad988db4117dc15e58a31c2b783e2922dd"; }
- { locale = "lij"; arch = "linux-x86_64"; sha256 = "c93f0e90125fb58b6f9d3281ac580bf46ce7481bbcb5d0162661c7049e7116e8"; }
- { locale = "lt"; arch = "linux-i686"; sha256 = "ff6a933c13e5d0bcab3e09915c09489d441f191f06a915ac5953334ae2a613bb"; }
- { locale = "lt"; arch = "linux-x86_64"; sha256 = "d82c44370c3b86230c86933a91e533e51c1ff6c6e515ee6a2b53d7aca105694c"; }
- { locale = "lv"; arch = "linux-i686"; sha256 = "7595254788ecc0845cd98f9524e20ef0dc2ec01c6efc3e8289b7c930b37fc604"; }
- { locale = "lv"; arch = "linux-x86_64"; sha256 = "a349ae40d4bd2bc0be0517bcd2f3149796687a1a3bf31527e92d7bae3020e839"; }
- { locale = "mai"; arch = "linux-i686"; sha256 = "4ef3e22d7bea09ccf7a75759725cd3db5ffec1b486026f3d0afee06293e01c3f"; }
- { locale = "mai"; arch = "linux-x86_64"; sha256 = "2a6c645773c6ec3230ae66f850d151fd8ccbe4d65e5d3b241948341b003c2fe8"; }
- { locale = "mk"; arch = "linux-i686"; sha256 = "d50d81cb4eab09166d6636c2964143b5fa7cdf909b5eb2eddb2103679f86ba71"; }
- { locale = "mk"; arch = "linux-x86_64"; sha256 = "51a4c986a7b85ad140d0fc0e952426d103307013bce72e395873171afa8d0a8f"; }
- { locale = "ml"; arch = "linux-i686"; sha256 = "57d9e6ec5ddbf3eea9e07d85d5d84998e70a764260d73f38d32fe71a55ac3720"; }
- { locale = "ml"; arch = "linux-x86_64"; sha256 = "50cf19e1b07ea43dffe37a59fdc969d8e8d46df100c15455e4ac2d4b202a00d7"; }
- { locale = "mr"; arch = "linux-i686"; sha256 = "98b4d4ac2148e37b741842386333707d8789b2cfacf7ecd7adab3162c43307d8"; }
- { locale = "mr"; arch = "linux-x86_64"; sha256 = "77e825a071f826c5668475e33a6a06f3fe3e49306e045fbc9a0a76843e66eb7d"; }
- { locale = "ms"; arch = "linux-i686"; sha256 = "a8c2c8db2ecb76070d54a5cc8cf6c31027a843490a54875e4b66e8e3dd212fa4"; }
- { locale = "ms"; arch = "linux-x86_64"; sha256 = "54d387432363074ff79a72f6a517b86b7fd76637caa5389a09f7e3ec11965512"; }
- { locale = "nb-NO"; arch = "linux-i686"; sha256 = "a2f14933978e45ab472a85bf6278879617b61273f3358c67e6180171d6e9ab5c"; }
- { locale = "nb-NO"; arch = "linux-x86_64"; sha256 = "578da776b395c07ccf7525f7f7c2a807daf994807a30f2a0c2bee9d2ea6b977c"; }
- { locale = "nl"; arch = "linux-i686"; sha256 = "49e079241dcea98a08d27708d918dcc9e530f30368b9b67006f16fc5e24ab29d"; }
- { locale = "nl"; arch = "linux-x86_64"; sha256 = "b165e97cf3408ef9c7d04f25b7b15924954ed65c78e25c853fb33bd98c751bda"; }
- { locale = "nn-NO"; arch = "linux-i686"; sha256 = "aad675288be4c1c6e4751b3c32f3e5e569e8348a580e7c2497ab61cbd2fe733b"; }
- { locale = "nn-NO"; arch = "linux-x86_64"; sha256 = "c1128bde1d7030d367cf14833c8a775f1a8790a6a159171cfe55ab369f803b84"; }
- { locale = "or"; arch = "linux-i686"; sha256 = "28fc9d508d0f86da87060080bea805fc089cb297a82849d7b75fde1d7c35dea8"; }
- { locale = "or"; arch = "linux-x86_64"; sha256 = "f3879c6bc8b24d4cccbd559b4ee480ee42008187aac403c35a82fa3aa67cf733"; }
- { locale = "pa-IN"; arch = "linux-i686"; sha256 = "262a496547689093ee22ce31b056cc1727cba9a690ea2fd5729e0694e710e6b5"; }
- { locale = "pa-IN"; arch = "linux-x86_64"; sha256 = "67c9a3db932ee1e890f2b0373b160f7a1db2481263919179f34d24e1bb73869d"; }
- { locale = "pl"; arch = "linux-i686"; sha256 = "6b561482f0289c085cccd3d331bf7135cec47bf4e56d5a23c86341191e175484"; }
- { locale = "pl"; arch = "linux-x86_64"; sha256 = "c47b600afa999bc38eaf964def0d8e3e64a6f8dc2ebee14b125885773be37527"; }
- { locale = "pt-BR"; arch = "linux-i686"; sha256 = "df1f14d353406d367f7c9a3fbec66544ad8ae8f70cd8cf2b8dedcea40f3acd04"; }
- { locale = "pt-BR"; arch = "linux-x86_64"; sha256 = "fe07b106b9783d3b91f31deb55ddf006cbe51e485d6bbf181025edadce7e587f"; }
- { locale = "pt-PT"; arch = "linux-i686"; sha256 = "6a4e39b78336f07463887a712a3b5a11f9d9f3be4d2e1be36970d17a554b9d39"; }
- { locale = "pt-PT"; arch = "linux-x86_64"; sha256 = "1df70f54c4e59625740635c99a900738f25ae67707536c86511d98253a1b7207"; }
- { locale = "rm"; arch = "linux-i686"; sha256 = "9e56b6a6831877bf5cf9c3299ab305ec06014044285dc635dc4951403024e1c4"; }
- { locale = "rm"; arch = "linux-x86_64"; sha256 = "2d89a4dc8590db8a54c7f2d9d126222ce152eff831170b497b657b64df1cbef3"; }
- { locale = "ro"; arch = "linux-i686"; sha256 = "f7006e2dc8a99c47bafcaae9138f752fd9ee014969ee6db5e440724cf124ce9c"; }
- { locale = "ro"; arch = "linux-x86_64"; sha256 = "6b42002b7ba893675ab6da994c0e43129ab2cb4bd3ed361c0f2a116167960ace"; }
- { locale = "ru"; arch = "linux-i686"; sha256 = "b7eef5ad76fdc48894be4b20ccd19d42c966235905c8362b2e262c9da729fac7"; }
- { locale = "ru"; arch = "linux-x86_64"; sha256 = "efde30e2e473b667b134487c2e16459e72eb41a63c916a660cba847ee9c5ee7b"; }
- { locale = "si"; arch = "linux-i686"; sha256 = "365eeb713360303af2880362aca5edb62a3370ec0a65eebb1fd72cf11a509543"; }
- { locale = "si"; arch = "linux-x86_64"; sha256 = "43338a5a36278e07d76316eee4b7e0aa07a99123f1ea124650ea5357288b6daa"; }
- { locale = "sk"; arch = "linux-i686"; sha256 = "c552413717efe35a1b70d4745c9ed3ecf50eead210225daf1b922d25022026ee"; }
- { locale = "sk"; arch = "linux-x86_64"; sha256 = "fb92a066a27de4328dd4aa5ae4091513ee021a94167ca7f2174cd1809f311799"; }
- { locale = "sl"; arch = "linux-i686"; sha256 = "5ede91c27358d812a7fe0f4cfc4516d5802e516c0c4c3ede44f5535dff04ca87"; }
- { locale = "sl"; arch = "linux-x86_64"; sha256 = "f301a92ea7d165d20c23af0d4004a679f6dc1f7574cd34bd92be4cae7d36eaa6"; }
- { locale = "son"; arch = "linux-i686"; sha256 = "816ef59d8ab566967c38944df4884a75e1d15f5906bef59c534e80f1f4d31d1b"; }
- { locale = "son"; arch = "linux-x86_64"; sha256 = "0bf5149fdffd060773b82c575dbc981e420deb0719a8f4fff9a03c6ba571d5db"; }
- { locale = "sq"; arch = "linux-i686"; sha256 = "3e43a60388d2cceb306d7a70e984ded6dacb0a968b78ed8a4032ac60d7c1cc6c"; }
- { locale = "sq"; arch = "linux-x86_64"; sha256 = "6c0fa8dcf9359e8aa1244512f1d264b8684191f4bfb062c802f21009862c26e6"; }
- { locale = "sr"; arch = "linux-i686"; sha256 = "1df63b2753dd55d69d0990f3f34f9574dd34289cb64726da45fcc891b6a83088"; }
- { locale = "sr"; arch = "linux-x86_64"; sha256 = "01dec866a74a56fe8652e5b75731c7f508637e875c62a84805fcc0e4636c9e67"; }
- { locale = "sv-SE"; arch = "linux-i686"; sha256 = "6f3f5b62e475ce4128e11f62a556505e00d5b8dfbd374ae747a16d6f161059dd"; }
- { locale = "sv-SE"; arch = "linux-x86_64"; sha256 = "0b3cfbb77d291a7fbb14b61c1bb1936dcec5f66af55c3c0b92e9dd4299c9b897"; }
- { locale = "ta"; arch = "linux-i686"; sha256 = "357f182c2df19bdd97834bb714f979253bb4a16029d115a12e66bb7c20ff5a1a"; }
- { locale = "ta"; arch = "linux-x86_64"; sha256 = "013d771a256e84d6faf97c84edd5ed25bd5d700712f9aa4aef54ff257b530c21"; }
- { locale = "te"; arch = "linux-i686"; sha256 = "59ba28b5c3aefa5455af1f1b549018dda9d544aca4829190af4e361b2eb164f0"; }
- { locale = "te"; arch = "linux-x86_64"; sha256 = "e181876679ef2c5a289d5697fefde0acc64c936237b907fab7e6d000cbaee5a4"; }
- { locale = "th"; arch = "linux-i686"; sha256 = "57545f48f6c1ff7a5ba2aa43d61446aca4d9e8f5f6f1bf70cdbb75d72d4b9713"; }
- { locale = "th"; arch = "linux-x86_64"; sha256 = "e2c70247a333447f100bfb87be9f9f7e6f3398ac22623627b016e046afcd7a26"; }
- { locale = "tr"; arch = "linux-i686"; sha256 = "f0d6f1053ffc9396657485f58c3bd33ee616a1b474b72a78e0b14960a0818646"; }
- { locale = "tr"; arch = "linux-x86_64"; sha256 = "101763b31f615b301b1e040df7a0219456446695f9edf75580ce6fbcf061142b"; }
- { locale = "uk"; arch = "linux-i686"; sha256 = "d0c5854b736bfc7f263f7a515a477e209c90fe7d5ed0ca64dd7d16f3d68a6671"; }
- { locale = "uk"; arch = "linux-x86_64"; sha256 = "3b78c94708d5b5798e30bbf9956619b694c3484672d0e3f473dbbd8898f3c8c4"; }
- { locale = "uz"; arch = "linux-i686"; sha256 = "0870ba372c7abfa95bc9da5d5b7f501b3137208d084f25a3ca88a09c8395ec6b"; }
- { locale = "uz"; arch = "linux-x86_64"; sha256 = "87f6ea282450521a786944d516c26ff8cbe14a2f24df11fa80c343aca5dcbd3f"; }
- { locale = "vi"; arch = "linux-i686"; sha256 = "088be2a9815914a8637163493636acaae40c0348e1b7f064b1ea5181c114a77e"; }
- { locale = "vi"; arch = "linux-x86_64"; sha256 = "b68fc3fc98ecba457ffac3e191b1ef6c1512b826a9dd1b9a301858b8051453c2"; }
- { locale = "xh"; arch = "linux-i686"; sha256 = "83095d26d9a73c3113a98c902f31565a3e358ee1aa4ec37976fb72cbc8470845"; }
- { locale = "xh"; arch = "linux-x86_64"; sha256 = "642026251591bc1eb1ca1200db1b232981d019d8664cfa216777e12b591606d4"; }
- { locale = "zh-CN"; arch = "linux-i686"; sha256 = "a3289ad36a1a3b5affc721a7a2b509d9151049e50209f62c92592d7cd17c96d8"; }
- { locale = "zh-CN"; arch = "linux-x86_64"; sha256 = "f53e14f1ce29b172acba3d58b5ca6da3ff03a121aaf224949a88a2fed96aaa9d"; }
- { locale = "zh-TW"; arch = "linux-i686"; sha256 = "a471944312b7f2a04a0f1df4a897f63c41cd74c0645d890d95bce6d725a2ae2d"; }
- { locale = "zh-TW"; arch = "linux-x86_64"; sha256 = "d0d201cff0b8dcc59224645d4f4ab15fa14fe131a30897242e5692729894abed"; }
+ { locale = "ach"; arch = "linux-i686"; sha256 = "77cd7332ecebd3e51cb45896d61494e95e57707dcc1393af00695f8232274c17"; }
+ { locale = "ach"; arch = "linux-x86_64"; sha256 = "792d25a8d536d32dc89b655f5e3961b704fa27618395d3ae637180242eae2b71"; }
+ { locale = "af"; arch = "linux-i686"; sha256 = "fe211798f211a316a5ecf5a5c4dd61389e448b45166c681f886fa1e97bff4734"; }
+ { locale = "af"; arch = "linux-x86_64"; sha256 = "7a6e077c0702e7c832a9b9c5f35a70f19dd4c0c9f910a8a254fe165a5f3d8331"; }
+ { locale = "an"; arch = "linux-i686"; sha256 = "a01769decb90c7235f2cffcb6eaa135ba0a838e182f8398e12ff664e8be500c0"; }
+ { locale = "an"; arch = "linux-x86_64"; sha256 = "8e4b243cca233a6f00b07ccb5ac2330edc5de590d2d6b787d753e965fd6e777c"; }
+ { locale = "ar"; arch = "linux-i686"; sha256 = "e572f980f5d28b994b930d3a5665e92f8ab5c149a19a99132bf93cdf2bf75fbc"; }
+ { locale = "ar"; arch = "linux-x86_64"; sha256 = "b42f56de042899d67461fab43d41f9b23817e879df23cd0c4be748b701a8d5da"; }
+ { locale = "as"; arch = "linux-i686"; sha256 = "652919614ebd2775d3a13706ffb09959655f9bb12f0a120698c1deec6c244554"; }
+ { locale = "as"; arch = "linux-x86_64"; sha256 = "62793f511b7a4244beca42d5dbb235df8431f7156a09fc4c1227cfaf19fe8885"; }
+ { locale = "ast"; arch = "linux-i686"; sha256 = "e6a8ab24ef5585cc5204b5150066c8e96fb30c15b89a7c885fb8def445f2734f"; }
+ { locale = "ast"; arch = "linux-x86_64"; sha256 = "e8c286528d5149c58bbae4a75b2d95c408e81de85cfe68e431d97f51c19ec0b0"; }
+ { locale = "az"; arch = "linux-i686"; sha256 = "829728affcb12321102bee38eb5b0e428d9a9d910a69bb299e77452c5bca6f02"; }
+ { locale = "az"; arch = "linux-x86_64"; sha256 = "aed06f78b55620e2632a9fcb4cbbf36f34ad1510ab7df2dc3de94c8c57f79263"; }
+ { locale = "be"; arch = "linux-i686"; sha256 = "257afd489537fa53ae84daf819a859a62757122d824d501d95c5010235c345e1"; }
+ { locale = "be"; arch = "linux-x86_64"; sha256 = "7021ac97b762b7d17a498c86c52551056b0cc388a8e10e81e034b845e05f0925"; }
+ { locale = "bg"; arch = "linux-i686"; sha256 = "a2c74efe9233c4b3bf1a6b9beee417b869ef129e6b60a3078e9528a84d354149"; }
+ { locale = "bg"; arch = "linux-x86_64"; sha256 = "a492710cc54c9bc6e406d558063bd16158059fe2e87bf172405b3c6ea38eb391"; }
+ { locale = "bn-BD"; arch = "linux-i686"; sha256 = "465bad32dc16f8ddb669d032a217ca5863410384b40a86b81290f85b2fc85811"; }
+ { locale = "bn-BD"; arch = "linux-x86_64"; sha256 = "063b1642e0ea6ac8b07baa3969698337bfc3a96db724b7a32a668c2e4cf516f1"; }
+ { locale = "bn-IN"; arch = "linux-i686"; sha256 = "cebcf89bafe0cb88e1d725bf4b4caf72f845a6abd7d5c0ff9b9ed02c99eba686"; }
+ { locale = "bn-IN"; arch = "linux-x86_64"; sha256 = "85b51db611b917d3ffddc6b1bf39405eadb69d64473731780fb21f4db42a94af"; }
+ { locale = "br"; arch = "linux-i686"; sha256 = "997ae06800cf75ec62084db0f453caebe9e6ef0cc43abaf14a623785ca365a2e"; }
+ { locale = "br"; arch = "linux-x86_64"; sha256 = "4455965e809900bb42595c7c05365ec1d26b7508c9d7ca24ac636be4b6583147"; }
+ { locale = "bs"; arch = "linux-i686"; sha256 = "0e88abaa021e9e435e41baf59590e4d2ee7c3ec442b01620297671f4c4fa023e"; }
+ { locale = "bs"; arch = "linux-x86_64"; sha256 = "229ad924b0c72823e7599f8a53df0c1fe46fc4d9972e18a32caa78bbd7f72dec"; }
+ { locale = "ca"; arch = "linux-i686"; sha256 = "5f03a177cd4ea81732329f7ee62494ad25f79e65f12ad4e0cb244aaa95c66e0a"; }
+ { locale = "ca"; arch = "linux-x86_64"; sha256 = "67f29e97d323fa8ccf1e14f1638beeecf5489701a13509cd824b61e6c64e0b96"; }
+ { locale = "cs"; arch = "linux-i686"; sha256 = "100c1ce1bcdbfc9b4a6f3e576e71ca9cbc771ac7d28d916fbfbbf40c7e37a42c"; }
+ { locale = "cs"; arch = "linux-x86_64"; sha256 = "178373db4c0ca4edd6150595529d62fa38912a71ab0d6122fe8ba2ee5947f7dd"; }
+ { locale = "cy"; arch = "linux-i686"; sha256 = "fbdf1b10f6f07c21669a5d515e9c14b3ad8b2a606e2bb997cb75df4928021f48"; }
+ { locale = "cy"; arch = "linux-x86_64"; sha256 = "7444923521bf421fe60c721fa16b6005f40a108813e547ef32c0c1263d687630"; }
+ { locale = "da"; arch = "linux-i686"; sha256 = "4277aa0783b92e5a101ef52ea191347fb873700f8366d06480dc2445fe7c391e"; }
+ { locale = "da"; arch = "linux-x86_64"; sha256 = "9300787407ca226bf1ac9a25f8f4e9428793c032ca102c65b1841a12ebb508b6"; }
+ { locale = "de"; arch = "linux-i686"; sha256 = "ceaef87cf7553368a919396c3c303033fe6e1bb23477549ff25d2426473127e6"; }
+ { locale = "de"; arch = "linux-x86_64"; sha256 = "55b7296fa2643d7caee38fa0e282959cd0160fb7f8a89bca11085d6bba40a679"; }
+ { locale = "dsb"; arch = "linux-i686"; sha256 = "7b92682d19f457d162c537bea71f9c026b36cefdda440f2a1ea489f44fc57f63"; }
+ { locale = "dsb"; arch = "linux-x86_64"; sha256 = "be235c2af381500a5cbc4f0c400106a31b00a49fcf19d2a981f5ee7221f7617e"; }
+ { locale = "el"; arch = "linux-i686"; sha256 = "832c7f65d97795a284e93bec61c14ffcffaf74fa3fc844f1ae896058f0409e72"; }
+ { locale = "el"; arch = "linux-x86_64"; sha256 = "4758c97ab627cd7818f4a38febca52c11084e2c8e0ee2d05f70a6e1f2b67661f"; }
+ { locale = "en-GB"; arch = "linux-i686"; sha256 = "02b926d46100116ab7bab27ecbfa60ded6674d5d687f76412443a52e5fdb4283"; }
+ { locale = "en-GB"; arch = "linux-x86_64"; sha256 = "98d83b9434d948d7fbc24708363d1c8e8d37551711994c7b8448f6e924f49be7"; }
+ { locale = "en-US"; arch = "linux-i686"; sha256 = "a8530e2b5d5c16c1afef6759a9015e83767271046537a050442fd6c457986746"; }
+ { locale = "en-US"; arch = "linux-x86_64"; sha256 = "ea797acf50c2efb39968773864aeac0bd17dc3a1dc726b3ff95780aec01ea669"; }
+ { locale = "en-ZA"; arch = "linux-i686"; sha256 = "4baa2cc65dd053e226f4391a975c162c8c709f31f82c31d7707ab168f8c249c2"; }
+ { locale = "en-ZA"; arch = "linux-x86_64"; sha256 = "93ddb0c696131e9a7a258fc44eed88d5aecac50f101106211e69220e602c949a"; }
+ { locale = "eo"; arch = "linux-i686"; sha256 = "eabb1fad074ccc3887fb56eda2d71f51af3aa22541d310f0c25ddab0a52ba7a8"; }
+ { locale = "eo"; arch = "linux-x86_64"; sha256 = "280f9010cad2583eaca8892cbb2600e3b98d77181ef30f5cf233951e26414df9"; }
+ { locale = "es-AR"; arch = "linux-i686"; sha256 = "82741dd5a2bdb7541d931ed8606ec483f44b0d6416a3f4d9b3fa1c1e57cd3390"; }
+ { locale = "es-AR"; arch = "linux-x86_64"; sha256 = "10499b8c57d6d6c8976e80e5b50c278846c45d408a2ead66328c780cb5a40ed2"; }
+ { locale = "es-CL"; arch = "linux-i686"; sha256 = "e5879a71124b429250f6bea231f0411e80c28718a7cecdd7713e9512d21c22f6"; }
+ { locale = "es-CL"; arch = "linux-x86_64"; sha256 = "177b19854746c70fbe1243db51b22e3a96e660def60763d79a340b08c7537d6d"; }
+ { locale = "es-ES"; arch = "linux-i686"; sha256 = "b1f2baa7fdeb2a670289fdbea089084f01171c1a5295142aff38a36efe7c4f3f"; }
+ { locale = "es-ES"; arch = "linux-x86_64"; sha256 = "231e9d0d9588732d4aa440e7d56eaa4d6a94457b0805802643c4ab6b5be46087"; }
+ { locale = "es-MX"; arch = "linux-i686"; sha256 = "917e235734993f4a121eb01fd91cf1788b018f52477116b1848a2faebdf6c4d0"; }
+ { locale = "es-MX"; arch = "linux-x86_64"; sha256 = "de6ec93363ae0f814737bb63ff17d5beb2e756d5990ca15f7dca445bfcf83331"; }
+ { locale = "et"; arch = "linux-i686"; sha256 = "dacfc817b23972d066a89c2430d0e4ae450fa7c05cc148c726e0a739aa248dcc"; }
+ { locale = "et"; arch = "linux-x86_64"; sha256 = "e114477a85c27f199e807b203c78c148b9b594d3dcf8fefa08bb6b15c1b60deb"; }
+ { locale = "eu"; arch = "linux-i686"; sha256 = "0fba5ce5724309e251cc010b5bdff861b21934fe21ce810c11bc8f25ef6f2854"; }
+ { locale = "eu"; arch = "linux-x86_64"; sha256 = "d43fa45c2e78c112a2dfc00e5486dad0150aca3d14ea87e6184392a394ca0e0a"; }
+ { locale = "fa"; arch = "linux-i686"; sha256 = "fb37966eca9e8077b96187b73925e3ff9d2725954db4ce6a9dcf8fe7004d1213"; }
+ { locale = "fa"; arch = "linux-x86_64"; sha256 = "46e103d2bbaf66e123a2f178b29c20fc7e87dec3cd1ef4cf7edbee379104774a"; }
+ { locale = "ff"; arch = "linux-i686"; sha256 = "46658e4701c21276a2731efa1c64783dce29fd3cfca35edebb36dd094f826280"; }
+ { locale = "ff"; arch = "linux-x86_64"; sha256 = "aae29a8ab6a2245536a7828dc688973589d46c32f60e3e08424d417b2fdca1ce"; }
+ { locale = "fi"; arch = "linux-i686"; sha256 = "45c19f14327a5ec2a6ca64e9126467d88ff43995e98a9954a3b50b5440a2cc46"; }
+ { locale = "fi"; arch = "linux-x86_64"; sha256 = "2ea74f89de5af4ffdcc27746a524114f5160ddc38d041a344367c85856830c7e"; }
+ { locale = "fr"; arch = "linux-i686"; sha256 = "05b2998f27e59ef1a771deceef92888995503b220b4bd6e60bf62d5bf5bb3b91"; }
+ { locale = "fr"; arch = "linux-x86_64"; sha256 = "8b39731c52323fda138e82a6152cefa5f90bed9b3997415feb508498faa96c34"; }
+ { locale = "fy-NL"; arch = "linux-i686"; sha256 = "b51c3801e852f6ded7f5cc166dba95398e14a316103e34dab71b7bb82260880f"; }
+ { locale = "fy-NL"; arch = "linux-x86_64"; sha256 = "44f8629a19a48748b10246df108b2dfb3b685b261462a925c64c337649ee6b55"; }
+ { locale = "ga-IE"; arch = "linux-i686"; sha256 = "62d5eda1223150bb402ab56a5bd106e5b5e95229b5f4f7542d786d7d6b4e55d0"; }
+ { locale = "ga-IE"; arch = "linux-x86_64"; sha256 = "8b1329faf13cd75e960f5958c98002ef486cbd76d8429e800b8930707d23bbc4"; }
+ { locale = "gd"; arch = "linux-i686"; sha256 = "6f572140ee8ff1a299613c6f459a7de0097519f04fb4094bfd9736fb13bd9d58"; }
+ { locale = "gd"; arch = "linux-x86_64"; sha256 = "4d03d82c86cf1e574264786ff2cf6d70201d0ec657ab729530ae90303a160fdc"; }
+ { locale = "gl"; arch = "linux-i686"; sha256 = "f0f1ab79f93a5467f097b7c5c4ac20847c1029b975ea2bd40b772a9a6ae8c759"; }
+ { locale = "gl"; arch = "linux-x86_64"; sha256 = "093cad0eac9c3f399a24ed5cc954f520a997562e05920cb833b44f19dfe35807"; }
+ { locale = "gu-IN"; arch = "linux-i686"; sha256 = "1ab234f32b8fbedbcf80965661f0db0245826e965d6f6266a329723ea2f5a19f"; }
+ { locale = "gu-IN"; arch = "linux-x86_64"; sha256 = "d10681ce58b2b2ff00b0219b0807707efb4005dcb1bb7d63ce4c297d2c6f6213"; }
+ { locale = "he"; arch = "linux-i686"; sha256 = "10f8c4ce42dc5a74754bc18d1f2883eee7c02884900435f432be01a7fdb4b8ed"; }
+ { locale = "he"; arch = "linux-x86_64"; sha256 = "9bc878bc21c03717f75f6a24ba604f7822dc2872afe02a00d01fefec593679d0"; }
+ { locale = "hi-IN"; arch = "linux-i686"; sha256 = "e5cf142f1aedbaee1044ef07e2ab78f9a11658d11544dd4a0f2d5a756862e8ba"; }
+ { locale = "hi-IN"; arch = "linux-x86_64"; sha256 = "adea7b2dffbd2b354c1fbb395c661ddf433e65ba2ea0e121e3275ecc0d691df4"; }
+ { locale = "hr"; arch = "linux-i686"; sha256 = "12152b2510a30b0961715af872c93f16e178d9251b76e69e036f48576795fff9"; }
+ { locale = "hr"; arch = "linux-x86_64"; sha256 = "37013843d5ec1056139cfd54d12c490314cf22cd0cef54dd95540baeeee6230c"; }
+ { locale = "hsb"; arch = "linux-i686"; sha256 = "5f9cda6b0a8a86bf22697d05625abb0b12776a5dd28e696ccece9a2eb5147bc6"; }
+ { locale = "hsb"; arch = "linux-x86_64"; sha256 = "d927c16ad103a0b2c2fa701e474d68b89cf45813b94714d1fed82140ae699d66"; }
+ { locale = "hu"; arch = "linux-i686"; sha256 = "26522239478dad6fc04c06cf1a4e13998cdc69dd026afe127f5c62cf40114332"; }
+ { locale = "hu"; arch = "linux-x86_64"; sha256 = "3742d3f582d5229e58fe918d022b8bd55e856957b95f7d75aed4aefa2983713f"; }
+ { locale = "hy-AM"; arch = "linux-i686"; sha256 = "d847834c540d40344678d20e4c0a9f30cb3af3b28e0147da9905522c1e43d553"; }
+ { locale = "hy-AM"; arch = "linux-x86_64"; sha256 = "672bb8abca09194ffcf402ac89296c31d46c5dd10cec7d98e7588faf98112d15"; }
+ { locale = "id"; arch = "linux-i686"; sha256 = "d6388edc053ffd8d1c8b96d09edacec503109f33b42ba89a3a35fee8593e1b58"; }
+ { locale = "id"; arch = "linux-x86_64"; sha256 = "7968be1865b6381f970e514f1f9268bd41cfda5b8e5695544dd93627ec0c8124"; }
+ { locale = "is"; arch = "linux-i686"; sha256 = "7239ce4db17389e1717a63827faad3ef4957ef496f2f7b4d7e1e9fc96aa864cd"; }
+ { locale = "is"; arch = "linux-x86_64"; sha256 = "babbec58f631050242183926f0956a3c5ff2a064a8aafdc2d1bdd945b0c353ad"; }
+ { locale = "it"; arch = "linux-i686"; sha256 = "75b5f2fa097819a5de8450422b368f0b2bd4fb8e5ff67b60abc9a014939113f5"; }
+ { locale = "it"; arch = "linux-x86_64"; sha256 = "63737299f29d8f52f9ef00e43160ecc3c8a9046c050e6b78c651079750853505"; }
+ { locale = "ja"; arch = "linux-i686"; sha256 = "6ee7bc9487d9ac5d121a706920e8efaabe9bdc5bb7527f02f38fe27771aa1042"; }
+ { locale = "ja"; arch = "linux-x86_64"; sha256 = "f9add10fe74ad4b1fb42618a93f686ae3929e862b24248eed7abb3ab8129808d"; }
+ { locale = "kk"; arch = "linux-i686"; sha256 = "8e10163a29fd333f31bbfa57ad92f2b3cfedec23726779cafa567de80e217548"; }
+ { locale = "kk"; arch = "linux-x86_64"; sha256 = "b20fcb23b481ad30089bf94b704847ae8deae3841c3d032b39d3ec43eef0eda5"; }
+ { locale = "km"; arch = "linux-i686"; sha256 = "6df67080e6e2b8236432bdf7d215b674ef2d534c63dcabeb3a894966e4e8866f"; }
+ { locale = "km"; arch = "linux-x86_64"; sha256 = "983571f48d4517f25e22a0c828240bd00e8cdf5f643c7ad0b094b2a73d7cd2f5"; }
+ { locale = "kn"; arch = "linux-i686"; sha256 = "27e20cc9794805763539683407d3e40a02b8cc77ea7e4ec6d63a73bad36d6a74"; }
+ { locale = "kn"; arch = "linux-x86_64"; sha256 = "6d4733730e57ea4aac60e0fb55b8db00c41d9848f1b9b28811cbada781b557d8"; }
+ { locale = "ko"; arch = "linux-i686"; sha256 = "81cc34afd043bebd79760ec759eb47b5ac32374ee1e3698327a3520d51f308b8"; }
+ { locale = "ko"; arch = "linux-x86_64"; sha256 = "2401953e6f1fdf8a7b5c3bf01c9ae7b0873697f8519ac8c27495053e1a23990c"; }
+ { locale = "lij"; arch = "linux-i686"; sha256 = "3d3917d0fad2cea34325d95e21208f7bc33a5f8823b633c5c4c3e38979f0e4d4"; }
+ { locale = "lij"; arch = "linux-x86_64"; sha256 = "85e8b23f22a5349a649f892b5134ece615ba2832257cdbeebe4d44900d140070"; }
+ { locale = "lt"; arch = "linux-i686"; sha256 = "4ac4805e59b4a9546b5a035d5599be3bb828d06f53ceaef1a38d7e906da40030"; }
+ { locale = "lt"; arch = "linux-x86_64"; sha256 = "b9f0ae9691e2c956a7e7227552d86624a03e99258caab7a4fa8a028f28a50551"; }
+ { locale = "lv"; arch = "linux-i686"; sha256 = "552e9bd5a00373135a165bbf05d2edfbc6ee6708b0b6e2ff71c7762d44baa303"; }
+ { locale = "lv"; arch = "linux-x86_64"; sha256 = "7591d8edf125a3c98383b2fdcb84016659ada7314cf15390401183641fffbe2a"; }
+ { locale = "mai"; arch = "linux-i686"; sha256 = "c25de9a04ae447b39c1ba33e0e1ab56a1e085a2fc6d0bffe4d47f3c2e6353587"; }
+ { locale = "mai"; arch = "linux-x86_64"; sha256 = "b8bd88d4e472f12518e848900947fea0070dd6acba698fe7330a0aec0e2241c4"; }
+ { locale = "mk"; arch = "linux-i686"; sha256 = "baa001a2118908ec106717260b6aa8e8a66372f72a6424c4ec77545ddfc586c5"; }
+ { locale = "mk"; arch = "linux-x86_64"; sha256 = "cbb8e8c9184ae617809603c0ab0704d0271d7bc5a84b0d7697dd5ab980a1108e"; }
+ { locale = "ml"; arch = "linux-i686"; sha256 = "5defd3a75c2f7858335b5bd2f5d46e555e237af7be3cb671f324a107fecc04dc"; }
+ { locale = "ml"; arch = "linux-x86_64"; sha256 = "bc5dadffe98a2fb127fa0a83442880359123630e944516410b48a923659f0f70"; }
+ { locale = "mr"; arch = "linux-i686"; sha256 = "fa324f6e164be65b94e5d9dd56f52dfed744f71403d06e1ee6db6d653fa9c56e"; }
+ { locale = "mr"; arch = "linux-x86_64"; sha256 = "e52a794c144c062925e310d2aae725152e70b2c1c61657772ae639f2a36bf656"; }
+ { locale = "ms"; arch = "linux-i686"; sha256 = "a27bf493efba61fc01f2c64308338e510671708895567af4b209fa3bc41718da"; }
+ { locale = "ms"; arch = "linux-x86_64"; sha256 = "da349192ee2a36ed48e3ae8ff4d1acea55877544c77a2b07dd2f017ce4f6e1b7"; }
+ { locale = "nb-NO"; arch = "linux-i686"; sha256 = "37245f0291b519b436b1b862299960a7961bfb496ca18c247cc5014ccddf9427"; }
+ { locale = "nb-NO"; arch = "linux-x86_64"; sha256 = "02c93155e20775db45d05cd46a8b28e2e88c2a20dc4c847ca0ac4844691c4a2a"; }
+ { locale = "nl"; arch = "linux-i686"; sha256 = "c449d3b9b9b1aa3e438e7380f7c9c89c3d91f207f798a7a5dea11ea05371caa5"; }
+ { locale = "nl"; arch = "linux-x86_64"; sha256 = "15ccabff42c778fdff18757bfca234e0bf1bde589b76c7fb950783437cd9c0b8"; }
+ { locale = "nn-NO"; arch = "linux-i686"; sha256 = "1ec5fea33f0a150c1039386ebefef81acb004142ca4d18023d6e86852969cffb"; }
+ { locale = "nn-NO"; arch = "linux-x86_64"; sha256 = "3a8d31dd02895a7113ed3eb4cc004b2748c39badff206f69f2f9fe0aceb1b013"; }
+ { locale = "or"; arch = "linux-i686"; sha256 = "fa93ce73fa59876f7beb0f48e484dd4561a4d4c2c187d8c896f5e1e5f9306342"; }
+ { locale = "or"; arch = "linux-x86_64"; sha256 = "bd3cdf10fce0ac75bfa2e5fac591b09c8351a3ae2f2018e45546e77d85c384f5"; }
+ { locale = "pa-IN"; arch = "linux-i686"; sha256 = "5f2917636c1b193b3b7136bf6444a0924f693916f981456965cb452d58812400"; }
+ { locale = "pa-IN"; arch = "linux-x86_64"; sha256 = "a8f440c37462a4712df9cd274fd939a4c5bd1a5e4d38435499f598be36b18e1a"; }
+ { locale = "pl"; arch = "linux-i686"; sha256 = "757cc7c6d9e6cfd701b0a84cce6973f356b0f16781ba80ad92b66c5bc8389d65"; }
+ { locale = "pl"; arch = "linux-x86_64"; sha256 = "45702d113636970e97222bb7ff48f8e54e16912e39f9c576a17b1ee3fd2530a0"; }
+ { locale = "pt-BR"; arch = "linux-i686"; sha256 = "241ba56480c8e7a983e26fa8382c3a5f177d31858fd4453b6ba42578d1d0c9ef"; }
+ { locale = "pt-BR"; arch = "linux-x86_64"; sha256 = "90f03fbbe12256824024050698e231c3093630ebd09be56e372d4f76e89b55b2"; }
+ { locale = "pt-PT"; arch = "linux-i686"; sha256 = "af2e770bd86a2d683883ce9e28be32837be55c3e705430dd5b60d6684154969f"; }
+ { locale = "pt-PT"; arch = "linux-x86_64"; sha256 = "dbaefe62b8285931e1a09b70f6082c7c52404117d0ee92a343250b419a2399e3"; }
+ { locale = "rm"; arch = "linux-i686"; sha256 = "b559d1ffb96587ecf335b6cefcd8f4155161780f6121d19f244d59b051f2145f"; }
+ { locale = "rm"; arch = "linux-x86_64"; sha256 = "247029e16aa38a83aec68e7269a93a1ee6f6cb9846aca97fd4a2c44a22ff2b64"; }
+ { locale = "ro"; arch = "linux-i686"; sha256 = "d3555d64bb64958c577af8ffd958eebaec8cba00a9755b2005bf480527fa52cf"; }
+ { locale = "ro"; arch = "linux-x86_64"; sha256 = "e81aeb9737cfece9ae9e886fcf32a85aea943ef4211af8a4fee46cca8b9c9027"; }
+ { locale = "ru"; arch = "linux-i686"; sha256 = "ab93abbabb9f0d605cc8a0775d3a25e383e5d16c19eda2c5d88fbb7353f4983e"; }
+ { locale = "ru"; arch = "linux-x86_64"; sha256 = "304c4eec5ddb2416b71fec38bb2eb0bb9260a9746bccc4c31b9ebf97351d09fb"; }
+ { locale = "si"; arch = "linux-i686"; sha256 = "4f946959e40dfff8fa83654c733e3c7dc5cd4bfe2d166d454a1f9c98cf3a7d65"; }
+ { locale = "si"; arch = "linux-x86_64"; sha256 = "e06e5d2ea19ea5f4e8db666a53c1854f7861a06f53d2bfac8bc3c128bddc9f87"; }
+ { locale = "sk"; arch = "linux-i686"; sha256 = "10aa224b3e7eac73f196d4c8ef836b903938c326ee86024f56847afb667cad35"; }
+ { locale = "sk"; arch = "linux-x86_64"; sha256 = "376e803c1626a6cd47f1627c4d735fba422e48385bfb5333b58a52115ce13ae8"; }
+ { locale = "sl"; arch = "linux-i686"; sha256 = "fb15fc51459c916a9c9c6e3969dedd873fdd89d7864d17d6cbedb29e905b6749"; }
+ { locale = "sl"; arch = "linux-x86_64"; sha256 = "ae545eae7e637aff1825913b454eb9be87321a1fd6d9777c6aea33aa4159f629"; }
+ { locale = "son"; arch = "linux-i686"; sha256 = "9df97e243e34df135c91476a4bfb632e0a1e0935afc643f142b1536d0f6c3c1a"; }
+ { locale = "son"; arch = "linux-x86_64"; sha256 = "f8f0ba26226d12bc5896d67fb52e4f5166f307dcc1ea4a09faf11a3a57bdefa4"; }
+ { locale = "sq"; arch = "linux-i686"; sha256 = "0478e708713d8a8d966442d26f02654945e8b888213e1df017b09de066ddbeb0"; }
+ { locale = "sq"; arch = "linux-x86_64"; sha256 = "516a655ac44e81f530673aecfd3ce2d50487b79e00a89ad196ba8772bd87eb3b"; }
+ { locale = "sr"; arch = "linux-i686"; sha256 = "777d1582a745eaa1134282cf9b299fabf1eaabfefa045701fdf5ccc33ea7f439"; }
+ { locale = "sr"; arch = "linux-x86_64"; sha256 = "2675e68d168baa851bd8c7b320818add6135ac96f938ef9039807286c82d9321"; }
+ { locale = "sv-SE"; arch = "linux-i686"; sha256 = "a2af1b6c6f2a054176e2ae19d4a8d1ff659fdf25fbb6dda1ae01fe1d3e20fce6"; }
+ { locale = "sv-SE"; arch = "linux-x86_64"; sha256 = "dc8ed365766fe29849f3840d05516be2c68018b3165a2a83bce4c4f1fff63a9e"; }
+ { locale = "ta"; arch = "linux-i686"; sha256 = "d24f0fe9ee72cb88a214873a49d7734b9a0e78fbcf39baaa5bf72a50aea34ff7"; }
+ { locale = "ta"; arch = "linux-x86_64"; sha256 = "5a88e39ccad7f3aca46d5f0558194b13c33e557c58c24683eadd4484566be219"; }
+ { locale = "te"; arch = "linux-i686"; sha256 = "78b61877ba4b89b9a7d2198d59c3331b2e697f8bf9c55a3e6e734cb3f4e3df91"; }
+ { locale = "te"; arch = "linux-x86_64"; sha256 = "693e5253f4564ae69a21a25e18fbbf5902e2e5e39b388d1cc30e35f9a49029c4"; }
+ { locale = "th"; arch = "linux-i686"; sha256 = "372f36a5ea8fe5b92c2aa1ec7fcde80ca0bd006cdc220b14d1175eeb11fb7679"; }
+ { locale = "th"; arch = "linux-x86_64"; sha256 = "03b1f0037809b14f7e2daafa7dd43471ed914e445fdf4d12c5bba50c4b66e0aa"; }
+ { locale = "tr"; arch = "linux-i686"; sha256 = "d030908f9ed247e93a4417d48ef3b4ab136dd5325d5a7e8894f186a6a5179a3f"; }
+ { locale = "tr"; arch = "linux-x86_64"; sha256 = "9e15c843feff5d071a4a8e3be64cb2faba9021846c7d5bfe13f206ce91300eb9"; }
+ { locale = "uk"; arch = "linux-i686"; sha256 = "1b377aec5af5af4021b5385f2a46198d181d1c4d8994b2a1a4108bf9cacdcac3"; }
+ { locale = "uk"; arch = "linux-x86_64"; sha256 = "0b158a684610ca92d95868605f18dd61040e0bab820ef7e858505d04d8b5685f"; }
+ { locale = "uz"; arch = "linux-i686"; sha256 = "8d905bac16fd022354aa54743ae12afabc6f823609586f9ca12ea6b9717ef9e7"; }
+ { locale = "uz"; arch = "linux-x86_64"; sha256 = "e22740daf104694323437ae5885aaba67fb7392719c0872ba6f07e2ea73557c1"; }
+ { locale = "vi"; arch = "linux-i686"; sha256 = "372904386e107a595179b6a0f6bed84e7f986878e054c7e052c3e0378b2a9b2e"; }
+ { locale = "vi"; arch = "linux-x86_64"; sha256 = "9c6e2f5cfec7d468dbbf3bda667b00865fec1f10d90a0ba9971ca4c33e8e87b9"; }
+ { locale = "xh"; arch = "linux-i686"; sha256 = "b056ba0741f09be1d2d2e7980ecc17e813c587080328959e7f4362409fabac3e"; }
+ { locale = "xh"; arch = "linux-x86_64"; sha256 = "075effe19f422430948c0a90255ba26bcbf0a4b21153652c1d582ab626eb6be6"; }
+ { locale = "zh-CN"; arch = "linux-i686"; sha256 = "e3e8b0e0bba1a9a583cb0f82e24d3898f453a9fc478f119ca15f9a8c280dc1e8"; }
+ { locale = "zh-CN"; arch = "linux-x86_64"; sha256 = "92236719b5553aad48215b51d13173f7c2673afc4f05d16d92d74a102efa8a22"; }
+ { locale = "zh-TW"; arch = "linux-i686"; sha256 = "7400fe4f31e95472ca7ddaf2fc0ededa7b8fe709d32674a264639bd065885aaf"; }
+ { locale = "zh-TW"; arch = "linux-x86_64"; sha256 = "7f5dd7597600175f7d049d99558c44910ca5a3d07b4ee1140d1ad7e5fb4e6c16"; }
];
}
diff --git a/pkgs/applications/networking/browsers/mozilla-plugins/flashplayer-11/default.nix b/pkgs/applications/networking/browsers/mozilla-plugins/flashplayer-11/default.nix
index 34a06967ed8..d60ae8ea1db 100644
--- a/pkgs/applications/networking/browsers/mozilla-plugins/flashplayer-11/default.nix
+++ b/pkgs/applications/networking/browsers/mozilla-plugins/flashplayer-11/default.nix
@@ -44,6 +44,16 @@ let
if debug then "32bit_debug"
else "32bit"
else throw "Flash Player is not supported on this platform";
+
+ suffix =
+ if stdenv.system == "x86_64-linux" then
+ if debug then throw "no x86_64 debugging version available"
+ else "-release.x86_64"
+ else if stdenv.system == "i686-linux" then
+ if debug then "_linux_debug.i386"
+ else "_linux.i386"
+ else throw "Flash Player is not supported on this platform";
+
in
stdenv.mkDerivation rec {
name = "flashplayer-${version}";
@@ -58,7 +68,7 @@ stdenv.mkDerivation rec {
postUnpack = ''
cd */*${arch}
- tar -xvzf flash-plugin*.tar.gz
+ tar -xvzf *${suffix}.tar.gz
'';
sourceRoot = ".";
@@ -87,5 +97,6 @@ stdenv.mkDerivation rec {
homepage = http://www.adobe.com/products/flashplayer/;
license = stdenv.lib.licenses.unfree;
maintainers = [];
+ platforms = [ "x86_64-linux" "i686-linux" ];
};
}
diff --git a/pkgs/applications/networking/browsers/qutebrowser/default.nix b/pkgs/applications/networking/browsers/qutebrowser/default.nix
index 267b0871f08..c1c7a1297ce 100644
--- a/pkgs/applications/networking/browsers/qutebrowser/default.nix
+++ b/pkgs/applications/networking/browsers/qutebrowser/default.nix
@@ -1,5 +1,6 @@
-{ stdenv, fetchgit, python, buildPythonPackage, qt5, pyqt5, jinja2, pygments, pyyaml, pypeg2,
- gst_plugins_base, gst_plugins_good, gst_ffmpeg }:
+{ stdenv, fetchgit, python, buildPythonPackage, qtmultimedia, pyqt5
+, jinja2, pygments, pyyaml, pypeg2, gst_plugins_base, gst_plugins_good
+, gst_ffmpeg }:
let version = "0.4.1"; in
@@ -23,7 +24,7 @@ buildPythonPackage {
makeWrapperArgs = ''
--prefix GST_PLUGIN_PATH : "${stdenv.lib.makeSearchPath "lib/gstreamer-0.10"
[ gst_plugins_base gst_plugins_good gst_ffmpeg ]}"
- --prefix QT_PLUGIN_PATH : "${qt5.multimedia}/lib/qt5/plugins"
+ --prefix QT_PLUGIN_PATH : "${qtmultimedia}/lib/qt5/plugins"
'';
meta = {
diff --git a/pkgs/applications/networking/dropbox/default.nix b/pkgs/applications/networking/dropbox/default.nix
index 69ebdb429ff..8030ab313a8 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.12.4";
+ version = "3.12.6";
sha256 =
{
- "x86_64-linux" = "0xq5gjqmrl4fn6vp7krj44jhb71npxvsjzbqb01whyyw7mdlc8gf";
- "i686-linux" = "093bfnak5xv50p9fxpr68w25hc1d08fcvrqnb4a6nb9wdfv3lkr6";
+ "x86_64-linux" = "16d0g9bygvaixv4r42p72z6a6wqhkf5qzb058lijih93zjr8zjlj";
+ "i686-linux" = "1pgqz6axzzyaahql01g0l80an39hd9j4dnq0vfavwvb2qkb27dph";
}."${stdenv.system}" or (throw "system ${stdenv.system} not supported");
arch =
diff --git a/pkgs/applications/networking/instant-messengers/qtox/default.nix b/pkgs/applications/networking/instant-messengers/qtox/default.nix
index 170702e44d1..0a7b44ba8cb 100644
--- a/pkgs/applications/networking/instant-messengers/qtox/default.nix
+++ b/pkgs/applications/networking/instant-messengers/qtox/default.nix
@@ -1,6 +1,7 @@
-{ stdenv, fetchgit, pkgconfig, libtoxcore-dev, qt5, openal, opencv,
+{ stdenv, fetchgit, pkgconfig, libtoxcore-dev, openal, opencv,
libsodium, libXScrnSaver, glib, gdk_pixbuf, gtk2, cairo,
- pango, atk, qrencode, ffmpeg, filter-audio, makeWrapper }:
+ pango, atk, qrencode, ffmpeg, filter-audio, makeWrapper,
+ qtbase, qtsvg, qttools, qttranslations }:
let
revision = "1673b43e26c853f6446f228fec083af166cbf446";
@@ -18,8 +19,8 @@ stdenv.mkDerivation rec {
buildInputs =
[
libtoxcore-dev openal opencv libsodium filter-audio
- qt5.base qt5.tools libXScrnSaver glib gtk2 cairo
- pango atk qrencode ffmpeg qt5.translations makeWrapper
+ qtbase qttools libXScrnSaver glib gtk2 cairo
+ pango atk qrencode ffmpeg qttranslations makeWrapper
];
nativeBuildInputs = [ pkgconfig ];
@@ -46,7 +47,7 @@ stdenv.mkDerivation rec {
mkdir -p $out/bin
cp qtox $out/bin
wrapProgram $out/bin/qtox \
- --prefix QT_PLUGIN_PATH : ${qt5.svg}/lib/qt5/plugins
+ --prefix QT_PLUGIN_PATH : ${qtsvg}/lib/qt5/plugins
'';
enableParallelBuilding = true;
diff --git a/pkgs/applications/networking/instant-messengers/teamspeak/client.nix b/pkgs/applications/networking/instant-messengers/teamspeak/client.nix
index a18ffac5d63..7eedd997c1b 100644
--- a/pkgs/applications/networking/instant-messengers/teamspeak/client.nix
+++ b/pkgs/applications/networking/instant-messengers/teamspeak/client.nix
@@ -1,5 +1,5 @@
{ stdenv, fetchurl, makeWrapper, makeDesktopItem, zlib, glib, libpng, freetype
-, xorg, fontconfig, qt55, xkeyboard_config, alsaLib, libpulseaudio ? null
+, xorg, fontconfig, qtbase, xkeyboard_config, alsaLib, libpulseaudio ? null
, libredirect, quazip, less, which, unzip
}:
@@ -12,7 +12,7 @@ let
deps =
[ zlib glib libpng freetype xorg.libSM xorg.libICE xorg.libXrender
xorg.libXrandr xorg.libXfixes xorg.libXcursor xorg.libXinerama
- xorg.libxcb fontconfig xorg.libXext xorg.libX11 alsaLib qt55.qtbase libpulseaudio
+ xorg.libxcb fontconfig xorg.libXext xorg.libX11 alsaLib qtbase libpulseaudio
];
desktopItem = makeDesktopItem {
diff --git a/pkgs/applications/networking/instant-messengers/telegram/cutegram/default.nix b/pkgs/applications/networking/instant-messengers/telegram/cutegram/default.nix
index cf559a04fc5..26a7eb49279 100644
--- a/pkgs/applications/networking/instant-messengers/telegram/cutegram/default.nix
+++ b/pkgs/applications/networking/instant-messengers/telegram/cutegram/default.nix
@@ -1,5 +1,5 @@
{ stdenv, fetchFromGitHub
-, qt5Libs, qtbase, qtquick1, qtmultimedia, qtquickcontrols, qtgraphicaleffects, makeQtWrapper
+, qtbase, qtquick1, qtmultimedia, qtquickcontrols, qtgraphicaleffects, makeQtWrapper
, telegram-qml, libqtelegram-aseman-edition }:
stdenv.mkDerivation rec {
diff --git a/pkgs/applications/networking/instant-messengers/telegram/telegram-qml/default.nix b/pkgs/applications/networking/instant-messengers/telegram/telegram-qml/default.nix
index 4fc1ee37927..b51f8435ce1 100644
--- a/pkgs/applications/networking/instant-messengers/telegram/telegram-qml/default.nix
+++ b/pkgs/applications/networking/instant-messengers/telegram/telegram-qml/default.nix
@@ -1,5 +1,5 @@
{ stdenv, fetchFromGitHub
-, qt5Libs, qtbase, qtmultimedia, qtquick1
+, qtbase, qtmultimedia, qtquick1
, libqtelegram-aseman-edition }:
stdenv.mkDerivation rec {
diff --git a/pkgs/applications/networking/linssid/default.nix b/pkgs/applications/networking/linssid/default.nix
index 369010f41b5..76de1d208cc 100644
--- a/pkgs/applications/networking/linssid/default.nix
+++ b/pkgs/applications/networking/linssid/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchurl, qt5, pkgconfig, boost, wirelesstools, iw, qwt6 }:
+{ stdenv, fetchurl, qtbase, qtsvg, pkgconfig, boost, wirelesstools, iw, qwt6 }:
stdenv.mkDerivation rec {
name = "linssid-${version}";
@@ -9,7 +9,7 @@ stdenv.mkDerivation rec {
sha256 = "13d35rlcjncd8lx3khkgn9x8is2xjd5fp6ns5xsn3w6l4xj9b4gl";
};
- buildInputs = [ qt5.base qt5.svg pkgconfig boost qwt6 ];
+ buildInputs = [ qtbase qtsvg pkgconfig boost qwt6 ];
patches = [ ./0001-unbundled-qwt.patch ];
diff --git a/pkgs/applications/networking/mailreaders/claws-mail/default.nix b/pkgs/applications/networking/mailreaders/claws-mail/default.nix
index bbe3c6b4427..5b3eb2326c5 100644
--- a/pkgs/applications/networking/mailreaders/claws-mail/default.nix
+++ b/pkgs/applications/networking/mailreaders/claws-mail/default.nix
@@ -30,7 +30,7 @@
with stdenv.lib;
-let version = "3.13.0"; in
+let version = "3.13.1"; in
stdenv.mkDerivation {
name = "claws-mail-${version}";
@@ -45,7 +45,7 @@ stdenv.mkDerivation {
src = fetchurl {
url = "http://www.claws-mail.org/download.php?file=releases/claws-mail-${version}.tar.xz";
- sha256 = "0fpr9gdgrs5yggm61a6135ca06x0cflddsh8dwfqmpb3dj07cl1n";
+ sha256 = "049av7r0xhjjjm1p93l2ns3xisvn125v3ncqar23cqjzgcichg5d";
};
patches = [ ./mime.patch ];
diff --git a/pkgs/applications/networking/mailreaders/thunderbird-bin/default.nix b/pkgs/applications/networking/mailreaders/thunderbird-bin/default.nix
index 4dd734ed043..388fc418de1 100644
--- a/pkgs/applications/networking/mailreaders/thunderbird-bin/default.nix
+++ b/pkgs/applications/networking/mailreaders/thunderbird-bin/default.nix
@@ -64,7 +64,7 @@ stdenv.mkDerivation {
src = fetchurl {
url = "http://download-installer.cdn.mozilla.net/pub/thunderbird/releases/${version}/${source.arch}/${source.locale}/thunderbird-${version}.tar.bz2";
- inherit (source) sha1;
+ inherit (source) sha256;
};
phases = "unpackPhase installPhase";
diff --git a/pkgs/applications/networking/mailreaders/thunderbird-bin/generate_sources.rb b/pkgs/applications/networking/mailreaders/thunderbird-bin/generate_sources.rb
index 308e0b71c05..1bf623a4b77 100644
--- a/pkgs/applications/networking/mailreaders/thunderbird-bin/generate_sources.rb
+++ b/pkgs/applications/networking/mailreaders/thunderbird-bin/generate_sources.rb
@@ -1,43 +1,61 @@
-require "open-uri"
-
version = if ARGV.empty?
"latest"
else
ARGV[0]
end
-base_path = "http://archive.mozilla.org/pub/thunderbird/releases"
-
-Source = Struct.new(:hash, :arch, :locale, :filename)
-
-sources = open("#{base_path}/#{version}/SHA1SUMS") do |input|
- input.readlines
-end.select do |line|
- /\/thunderbird-.*\.tar\.bz2$/ === line && !(/source/ === line)
-end.map do |line|
- hash, name = line.chomp.split(/ +/)
- Source.new(hash, *(name.split("/")))
-end.sort_by do |source|
- [source.locale, source.arch]
-end
-
-real_version = sources[0].filename.match(/thunderbird-([0-9.]*)\.tar\.bz2/)[1]
+base_path = "archive.mozilla.org/pub/thunderbird/releases"
arches = ["linux-i686", "linux-x86_64"]
+arches.each do |arch|
+ system("wget", "--recursive", "--continue", "--no-parent", "--reject-regex", ".*\\?.*", "--reject", "xpi", "http://#{base_path}/#{version}/#{arch}/")
+end
+
+locales = Dir.glob("#{base_path}/#{version}/#{arches[0]}/*").map do |path|
+ File.basename(path)
+end.sort
+
+locales.delete("index.html")
+locales.delete("xpi")
+
+# real version number, e.g. "30.0" instead of "latest".
+real_version = Dir.glob("#{base_path}/#{version}/#{arches[0]}/#{locales[0]}/thunderbird-*")[0].match(/thunderbird-([0-9.]*)/)[1][0..-2]
+
+locale_arch_path_tuples = locales.flat_map do |locale|
+ arches.map do |arch|
+ path = Dir.glob("#{base_path}/#{version}/#{arch}/#{locale}/thunderbird-*")[0]
+
+ [locale, arch, path]
+ end
+end
+
+paths = locale_arch_path_tuples.map do |tuple| tuple[2] end
+
+hashes = IO.popen(["sha256sum", "--binary", *paths]) do |input|
+ input.each_line.map do |line|
+ $stderr.puts(line)
+
+ line.match(/^[0-9a-f]*/)[0]
+ end
+end
+
+
puts(<<"EOH")
-# This file is generated from generate_nix.rb. DO NOT EDIT.
+# This file is generated from generate_sources.rb. DO NOT EDIT.
# Execute the following command in a temporary directory to update the file.
#
-# ruby generate_source.rb > source.nix
+# ruby generate_sources.rb > sources.nix
{
version = "#{real_version}";
sources = [
EOH
-sources.each do |source|
- puts(%Q| { locale = "#{source.locale}"; arch = "#{source.arch}"; sha1 = "#{source.hash}"; }|)
+locale_arch_path_tuples.zip(hashes) do |tuple, hash|
+ locale, arch, path = tuple
+
+ puts(%Q| { locale = "#{locale}"; arch = "#{arch}"; sha256 = "#{hash}"; }|)
end
puts(<<'EOF')
diff --git a/pkgs/applications/networking/mailreaders/thunderbird-bin/sources.nix b/pkgs/applications/networking/mailreaders/thunderbird-bin/sources.nix
index bdc989fea22..e07e972bf41 100644
--- a/pkgs/applications/networking/mailreaders/thunderbird-bin/sources.nix
+++ b/pkgs/applications/networking/mailreaders/thunderbird-bin/sources.nix
@@ -1,126 +1,126 @@
-# This file is generated from generate_nix.rb. DO NOT EDIT.
+# This file is generated from generate_sources.rb. DO NOT EDIT.
# Execute the following command in a temporary directory to update the file.
#
-# ruby generate_source.rb > source.nix
+# ruby generate_sources.rb > sources.nix
{
- version = "38.3.0";
+ version = "38.4.0";
sources = [
- { locale = "ar"; arch = "linux-i686"; sha1 = "45a8e9613b5d5083b264fb82704bc69c622372c5"; }
- { locale = "ar"; arch = "linux-x86_64"; sha1 = "97ea8fa778bd4e5fc65d919f2d0f9f473e00fc38"; }
- { locale = "ast"; arch = "linux-i686"; sha1 = "0c535223b5620f249ff32381c53e05c8f5429f1a"; }
- { locale = "ast"; arch = "linux-x86_64"; sha1 = "01352d0046fa41d832c7f18c2b8d0c3d74ab95ce"; }
- { locale = "be"; arch = "linux-i686"; sha1 = "f496db8690c9a7b61766a235ee1dc204f622fddf"; }
- { locale = "be"; arch = "linux-x86_64"; sha1 = "2a62ca92f2dfafa3a58fedbf03304fd6daed01ea"; }
- { locale = "bg"; arch = "linux-i686"; sha1 = "02934c4c9dba3fce844159dc790c0575c0202efd"; }
- { locale = "bg"; arch = "linux-x86_64"; sha1 = "d8cf360615b05d805b88d6057e4f08527aba6576"; }
- { locale = "bn-BD"; arch = "linux-i686"; sha1 = "880434d08155275dc4806d45afa365f62bb58ad0"; }
- { locale = "bn-BD"; arch = "linux-x86_64"; sha1 = "e99dcde6db5bd3178ce58f67191bc3f54f75574a"; }
- { locale = "br"; arch = "linux-i686"; sha1 = "7fab50b35a4bcff0e7e1268e3b50f2088209237e"; }
- { locale = "br"; arch = "linux-x86_64"; sha1 = "d9d945dc271cf092746f8921f490e0f77359f5e3"; }
- { locale = "ca"; arch = "linux-i686"; sha1 = "7f6b5f5523d3b67068e153515629bbbb3e944ee5"; }
- { locale = "ca"; arch = "linux-x86_64"; sha1 = "abd73c39a87a2a28063e165941be98994d22f401"; }
- { locale = "cs"; arch = "linux-i686"; sha1 = "a80a5e962d0ca4458365cee96715c830681b1ee0"; }
- { locale = "cs"; arch = "linux-x86_64"; sha1 = "71096a0d6e8293682638abb9073cf2dc8f905ffb"; }
- { locale = "cy"; arch = "linux-i686"; sha1 = "b64f444d523f3dd88f23d491e91193ef0422f664"; }
- { locale = "cy"; arch = "linux-x86_64"; sha1 = "e8fdf1acb14801c97a3e48ff49706bd15f3433e6"; }
- { locale = "da"; arch = "linux-i686"; sha1 = "73ce38987daf2a145dbca2aa8cd7ca32098598a5"; }
- { locale = "da"; arch = "linux-x86_64"; sha1 = "f403094fbb49addc5d7dfe15370fdd612f067256"; }
- { locale = "de"; arch = "linux-i686"; sha1 = "f265e65020397b79420691a475adb98f3bcc73a1"; }
- { locale = "de"; arch = "linux-x86_64"; sha1 = "267ad171576e57df9a241a22332d15efa882e485"; }
- { locale = "dsb"; arch = "linux-i686"; sha1 = "3d8fb2e858ea3210ddb9eb566235ffeddbc23cb6"; }
- { locale = "dsb"; arch = "linux-x86_64"; sha1 = "7c50f42a6a0c5172469f37412664306049253637"; }
- { locale = "el"; arch = "linux-i686"; sha1 = "732fade73221962dc840d3a97b440753bfda35fc"; }
- { locale = "el"; arch = "linux-x86_64"; sha1 = "9e8f4a7698050b506a815af03534395bf6cfda31"; }
- { locale = "en-GB"; arch = "linux-i686"; sha1 = "0c0c4f87977c0ca4a70db8ba22dcb35b5276f451"; }
- { locale = "en-GB"; arch = "linux-x86_64"; sha1 = "0217d912251c52acaf071a6955c725e365d0298b"; }
- { locale = "en-US"; arch = "linux-i686"; sha1 = "1ffa88c200b17e4fe8ea647c58e0d479b3e673e2"; }
- { locale = "en-US"; arch = "linux-x86_64"; sha1 = "e2a2690e2e7b72eff8944effc6d8a70f4fb2a3e7"; }
- { locale = "es-AR"; arch = "linux-i686"; sha1 = "7fddb79300f158ed94c970dd9a0f384093a369fe"; }
- { locale = "es-AR"; arch = "linux-x86_64"; sha1 = "961e90db7063c5d49c8494ec31761ae1206effec"; }
- { locale = "es-ES"; arch = "linux-i686"; sha1 = "69a5ad0cc12d9e8e17d4a47c705d3653106248f5"; }
- { locale = "es-ES"; arch = "linux-x86_64"; sha1 = "fe84027eef32f4788a8056ea331e2a7a1ecc3c8a"; }
- { locale = "et"; arch = "linux-i686"; sha1 = "d1cdd86f79f6bd17a98a1fcaec70af34671f60c6"; }
- { locale = "et"; arch = "linux-x86_64"; sha1 = "3ee90372f035ba972aff2bb9e8d592cf007fd2bd"; }
- { locale = "eu"; arch = "linux-i686"; sha1 = "d0caf6d75b169a1a420f68210782230bc83d5cfe"; }
- { locale = "eu"; arch = "linux-x86_64"; sha1 = "eb4250e4422699d09bb9a8a2b3a539f72a91e4d1"; }
- { locale = "fi"; arch = "linux-i686"; sha1 = "37e6d23be510eee3d908a2396eee554c65f24539"; }
- { locale = "fi"; arch = "linux-x86_64"; sha1 = "0dc06ca1c164a3f2ca7941e376fb3e085ec29f82"; }
- { locale = "fr"; arch = "linux-i686"; sha1 = "a057112a12aa7e214b2fec5cb3a24126fabe1dbf"; }
- { locale = "fr"; arch = "linux-x86_64"; sha1 = "392d413e2a4c16391af122c2cbcf264d901e875b"; }
- { locale = "fy-NL"; arch = "linux-i686"; sha1 = "207d75317e6257c1eb95e6ba133e3a7229125ffa"; }
- { locale = "fy-NL"; arch = "linux-x86_64"; sha1 = "69e02da4f9473b25f8d3b9cd74602f966899602b"; }
- { locale = "ga-IE"; arch = "linux-i686"; sha1 = "5f356a214e32696e8296a7fee3b9cfe3d86b8176"; }
- { locale = "ga-IE"; arch = "linux-x86_64"; sha1 = "bce6441acd9a438ea707f6db1d8f639fa676adb8"; }
- { locale = "gd"; arch = "linux-i686"; sha1 = "8a4473b82a10ad3dfefdc381b90a0616d1ecaf6b"; }
- { locale = "gd"; arch = "linux-x86_64"; sha1 = "3fdbe0debaf43a741b137eeb549117747dfa08eb"; }
- { locale = "gl"; arch = "linux-i686"; sha1 = "235d6b94cf0e44e7bac6e76ae8c13bd5c090865e"; }
- { locale = "gl"; arch = "linux-x86_64"; sha1 = "a5f23d30426fb0d78d7840ab2b2ed457785cc6c1"; }
- { locale = "he"; arch = "linux-i686"; sha1 = "5b98752dd745d406325682faaaba2d8ce4c34743"; }
- { locale = "he"; arch = "linux-x86_64"; sha1 = "2ce82ecdca404f72f033f3752e34122ff97e6006"; }
- { locale = "hr"; arch = "linux-i686"; sha1 = "b7e8899d7db51129ef94c2b34bcf950307c0eaa1"; }
- { locale = "hr"; arch = "linux-x86_64"; sha1 = "85e0d2ee0591df75754f03566f206085a43e1603"; }
- { locale = "hsb"; arch = "linux-i686"; sha1 = "6252d41415ec5ba7841e629b2617fb38f5bfe25f"; }
- { locale = "hsb"; arch = "linux-x86_64"; sha1 = "40ef8f4991f9670ded25372805b05cf090ae8419"; }
- { locale = "hu"; arch = "linux-i686"; sha1 = "b98b9198d0347ccee4cf1b46405c375ed94d1c79"; }
- { locale = "hu"; arch = "linux-x86_64"; sha1 = "8e144f40a677471b411608cca2170c90de122ffc"; }
- { locale = "hy-AM"; arch = "linux-i686"; sha1 = "aa4d323f658f4330b13e5883ba8b6e2a3e441add"; }
- { locale = "hy-AM"; arch = "linux-x86_64"; sha1 = "2273f2d4d15a4dc4681a8d21e6f42f2e1ba0772a"; }
- { locale = "id"; arch = "linux-i686"; sha1 = "60b9a32ba6b831f851399c6f4ba675bff163aba7"; }
- { locale = "id"; arch = "linux-x86_64"; sha1 = "73cda0ab1e1c04e7ab2816642481d2f9b41746e8"; }
- { locale = "is"; arch = "linux-i686"; sha1 = "9b61caeaf4f1a7e5153d042f6ec52c7a4c4a5573"; }
- { locale = "is"; arch = "linux-x86_64"; sha1 = "a705d9724c2fe246a3a9e96f7304bad73ed9897d"; }
- { locale = "it"; arch = "linux-i686"; sha1 = "0fcd397c3a8f6519ec85f7f2d71416b27053813f"; }
- { locale = "it"; arch = "linux-x86_64"; sha1 = "6900813562473c64a50087f5d0620666763ceb09"; }
- { locale = "ja"; arch = "linux-i686"; sha1 = "786e9aadae199fb2a84b03ac9716f021f118e16e"; }
- { locale = "ja"; arch = "linux-x86_64"; sha1 = "8f92502e03e2bdd704d57a3298a5c109be3d3927"; }
- { locale = "ko"; arch = "linux-i686"; sha1 = "0d3c52e88f5d0cc329b8bcb3cf3322fb59651dd1"; }
- { locale = "ko"; arch = "linux-x86_64"; sha1 = "065a6b448189246d52bee2ea2722d22253c7fcae"; }
- { locale = "lt"; arch = "linux-i686"; sha1 = "b667e748814e2d2ea508eac799325aa4d3e6b56f"; }
- { locale = "lt"; arch = "linux-x86_64"; sha1 = "174214613317d4ea2c25a6c9cbc61810fe579349"; }
- { locale = "nb-NO"; arch = "linux-i686"; sha1 = "669f7f03860c7648bc901120f5bbb43e63424759"; }
- { locale = "nb-NO"; arch = "linux-x86_64"; sha1 = "3cb36ad745d505241bba330e0d832a77d1ba8641"; }
- { locale = "nl"; arch = "linux-i686"; sha1 = "7b399deb6e9a8d4db099bbaaadc8e5a000c13293"; }
- { locale = "nl"; arch = "linux-x86_64"; sha1 = "1d7391c23da59b9367071c95d43ea2cc870c5388"; }
- { locale = "nn-NO"; arch = "linux-i686"; sha1 = "25d80451d59a19339ce8d0e8e9b3fb76c183cca0"; }
- { locale = "nn-NO"; arch = "linux-x86_64"; sha1 = "4af717ad8b7dcc7564bada20b3f28f179d29ae91"; }
- { locale = "pa-IN"; arch = "linux-i686"; sha1 = "225eab7baf002da6543918e1682a931fe7cb4493"; }
- { locale = "pa-IN"; arch = "linux-x86_64"; sha1 = "d519eaf04ee57e1ca1fffe2a1dc5cfbe876ce128"; }
- { locale = "pl"; arch = "linux-i686"; sha1 = "be4eeed21159601047b59aa832c9adbd54a812dd"; }
- { locale = "pl"; arch = "linux-x86_64"; sha1 = "47a7a6f548dfad92a725c56858fb625e42821d9c"; }
- { locale = "pt-BR"; arch = "linux-i686"; sha1 = "5e44c5e9e07cbb0ef864a98c17a3e2c744d7eddd"; }
- { locale = "pt-BR"; arch = "linux-x86_64"; sha1 = "e4337edbaee9023b69518f3804459508a5fb693a"; }
- { locale = "pt-PT"; arch = "linux-i686"; sha1 = "5ce4e8a2626835c3d17c37a68db6c4cc9f3db5e4"; }
- { locale = "pt-PT"; arch = "linux-x86_64"; sha1 = "f155173b56f3e0302288cb359170615d925d9c12"; }
- { locale = "rm"; arch = "linux-i686"; sha1 = "57549fda6d8c9ef67950f6729bb17c8fb79d18cb"; }
- { locale = "rm"; arch = "linux-x86_64"; sha1 = "96cbc015ea082bf9c8a2363929bec574c3ba264d"; }
- { locale = "ro"; arch = "linux-i686"; sha1 = "85399bb39ddb09b5aedd44c5362bda1a375255d8"; }
- { locale = "ro"; arch = "linux-x86_64"; sha1 = "6a4f1f43d188cc0bd817d150fe7c958aec4f0ac6"; }
- { locale = "ru"; arch = "linux-i686"; sha1 = "9fdd1b141cde49a5453540f4ceb3d74dc92b05aa"; }
- { locale = "ru"; arch = "linux-x86_64"; sha1 = "29537fbb4eacb6a9fc396802d74b35132620613d"; }
- { locale = "si"; arch = "linux-i686"; sha1 = "410f15673c95ce3744c84559e5801b4c1cc062b6"; }
- { locale = "si"; arch = "linux-x86_64"; sha1 = "383acd5b025d907ed0dee36f1b8fc5bf5234c860"; }
- { locale = "sk"; arch = "linux-i686"; sha1 = "86e7b065876b4eb0177e7523bab78d36182f1517"; }
- { locale = "sk"; arch = "linux-x86_64"; sha1 = "cdc547aca6dfff934195a69e1ad81a357f37fef4"; }
- { locale = "sl"; arch = "linux-i686"; sha1 = "a88a74354e6b481418d8b5aec08a0c1f87693117"; }
- { locale = "sl"; arch = "linux-x86_64"; sha1 = "d27b3c018904dcb6862f569b84b4200b05013df0"; }
- { locale = "sq"; arch = "linux-i686"; sha1 = "822e117f5a840f46c6b2500ad80efb6c16c2a5de"; }
- { locale = "sq"; arch = "linux-x86_64"; sha1 = "349aeab272d702afbe9f249c54a7cf6d17918f6a"; }
- { locale = "sr"; arch = "linux-i686"; sha1 = "170c6f23bdb3222e7eb95591a22d09d17ca1b5a2"; }
- { locale = "sr"; arch = "linux-x86_64"; sha1 = "eda779e2154ca0ede7c69435ad49fbd541ec21d1"; }
- { locale = "sv-SE"; arch = "linux-i686"; sha1 = "63e9eb73d9854e72f93639c1383dd21075626efb"; }
- { locale = "sv-SE"; arch = "linux-x86_64"; sha1 = "a824725919096f53c3372a038d999ce56b242d40"; }
- { locale = "ta-LK"; arch = "linux-i686"; sha1 = "5b40dd6b193a92ddc6344825bf6e9c547f58b0a2"; }
- { locale = "ta-LK"; arch = "linux-x86_64"; sha1 = "5d6c019b2708b87ac32db16b828966f1b1215e08"; }
- { locale = "tr"; arch = "linux-i686"; sha1 = "17c8ccd0c6d08dd00a6267d9c6850ea8a027b4a5"; }
- { locale = "tr"; arch = "linux-x86_64"; sha1 = "b5c6a09750d01af1f8428425c9c7af9f73a7e42b"; }
- { locale = "uk"; arch = "linux-i686"; sha1 = "6dbfd27fd8efd59cd1af932af3f302f9cc35e314"; }
- { locale = "uk"; arch = "linux-x86_64"; sha1 = "690f60f461d958a076af671321b2588607369754"; }
- { locale = "vi"; arch = "linux-i686"; sha1 = "84dc2737efcc831a63ea2ceeccfdadb2c065c201"; }
- { locale = "vi"; arch = "linux-x86_64"; sha1 = "323be14cf52c7587200856ad31528a93d4f88766"; }
- { locale = "zh-CN"; arch = "linux-i686"; sha1 = "9186336bcf83179205b91f51c56ee7972024d59c"; }
- { locale = "zh-CN"; arch = "linux-x86_64"; sha1 = "97f65edfe8cbb419c4eacb54163df629b8fdb9bb"; }
- { locale = "zh-TW"; arch = "linux-i686"; sha1 = "239c526df1c25aa4b7f639fb0a88d1969d49e2a1"; }
- { locale = "zh-TW"; arch = "linux-x86_64"; sha1 = "88cf0f7fd1c1f73f1c8bfef0a292eac3158f7b88"; }
+ { locale = "ar"; arch = "linux-i686"; sha256 = "30383ea1567d2338af99de09f144e4a3cf6c195bc3707c1011171b4c09a885ab"; }
+ { locale = "ar"; arch = "linux-x86_64"; sha256 = "0325b8da77e0ec1c97eac81367cbf68c2e4cf62ddd086ab07494cd1705d6134e"; }
+ { locale = "ast"; arch = "linux-i686"; sha256 = "5e91cb9df7aab8c887dadcdf8d01b0dd2e6427ed570333b66a680c57ff9391b2"; }
+ { locale = "ast"; arch = "linux-x86_64"; sha256 = "3e275d4db234f2ce1c226577dbd6289f870c7ac9f3963136eaa6fa097cb7fbef"; }
+ { locale = "be"; arch = "linux-i686"; sha256 = "74a4dcbcf45e766b3a4b23a0bf4c08d61b8e8e8923b45d27ca23f2785dd4120b"; }
+ { locale = "be"; arch = "linux-x86_64"; sha256 = "52e9c46cb12b4cdb8d6eaa384717572ef5bd845c18a36d8cfd15db39c4d0332f"; }
+ { locale = "bg"; arch = "linux-i686"; sha256 = "0dde851fee0eba8be214f8f673a5da9924f84cf1b558d3f76aa80f6008e518f1"; }
+ { locale = "bg"; arch = "linux-x86_64"; sha256 = "198607f773ddc38ab1c2433500f53578fab38dea817a24ae94849fa8045bbb67"; }
+ { locale = "bn-BD"; arch = "linux-i686"; sha256 = "a34e8ae21b22cb80b772a31341a7dd5da23aaddf8685c6a1a20be6f8f3c312af"; }
+ { locale = "bn-BD"; arch = "linux-x86_64"; sha256 = "03f611a7029002e593175cb4e624b1d3885c12847115a027d89625d3be9247c4"; }
+ { locale = "br"; arch = "linux-i686"; sha256 = "6c61dcc67472b3fd1b8361d4960e0ec2a190e7a18aa9e05060fa80a7d23b3796"; }
+ { locale = "br"; arch = "linux-x86_64"; sha256 = "f4589f1e31697fd65296f306350558ca9355962182e69d0c6f4b303b62407e5b"; }
+ { locale = "ca"; arch = "linux-i686"; sha256 = "dd2f59e278a34081c6ac3f1c8dbb61b2e9fe188b23715e6917c7034ac562ae42"; }
+ { locale = "ca"; arch = "linux-x86_64"; sha256 = "0f77e01e3a9dda94c8dd7cc34ab2eefbfd4bcacc6d09b3a8563632130c3fb83b"; }
+ { locale = "cs"; arch = "linux-i686"; sha256 = "389e99cc4b2c56067ea02eef9e2e347ef972fe21a20a094c6d056aa5e7fb65ff"; }
+ { locale = "cs"; arch = "linux-x86_64"; sha256 = "c34ee1e3607df27a9edc03faed4476533489a962715a9d7920282044e9af2dd6"; }
+ { locale = "cy"; arch = "linux-i686"; sha256 = "f77986fb3ab81e82e611247066ba6856518a209694cc71592895c4186ec80607"; }
+ { locale = "cy"; arch = "linux-x86_64"; sha256 = "549a0c15bbd298e9d3753782e97a0874bf2bfca607bfed484efe3b9fdce3c9b0"; }
+ { locale = "da"; arch = "linux-i686"; sha256 = "e56cf65ce0719a3a22d2fdb33ce08113348022afd3a557f2ac39a25e35f632de"; }
+ { locale = "da"; arch = "linux-x86_64"; sha256 = "991b5ff474cff16d106b88ee31ac889c6e0543e15b3bf4340c3c263cd3a3ea4c"; }
+ { locale = "de"; arch = "linux-i686"; sha256 = "7f28547c9e67c4d76815337d8f5f39e303d1a1055077a77af42ad4162dd3b476"; }
+ { locale = "de"; arch = "linux-x86_64"; sha256 = "4c16d7477792759eb754cb5770be67dc78dab3cdfb47c29bb3bf038dbfe6601e"; }
+ { locale = "dsb"; arch = "linux-i686"; sha256 = "8f5a82f61c80dd9a1358ee43e192364f34dbba0253aeba00ad0c5d1656e57a34"; }
+ { locale = "dsb"; arch = "linux-x86_64"; sha256 = "7804c72b8c758193fbd45feedc185d01717133bf2fa1b1d0054ea421224c780e"; }
+ { locale = "el"; arch = "linux-i686"; sha256 = "8128d4330fdfa0c5b0e5b309d1957b7523b337f862bd1e9d2286f50fc652f339"; }
+ { locale = "el"; arch = "linux-x86_64"; sha256 = "1d1f7859cd25aa5bd18222f97b4496c8f661a375b1e0404eb92b0bec3bb60ae7"; }
+ { locale = "en-GB"; arch = "linux-i686"; sha256 = "980f494e26c8a2904490d55ff2bdfcf8b3d2c82c4b251a7ade3bce90d1e4632c"; }
+ { locale = "en-GB"; arch = "linux-x86_64"; sha256 = "3f3fd4139c64bbea32c53683a2ba75be24fa4a2024922c42b4647ce28a59457f"; }
+ { locale = "en-US"; arch = "linux-i686"; sha256 = "bca69f68e6296608e50bb798e46e209cc3be9f20b5baacc102f7571316f7f65e"; }
+ { locale = "en-US"; arch = "linux-x86_64"; sha256 = "e8d9a31537a6db91efec6372106e655d73ab3e55f3c0ff2e42e564e2a4da7781"; }
+ { locale = "es-AR"; arch = "linux-i686"; sha256 = "bbb8817ed30f591f54d47066765cc4796786f5fa41cd2ee2dbf59001fcaad4c6"; }
+ { locale = "es-AR"; arch = "linux-x86_64"; sha256 = "06b55c261bc0cfbc257c264e9643088682256aaf739c8905cfbd4cd08f0868bd"; }
+ { locale = "es-ES"; arch = "linux-i686"; sha256 = "44a77de45e05ad469cd03d17efa4766a1e2e06bc8e2e7a5d954db3aea17b8407"; }
+ { locale = "es-ES"; arch = "linux-x86_64"; sha256 = "f14c54fc64eb586c8015352d24b392268d3b2ced7312a5647fc1385e14f6d93d"; }
+ { locale = "et"; arch = "linux-i686"; sha256 = "81b28a75d61d9f8463f18ce48943b0f701f392201655eba4899fa609cb59cd9c"; }
+ { locale = "et"; arch = "linux-x86_64"; sha256 = "974247ffb2e003026d46888b425a5f497b7a6d06213190e5668c085e1c44453d"; }
+ { locale = "eu"; arch = "linux-i686"; sha256 = "f45344ec704ad5a07639da1076ad2e6b1cad21bb75c9462e5e46abad3e57b588"; }
+ { locale = "eu"; arch = "linux-x86_64"; sha256 = "4acba2bb5780f85e45a28f58027b75b2832281a7f001f780b215c564a2da2671"; }
+ { locale = "fi"; arch = "linux-i686"; sha256 = "74c4d196d31fbc000d541d057ed7dfa31cf713f7964be4bc6fe1c3f80680824d"; }
+ { locale = "fi"; arch = "linux-x86_64"; sha256 = "14dfe7b1cf2b1feb8a27628a27d5ef00e64dc401c5aebac1e01e1b94f7d091b6"; }
+ { locale = "fr"; arch = "linux-i686"; sha256 = "a6749feae77747703f3a07a1c58bc5679c5faaeb207cb5e46f98cbac733294e1"; }
+ { locale = "fr"; arch = "linux-x86_64"; sha256 = "201af3653ade9411902e208a2d16a7b0357d2a4a44d5dfcccf59d7939e24e787"; }
+ { locale = "fy-NL"; arch = "linux-i686"; sha256 = "8521f1f0551531aef107a21ad953fdeaf0b025266f709e9cfd49eab92a3dcaf2"; }
+ { locale = "fy-NL"; arch = "linux-x86_64"; sha256 = "195f0f25dab810e4f8a89d01f3ddb837378cd9fd691425b0b6b50653ac9bad73"; }
+ { locale = "ga-IE"; arch = "linux-i686"; sha256 = "f3f216995781f4ec55346822483d073e4a1c15449df78e56a05acb7743198292"; }
+ { locale = "ga-IE"; arch = "linux-x86_64"; sha256 = "ebcbc721eee9020ac52eeee92531307512a8a3f2306eee3952b9343a52381d4b"; }
+ { locale = "gd"; arch = "linux-i686"; sha256 = "234e5cb13726b1025c96403e8522c2cbb169ba547513c007501230d6fff3face"; }
+ { locale = "gd"; arch = "linux-x86_64"; sha256 = "2cffd346a895b520c804d8efc7f92e38ace1256a007d8a95abd5687c6fdebcbc"; }
+ { locale = "gl"; arch = "linux-i686"; sha256 = "e65afb4d848a4d6922b550888990733046227dd9201c917b161f19d9b5cab232"; }
+ { locale = "gl"; arch = "linux-x86_64"; sha256 = "ec85e88f167c195fb1f5ac07adcd4b1ebe538ccb94959a1d2d9ca33406fc2277"; }
+ { locale = "he"; arch = "linux-i686"; sha256 = "2b6f436f26ab131d6d6e883a16d27f5a5b9570ada883fe8a387462ad6a2e50ea"; }
+ { locale = "he"; arch = "linux-x86_64"; sha256 = "e37020bd431a697b73b88cfc1a9ddee0168009627ce3848684d8de499ad3b053"; }
+ { locale = "hr"; arch = "linux-i686"; sha256 = "7c005e34cde48c606dbd67d43fa691c96cd8a27ce50b552b1c1b3e114ae112b3"; }
+ { locale = "hr"; arch = "linux-x86_64"; sha256 = "b41260a478e8afa2ae530d6b170514a815b8962bbb3bd32431032604868c3d48"; }
+ { locale = "hsb"; arch = "linux-i686"; sha256 = "b4b2e41f9afe8eea8b347bd8fe0ba8d03ac8b9cf9b055469e053e4f72bc1c665"; }
+ { locale = "hsb"; arch = "linux-x86_64"; sha256 = "b6540fe80976a53828058e91f4a311192a7da37fd1ea8574161c0cfe494d17f2"; }
+ { locale = "hu"; arch = "linux-i686"; sha256 = "c7b27a351e095353f2f53b50275ed7774faeb9254b980dd6571d48a935b50630"; }
+ { locale = "hu"; arch = "linux-x86_64"; sha256 = "d5b014fd679bc475ade1278ba661a97e0a92d0fea8a6351e199677f5185f19f4"; }
+ { locale = "hy-AM"; arch = "linux-i686"; sha256 = "e6748c7f84a6040e98bb0cb3b1ec1c975f2174f8a89c2cc0ef83921dd56d2b1c"; }
+ { locale = "hy-AM"; arch = "linux-x86_64"; sha256 = "ce902a1ecadf1a89ab7f32ed17eef33725c946447fd67bc83cde0492fd65022b"; }
+ { locale = "id"; arch = "linux-i686"; sha256 = "6f2851c35f8b3fa5187d05d252da8d593f5ec4f9d268dc9c6973b0f87ed0733e"; }
+ { locale = "id"; arch = "linux-x86_64"; sha256 = "1a89f09b6a4c3418fb4a1490430e96742e5e8f5dc8b2613ccd9214950c6e8c80"; }
+ { locale = "is"; arch = "linux-i686"; sha256 = "e1cdede34db4b9d289596a689e04452813b6c9a83c72513d51c9f356879af9b2"; }
+ { locale = "is"; arch = "linux-x86_64"; sha256 = "eeb91667080edb15bb5e023333ff7410580b70de878628b4e6bbaa3d0db2bdfa"; }
+ { locale = "it"; arch = "linux-i686"; sha256 = "bd531bf775d991710fd63f1de90b6389c176d6a0c7d7068a8139f70379d6a76b"; }
+ { locale = "it"; arch = "linux-x86_64"; sha256 = "89fe33ffda15340926c727b535b378bf629389edccf8f8627b03b4056284b93b"; }
+ { locale = "ja"; arch = "linux-i686"; sha256 = "6e22ad0f04be5ce33dfe1d33d4d935e0dce425d80c5e6e07f3b7f2c856f64aee"; }
+ { locale = "ja"; arch = "linux-x86_64"; sha256 = "2aaafcb3b5da060458e67f493c10a3f02266e328222f25f96b8229f8dfec37b2"; }
+ { locale = "ko"; arch = "linux-i686"; sha256 = "7a0a5957bb1cf2724e551fe2f05e06e4493f95ea939812f535a166428d127a25"; }
+ { locale = "ko"; arch = "linux-x86_64"; sha256 = "ee62aee7a4b549d95e4bcab696c28ada842f352111bb44f4d39d1fe05a49d970"; }
+ { locale = "lt"; arch = "linux-i686"; sha256 = "ed13eeea81f3673ae082e92db0cb966889f00cfc14c6f54f4f90677a3adc0fd4"; }
+ { locale = "lt"; arch = "linux-x86_64"; sha256 = "22fdb92474591dcb05fae0c6bf65d696bcba718b208224411867a38af187c87a"; }
+ { locale = "nb-NO"; arch = "linux-i686"; sha256 = "44c999f4f73d02ea3c336ceba5771ddd187ce241fd3dcc027f315bdd935ba1c4"; }
+ { locale = "nb-NO"; arch = "linux-x86_64"; sha256 = "04aaf3ce92aaadfc975730956b0e92a3b26b5b1abfb376bbc2e8c35b2b1d5169"; }
+ { locale = "nl"; arch = "linux-i686"; sha256 = "06b86c4bc4018e5117a8e8a129f81d8ca5fb2781bd06a2f2ec29fcaceba23d58"; }
+ { locale = "nl"; arch = "linux-x86_64"; sha256 = "186ee5e191160a72f6f5f99371412cc0cb44fc66184d5a33b0aa8cc480b784c7"; }
+ { locale = "nn-NO"; arch = "linux-i686"; sha256 = "0ce71ba703d3b307ae66502768c6fe924fbd838570f917e1ab65fc8ffedddfc8"; }
+ { locale = "nn-NO"; arch = "linux-x86_64"; sha256 = "4e5f3b1ac34c61ae977d9f346fa04de7a3b21a21756bbf120f5d1bd8f56a98c9"; }
+ { locale = "pa-IN"; arch = "linux-i686"; sha256 = "7b99742ca9ccca0f5151d4f9ff4b3fffbc9df5f6c8e89c3f2236da84639d6050"; }
+ { locale = "pa-IN"; arch = "linux-x86_64"; sha256 = "6e66778a0c318add8d8fdac631400af94a9fff77d90c1c039a91e3b4ae8e66fe"; }
+ { locale = "pl"; arch = "linux-i686"; sha256 = "7d50ff91e15954c4736309e23425603ae731c9d221936106a67517a5caf8c24d"; }
+ { locale = "pl"; arch = "linux-x86_64"; sha256 = "bc224b70b522199e6c3c7012f3aec9a4cd6b31feb8eea23e3701ff891bcd2d77"; }
+ { locale = "pt-BR"; arch = "linux-i686"; sha256 = "7194b4ef864aa1cfcc00d9ba108cb9436bfcb72fda9a4bf2ff3abbf47877a5f4"; }
+ { locale = "pt-BR"; arch = "linux-x86_64"; sha256 = "6a94b5a6448af6c273fa526b3a359f4435482d1f55f9fbd40ef0d7aded98b1ad"; }
+ { locale = "pt-PT"; arch = "linux-i686"; sha256 = "1a0fab79901d40fe8709e8675a3c8cc6cb6474e10c64730bcda13a3577f94334"; }
+ { locale = "pt-PT"; arch = "linux-x86_64"; sha256 = "3672d9b0e9de882ef9f9851e0ecd9deb52053c65b4a747ac8ef0700b53426f5a"; }
+ { locale = "rm"; arch = "linux-i686"; sha256 = "5f2008f9225ade5e1cff93f804e59b95f998129b1de7910280a3a7f508ea9ca5"; }
+ { locale = "rm"; arch = "linux-x86_64"; sha256 = "645d13223d1aaf5ca3768515e6d9ac12a4205834bf1329765fbc6ff0410eed8e"; }
+ { locale = "ro"; arch = "linux-i686"; sha256 = "582bafffc11ff585860b5af8e8f75d359f4f8e928c794cf35522c083089664ea"; }
+ { locale = "ro"; arch = "linux-x86_64"; sha256 = "bf3d9ca3e1ee0d55dd601d25be1b2f2c9ebbe78094a2df725704b060b834eda0"; }
+ { locale = "ru"; arch = "linux-i686"; sha256 = "3f3ebf446a22176b429cc328b002ffa723e27727ca29def5dfb88eeddef605f7"; }
+ { locale = "ru"; arch = "linux-x86_64"; sha256 = "41f17ef5311d0d1cb10893adb68ca312710f16b07c41d64b31695013cfe15cdd"; }
+ { locale = "si"; arch = "linux-i686"; sha256 = "de99654352ff974fcf0c83d0f6aca669bf6fbfcc6ad534b0a26568d30c650564"; }
+ { locale = "si"; arch = "linux-x86_64"; sha256 = "554e32f4c204a8c7aa1b3d83dd736524abc0595c5fde6c5f58b0b5a644133df1"; }
+ { locale = "sk"; arch = "linux-i686"; sha256 = "c54c6039343bd0bdbe449e6c8633a8aa18ce187850a4d81912b0751d84769fa4"; }
+ { locale = "sk"; arch = "linux-x86_64"; sha256 = "cc38fdc0202da4a7292564f3f30fc01080582991dd5a5fb28860ccb4f4c8d75f"; }
+ { locale = "sl"; arch = "linux-i686"; sha256 = "a276c5f8d1ce308f79f6ae6f95118164bd8882acc9c2aa8140c544626d1c1960"; }
+ { locale = "sl"; arch = "linux-x86_64"; sha256 = "ccbbb0cfd53a9ac5f500e7313111a74d305107578ab94e17bf54175f3366279e"; }
+ { locale = "sq"; arch = "linux-i686"; sha256 = "ede984ffb03f4a35ee18699a217d1d75492a4e7a372168a9c6ccc8fb7d133922"; }
+ { locale = "sq"; arch = "linux-x86_64"; sha256 = "43a3fdb69989c0365d568eb7d7e697fd9d94ce59f0438a3f9b0e615c255e1eb3"; }
+ { locale = "sr"; arch = "linux-i686"; sha256 = "48ee50e180515633db238d73ec8d50cd3dd5dd79e8ab7050f341a5be73401dd9"; }
+ { locale = "sr"; arch = "linux-x86_64"; sha256 = "2a7deb046cd8652e04aafcd88b8d621a2503f7061c6b48cdafcbc763143e88bd"; }
+ { locale = "sv-SE"; arch = "linux-i686"; sha256 = "e87406cb2503ab7cc0ee8df8ac4ec92c90e5033a0133da72b14fd72e736c5360"; }
+ { locale = "sv-SE"; arch = "linux-x86_64"; sha256 = "f6227e1c4442dca0ff7ececf90c03bd711d6a5a83d0f8bf9857dd5c964ed243f"; }
+ { locale = "ta-LK"; arch = "linux-i686"; sha256 = "758c22dac6d97296ef1543f7eafca7d937a2313dd09ac3ca4bfe401009afe210"; }
+ { locale = "ta-LK"; arch = "linux-x86_64"; sha256 = "5f1993c3c54cd0ae42cdac9606664d8127de26ef31a94ec4f7da264a233d788e"; }
+ { locale = "tr"; arch = "linux-i686"; sha256 = "68a3dce3a3c84d111b36dc544a82496364d3b16b411d70ee148bf8f9b8d650a0"; }
+ { locale = "tr"; arch = "linux-x86_64"; sha256 = "facf8cc17d37049ce5c48a9aec9ce97a46242c46c18b2b52a2b3d6ca14217f63"; }
+ { locale = "uk"; arch = "linux-i686"; sha256 = "836cd0eca497cc554da3e68e2274c16c875dc600b8541854a4c11e54e3262b49"; }
+ { locale = "uk"; arch = "linux-x86_64"; sha256 = "2fdaafbd212530c309639aa0ee3ebc113c8aeddf7811b5db51e9792a98deeecb"; }
+ { locale = "vi"; arch = "linux-i686"; sha256 = "9b263fb42a5ed939dc63a452e7cb87c295c6eaf270bfa97d9c858eed2931c0ae"; }
+ { locale = "vi"; arch = "linux-x86_64"; sha256 = "b7684a1836b489b5ef8ad9b28ce0837a846fa55305f83d3a998f6722a97c0e65"; }
+ { locale = "zh-CN"; arch = "linux-i686"; sha256 = "39b0d87388ae8646f7b81d1008e8b9019a3f702031103e497326bb80988559ed"; }
+ { locale = "zh-CN"; arch = "linux-x86_64"; sha256 = "c85ad956bb69a97abd116b30ca5e2303fe4aebdffb08a8120ce7fdeda161b117"; }
+ { locale = "zh-TW"; arch = "linux-i686"; sha256 = "e2f931b5ffbb1d6169e16125bcc40bc432debc01354f193450075d19f0a23a78"; }
+ { locale = "zh-TW"; arch = "linux-x86_64"; sha256 = "3d9310cec9c1370e6a9fa8185935c6c48c3029fc17b6f2fcc311e8f8565ac804"; }
];
}
diff --git a/pkgs/applications/networking/p2p/firestr/default.nix b/pkgs/applications/networking/p2p/firestr/default.nix
index 6b1a1fc9454..e216ede9a39 100644
--- a/pkgs/applications/networking/p2p/firestr/default.nix
+++ b/pkgs/applications/networking/p2p/firestr/default.nix
@@ -1,5 +1,5 @@
-{ stdenv, fetchFromGitHub, cmake, boost, botan, snappy, libopus, libuuid, qt5
-, libXScrnSaver, openssl }:
+{ stdenv, fetchFromGitHub, cmake, boost, botan, snappy, libopus, libuuid
+, libXScrnSaver, openssl, qtbase, qtmultimedia }:
stdenv.mkDerivation {
name = "firestr-0.8";
@@ -11,7 +11,7 @@ stdenv.mkDerivation {
sha256 = "0s2kdi8rw3i3f8gbiy0ykyi6xj5n8p80m0d1i86mhh8jpagvbfzb";
};
- buildInputs = [ cmake boost botan snappy libopus libuuid qt5.base qt5.multimedia
+ buildInputs = [ cmake boost botan snappy libopus libuuid qtbase qtmultimedia
libXScrnSaver openssl ];
patches = ./return.patch;
diff --git a/pkgs/applications/networking/sync/lsyncd/default.nix b/pkgs/applications/networking/sync/lsyncd/default.nix
index 775da905ea9..b190b05e289 100644
--- a/pkgs/applications/networking/sync/lsyncd/default.nix
+++ b/pkgs/applications/networking/sync/lsyncd/default.nix
@@ -1,32 +1,27 @@
-{ stdenv, fetchFromGitHub, automake, autoconf, lua, pkgconfig, rsync,
+{ stdenv, fetchFromGitHub, cmake, lua, pkgconfig, rsync,
asciidoc, libxml2, docbook_xml_dtd_45, docbook_xml_xslt, libxslt }:
stdenv.mkDerivation rec {
name = "lsyncd-${version}";
- version = "2.1.5";
+ version = "2.1.6";
src = fetchFromGitHub {
owner = "axkibe";
repo = "lsyncd";
rev = "release-${version}";
- sha256 = "0jvr2rv34jyjrv7188vdv1z8vgvm4wydqwsp9x5ksfzh9drbq5gn";
+ sha256 = "1cab96h4qfyapk7lb682j1d8k0hpv7h9pl41vdgc0vr4bq4c3ij2";
};
- patches = [ ./configure-a2x-fix.patch ];
-
- preConfigurePhase = ''
+ patchPhase = ''
substituteInPlace default-rsync.lua \
- --replace "binary = '/usr/bin/rsync'," "binary = '${rsync}/bin/rsync',"
+ --replace "/usr/bin/rsync" "${rsync}/bin/rsync"
'';
- configurePhase = ''
- ./autogen.sh --prefix=$out
- ./configure --prefix=$out
- '';
+ dontUseCmakeBuildDir = true;
buildInputs = [
rsync
- automake autoconf lua pkgconfig
+ cmake lua pkgconfig
asciidoc libxml2 docbook_xml_dtd_45 docbook_xml_xslt libxslt
];
diff --git a/pkgs/applications/science/electronics/fritzing/default.nix b/pkgs/applications/science/electronics/fritzing/default.nix
index 1fa0a0d97b5..302c6a318e6 100644
--- a/pkgs/applications/science/electronics/fritzing/default.nix
+++ b/pkgs/applications/science/electronics/fritzing/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchurl, qt5, boost }:
+{ stdenv, fetchurl, qtbase, qtsvg, boost }:
stdenv.mkDerivation rec {
@@ -14,7 +14,7 @@ stdenv.mkDerivation rec {
tar xjf ${src}
'';
- buildInputs = [ qt5.base qt5.svg boost ];
+ buildInputs = [ qtbase qtsvg boost ];
configurePhase = ''
cd fritzing-${version}.source
diff --git a/pkgs/applications/science/logic/coq/8.5.nix b/pkgs/applications/science/logic/coq/8.5.nix
index 2afa18d40a4..df888cf5c79 100644
--- a/pkgs/applications/science/logic/coq/8.5.nix
+++ b/pkgs/applications/science/logic/coq/8.5.nix
@@ -6,7 +6,7 @@
{stdenv, fetchurl, writeText, pkgconfig, ocaml, findlib, camlp5, ncurses, lablgtk ? null, csdp ? null}:
let
- version = "8.5b2";
+ version = "8.5rc1";
coq-version = "8.5";
buildIde = lablgtk != null;
ideFlags = if buildIde then "-lablgtkdir ${lablgtk}/lib/ocaml/*/site-lib/lablgtk2 -coqide opt" else "";
@@ -23,8 +23,8 @@ stdenv.mkDerivation {
inherit ocaml camlp5;
src = fetchurl {
- url = https://coq.inria.fr/distrib/V8.5beta2/files/coq-8.5beta2.tar.gz;
- sha256 = "1z34ch56lld86srgsjdwdq3girz0k0wqmvyxsa7jwvvxn3qmmq2v";
+ url = https://coq.inria.fr/distrib/V8.5rc1/files/coq-8.5rc1.tar.gz;
+ sha256 = "0n8mb7di9iwg8dgy1xmivf2ajx8kqkrj9mafc32vicn2lbg16q2r";
};
buildInputs = [ pkgconfig ocaml findlib camlp5 ncurses lablgtk ];
@@ -34,7 +34,7 @@ stdenv.mkDerivation {
RM=$(type -tp rm)
substituteInPlace configure --replace "/bin/uname" "$UNAME"
substituteInPlace tools/beautify-archive --replace "/bin/rm" "$RM"
- substituteInPlace Makefile.build --replace "ifeq (\$(ARCH),Darwin)" "ifeq (\$(ARCH),Darwinx)"
+ substituteInPlace configure.ml --replace "if arch = \"Darwin\" then \"md5" "if arch = \"Darwinx\" then \"md5"
${csdpPatch}
'';
diff --git a/pkgs/applications/version-management/git-and-tools/git-crypt/default.nix b/pkgs/applications/version-management/git-and-tools/git-crypt/default.nix
index c0acb13740a..8e537c32313 100644
--- a/pkgs/applications/version-management/git-and-tools/git-crypt/default.nix
+++ b/pkgs/applications/version-management/git-and-tools/git-crypt/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchFromGitHub, openssl }:
+{ stdenv, fetchFromGitHub, openssl, gnupg1compat, makeWrapper }:
stdenv.mkDerivation rec {
@@ -12,10 +12,11 @@ stdenv.mkDerivation rec {
inherit name;
};
- buildInputs = [ openssl ];
+ buildInputs = [ openssl makeWrapper ];
installPhase = ''
make install PREFIX=$out
+ wrapProgram $out/bin/* --prefix PATH : ${gnupg1compat}/bin
'';
meta = with stdenv.lib; {
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 d060acef53e..84b033f981f 100644
--- a/pkgs/applications/version-management/git-and-tools/git/default.nix
+++ b/pkgs/applications/version-management/git-and-tools/git/default.nix
@@ -9,7 +9,7 @@
}:
let
- version = "2.6.3";
+ version = "2.6.4";
svn = subversionClient.override { perlBindings = true; };
in
@@ -18,7 +18,7 @@ stdenv.mkDerivation {
src = fetchurl {
url = "https://www.kernel.org/pub/software/scm/git/git-${version}.tar.xz";
- sha256 = "18vxb5fmwmrps504m23a4xdl29m7ibca3hmz0mn9jc38sz9y95yn";
+ sha256 = "0rnlbp7l4ggq3lk96v24rzw7qqawp6477i3b4m0b5q3346ap008w";
};
patches = [
diff --git a/pkgs/applications/video/bomi/default.nix b/pkgs/applications/video/bomi/default.nix
index da07458f4f6..36da9d32072 100644
--- a/pkgs/applications/video/bomi/default.nix
+++ b/pkgs/applications/video/bomi/default.nix
@@ -1,5 +1,6 @@
{ stdenv, fetchurl, fetchFromGitHub, pkgconfig, perl, python, which, makeWrapper
-, libX11, libxcb, qt5, mesa
+, libX11, libxcb, mesa
+, qtbase, qtdeclarative, qtquickcontrols, qttools, qtx11extras
, ffmpeg
, libchardet
, mpg123
@@ -26,7 +27,7 @@ assert pulseSupport -> libpulseaudio != null;
assert cddaSupport -> libcdda != null;
assert youtubeSupport -> youtube-dl != null;
-let qtPath = makeSearchPath "lib/qt5/qml" [ qt5.declarative qt5.quickcontrols ];
+let qtPath = makeSearchPath "lib/qt5/qml" [ qtdeclarative qtquickcontrols ];
in
stdenv.mkDerivation rec {
@@ -42,7 +43,7 @@ stdenv.mkDerivation rec {
buildInputs = with stdenv.lib;
[ libX11 libxcb mesa
- qt5.base qt5.x11extras
+ qtbase qtx11extras
ffmpeg
libchardet
mpg123
@@ -85,7 +86,7 @@ stdenv.mkDerivation rec {
++ optional cddaSupport "--enable-cdda"
;
- nativeBuildInputs = [ pkgconfig perl python which qt5.tools makeWrapper ];
+ nativeBuildInputs = [ pkgconfig perl python which qttools makeWrapper ];
enableParallelBuilding = true;
diff --git a/pkgs/applications/video/clipgrab/default.nix b/pkgs/applications/video/clipgrab/default.nix
index 7d136de779a..4075c87146b 100644
--- a/pkgs/applications/video/clipgrab/default.nix
+++ b/pkgs/applications/video/clipgrab/default.nix
@@ -1,29 +1,15 @@
-{ stdenv, fetchurl, ffmpeg, makeDesktopItem, qt4 }:
+{ stdenv, fetchurl, makeDesktopItem, ffmpeg, qt4 }:
-let version = "3.5.4"; in
+let version = "3.5.5"; in
stdenv.mkDerivation rec {
name = "clipgrab-${version}";
src = fetchurl {
- sha256 = "1zvicmxnkldqnfri8y0q0vx6f5whsc7jc9jcsfzhpw47w92qvx5r";
+ sha256 = "01si6mqfmdwins6l18l6qyhkak0mj4yksbg30qhwywm8wmwl08jd";
# The .tar.bz2 "Download" link is a binary blob, the source is the .tar.gz!
url = "http://download.clipgrab.de/${name}.tar.gz";
};
- meta = with stdenv.lib; {
- inherit version;
- description = "Video downloader for YouTube and other sites";
- longDescription = ''
- ClipGrab is a free downloader and converter for YouTube, Vimeo, Metacafe,
- Dailymotion and many other online video sites. It converts downloaded
- videos to MPEG4, MP3 or other formats in just one easy step.
- '';
- homepage = http://clipgrab.org/;
- license = licenses.gpl3Plus;
- platforms = platforms.linux;
- maintainers = with maintainers; [ nckx ];
- };
-
buildInputs = [ ffmpeg qt4 ];
postPatch = stdenv.lib.optionalString (ffmpeg != null) ''
@@ -53,4 +39,18 @@ stdenv.mkDerivation rec {
install -Dm644 icon.png $out/share/pixmaps/clipgrab.png
cp -r ${desktopItem}/share/applications $out/share
'';
+
+ meta = with stdenv.lib; {
+ inherit version;
+ description = "Video downloader for YouTube and other sites";
+ longDescription = ''
+ ClipGrab is a free downloader and converter for YouTube, Vimeo, Metacafe,
+ Dailymotion and many other online video sites. It converts downloaded
+ videos to MPEG4, MP3 or other formats in just one easy step.
+ '';
+ homepage = http://clipgrab.org/;
+ license = licenses.gpl3Plus;
+ platforms = platforms.linux;
+ maintainers = with maintainers; [ nckx ];
+ };
}
diff --git a/pkgs/applications/video/obs-studio/default.nix b/pkgs/applications/video/obs-studio/default.nix
index 0bd0263005f..2c2a26cc972 100644
--- a/pkgs/applications/video/obs-studio/default.nix
+++ b/pkgs/applications/video/obs-studio/default.nix
@@ -4,7 +4,8 @@
, ffmpeg
, jansson
, libxkbcommon
-, qt5
+, qtbase
+, qtx11extras
, libv4l
, x264
, curl
@@ -34,8 +35,8 @@ in stdenv.mkDerivation rec {
jansson
libv4l
libxkbcommon
- qt5.base
- qt5.x11extras
+ qtbase
+ qtx11extras
x264
]
++ optional pulseaudioSupport libpulseaudio;
diff --git a/pkgs/applications/video/recordmydesktop/default.nix b/pkgs/applications/video/recordmydesktop/default.nix
new file mode 100644
index 00000000000..95c06d54d6e
--- /dev/null
+++ b/pkgs/applications/video/recordmydesktop/default.nix
@@ -0,0 +1,24 @@
+{ stdenv, fetchsvn, automake, autoconf, zlib, popt, xorg, libvorbis, libtheora }:
+
+stdenv.mkDerivation rec {
+ name = "recordmydesktop-${version}";
+ version = "0.3.8.1-svn602";
+
+ src = fetchsvn {
+ url = https://recordmydesktop.svn.sourceforge.net/svnroot/recordmydesktop/trunk/recordmydesktop;
+ rev = 602;
+ sha256 = "1avirkc4ymrd575m616pi6wpgq1i0r5sb3qahps1g18sjpxks0lf";
+ };
+
+ buildInputs = [ automake autoconf zlib popt xorg.libICE xorg.libSM xorg.libX11 xorg.libXext xorg.libXfixes xorg.libXdamage libvorbis libtheora ];
+
+ preConfigure = ''./autogen.sh'';
+
+ meta = with stdenv.lib; {
+ description = "Desktop session recorder";
+ homepage = http://recordmydesktop.sourceforge.net/;
+ license = licenses.gpl2;
+ platforms = platforms.linux;
+ maintainers = [ maintainers.DamienCassou ];
+ };
+}
diff --git a/pkgs/applications/video/shotcut/default.nix b/pkgs/applications/video/shotcut/default.nix
index c0458748c96..74f9c1604b2 100644
--- a/pkgs/applications/video/shotcut/default.nix
+++ b/pkgs/applications/video/shotcut/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchurl, SDL, frei0r, gettext, makeWrapper, mlt, pkgconfig, qt5 }:
+{ stdenv, fetchurl, SDL, frei0r, gettext, makeWrapper, mlt, pkgconfig, qtbase }:
stdenv.mkDerivation rec {
name = "shotcut-${version}";
@@ -9,7 +9,7 @@ stdenv.mkDerivation rec {
sha256 = "1504ds3ppqmpg84nb2gb74qndqysjwn3xw7n8xv19kd1pppnr10f";
};
- buildInputs = [ SDL frei0r gettext makeWrapper mlt pkgconfig qt5.base ];
+ buildInputs = [ SDL frei0r gettext makeWrapper mlt pkgconfig qtbase ];
configurePhase = "qmake PREFIX=$out";
diff --git a/pkgs/applications/video/smplayer/default.nix b/pkgs/applications/video/smplayer/default.nix
index aed5363100b..13c65422227 100644
--- a/pkgs/applications/video/smplayer/default.nix
+++ b/pkgs/applications/video/smplayer/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchurl, qt5 }:
+{ stdenv, fetchurl, qtscript }:
stdenv.mkDerivation rec {
name = "smplayer-15.11.0";
@@ -10,7 +10,7 @@ stdenv.mkDerivation rec {
patches = [ ./basegui.cpp.patch ];
- buildInputs = [ qt5.script ];
+ buildInputs = [ qtscript ];
preConfigure = ''
makeFlags="PREFIX=$out"
diff --git a/pkgs/applications/video/smtube/default.nix b/pkgs/applications/video/smtube/default.nix
index 79dbf576472..bc55f943a88 100644
--- a/pkgs/applications/video/smtube/default.nix
+++ b/pkgs/applications/video/smtube/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchurl, qt5 }:
+{ stdenv, fetchurl, qtscript }:
stdenv.mkDerivation rec {
version = "15.11.0";
@@ -13,7 +13,7 @@ stdenv.mkDerivation rec {
"PREFIX=$(out)"
];
- buildInputs = [ qt5.script ];
+ buildInputs = [ qtscript ];
meta = with stdenv.lib; {
description = "Play and download Youtube videos";
diff --git a/pkgs/applications/video/zdfmediathk/default.nix b/pkgs/applications/video/zdfmediathk/default.nix
index 06342075182..b7f95fccda3 100644
--- a/pkgs/applications/video/zdfmediathk/default.nix
+++ b/pkgs/applications/video/zdfmediathk/default.nix
@@ -4,19 +4,16 @@ with stdenv;
mkDerivation rec {
- version = "9";
+ version = "10";
name = "zdfmediathk-${version}";
src = fetchurl {
- url = "http://downloads.sourceforge.net/project/zdfmediathk/Mediathek/Mediathek%209/MediathekView_${version}.zip";
- sha256 = "1wff0igr33z9p1mjw7yvb6658smdwnp22dv8klz0y8qg116wx7a4";
+ url = "https://github.com/xaverW/MediathekView/archive/Version${version}.tar.gz";
+ sha256 = "12iyigqjslbn8rzym1mq1s0mvss7r97aiy6wfdrq5m0psarlcljw";
};
- buildInputs = [ unzip ];
-
- unpackPhase = "unzip $src";
-
installPhase = ''
mkdir -p $out/{lib,bin,share/{doc,licenses}}
+ cd dist/
install -m644 MediathekView.jar $out/
install -m644 -t $out/lib lib/*
install -m755 bin/flv.sh $out/bin/
@@ -32,7 +29,7 @@ mkDerivation rec {
meta = with stdenv.lib; {
description = "Offers access to the Mediathek of different tv stations (ARD, ZDF, Arte, etc.)";
- homepage = "http://zdfmediathk.sourceforge.net/";
+ homepage = "https://github.com/xaverW/MediathekView/";
license = licenses.gpl3;
maintainers = [ maintainers.flosse ];
platforms = platforms.all;
diff --git a/pkgs/applications/virtualization/docker/default.nix b/pkgs/applications/virtualization/docker/default.nix
index 3380306e165..5a51749652d 100644
--- a/pkgs/applications/virtualization/docker/default.nix
+++ b/pkgs/applications/virtualization/docker/default.nix
@@ -10,13 +10,13 @@ with stdenv.lib;
stdenv.mkDerivation rec {
name = "docker-${version}";
- version = "1.9.0";
+ version = "1.9.1";
src = fetchFromGitHub {
owner = "docker";
repo = "docker";
rev = "v${version}";
- sha256 = "1a1ss210i712fs9mp5hcljb8bdx93lss91sxj9zay0vrmdb84zn2";
+ sha256 = "1mhi4y820h2wxz6hqmr95c7yvklyw578dd9c83jr463w7rq0rgr6";
};
buildInputs = [
@@ -29,7 +29,7 @@ stdenv.mkDerivation rec {
buildPhase = ''
patchShebangs .
export AUTO_GOPATH=1
- export DOCKER_GITCOMMIT="76d6bc9a"
+ export DOCKER_GITCOMMIT="a34a1d59"
./hack/make.sh dynbinary
'';
diff --git a/pkgs/applications/virtualization/rkt/default.nix b/pkgs/applications/virtualization/rkt/default.nix
index c95ccaaf0a8..eb2a5d737a3 100644
--- a/pkgs/applications/virtualization/rkt/default.nix
+++ b/pkgs/applications/virtualization/rkt/default.nix
@@ -2,14 +2,14 @@
, fetchurl, fetchFromGitHub }:
let
- coreosImageRelease = "794.1.0";
- coreosImageSystemdVersion = "222";
+ coreosImageRelease = "835.9.0";
+ coreosImageSystemdVersion = "225";
# TODO: track https://github.com/coreos/rkt/issues/1758 to allow "host" flavor.
stage1Flavours = [ "coreos" ];
in stdenv.mkDerivation rec {
- version = "0.13.0";
+ version = "0.14.0";
name = "rkt-${version}";
BUILDDIR="build-${name}";
@@ -17,12 +17,12 @@ in stdenv.mkDerivation rec {
rev = "v${version}";
owner = "coreos";
repo = "rkt";
- sha256 = "1qx8bzcm5xifr9x2wa83mqz15bk2rpjqabm00wzbqixcyxra9bka";
+ sha256 = "0dmgs9s40xhan2rh9f5n0k5gv8p2dn946zffq02sq35qqvi67s71";
};
stage1BaseImage = fetchurl {
- url = "http://alpha.release.core-os.net/amd64-usr/${coreosImageRelease}/coreos_production_pxe_image.cpio.gz";
- sha256 = "05nzl3av6cawr8v203a8c95c443g6h1nfy2n4jmgvn0j4iyy44ym";
+ url = "http://stable.release.core-os.net/amd64-usr/${coreosImageRelease}/coreos_production_pxe_image.cpio.gz";
+ sha256 = "51dc10b4269b9c1801c233de49da817d29ca8d858bb0881df94dc90f7e86ce70";
};
buildInputs = [ autoconf automake go file git wget gnupg1 squashfsTools cpio ];
diff --git a/pkgs/build-support/emacs/wrapper.nix b/pkgs/build-support/emacs/wrapper.nix
index 4020a1aca33..dc4ff03f9e7 100644
--- a/pkgs/build-support/emacs/wrapper.nix
+++ b/pkgs/build-support/emacs/wrapper.nix
@@ -1,8 +1,49 @@
-{ stdenv, makeWrapper, emacs }:
+/*
-with stdenv.lib;
+# Usage
-explicitRequires: # packages explicitly requested by the user
+`emacsWithPackages` takes a single argument: a function from a package
+set to a list of packages (the packages that will be available in
+Emacs). For example,
+```
+emacsWithPackages (epkgs: [ epkgs.evil epkgs.magit ])
+```
+All the packages in the list should come from the provided package
+set. It is possible to add any package to the list, but the provided
+set is guaranteed to have consistent dependencies and be built with
+the correct version of Emacs.
+
+# Overriding
+
+`emacsWithPackages` inherits the package set which contains it, so the
+correct way to override the provided package set is to override the
+set which contains `emacsWithPackages`. For example, to override
+`emacsPackagesNg.emacsWithPackages`,
+```
+let customEmacsPackages =
+ emacsPackagesNg.override (super: self: {
+ # use a custom version of emacs
+ emacs = ...;
+ # use the unstable MELPA version of magit
+ magit = self.melpaPackages.magit;
+ });
+in customEmacsPackages.emacsWithPackages (epkgs: [ epkgs.evil epkgs.magit ])
+```
+
+*/
+
+{ lib, makeWrapper, stdenv }: self:
+
+with lib; let inherit (self) emacs; in
+
+packagesFun: # packages explicitly requested by the user
+
+let
+ explicitRequires =
+ if builtins.isFunction packagesFun
+ then packagesFun self
+ else packagesFun;
+in
stdenv.mkDerivation {
name = (appendToName "with-packages" emacs).name;
diff --git a/pkgs/build-support/fetchbzr/nix-prefetch-bzr b/pkgs/build-support/fetchbzr/nix-prefetch-bzr
index 8143fca7025..dbe8a7ef801 100755
--- a/pkgs/build-support/fetchbzr/nix-prefetch-bzr
+++ b/pkgs/build-support/fetchbzr/nix-prefetch-bzr
@@ -26,8 +26,7 @@ repoName=$(echo $url | sed '
s,.*/\([^/]\+\)/tags/\([^/]\+\)/*$,\1-\2,;t
s,.*/\([^/]\+\)/*$,\1,;t
')
-dstFile=$repoName-r$rev
-test -n "$rev" || dstFile=$repoName
+dstFile="bzr-export"
# If the hash was given, a file with that hash may already be in the
# store.
diff --git a/pkgs/build-support/fetchzip/nix-prefetch-zip b/pkgs/build-support/fetchzip/nix-prefetch-zip
index ccc03e087e5..ea55643668d 100755
--- a/pkgs/build-support/fetchzip/nix-prefetch-zip
+++ b/pkgs/build-support/fetchzip/nix-prefetch-zip
@@ -73,7 +73,7 @@ mkdir -p $unpackDirTmp
unpackDir=$tmp/unpacked/$name
mkdir -p $unpackDir
-downloadedFile=$tmp/$name
+downloadedFile=$tmp/$(basename "$url")
unpackFile() {
local curSrc="$1"
diff --git a/pkgs/data/documentation/zeal/default.nix b/pkgs/data/documentation/zeal/default.nix
index a6c77deb12e..0f02bb7dc94 100644
--- a/pkgs/data/documentation/zeal/default.nix
+++ b/pkgs/data/documentation/zeal/default.nix
@@ -1,4 +1,5 @@
-{ stdenv, fetchFromGitHub, pkgconfig, qt5, libarchive, xorg }:
+{ stdenv, fetchFromGitHub, libarchive, pkgconfig, qtbase
+, qtimageformats, qtwebkit, xorg }:
stdenv.mkDerivation rec {
version = "0.1.1";
@@ -12,7 +13,7 @@ stdenv.mkDerivation rec {
};
buildInputs = [
- xorg.xcbutilkeysyms pkgconfig qt5.base qt5.webkit qt5.imageformats libarchive
+ xorg.xcbutilkeysyms pkgconfig qtbase qtimageformats qtwebkit libarchive
];
configurePhase = ''
diff --git a/pkgs/data/fonts/fira-code/default.nix b/pkgs/data/fonts/fira-code/default.nix
index 1ed63f7ac9e..92caf866eec 100644
--- a/pkgs/data/fonts/fira-code/default.nix
+++ b/pkgs/data/fonts/fira-code/default.nix
@@ -1,19 +1,20 @@
-{ stdenv, fetchurl }:
+{ stdenv, fetchurl, unzip }:
stdenv.mkDerivation rec {
name = "fira-code-${version}";
- version = "0.6";
+ version = "1.101";
src = fetchurl {
- url = "https://github.com/tonsky/FiraCode/releases/download/${version}/FiraCode-Regular.otf";
- sha256 = "1blalxnmrxqlm5i74jhm8j29n0zsnmqi3gppxa9szjzv4x2k5s0a";
+ url = "https://github.com/tonsky/FiraCode/releases/download/${version}/FiraCode_${version}.zip";
+ sha256 = "0wbjk4cyibyjp7kjvwnm7as1ch312zwjbi469v26sl41svf53s5v";
};
- phases = [ "installPhase" ];
+ buildInputs = [ unzip ];
+ phases = [ "unpackPhase" "installPhase" ];
installPhase = ''
mkdir -p $out/share/fonts/opentype
- cp -v $src $out/share/fonts/opentype/FiraCode-Regular.otf
+ cp -v *.otf $out/share/fonts/opentype
'';
meta = with stdenv.lib; {
diff --git a/pkgs/data/fonts/gdouros/default.nix b/pkgs/data/fonts/gdouros/default.nix
index 8ad6068a185..114b88c3040 100644
--- a/pkgs/data/fonts/gdouros/default.nix
+++ b/pkgs/data/fonts/gdouros/default.nix
@@ -1,13 +1,13 @@
{stdenv, fetchurl, unzip, lib }:
let
fonts = {
- aegean = { version = "8.00"; file = "Aegean.zip"; sha256 = "09pmazcpxhkx3l8h4gxiixihi1c49pli5gvlcm1b6sbf4xvf9kwm";
+ aegean = { version = "8.00"; file = "Aegean.zip"; sha256 = "0jhj4i0262f4zbm979fm01rnvc91a00kwkbcgvzs281256g2ciny";
description = "Scripts and symbols of the Aegean world"; };
- textfonts = { version = "6.00"; file = "Textfonts.zip"; sha256 = "10m6kpyj8cc0b4qxxi78akiyjxcbhxj2wmbicdcfh008jibbaxsz";
+ textfonts = { version = "6.00"; file = "Textfonts.zip"; sha256 = "06igp3hdql0yfaj9h2ahh5n7yvj2ni7rj2jdmz534f9618l8qi6r";
description = "Fonts based on early Greek editions"; };
symbola = { version = "8.00"; file = "Symbola.zip"; sha256 = "1lfs2j816332ysvpb5ibj2gwpmyqyispqdl7skkshf2gra18hmhd";
description = "Basic Latin, Greek, Cyrillic and many Symbol blocks of Unicode"; };
- aegyptus = { version = "6.00"; file = "Aegyptus.zip"; sha256 = "092vci45wp9x0yky6dcfky4bs4avaxn6xpai3bs74gxskd2j9s3q";
+ aegyptus = { version = "6.00"; file = "Aegyptus.zip"; sha256 = "10mr54ja9b169fhqfkrw510jybghrpjx7a8a7m38k5v39ck8wz6v";
description = "Egyptian Hieroglyphs, Coptic, Meroitic"; };
akkadian = { version = "7.13"; file = "Akkadian.zip"; sha256 = "1jd2fb6jnwpdwgkidsi2pnw0nk2cpya8k85299w591sqslfkxyij";
description = "Sumero-Akkadian Cuneiform"; };
diff --git a/pkgs/data/fonts/iosevka/default.nix b/pkgs/data/fonts/iosevka/default.nix
index 6f5c5a1a55d..aded5b1cddf 100644
--- a/pkgs/data/fonts/iosevka/default.nix
+++ b/pkgs/data/fonts/iosevka/default.nix
@@ -1,24 +1,26 @@
-{ stdenv, lib, fetchurl }:
+{ stdenv, lib, fetchFromGitHub }:
stdenv.mkDerivation rec {
name = "iosevka-${version}";
- version = "1.0-beta9";
- src = fetchurl {
- url = "https://github.com/be5invis/Iosevka/releases/download/${version}/${name}.tar.bz2";
- sha256 = "1vw34zh8nh6s2dpyw3a1q44wkgrsin1a8b0vnk7hms8s8fw65734";
+ version = "1.4.2";
+
+ src = fetchFromGitHub {
+ owner = "be5invis";
+ repo = "Iosevka";
+ rev = "v${version}";
+ sha256 = "1h1lmvjpjk0238bhdhnv2c149s98qpbndc8rxzlk6bhmxcy6rwsk";
};
- unpackPhase = ''
- tar xf "$src"
- '';
+
installPhase = ''
fontdir=$out/share/fonts/iosevka
mkdir -p $fontdir
cp -v iosevka-* $fontdir
'';
- buildInputs = [ ];
+
meta = with lib; {
homepage = "http://be5invis.github.io/Iosevka/";
+ downloadPage = "https://github.com/be5invis/Iosevka/releases";
description = ''
Slender monospace sans-serif and slab-serif typeface inspired by Pragmata
Pro, M+ and PF DIN Mono, designed to be the ideal font for programming.
diff --git a/pkgs/data/fonts/ipaexfont/default.nix b/pkgs/data/fonts/ipaexfont/default.nix
new file mode 100644
index 00000000000..ab163dcca9f
--- /dev/null
+++ b/pkgs/data/fonts/ipaexfont/default.nix
@@ -0,0 +1,31 @@
+{ stdenv, fetchurl, unzip }:
+
+stdenv.mkDerivation rec {
+ name = "ipaexfont-003.01";
+
+ src = fetchurl {
+ url = "http://dl.ipafont.ipa.go.jp/IPAexfont/IPAexfont00301.zip";
+ sha256 = "0nmfyh10rzkvp0qmrla0dahkmmxq47678y4v8fdm8fpdzmf0kpn7";
+ };
+
+ buildInputs = [ unzip ];
+
+ installPhase = ''
+ mkdir -p $out/share/fonts/opentype/
+ cp *.ttf $out/share/fonts/opentype/
+ '';
+
+ meta = with stdenv.lib; {
+ description = "Japanese font package with Mincho and Gothic fonts";
+ longDescription = ''
+ IPAex font is a Japanese font developed by the Information-technology
+ Promotion Agency of Japan. It provides both Mincho and Gothic fonts,
+ suitable for both display and printing.
+
+ This is the successor to the IPA fonts.
+ '';
+ homepage = http://ipafont.ipa.go.jp/;
+ license = licenses.ipa;
+ maintainers = with maintainers; [ gebner ];
+ };
+}
diff --git a/pkgs/data/icons/vanilla-dmz/default.nix b/pkgs/data/icons/vanilla-dmz/default.nix
new file mode 100644
index 00000000000..3b80781f414
--- /dev/null
+++ b/pkgs/data/icons/vanilla-dmz/default.nix
@@ -0,0 +1,31 @@
+{ stdenv, lib, fetchzip, xorg }:
+
+stdenv.mkDerivation rec {
+ name = "vanilla-dmz-${version}";
+ version = "0.4.4";
+ src = fetchzip {
+ url = "http://ftp.de.debian.org/debian/pool/main/d/dmz-cursor-theme/dmz-cursor-theme_${version}.tar.gz";
+ sha256 = "1l0c0svk7dy0d7icg7j2181wdn3fvks5gmyqnvjk749ppy5ks8mj";
+ };
+ buildInputs = [ xorg.xcursorgen ];
+ buildPhase = ''
+ cd DMZ-White/pngs; ./make.sh; cd -
+ cd DMZ-Black/pngs; ./make.sh; cd -
+ '';
+ installPhase = ''
+ install -d $out/share/icons/Vanilla-DMZ/cursors
+ cp -a DMZ-White/xcursors/* $out/share/icons/Vanilla-DMZ/cursors
+ install -Dm644 DMZ-White/index.theme $out/share/icons/Vanilla-DMZ/index.theme
+
+ install -d $out/share/icons/Vanilla-DMZ-AA/cursors
+ cp -a DMZ-Black/xcursors/* $out/share/icons/Vanilla-DMZ-AA/cursors
+ install -Dm644 DMZ-Black/index.theme $out/share/icons/Vanilla-DMZ-AA/index.theme
+ '';
+ meta = with lib; {
+ homepage = "http://jimmac.musichall.cz";
+ description = "A style neutral scalable cursor theme.";
+ platforms = platforms.all;
+ license = licenses.cc-by-nc-sa-30;
+ maintainers = with maintainers; [ cstrahan ];
+ };
+}
diff --git a/pkgs/desktops/plasma-5.5/polkit-kde-agent.nix b/pkgs/desktops/plasma-5.5/polkit-kde-agent.nix
index 0173ec65516..3fc3a441ac3 100644
--- a/pkgs/desktops/plasma-5.5/polkit-kde-agent.nix
+++ b/pkgs/desktops/plasma-5.5/polkit-kde-agent.nix
@@ -9,7 +9,7 @@
, kconfig
, kiconthemes
, knotifications
-, polkitQt
+, polkit-qt
}:
plasmaPackage {
@@ -25,7 +25,7 @@ plasmaPackage {
kconfig
kiconthemes
knotifications
- polkitQt
+ polkit-qt
];
propagatedBuildInputs = [ ki18n kwindowsystem ];
}
diff --git a/pkgs/development/compilers/kotlin/default.nix b/pkgs/development/compilers/kotlin/default.nix
index e97309f9252..9b7c97c8c25 100644
--- a/pkgs/development/compilers/kotlin/default.nix
+++ b/pkgs/development/compilers/kotlin/default.nix
@@ -1,12 +1,12 @@
{ stdenv, fetchurl, makeWrapper, jre, unzip, which }:
stdenv.mkDerivation rec {
- version = "1.0.0-beta-3595";
+ version = "1.0.0-beta-4583";
name = "kotlin-${version}";
src = fetchurl {
url = "https://github.com/JetBrains/kotlin/releases/download/build-${version}/kotlin-compiler-${version}.zip";
- sha256 = "1ed750a169a411349852a102d5a9c23aec656acb76d51018a4933741eb846fae";
+ sha256 = "4db71d3c1f150618568ebd1f8c17567ff15afe022c2f0121368c17afad9e8188";
};
propagatedBuildInputs = [ jre which ] ;
@@ -27,7 +27,7 @@ stdenv.mkDerivation rec {
longDescription = ''
Kotlin is a statically typed language that targets the JVM and JavaScript.
It is a general-purpose language intended for industry use.
- It is developed by a team at JetBrains although it is an OSS language
+ It is developed by a team at JetBrains although it is an OSS language
and has external contributors.
'';
homepage = http://kotlinlang.org/;
diff --git a/pkgs/development/compilers/matter-compiler/Gemfile b/pkgs/development/compilers/matter-compiler/Gemfile
new file mode 100644
index 00000000000..21ec2345205
--- /dev/null
+++ b/pkgs/development/compilers/matter-compiler/Gemfile
@@ -0,0 +1,3 @@
+source "https://rubygems.org"
+
+gem 'matter_compiler'
diff --git a/pkgs/development/compilers/matter-compiler/Gemfile.lock b/pkgs/development/compilers/matter-compiler/Gemfile.lock
new file mode 100644
index 00000000000..2eefe96ec63
--- /dev/null
+++ b/pkgs/development/compilers/matter-compiler/Gemfile.lock
@@ -0,0 +1,13 @@
+GEM
+ remote: https://rubygems.org/
+ specs:
+ matter_compiler (0.5.1)
+
+PLATFORMS
+ ruby
+
+DEPENDENCIES
+ matter_compiler
+
+BUNDLED WITH
+ 1.10.6
diff --git a/pkgs/development/compilers/matter-compiler/default.nix b/pkgs/development/compilers/matter-compiler/default.nix
new file mode 100644
index 00000000000..12da620fe5b
--- /dev/null
+++ b/pkgs/development/compilers/matter-compiler/default.nix
@@ -0,0 +1,22 @@
+
+{ stdenv, lib, bundlerEnv, ruby }:
+
+bundlerEnv {
+ name = "matter_compiler-0.5.1";
+
+ inherit ruby;
+ gemfile = ./Gemfile;
+ lockfile = ./Gemfile.lock;
+ gemset = ./gemset.nix;
+
+ meta = with lib; {
+ description = ''
+ Matter Compiler is a API Blueprint AST Media Types to API Blueprint conversion tool.
+ It composes an API blueprint from its serialzed AST media-type.
+ '';
+ homepage = https://github.com/apiaryio/matter_compiler/;
+ license = licenses.mit;
+ maintainers = with maintainers; [ rvlander ];
+ platforms = platforms.unix;
+ };
+}
diff --git a/pkgs/development/compilers/matter-compiler/gemset.nix b/pkgs/development/compilers/matter-compiler/gemset.nix
new file mode 100644
index 00000000000..9ac7ae8d20e
--- /dev/null
+++ b/pkgs/development/compilers/matter-compiler/gemset.nix
@@ -0,0 +1,9 @@
+{
+ "matter_compiler" = {
+ version = "0.5.1";
+ source = {
+ type = "gem";
+ sha256 = "16501zdiqxk34v2d0nlbwrcrjm6g57hrsmsw0crwssn29v5zbykf";
+ };
+ };
+}
\ No newline at end of file
diff --git a/pkgs/development/coq-modules/mathcomp/default.nix b/pkgs/development/coq-modules/mathcomp/default.nix
index 7c34e186717..189b1220640 100644
--- a/pkgs/development/coq-modules/mathcomp/default.nix
+++ b/pkgs/development/coq-modules/mathcomp/default.nix
@@ -4,15 +4,15 @@ let src =
if coq.coq-version == "8.4" then
fetchurl {
- url = http://ssr.msr-inria.inria.fr/FTP/mathcomp-1.5.tar.gz;
- sha256 = "1297svwi18blrlyd8vsqilar2h5nfixlvlifdkbx47aljq4m5bam";
+ url = http://ssr.msr-inria.inria.fr/FTP/mathcomp-1.6.tar.gz;
+ sha256 = "0adr556032r1jkvphbpfvrrv041qk0yqb7a1xnbam52ji0mdl2w8";
}
else if coq.coq-version == "8.5" then
fetchurl {
- url = http://ssr.msr-inria.inria.fr/FTP/mathcomp-1.5.coq85beta2.tar.gz;
- sha256 = "03bnq44ym43x8shi7whc02l0g5vy6rx8f1imjw478chlgwcxazqy";
+ url = http://ssr.msr-inria.inria.fr/FTP/mathcomp-1.6.tar.gz;
+ sha256 = "0adr556032r1jkvphbpfvrrv041qk0yqb7a1xnbam52ji0mdl2w8";
}
else throw "No mathcomp package for Coq version ${coq.coq-version}";
diff --git a/pkgs/development/coq-modules/mathcomp/generic.nix b/pkgs/development/coq-modules/mathcomp/generic.nix
index 56838734b6d..b4048aa8003 100644
--- a/pkgs/development/coq-modules/mathcomp/generic.nix
+++ b/pkgs/development/coq-modules/mathcomp/generic.nix
@@ -1,25 +1,33 @@
-{ stdenv, fetchurl, coq, ssreflect
-, graphviz, ocamlPackages, withDoc ? true
+{ stdenv, fetchurl, coq, ssreflect, ncurses, which
+, graphviz, ocamlPackages, withDoc ? false
, src
}:
stdenv.mkDerivation {
- name = "coq-mathcomp-1.5-${coq.coq-version}";
+ name = "coq-mathcomp-1.6-${coq.coq-version}";
inherit src;
- nativeBuildInputs = stdenv.lib.optionals withDoc
- ([ graphviz ] ++ (with ocamlPackages; [ ocaml camlp5_transitional ]));
- propagatedBuildInputs = [ ssreflect ];
+ nativeBuildInputs = stdenv.lib.optionals withDoc [ graphviz ];
+ buildInputs = [ coq.ocaml coq.camlp5 ncurses which ];
+ propagatedBuildInputs = [ coq ssreflect ];
enableParallelBuilding = true;
buildFlags = stdenv.lib.optionalString withDoc "doc";
- installFlags = "COQLIB=$(out)/lib/coq/${coq.coq-version}/";
+ preBuild = ''
+ cd mathcomp
+ export COQBIN=${coq}/bin/
+ '';
- postInstall = stdenv.lib.optionalString withDoc ''
+ installPhase = ''
+ make -f Makefile.coq COQLIB=$out/lib/coq/${coq.coq-version}/ install
+ rm -fr $out/lib/coq/${coq.coq-version}/user-contrib/mathcomp/ssreflect*
+ rm -fr $out/lib/coq/${coq.coq-version}/user-contrib/ssrmatching.cmi
+ rm -fr $out/share/coq/${coq.coq-version}/user-contrib/mathcomp/ssreflect*
+ '' + stdenv.lib.optionalString withDoc ''
make -f Makefile.coq install-doc DOCDIR=$out/share/coq/${coq.coq-version}/
'';
diff --git a/pkgs/development/coq-modules/ssreflect/default.nix b/pkgs/development/coq-modules/ssreflect/default.nix
index a0b0d951c0d..8ba49d06bae 100644
--- a/pkgs/development/coq-modules/ssreflect/default.nix
+++ b/pkgs/development/coq-modules/ssreflect/default.nix
@@ -5,8 +5,8 @@ if coq.coq-version == "8.4" then
callPackage ./generic.nix {
src = fetchurl {
- url = http://ssr.msr-inria.inria.fr/FTP/ssreflect-1.5.tar.gz;
- sha256 = "0hm1ha7sxqfqhc7iwhx6zdz3nki4rj5nfd3ab24hmz8v7mlpinds";
+ url = http://ssr.msr-inria.inria.fr/FTP/mathcomp-1.6.tar.gz;
+ sha256 = "0adr556032r1jkvphbpfvrrv041qk0yqb7a1xnbam52ji0mdl2w8";
};
}
@@ -16,12 +16,10 @@ else if coq.coq-version == "8.5" then
callPackage ./generic.nix {
src = fetchurl {
- url = http://ssr.msr-inria.inria.fr/FTP/ssreflect-1.5.coq85beta2.tar.gz;
- sha256 = "084l9xd5vgb8jml0dkm66g8cil5rsf04w821pjhn2qk9mdbwaagf";
+ url = http://ssr.msr-inria.inria.fr/FTP/mathcomp-1.6.tar.gz;
+ sha256 = "0adr556032r1jkvphbpfvrrv041qk0yqb7a1xnbam52ji0mdl2w8";
};
- patches = [ ./threads.patch ];
-
}
else throw "No ssreflect package for Coq version ${coq.coq-version}"
diff --git a/pkgs/development/coq-modules/ssreflect/generic.nix b/pkgs/development/coq-modules/ssreflect/generic.nix
index 3bfccab0be7..d7303ad8852 100644
--- a/pkgs/development/coq-modules/ssreflect/generic.nix
+++ b/pkgs/development/coq-modules/ssreflect/generic.nix
@@ -1,39 +1,38 @@
-{ stdenv, fetchurl, coq, ncurses
-, graphviz, withDoc ? true
+{ stdenv, fetchurl, coq, ncurses, which
+, graphviz, withDoc ? false
, src, patches ? []
}:
stdenv.mkDerivation {
- name = "coq-ssreflect-1.5-${coq.coq-version}";
+ name = "coq-ssreflect-1.6-${coq.coq-version}";
inherit src;
nativeBuildInputs = stdenv.lib.optionals withDoc [ graphviz ];
- buildInputs = [ coq.ocaml coq.camlp5 ncurses ];
+ buildInputs = [ coq.ocaml coq.camlp5 ncurses which ];
propagatedBuildInputs = [ coq ];
enableParallelBuilding = true;
inherit patches;
- postPatch = ''
- # Permit building of the ssrcoq statically-bound executable
- sed -i 's/^#-custom/-custom/' Make
- sed -i 's/^#SSRCOQ/SSRCOQ/' Make
+ preBuild = ''
+ cd mathcomp/ssreflect
+ export COQBIN=${coq}/bin/
'';
- buildFlags = stdenv.lib.optionalString withDoc "doc";
-
- installFlags = "COQLIB=$(out)/lib/coq/${coq.coq-version}/";
+ installPhase = ''
+ make -f Makefile.coq COQLIB=$out/lib/coq/${coq.coq-version}/ install
+ '';
postInstall = ''
- mkdir -p $out/bin
- cp -p bin/ssrcoq $out/bin
- cp -p bin/ssrcoq.byte $out/bin
+ # mkdir -p $out/bin
+ # cp -p bin/ssrcoq $out/bin
+ # cp -p bin/ssrcoq.byte $out/bin
'' + stdenv.lib.optionalString withDoc ''
- mkdir -p $out/share/doc/coq/${coq.coq-version}/user-contrib/Ssreflect/
- cp -r html $out/share/doc/coq/${coq.coq-version}/user-contrib/Ssreflect/
+ mkdir -p $out/share/doc/coq/${coq.coq-version}/user-contrib/mathcomp/ssreflect/
+ cp -r html $out/share/doc/coq/${coq.coq-version}/user-contrib/mathcomp/ssreflect/
'';
meta = with stdenv.lib; {
diff --git a/pkgs/development/erlang-modules/build-erlang.nix b/pkgs/development/erlang-modules/build-erlang.nix
index 19320f0394c..e662166741a 100644
--- a/pkgs/development/erlang-modules/build-erlang.nix
+++ b/pkgs/development/erlang-modules/build-erlang.nix
@@ -1,3 +1,6 @@
+# This file is not used not tested at this time, build-hex.nix is the currently
+# main vehicle of bringing Erlang packages in.
+
{ stdenv, erlang, rebar, openssl, libyaml }:
{ name, version
diff --git a/pkgs/development/erlang-modules/build-hex.nix b/pkgs/development/erlang-modules/build-hex.nix
index 041a7db48a9..7ba8fab9bd2 100644
--- a/pkgs/development/erlang-modules/build-hex.nix
+++ b/pkgs/development/erlang-modules/build-hex.nix
@@ -1,5 +1,5 @@
{ stdenv, erlang, rebar3, openssl, libyaml, fetchHex, fetchFromGitHub,
- rebar3-pc }:
+ rebar3-pc, buildEnv }:
{ name, version, sha256
, hexPkg ? name
@@ -11,79 +11,99 @@
with stdenv.lib;
-stdenv.mkDerivation (attrs // {
- name = "${name}-${version}";
+let
+ plugins = pluginDeps ++ (if compilePorts then [rebar3-pc] else []);
+ getDeps = drv: [drv] ++ (map getDeps drv.erlangDeps);
+ recursiveDeps = unique (flatten (map getDeps erlangDeps));
+ recursivePluginsDeps = unique (flatten (map getDeps plugins));
- buildInputs = buildInputs ++ [ erlang rebar3 openssl libyaml ];
-
- src = fetchHex {
- pkg = hexPkg;
- inherit version;
- inherit sha256;
+ erlEnv = drv: buildEnv {
+ name = "erlang-env-${drv.name}";
+ paths = [ drv ] ++ recursiveDeps;
+ ignoreCollisions = false;
+ meta = drv.meta;
};
- postPatch = ''
- rm -f rebar rebar3
- if [ -e "src/${name}.app.src" ]; then
- sed -i -e 's/{ *vsn *,[^}]*}/{vsn, "${version}"}/' "src/${name}.app.src"
- fi
-
- ${if compilePorts then ''
- echo "{plugins, [pc]}." >> rebar.config
- '' else ''''}
-
- ${rebar3.setupRegistry}
-
- ${postPatch}
- '';
-
- configurePhase = let
- plugins = pluginDeps ++ (if compilePorts then [rebar3-pc] else []);
- getDeps = drv: [drv] ++ (map getDeps drv.erlangDeps);
- recursiveDeps = unique (flatten (map getDeps erlangDeps));
- recursivePluginsDeps = unique (flatten (map getDeps plugins));
- in ''
- runHook preConfigure
- ${concatMapStrings (dep: ''
- header "linking erlang dependency ${dep}"
- ln -s "${dep}" "_build/default/lib/${dep.packageName}"
- stopNest
- '') recursiveDeps}
- ${concatMapStrings (dep: ''
- header "linking rebar3 plugins ${dep}"
- ln -s "${dep}" "_build/default/plugins/${dep.packageName}"
- stopNest
- '') recursivePluginsDeps}
- runHook postConfigure
- '';
-
- buildPhase = ''
- runHook preBuild
- HOME=. rebar3 compile
- ${if compilePorts then ''
- HOME=. rebar3 pc compile
- '' else ''''}
- runHook postBuild
- '';
-
- installPhase = ''
- runHook preInstall
- mkdir "$out"
- for reldir in src ebin priv include; do
- fd="_build/default/lib/${name}/$reldir"
- [ -d "$fd" ] || continue
- cp -Hrt "$out" "$fd"
- success=1
- done
- runHook postInstall
- '';
-
- meta = {
- inherit (erlang.meta) platforms;
- } // meta;
-
- passthru = {
- packageName = name;
- inherit erlangDeps;
+ shell = drv: let
+ drvEnv = erlEnv drv;
+ in stdenv.mkDerivation {
+ name = "interactive-shell-${drv.name}";
+ nativeBuildInputs = [ erlang drvEnv ];
+ shellHook = ''
+ export ERL_LIBS="${drvEnv}";
+ '';
};
-})
+ pkg = self: stdenv.mkDerivation (attrs // {
+ name = "${name}-${version}";
+
+ buildInputs = buildInputs ++ [ erlang rebar3 openssl libyaml ];
+
+ src = fetchHex {
+ pkg = hexPkg;
+ inherit version;
+ inherit sha256;
+ };
+
+ postPatch = ''
+ rm -f rebar rebar3
+ if [ -e "src/${name}.app.src" ]; then
+ sed -i -e 's/{ *vsn *,[^}]*}/{vsn, "${version}"}/' "src/${name}.app.src"
+ fi
+
+ ${if compilePorts then ''
+ echo "{plugins, [pc]}." >> rebar.config
+ '' else ''''}
+
+ ${rebar3.setupRegistry}
+
+ ${postPatch}
+ '';
+
+ configurePhase = ''
+ runHook preConfigure
+ ${concatMapStrings (dep: ''
+ header "linking erlang dependency ${dep}"
+ ln -s "${dep}/${dep.name}" "_build/default/lib/${dep.name}"
+ stopNest
+ '') recursiveDeps}
+ ${concatMapStrings (dep: ''
+ header "linking rebar3 plugins ${dep}"
+ ln -s "${dep}/${dep.name}" "_build/default/plugins/${dep.name}"
+ stopNest
+ '') recursivePluginsDeps}
+ runHook postConfigure
+ '';
+
+ buildPhase = ''
+ runHook preBuild
+ HOME=. rebar3 compile
+ ${if compilePorts then ''
+ HOME=. rebar3 pc compile
+ '' else ''''}
+ runHook postBuild
+ '';
+
+ installPhase = ''
+ runHook preInstall
+ mkdir -p "$out/${name}"
+ for reldir in src ebin priv include; do
+ fd="_build/default/lib/${name}/$reldir"
+ [ -d "$fd" ] || continue
+ cp -Hrt "$out/${name}" "$fd"
+ success=1
+ done
+ runHook postInstall
+ '';
+
+ meta = {
+ inherit (erlang.meta) platforms;
+ } // meta;
+
+ passthru = {
+ packageName = name;
+ env = shell self;
+ inherit erlangDeps;
+ };
+ });
+in
+ fix pkg
diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix
index f7fe236da35..c2ed3647113 100644
--- a/pkgs/development/haskell-modules/configuration-common.nix
+++ b/pkgs/development/haskell-modules/configuration-common.nix
@@ -66,11 +66,13 @@ self: super: {
# build which has the assistant to be used in the top-level.
git-annex_5_20150727 = (disableCabalFlag super.git-annex_5_20150727 "assistant").override {
dbus = if pkgs.stdenv.isLinux then self.dbus else null;
+ lsof = if pkgs.stdenv.isLinux then pkgs.lsof else null;
fdo-notify = if pkgs.stdenv.isLinux then self.fdo-notify else null;
hinotify = if pkgs.stdenv.isLinux then self.hinotify else self.fsnotify;
};
git-annex = (disableCabalFlag super.git-annex "assistant").override {
dbus = if pkgs.stdenv.isLinux then self.dbus else null;
+ lsof = if pkgs.stdenv.isLinux then pkgs.lsof else null;
fdo-notify = if pkgs.stdenv.isLinux then self.fdo-notify else null;
hinotify = if pkgs.stdenv.isLinux then self.hinotify else self.fsnotify;
};
@@ -136,9 +138,6 @@ self: super: {
# Foreign dependency name clashes with another Haskell package.
libarchive-conduit = super.libarchive-conduit.override { archive = pkgs.libarchive; };
- # https://github.com/haskell/time/issues/23
- time_1_5_0_1 = dontCheck super.time_1_5_0_1;
-
# Switch levmar build to openblas.
bindings-levmar = overrideCabal super.bindings-levmar (drv: {
preConfigure = ''
@@ -253,6 +252,7 @@ self: super: {
glib = addPkgconfigDepend super.glib pkgs.glib;
gtk3 = super.gtk3.override { inherit (pkgs) gtk3; };
gtk = addPkgconfigDepend super.gtk pkgs.gtk;
+ gtksourceview2 = (addPkgconfigDepend super.gtksourceview2 pkgs.gtk2).override { inherit (pkgs.gnome2) gtksourceview; };
gtksourceview3 = super.gtksourceview3.override { inherit (pkgs.gnome3) gtksourceview; };
# Need WebkitGTK, not just webkit.
diff --git a/pkgs/development/haskell-modules/configuration-ghc-6.12.x.nix b/pkgs/development/haskell-modules/configuration-ghc-6.12.x.nix
index 06fedc6a1c4..6d4e7a7bb25 100644
--- a/pkgs/development/haskell-modules/configuration-ghc-6.12.x.nix
+++ b/pkgs/development/haskell-modules/configuration-ghc-6.12.x.nix
@@ -41,7 +41,7 @@ self: super: {
unix = null;
# These packages are core libraries in GHC 7.10.x, but not here.
- binary = self.binary_0_7_6_1;
+ binary = self.binary_0_8_0_0;
deepseq = self.deepseq_1_3_0_1;
haskeline = self.haskeline_0_7_2_1;
hoopl = self.hoopl_3_10_2_0;
diff --git a/pkgs/development/haskell-modules/configuration-ghc-7.0.x.nix b/pkgs/development/haskell-modules/configuration-ghc-7.0.x.nix
index cc5d03f05f5..3173189c430 100644
--- a/pkgs/development/haskell-modules/configuration-ghc-7.0.x.nix
+++ b/pkgs/development/haskell-modules/configuration-ghc-7.0.x.nix
@@ -35,7 +35,7 @@ self: super: {
unix = null;
# These packages are core libraries in GHC 7.10.x, but not here.
- binary = self.binary_0_7_6_1;
+ binary = self.binary_0_8_0_0;
deepseq = self.deepseq_1_3_0_1;
haskeline = self.haskeline_0_7_2_1;
hoopl = self.hoopl_3_10_2_0;
diff --git a/pkgs/development/haskell-modules/configuration-ghc-7.2.x.nix b/pkgs/development/haskell-modules/configuration-ghc-7.2.x.nix
index b79cdb6da97..51962f161fc 100644
--- a/pkgs/development/haskell-modules/configuration-ghc-7.2.x.nix
+++ b/pkgs/development/haskell-modules/configuration-ghc-7.2.x.nix
@@ -42,7 +42,7 @@ self: super: {
xhtml = self.xhtml_3000_2_1;
# https://github.com/haskell/cabal/issues/2322
- Cabal_1_22_4_0 = super.Cabal_1_22_4_0.override { binary = self.binary_0_7_6_1; process = self.process_1_2_3_0; };
+ Cabal_1_22_4_0 = super.Cabal_1_22_4_0.override { binary = self.binary_0_8_0_0; process = self.process_1_2_3_0; };
# Newer versions don't compile.
Cabal_1_18_1_6 = dontJailbreak super.Cabal_1_18_1_6;
diff --git a/pkgs/development/haskell-modules/configuration-ghc-7.4.x.nix b/pkgs/development/haskell-modules/configuration-ghc-7.4.x.nix
index 693c0b1d522..f1774c04a8f 100644
--- a/pkgs/development/haskell-modules/configuration-ghc-7.4.x.nix
+++ b/pkgs/development/haskell-modules/configuration-ghc-7.4.x.nix
@@ -41,10 +41,10 @@ self: super: {
xhtml = self.xhtml_3000_2_1;
# https://github.com/haskell/cabal/issues/2322
- Cabal_1_22_4_0 = super.Cabal_1_22_4_0.override { binary = dontCheck self.binary_0_7_6_1; };
+ Cabal_1_22_4_0 = super.Cabal_1_22_4_0.override { binary = dontCheck self.binary_0_8_0_0; };
# Avoid inconsistent 'binary' versions from 'text' and 'Cabal'.
- cabal-install = super.cabal-install.overrideScope (self: super: { binary = dontCheck self.binary_0_7_6_1; });
+ cabal-install = super.cabal-install.overrideScope (self: super: { binary = dontCheck self.binary_0_8_0_0; });
# https://github.com/tibbe/hashable/issues/85
hashable = dontCheck super.hashable;
diff --git a/pkgs/development/haskell-modules/configuration-ghc-7.6.x.nix b/pkgs/development/haskell-modules/configuration-ghc-7.6.x.nix
index a1ce7cf68d6..4716766226a 100644
--- a/pkgs/development/haskell-modules/configuration-ghc-7.6.x.nix
+++ b/pkgs/development/haskell-modules/configuration-ghc-7.6.x.nix
@@ -40,10 +40,10 @@ self: super: {
xhtml = self.xhtml_3000_2_1;
# https://github.com/haskell/cabal/issues/2322
- Cabal_1_22_4_0 = super.Cabal_1_22_4_0.override { binary = dontCheck self.binary_0_7_6_1; };
+ Cabal_1_22_4_0 = super.Cabal_1_22_4_0.override { binary = dontCheck self.binary_0_8_0_0; };
# Avoid inconsistent 'binary' versions from 'text' and 'Cabal'.
- cabal-install = super.cabal-install.overrideScope (self: super: { binary = dontCheck self.binary_0_7_6_1; });
+ cabal-install = super.cabal-install.overrideScope (self: super: { binary = dontCheck self.binary_0_8_0_0; });
# https://github.com/tibbe/hashable/issues/85
hashable = dontCheck super.hashable;
diff --git a/pkgs/development/haskell-modules/configuration-hackage2nix.yaml b/pkgs/development/haskell-modules/configuration-hackage2nix.yaml
index ffba1d42664..713f5531eb1 100644
--- a/pkgs/development/haskell-modules/configuration-hackage2nix.yaml
+++ b/pkgs/development/haskell-modules/configuration-hackage2nix.yaml
@@ -1,19 +1,19 @@
# pkgs/development/haskell-modules/configuration-hackage2nix.yaml
-compiler: ghc-7.10
+compiler: ghc-7.10.3
core-packages:
- array-0.5.1.0
- - base-4.8.1.0
+ - base-4.8.2.0
- binary-0.7.5.0
- bin-package-db-0.0.0.0
- bytestring-0.10.6.0
- - Cabal-1.22.4.0
+ - Cabal-1.22.5.0
- containers-0.5.6.2
- deepseq-1.4.1.1
- directory-1.2.2.0
- filepath-1.4.0.0
- - ghc-7.10.2
+ - ghc-7.10.3
- ghc-prim-0.4.0.0
- haskeline-0.7.2.1
- hoopl-3.10.0.2
@@ -53,6 +53,7 @@ extra-packages:
- seqid-streams < 0.2 # newer versions depend on transformers 0.4.x which we cannot provide in GHC 7.8.x
- split < 0.2 # newer versions don't work with GHC 6.12.3
- tar < 0.4.2.0 # later versions don't work with GHC < 7.6.x
+ - transformers == 0.4.3.* # the latest version isn't supported by mtl yet
- vector < 0.10.10 # newer versions don't work with GHC 6.12.3
- zlib < 0.6 # newer versions break cabal-install
diff --git a/pkgs/development/haskell-modules/configuration-lts-0.0.nix b/pkgs/development/haskell-modules/configuration-lts-0.0.nix
index 23b3bdf8454..3bc140253cf 100644
--- a/pkgs/development/haskell-modules/configuration-lts-0.0.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-0.0.nix
@@ -336,6 +336,7 @@ self: super: {
"FormalGrammars" = dontDistribute super."FormalGrammars";
"Foster" = dontDistribute super."Foster";
"FpMLv53" = dontDistribute super."FpMLv53";
+ "FractalArt" = dontDistribute super."FractalArt";
"Fractaler" = dontDistribute super."Fractaler";
"Frames" = dontDistribute super."Frames";
"Frank" = dontDistribute super."Frank";
@@ -490,6 +491,7 @@ self: super: {
"HTTP-Simple" = dontDistribute super."HTTP-Simple";
"HTab" = dontDistribute super."HTab";
"HTicTacToe" = dontDistribute super."HTicTacToe";
+ "HUnit" = doDistribute super."HUnit_1_2_5_2";
"HUnit-Diff" = dontDistribute super."HUnit-Diff";
"HUnit-Plus" = dontDistribute super."HUnit-Plus";
"HUnit-approx" = dontDistribute super."HUnit-approx";
@@ -524,6 +526,7 @@ self: super: {
"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";
@@ -1973,6 +1976,7 @@ self: super: {
"cef" = dontDistribute super."cef";
"ceilometer-common" = dontDistribute super."ceilometer-common";
"cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo";
+ "cerberus" = dontDistribute super."cerberus";
"cereal" = doDistribute super."cereal_0_4_1_0";
"cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_3";
"cereal-derive" = dontDistribute super."cereal-derive";
@@ -2634,6 +2638,7 @@ self: super: {
"diagrams-solve" = dontDistribute super."diagrams-solve";
"diagrams-svg" = doDistribute super."diagrams-svg_1_1_0_3";
"diagrams-tikz" = dontDistribute super."diagrams-tikz";
+ "dialog" = dontDistribute super."dialog";
"dice" = dontDistribute super."dice";
"dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit";
"dicom" = dontDistribute super."dicom";
@@ -2826,6 +2831,7 @@ self: super: {
"edenskel" = dontDistribute super."edenskel";
"edentv" = dontDistribute super."edentv";
"edge" = dontDistribute super."edge";
+ "edis" = dontDistribute super."edis";
"edit-distance" = dontDistribute super."edit-distance";
"edit-distance-vector" = dontDistribute super."edit-distance-vector";
"edit-lenses" = dontDistribute super."edit-lenses";
@@ -3025,6 +3031,7 @@ self: super: {
"fad" = dontDistribute super."fad";
"failable-list" = dontDistribute super."failable-list";
"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";
@@ -3255,6 +3262,7 @@ self: super: {
"friday-juicypixels" = dontDistribute super."friday-juicypixels";
"friday-scale-dct" = dontDistribute super."friday-scale-dct";
"friendly-time" = dontDistribute super."friendly-time";
+ "frontmatter" = dontDistribute super."frontmatter";
"frp-arduino" = dontDistribute super."frp-arduino";
"frpnow" = dontDistribute super."frpnow";
"frpnow-gloss" = dontDistribute super."frpnow-gloss";
@@ -3476,6 +3484,7 @@ self: super: {
"gitlib-utils" = dontDistribute super."gitlib-utils";
"gitrev" = dontDistribute super."gitrev";
"gitson" = dontDistribute super."gitson";
+ "gitter" = dontDistribute super."gitter";
"gl" = doDistribute super."gl_0_6_1";
"gl-capture" = dontDistribute super."gl-capture";
"glade" = dontDistribute super."glade";
@@ -3791,6 +3800,7 @@ self: super: {
"hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP";
"hackage-server" = dontDistribute super."hackage-server";
"hackage-sparks" = dontDistribute super."hackage-sparks";
+ "hackage-whatsnew" = dontDistribute super."hackage-whatsnew";
"hackage2hwn" = dontDistribute super."hackage2hwn";
"hackage2twitter" = dontDistribute super."hackage2twitter";
"hackager" = dontDistribute super."hackager";
@@ -4538,6 +4548,7 @@ self: super: {
"hspec-meta" = doDistribute super."hspec-meta_2_0_0";
"hspec-monad-control" = dontDistribute super."hspec-monad-control";
"hspec-server" = dontDistribute super."hspec-server";
+ "hspec-setup" = dontDistribute super."hspec-setup";
"hspec-shouldbe" = dontDistribute super."hspec-shouldbe";
"hspec-smallcheck" = dontDistribute super."hspec-smallcheck";
"hspec-snap" = dontDistribute super."hspec-snap";
@@ -4792,6 +4803,7 @@ self: super: {
"imgurder" = dontDistribute super."imgurder";
"imm" = dontDistribute super."imm";
"imparse" = dontDistribute super."imparse";
+ "imperative-edsl" = dontDistribute super."imperative-edsl";
"imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl";
"implicit" = dontDistribute super."implicit";
"implicit-params" = dontDistribute super."implicit-params";
@@ -4936,6 +4948,7 @@ self: super: {
"ix-shapable" = dontDistribute super."ix-shapable";
"ixdopp" = dontDistribute super."ixdopp";
"ixmonad" = dontDistribute super."ixmonad";
+ "ixset" = doDistribute super."ixset_1_0_6";
"ixset-typed" = dontDistribute super."ixset-typed";
"iyql" = dontDistribute super."iyql";
"j2hs" = dontDistribute super."j2hs";
@@ -4982,6 +4995,7 @@ self: super: {
"json-autotype" = dontDistribute super."json-autotype";
"json-b" = dontDistribute super."json-b";
"json-builder" = dontDistribute super."json-builder";
+ "json-encoder" = dontDistribute super."json-encoder";
"json-enumerator" = dontDistribute super."json-enumerator";
"json-extra" = dontDistribute super."json-extra";
"json-fu" = dontDistribute super."json-fu";
@@ -5123,6 +5137,7 @@ self: super: {
"lambdacube-examples" = dontDistribute super."lambdacube-examples";
"lambdacube-gl" = dontDistribute super."lambdacube-gl";
"lambdacube-samples" = dontDistribute super."lambdacube-samples";
+ "lambdatex" = dontDistribute super."lambdatex";
"lambdatwit" = dontDistribute super."lambdatwit";
"lambdiff" = dontDistribute super."lambdiff";
"lame-tester" = dontDistribute super."lame-tester";
@@ -5333,6 +5348,7 @@ self: super: {
"list-fusion-probe" = dontDistribute super."list-fusion-probe";
"list-grouping" = dontDistribute super."list-grouping";
"list-mux" = dontDistribute super."list-mux";
+ "list-prompt" = dontDistribute super."list-prompt";
"list-remote-forwards" = dontDistribute super."list-remote-forwards";
"list-t" = doDistribute super."list-t_0_3_0";
"list-t-attoparsec" = dontDistribute super."list-t-attoparsec";
@@ -5377,6 +5393,7 @@ self: super: {
"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-domain" = doDistribute super."log-domain_0_9_3";
@@ -6058,6 +6075,7 @@ self: super: {
"omnifmt" = dontDistribute super."omnifmt";
"on-a-horse" = dontDistribute super."on-a-horse";
"on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel";
+ "once" = dontDistribute super."once";
"one-liner" = dontDistribute super."one-liner";
"one-time-password" = dontDistribute super."one-time-password";
"oneOfN" = dontDistribute super."oneOfN";
@@ -6155,7 +6173,6 @@ self: super: {
"padKONTROL" = dontDistribute super."padKONTROL";
"pagarme" = dontDistribute super."pagarme";
"pager" = dontDistribute super."pager";
- "pagerduty" = dontDistribute super."pagerduty";
"pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver";
"palette" = dontDistribute super."palette";
"palindromes" = dontDistribute super."palindromes";
@@ -6318,6 +6335,7 @@ self: super: {
"phasechange" = dontDistribute super."phasechange";
"phash" = dontDistribute super."phash";
"phizzle" = dontDistribute super."phizzle";
+ "phoityne" = dontDistribute super."phoityne";
"phone-numbers" = dontDistribute super."phone-numbers";
"phone-push" = dontDistribute super."phone-push";
"phonetic-code" = dontDistribute super."phonetic-code";
@@ -6929,6 +6947,7 @@ self: super: {
"rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster";
"retry" = dontDistribute super."retry";
"retryer" = dontDistribute super."retryer";
+ "rev-state" = doDistribute super."rev-state_0_1";
"revdectime" = dontDistribute super."revdectime";
"reverse-apply" = dontDistribute super."reverse-apply";
"reverse-geocoding" = dontDistribute super."reverse-geocoding";
@@ -7167,6 +7186,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serv" = dontDistribute super."serv";
"servant" = dontDistribute super."servant";
"servant-JuicyPixels" = dontDistribute super."servant-JuicyPixels";
"servant-blaze" = dontDistribute super."servant-blaze";
@@ -8200,6 +8220,7 @@ self: super: {
"typehash" = dontDistribute super."typehash";
"typelevel" = dontDistribute super."typelevel";
"typelevel-tensor" = dontDistribute super."typelevel-tensor";
+ "typelits-witnesses" = dontDistribute super."typelits-witnesses";
"typeof" = dontDistribute super."typeof";
"typeparams" = dontDistribute super."typeparams";
"types-compat" = dontDistribute super."types-compat";
@@ -8446,6 +8467,7 @@ self: super: {
"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" = dontDistribute super."vty";
diff --git a/pkgs/development/haskell-modules/configuration-lts-0.1.nix b/pkgs/development/haskell-modules/configuration-lts-0.1.nix
index 22a5f246372..42253251403 100644
--- a/pkgs/development/haskell-modules/configuration-lts-0.1.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-0.1.nix
@@ -336,6 +336,7 @@ self: super: {
"FormalGrammars" = dontDistribute super."FormalGrammars";
"Foster" = dontDistribute super."Foster";
"FpMLv53" = dontDistribute super."FpMLv53";
+ "FractalArt" = dontDistribute super."FractalArt";
"Fractaler" = dontDistribute super."Fractaler";
"Frames" = dontDistribute super."Frames";
"Frank" = dontDistribute super."Frank";
@@ -490,6 +491,7 @@ self: super: {
"HTTP-Simple" = dontDistribute super."HTTP-Simple";
"HTab" = dontDistribute super."HTab";
"HTicTacToe" = dontDistribute super."HTicTacToe";
+ "HUnit" = doDistribute super."HUnit_1_2_5_2";
"HUnit-Diff" = dontDistribute super."HUnit-Diff";
"HUnit-Plus" = dontDistribute super."HUnit-Plus";
"HUnit-approx" = dontDistribute super."HUnit-approx";
@@ -524,6 +526,7 @@ self: super: {
"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";
@@ -1973,6 +1976,7 @@ self: super: {
"cef" = dontDistribute super."cef";
"ceilometer-common" = dontDistribute super."ceilometer-common";
"cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo";
+ "cerberus" = dontDistribute super."cerberus";
"cereal" = doDistribute super."cereal_0_4_1_0";
"cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_3";
"cereal-derive" = dontDistribute super."cereal-derive";
@@ -2190,6 +2194,7 @@ self: super: {
"concrete-typerep" = dontDistribute super."concrete-typerep";
"concurrent-barrier" = dontDistribute super."concurrent-barrier";
"concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache";
+ "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9";
"concurrent-machines" = dontDistribute super."concurrent-machines";
"concurrent-output" = dontDistribute super."concurrent-output";
"concurrent-sa" = dontDistribute super."concurrent-sa";
@@ -2633,6 +2638,7 @@ self: super: {
"diagrams-solve" = dontDistribute super."diagrams-solve";
"diagrams-svg" = doDistribute super."diagrams-svg_1_1_0_3";
"diagrams-tikz" = dontDistribute super."diagrams-tikz";
+ "dialog" = dontDistribute super."dialog";
"dice" = dontDistribute super."dice";
"dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit";
"dicom" = dontDistribute super."dicom";
@@ -2825,6 +2831,7 @@ self: super: {
"edenskel" = dontDistribute super."edenskel";
"edentv" = dontDistribute super."edentv";
"edge" = dontDistribute super."edge";
+ "edis" = dontDistribute super."edis";
"edit-distance" = dontDistribute super."edit-distance";
"edit-distance-vector" = dontDistribute super."edit-distance-vector";
"edit-lenses" = dontDistribute super."edit-lenses";
@@ -3024,6 +3031,7 @@ self: super: {
"fad" = dontDistribute super."fad";
"failable-list" = dontDistribute super."failable-list";
"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";
@@ -3254,6 +3262,7 @@ self: super: {
"friday-juicypixels" = dontDistribute super."friday-juicypixels";
"friday-scale-dct" = dontDistribute super."friday-scale-dct";
"friendly-time" = dontDistribute super."friendly-time";
+ "frontmatter" = dontDistribute super."frontmatter";
"frp-arduino" = dontDistribute super."frp-arduino";
"frpnow" = dontDistribute super."frpnow";
"frpnow-gloss" = dontDistribute super."frpnow-gloss";
@@ -3475,6 +3484,7 @@ self: super: {
"gitlib-utils" = dontDistribute super."gitlib-utils";
"gitrev" = dontDistribute super."gitrev";
"gitson" = dontDistribute super."gitson";
+ "gitter" = dontDistribute super."gitter";
"gl" = doDistribute super."gl_0_6_1";
"gl-capture" = dontDistribute super."gl-capture";
"glade" = dontDistribute super."glade";
@@ -3790,6 +3800,7 @@ self: super: {
"hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP";
"hackage-server" = dontDistribute super."hackage-server";
"hackage-sparks" = dontDistribute super."hackage-sparks";
+ "hackage-whatsnew" = dontDistribute super."hackage-whatsnew";
"hackage2hwn" = dontDistribute super."hackage2hwn";
"hackage2twitter" = dontDistribute super."hackage2twitter";
"hackager" = dontDistribute super."hackager";
@@ -4537,6 +4548,7 @@ self: super: {
"hspec-meta" = doDistribute super."hspec-meta_2_0_0";
"hspec-monad-control" = dontDistribute super."hspec-monad-control";
"hspec-server" = dontDistribute super."hspec-server";
+ "hspec-setup" = dontDistribute super."hspec-setup";
"hspec-shouldbe" = dontDistribute super."hspec-shouldbe";
"hspec-smallcheck" = dontDistribute super."hspec-smallcheck";
"hspec-snap" = dontDistribute super."hspec-snap";
@@ -4791,6 +4803,7 @@ self: super: {
"imgurder" = dontDistribute super."imgurder";
"imm" = dontDistribute super."imm";
"imparse" = dontDistribute super."imparse";
+ "imperative-edsl" = dontDistribute super."imperative-edsl";
"imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl";
"implicit" = dontDistribute super."implicit";
"implicit-params" = dontDistribute super."implicit-params";
@@ -4935,6 +4948,7 @@ self: super: {
"ix-shapable" = dontDistribute super."ix-shapable";
"ixdopp" = dontDistribute super."ixdopp";
"ixmonad" = dontDistribute super."ixmonad";
+ "ixset" = doDistribute super."ixset_1_0_6";
"ixset-typed" = dontDistribute super."ixset-typed";
"iyql" = dontDistribute super."iyql";
"j2hs" = dontDistribute super."j2hs";
@@ -4981,6 +4995,7 @@ self: super: {
"json-autotype" = dontDistribute super."json-autotype";
"json-b" = dontDistribute super."json-b";
"json-builder" = dontDistribute super."json-builder";
+ "json-encoder" = dontDistribute super."json-encoder";
"json-enumerator" = dontDistribute super."json-enumerator";
"json-extra" = dontDistribute super."json-extra";
"json-fu" = dontDistribute super."json-fu";
@@ -5122,6 +5137,7 @@ self: super: {
"lambdacube-examples" = dontDistribute super."lambdacube-examples";
"lambdacube-gl" = dontDistribute super."lambdacube-gl";
"lambdacube-samples" = dontDistribute super."lambdacube-samples";
+ "lambdatex" = dontDistribute super."lambdatex";
"lambdatwit" = dontDistribute super."lambdatwit";
"lambdiff" = dontDistribute super."lambdiff";
"lame-tester" = dontDistribute super."lame-tester";
@@ -5332,6 +5348,7 @@ self: super: {
"list-fusion-probe" = dontDistribute super."list-fusion-probe";
"list-grouping" = dontDistribute super."list-grouping";
"list-mux" = dontDistribute super."list-mux";
+ "list-prompt" = dontDistribute super."list-prompt";
"list-remote-forwards" = dontDistribute super."list-remote-forwards";
"list-t" = doDistribute super."list-t_0_3_0";
"list-t-attoparsec" = dontDistribute super."list-t-attoparsec";
@@ -5376,6 +5393,7 @@ self: super: {
"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-domain" = doDistribute super."log-domain_0_9_3";
@@ -6057,6 +6075,7 @@ self: super: {
"omnifmt" = dontDistribute super."omnifmt";
"on-a-horse" = dontDistribute super."on-a-horse";
"on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel";
+ "once" = dontDistribute super."once";
"one-liner" = dontDistribute super."one-liner";
"one-time-password" = dontDistribute super."one-time-password";
"oneOfN" = dontDistribute super."oneOfN";
@@ -6154,7 +6173,6 @@ self: super: {
"padKONTROL" = dontDistribute super."padKONTROL";
"pagarme" = dontDistribute super."pagarme";
"pager" = dontDistribute super."pager";
- "pagerduty" = dontDistribute super."pagerduty";
"pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver";
"palette" = dontDistribute super."palette";
"palindromes" = dontDistribute super."palindromes";
@@ -6317,6 +6335,7 @@ self: super: {
"phasechange" = dontDistribute super."phasechange";
"phash" = dontDistribute super."phash";
"phizzle" = dontDistribute super."phizzle";
+ "phoityne" = dontDistribute super."phoityne";
"phone-numbers" = dontDistribute super."phone-numbers";
"phone-push" = dontDistribute super."phone-push";
"phonetic-code" = dontDistribute super."phonetic-code";
@@ -6928,6 +6947,7 @@ self: super: {
"rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster";
"retry" = dontDistribute super."retry";
"retryer" = dontDistribute super."retryer";
+ "rev-state" = doDistribute super."rev-state_0_1";
"revdectime" = dontDistribute super."revdectime";
"reverse-apply" = dontDistribute super."reverse-apply";
"reverse-geocoding" = dontDistribute super."reverse-geocoding";
@@ -7166,6 +7186,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serv" = dontDistribute super."serv";
"servant" = dontDistribute super."servant";
"servant-JuicyPixels" = dontDistribute super."servant-JuicyPixels";
"servant-blaze" = dontDistribute super."servant-blaze";
@@ -8199,6 +8220,7 @@ self: super: {
"typehash" = dontDistribute super."typehash";
"typelevel" = dontDistribute super."typelevel";
"typelevel-tensor" = dontDistribute super."typelevel-tensor";
+ "typelits-witnesses" = dontDistribute super."typelits-witnesses";
"typeof" = dontDistribute super."typeof";
"typeparams" = dontDistribute super."typeparams";
"types-compat" = dontDistribute super."types-compat";
@@ -8445,6 +8467,7 @@ self: super: {
"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" = dontDistribute super."vty";
diff --git a/pkgs/development/haskell-modules/configuration-lts-0.2.nix b/pkgs/development/haskell-modules/configuration-lts-0.2.nix
index adfe05857ed..96915c87e0b 100644
--- a/pkgs/development/haskell-modules/configuration-lts-0.2.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-0.2.nix
@@ -336,6 +336,7 @@ self: super: {
"FormalGrammars" = dontDistribute super."FormalGrammars";
"Foster" = dontDistribute super."Foster";
"FpMLv53" = dontDistribute super."FpMLv53";
+ "FractalArt" = dontDistribute super."FractalArt";
"Fractaler" = dontDistribute super."Fractaler";
"Frames" = dontDistribute super."Frames";
"Frank" = dontDistribute super."Frank";
@@ -490,6 +491,7 @@ self: super: {
"HTTP-Simple" = dontDistribute super."HTTP-Simple";
"HTab" = dontDistribute super."HTab";
"HTicTacToe" = dontDistribute super."HTicTacToe";
+ "HUnit" = doDistribute super."HUnit_1_2_5_2";
"HUnit-Diff" = dontDistribute super."HUnit-Diff";
"HUnit-Plus" = dontDistribute super."HUnit-Plus";
"HUnit-approx" = dontDistribute super."HUnit-approx";
@@ -524,6 +526,7 @@ self: super: {
"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";
@@ -1973,6 +1976,7 @@ self: super: {
"cef" = dontDistribute super."cef";
"ceilometer-common" = dontDistribute super."ceilometer-common";
"cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo";
+ "cerberus" = dontDistribute super."cerberus";
"cereal" = doDistribute super."cereal_0_4_1_0";
"cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_3";
"cereal-derive" = dontDistribute super."cereal-derive";
@@ -2190,6 +2194,7 @@ self: super: {
"concrete-typerep" = dontDistribute super."concrete-typerep";
"concurrent-barrier" = dontDistribute super."concurrent-barrier";
"concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache";
+ "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9";
"concurrent-machines" = dontDistribute super."concurrent-machines";
"concurrent-output" = dontDistribute super."concurrent-output";
"concurrent-sa" = dontDistribute super."concurrent-sa";
@@ -2633,6 +2638,7 @@ self: super: {
"diagrams-solve" = dontDistribute super."diagrams-solve";
"diagrams-svg" = doDistribute super."diagrams-svg_1_1_0_3";
"diagrams-tikz" = dontDistribute super."diagrams-tikz";
+ "dialog" = dontDistribute super."dialog";
"dice" = dontDistribute super."dice";
"dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit";
"dicom" = dontDistribute super."dicom";
@@ -2825,6 +2831,7 @@ self: super: {
"edenskel" = dontDistribute super."edenskel";
"edentv" = dontDistribute super."edentv";
"edge" = dontDistribute super."edge";
+ "edis" = dontDistribute super."edis";
"edit-distance" = dontDistribute super."edit-distance";
"edit-distance-vector" = dontDistribute super."edit-distance-vector";
"edit-lenses" = dontDistribute super."edit-lenses";
@@ -3024,6 +3031,7 @@ self: super: {
"fad" = dontDistribute super."fad";
"failable-list" = dontDistribute super."failable-list";
"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";
@@ -3254,6 +3262,7 @@ self: super: {
"friday-juicypixels" = dontDistribute super."friday-juicypixels";
"friday-scale-dct" = dontDistribute super."friday-scale-dct";
"friendly-time" = dontDistribute super."friendly-time";
+ "frontmatter" = dontDistribute super."frontmatter";
"frp-arduino" = dontDistribute super."frp-arduino";
"frpnow" = dontDistribute super."frpnow";
"frpnow-gloss" = dontDistribute super."frpnow-gloss";
@@ -3475,6 +3484,7 @@ self: super: {
"gitlib-utils" = dontDistribute super."gitlib-utils";
"gitrev" = dontDistribute super."gitrev";
"gitson" = dontDistribute super."gitson";
+ "gitter" = dontDistribute super."gitter";
"gl" = doDistribute super."gl_0_6_1";
"gl-capture" = dontDistribute super."gl-capture";
"glade" = dontDistribute super."glade";
@@ -3790,6 +3800,7 @@ self: super: {
"hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP";
"hackage-server" = dontDistribute super."hackage-server";
"hackage-sparks" = dontDistribute super."hackage-sparks";
+ "hackage-whatsnew" = dontDistribute super."hackage-whatsnew";
"hackage2hwn" = dontDistribute super."hackage2hwn";
"hackage2twitter" = dontDistribute super."hackage2twitter";
"hackager" = dontDistribute super."hackager";
@@ -4537,6 +4548,7 @@ self: super: {
"hspec-meta" = doDistribute super."hspec-meta_2_0_0";
"hspec-monad-control" = dontDistribute super."hspec-monad-control";
"hspec-server" = dontDistribute super."hspec-server";
+ "hspec-setup" = dontDistribute super."hspec-setup";
"hspec-shouldbe" = dontDistribute super."hspec-shouldbe";
"hspec-smallcheck" = dontDistribute super."hspec-smallcheck";
"hspec-snap" = dontDistribute super."hspec-snap";
@@ -4791,6 +4803,7 @@ self: super: {
"imgurder" = dontDistribute super."imgurder";
"imm" = dontDistribute super."imm";
"imparse" = dontDistribute super."imparse";
+ "imperative-edsl" = dontDistribute super."imperative-edsl";
"imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl";
"implicit" = dontDistribute super."implicit";
"implicit-params" = dontDistribute super."implicit-params";
@@ -4935,6 +4948,7 @@ self: super: {
"ix-shapable" = dontDistribute super."ix-shapable";
"ixdopp" = dontDistribute super."ixdopp";
"ixmonad" = dontDistribute super."ixmonad";
+ "ixset" = doDistribute super."ixset_1_0_6";
"ixset-typed" = dontDistribute super."ixset-typed";
"iyql" = dontDistribute super."iyql";
"j2hs" = dontDistribute super."j2hs";
@@ -4981,6 +4995,7 @@ self: super: {
"json-autotype" = dontDistribute super."json-autotype";
"json-b" = dontDistribute super."json-b";
"json-builder" = dontDistribute super."json-builder";
+ "json-encoder" = dontDistribute super."json-encoder";
"json-enumerator" = dontDistribute super."json-enumerator";
"json-extra" = dontDistribute super."json-extra";
"json-fu" = dontDistribute super."json-fu";
@@ -5122,6 +5137,7 @@ self: super: {
"lambdacube-examples" = dontDistribute super."lambdacube-examples";
"lambdacube-gl" = dontDistribute super."lambdacube-gl";
"lambdacube-samples" = dontDistribute super."lambdacube-samples";
+ "lambdatex" = dontDistribute super."lambdatex";
"lambdatwit" = dontDistribute super."lambdatwit";
"lambdiff" = dontDistribute super."lambdiff";
"lame-tester" = dontDistribute super."lame-tester";
@@ -5332,6 +5348,7 @@ self: super: {
"list-fusion-probe" = dontDistribute super."list-fusion-probe";
"list-grouping" = dontDistribute super."list-grouping";
"list-mux" = dontDistribute super."list-mux";
+ "list-prompt" = dontDistribute super."list-prompt";
"list-remote-forwards" = dontDistribute super."list-remote-forwards";
"list-t" = doDistribute super."list-t_0_3_0";
"list-t-attoparsec" = dontDistribute super."list-t-attoparsec";
@@ -5376,6 +5393,7 @@ self: super: {
"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-domain" = doDistribute super."log-domain_0_9_3";
@@ -6057,6 +6075,7 @@ self: super: {
"omnifmt" = dontDistribute super."omnifmt";
"on-a-horse" = dontDistribute super."on-a-horse";
"on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel";
+ "once" = dontDistribute super."once";
"one-liner" = dontDistribute super."one-liner";
"one-time-password" = dontDistribute super."one-time-password";
"oneOfN" = dontDistribute super."oneOfN";
@@ -6154,7 +6173,6 @@ self: super: {
"padKONTROL" = dontDistribute super."padKONTROL";
"pagarme" = dontDistribute super."pagarme";
"pager" = dontDistribute super."pager";
- "pagerduty" = dontDistribute super."pagerduty";
"pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver";
"palette" = dontDistribute super."palette";
"palindromes" = dontDistribute super."palindromes";
@@ -6317,6 +6335,7 @@ self: super: {
"phasechange" = dontDistribute super."phasechange";
"phash" = dontDistribute super."phash";
"phizzle" = dontDistribute super."phizzle";
+ "phoityne" = dontDistribute super."phoityne";
"phone-numbers" = dontDistribute super."phone-numbers";
"phone-push" = dontDistribute super."phone-push";
"phonetic-code" = dontDistribute super."phonetic-code";
@@ -6928,6 +6947,7 @@ self: super: {
"rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster";
"retry" = dontDistribute super."retry";
"retryer" = dontDistribute super."retryer";
+ "rev-state" = doDistribute super."rev-state_0_1";
"revdectime" = dontDistribute super."revdectime";
"reverse-apply" = dontDistribute super."reverse-apply";
"reverse-geocoding" = dontDistribute super."reverse-geocoding";
@@ -7166,6 +7186,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serv" = dontDistribute super."serv";
"servant" = dontDistribute super."servant";
"servant-JuicyPixels" = dontDistribute super."servant-JuicyPixels";
"servant-blaze" = dontDistribute super."servant-blaze";
@@ -8199,6 +8220,7 @@ self: super: {
"typehash" = dontDistribute super."typehash";
"typelevel" = dontDistribute super."typelevel";
"typelevel-tensor" = dontDistribute super."typelevel-tensor";
+ "typelits-witnesses" = dontDistribute super."typelits-witnesses";
"typeof" = dontDistribute super."typeof";
"typeparams" = dontDistribute super."typeparams";
"types-compat" = dontDistribute super."types-compat";
@@ -8445,6 +8467,7 @@ self: super: {
"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" = dontDistribute super."vty";
diff --git a/pkgs/development/haskell-modules/configuration-lts-0.3.nix b/pkgs/development/haskell-modules/configuration-lts-0.3.nix
index 1856c9787ab..9309f74d421 100644
--- a/pkgs/development/haskell-modules/configuration-lts-0.3.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-0.3.nix
@@ -336,6 +336,7 @@ self: super: {
"FormalGrammars" = dontDistribute super."FormalGrammars";
"Foster" = dontDistribute super."Foster";
"FpMLv53" = dontDistribute super."FpMLv53";
+ "FractalArt" = dontDistribute super."FractalArt";
"Fractaler" = dontDistribute super."Fractaler";
"Frames" = dontDistribute super."Frames";
"Frank" = dontDistribute super."Frank";
@@ -490,6 +491,7 @@ self: super: {
"HTTP-Simple" = dontDistribute super."HTTP-Simple";
"HTab" = dontDistribute super."HTab";
"HTicTacToe" = dontDistribute super."HTicTacToe";
+ "HUnit" = doDistribute super."HUnit_1_2_5_2";
"HUnit-Diff" = dontDistribute super."HUnit-Diff";
"HUnit-Plus" = dontDistribute super."HUnit-Plus";
"HUnit-approx" = dontDistribute super."HUnit-approx";
@@ -524,6 +526,7 @@ self: super: {
"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";
@@ -1973,6 +1976,7 @@ self: super: {
"cef" = dontDistribute super."cef";
"ceilometer-common" = dontDistribute super."ceilometer-common";
"cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo";
+ "cerberus" = dontDistribute super."cerberus";
"cereal" = doDistribute super."cereal_0_4_1_0";
"cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_3";
"cereal-derive" = dontDistribute super."cereal-derive";
@@ -2190,6 +2194,7 @@ self: super: {
"concrete-typerep" = dontDistribute super."concrete-typerep";
"concurrent-barrier" = dontDistribute super."concurrent-barrier";
"concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache";
+ "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9";
"concurrent-machines" = dontDistribute super."concurrent-machines";
"concurrent-output" = dontDistribute super."concurrent-output";
"concurrent-sa" = dontDistribute super."concurrent-sa";
@@ -2633,6 +2638,7 @@ self: super: {
"diagrams-solve" = dontDistribute super."diagrams-solve";
"diagrams-svg" = doDistribute super."diagrams-svg_1_1_0_3";
"diagrams-tikz" = dontDistribute super."diagrams-tikz";
+ "dialog" = dontDistribute super."dialog";
"dice" = dontDistribute super."dice";
"dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit";
"dicom" = dontDistribute super."dicom";
@@ -2825,6 +2831,7 @@ self: super: {
"edenskel" = dontDistribute super."edenskel";
"edentv" = dontDistribute super."edentv";
"edge" = dontDistribute super."edge";
+ "edis" = dontDistribute super."edis";
"edit-distance" = dontDistribute super."edit-distance";
"edit-distance-vector" = dontDistribute super."edit-distance-vector";
"edit-lenses" = dontDistribute super."edit-lenses";
@@ -3024,6 +3031,7 @@ self: super: {
"fad" = dontDistribute super."fad";
"failable-list" = dontDistribute super."failable-list";
"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";
@@ -3254,6 +3262,7 @@ self: super: {
"friday-juicypixels" = dontDistribute super."friday-juicypixels";
"friday-scale-dct" = dontDistribute super."friday-scale-dct";
"friendly-time" = dontDistribute super."friendly-time";
+ "frontmatter" = dontDistribute super."frontmatter";
"frp-arduino" = dontDistribute super."frp-arduino";
"frpnow" = dontDistribute super."frpnow";
"frpnow-gloss" = dontDistribute super."frpnow-gloss";
@@ -3475,6 +3484,7 @@ self: super: {
"gitlib-utils" = dontDistribute super."gitlib-utils";
"gitrev" = dontDistribute super."gitrev";
"gitson" = dontDistribute super."gitson";
+ "gitter" = dontDistribute super."gitter";
"gl" = doDistribute super."gl_0_6_1";
"gl-capture" = dontDistribute super."gl-capture";
"glade" = dontDistribute super."glade";
@@ -3790,6 +3800,7 @@ self: super: {
"hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP";
"hackage-server" = dontDistribute super."hackage-server";
"hackage-sparks" = dontDistribute super."hackage-sparks";
+ "hackage-whatsnew" = dontDistribute super."hackage-whatsnew";
"hackage2hwn" = dontDistribute super."hackage2hwn";
"hackage2twitter" = dontDistribute super."hackage2twitter";
"hackager" = dontDistribute super."hackager";
@@ -4537,6 +4548,7 @@ self: super: {
"hspec-meta" = doDistribute super."hspec-meta_2_0_0";
"hspec-monad-control" = dontDistribute super."hspec-monad-control";
"hspec-server" = dontDistribute super."hspec-server";
+ "hspec-setup" = dontDistribute super."hspec-setup";
"hspec-shouldbe" = dontDistribute super."hspec-shouldbe";
"hspec-smallcheck" = dontDistribute super."hspec-smallcheck";
"hspec-snap" = dontDistribute super."hspec-snap";
@@ -4791,6 +4803,7 @@ self: super: {
"imgurder" = dontDistribute super."imgurder";
"imm" = dontDistribute super."imm";
"imparse" = dontDistribute super."imparse";
+ "imperative-edsl" = dontDistribute super."imperative-edsl";
"imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl";
"implicit" = dontDistribute super."implicit";
"implicit-params" = dontDistribute super."implicit-params";
@@ -4935,6 +4948,7 @@ self: super: {
"ix-shapable" = dontDistribute super."ix-shapable";
"ixdopp" = dontDistribute super."ixdopp";
"ixmonad" = dontDistribute super."ixmonad";
+ "ixset" = doDistribute super."ixset_1_0_6";
"ixset-typed" = dontDistribute super."ixset-typed";
"iyql" = dontDistribute super."iyql";
"j2hs" = dontDistribute super."j2hs";
@@ -4981,6 +4995,7 @@ self: super: {
"json-autotype" = dontDistribute super."json-autotype";
"json-b" = dontDistribute super."json-b";
"json-builder" = dontDistribute super."json-builder";
+ "json-encoder" = dontDistribute super."json-encoder";
"json-enumerator" = dontDistribute super."json-enumerator";
"json-extra" = dontDistribute super."json-extra";
"json-fu" = dontDistribute super."json-fu";
@@ -5122,6 +5137,7 @@ self: super: {
"lambdacube-examples" = dontDistribute super."lambdacube-examples";
"lambdacube-gl" = dontDistribute super."lambdacube-gl";
"lambdacube-samples" = dontDistribute super."lambdacube-samples";
+ "lambdatex" = dontDistribute super."lambdatex";
"lambdatwit" = dontDistribute super."lambdatwit";
"lambdiff" = dontDistribute super."lambdiff";
"lame-tester" = dontDistribute super."lame-tester";
@@ -5332,6 +5348,7 @@ self: super: {
"list-fusion-probe" = dontDistribute super."list-fusion-probe";
"list-grouping" = dontDistribute super."list-grouping";
"list-mux" = dontDistribute super."list-mux";
+ "list-prompt" = dontDistribute super."list-prompt";
"list-remote-forwards" = dontDistribute super."list-remote-forwards";
"list-t" = doDistribute super."list-t_0_3_1";
"list-t-attoparsec" = dontDistribute super."list-t-attoparsec";
@@ -5376,6 +5393,7 @@ self: super: {
"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-domain" = doDistribute super."log-domain_0_9_3";
@@ -6057,6 +6075,7 @@ self: super: {
"omnifmt" = dontDistribute super."omnifmt";
"on-a-horse" = dontDistribute super."on-a-horse";
"on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel";
+ "once" = dontDistribute super."once";
"one-liner" = dontDistribute super."one-liner";
"one-time-password" = dontDistribute super."one-time-password";
"oneOfN" = dontDistribute super."oneOfN";
@@ -6154,7 +6173,6 @@ self: super: {
"padKONTROL" = dontDistribute super."padKONTROL";
"pagarme" = dontDistribute super."pagarme";
"pager" = dontDistribute super."pager";
- "pagerduty" = dontDistribute super."pagerduty";
"pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver";
"palette" = dontDistribute super."palette";
"palindromes" = dontDistribute super."palindromes";
@@ -6317,6 +6335,7 @@ self: super: {
"phasechange" = dontDistribute super."phasechange";
"phash" = dontDistribute super."phash";
"phizzle" = dontDistribute super."phizzle";
+ "phoityne" = dontDistribute super."phoityne";
"phone-numbers" = dontDistribute super."phone-numbers";
"phone-push" = dontDistribute super."phone-push";
"phonetic-code" = dontDistribute super."phonetic-code";
@@ -6928,6 +6947,7 @@ self: super: {
"rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster";
"retry" = dontDistribute super."retry";
"retryer" = dontDistribute super."retryer";
+ "rev-state" = doDistribute super."rev-state_0_1";
"revdectime" = dontDistribute super."revdectime";
"reverse-apply" = dontDistribute super."reverse-apply";
"reverse-geocoding" = dontDistribute super."reverse-geocoding";
@@ -7166,6 +7186,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serv" = dontDistribute super."serv";
"servant" = dontDistribute super."servant";
"servant-JuicyPixels" = dontDistribute super."servant-JuicyPixels";
"servant-blaze" = dontDistribute super."servant-blaze";
@@ -8199,6 +8220,7 @@ self: super: {
"typehash" = dontDistribute super."typehash";
"typelevel" = dontDistribute super."typelevel";
"typelevel-tensor" = dontDistribute super."typelevel-tensor";
+ "typelits-witnesses" = dontDistribute super."typelits-witnesses";
"typeof" = dontDistribute super."typeof";
"typeparams" = dontDistribute super."typeparams";
"types-compat" = dontDistribute super."types-compat";
@@ -8445,6 +8467,7 @@ self: super: {
"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" = dontDistribute super."vty";
diff --git a/pkgs/development/haskell-modules/configuration-lts-0.4.nix b/pkgs/development/haskell-modules/configuration-lts-0.4.nix
index 26af9f6a7c4..ce701dfe722 100644
--- a/pkgs/development/haskell-modules/configuration-lts-0.4.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-0.4.nix
@@ -336,6 +336,7 @@ self: super: {
"FormalGrammars" = dontDistribute super."FormalGrammars";
"Foster" = dontDistribute super."Foster";
"FpMLv53" = dontDistribute super."FpMLv53";
+ "FractalArt" = dontDistribute super."FractalArt";
"Fractaler" = dontDistribute super."Fractaler";
"Frames" = dontDistribute super."Frames";
"Frank" = dontDistribute super."Frank";
@@ -490,6 +491,7 @@ self: super: {
"HTTP-Simple" = dontDistribute super."HTTP-Simple";
"HTab" = dontDistribute super."HTab";
"HTicTacToe" = dontDistribute super."HTicTacToe";
+ "HUnit" = doDistribute super."HUnit_1_2_5_2";
"HUnit-Diff" = dontDistribute super."HUnit-Diff";
"HUnit-Plus" = dontDistribute super."HUnit-Plus";
"HUnit-approx" = dontDistribute super."HUnit-approx";
@@ -524,6 +526,7 @@ self: super: {
"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";
@@ -1973,6 +1976,7 @@ self: super: {
"cef" = dontDistribute super."cef";
"ceilometer-common" = dontDistribute super."ceilometer-common";
"cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo";
+ "cerberus" = dontDistribute super."cerberus";
"cereal" = doDistribute super."cereal_0_4_1_0";
"cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_3";
"cereal-derive" = dontDistribute super."cereal-derive";
@@ -2190,6 +2194,7 @@ self: super: {
"concrete-typerep" = dontDistribute super."concrete-typerep";
"concurrent-barrier" = dontDistribute super."concurrent-barrier";
"concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache";
+ "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9";
"concurrent-machines" = dontDistribute super."concurrent-machines";
"concurrent-output" = dontDistribute super."concurrent-output";
"concurrent-sa" = dontDistribute super."concurrent-sa";
@@ -2632,6 +2637,7 @@ self: super: {
"diagrams-solve" = dontDistribute super."diagrams-solve";
"diagrams-svg" = doDistribute super."diagrams-svg_1_1_0_3";
"diagrams-tikz" = dontDistribute super."diagrams-tikz";
+ "dialog" = dontDistribute super."dialog";
"dice" = dontDistribute super."dice";
"dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit";
"dicom" = dontDistribute super."dicom";
@@ -2824,6 +2830,7 @@ self: super: {
"edenskel" = dontDistribute super."edenskel";
"edentv" = dontDistribute super."edentv";
"edge" = dontDistribute super."edge";
+ "edis" = dontDistribute super."edis";
"edit-distance" = dontDistribute super."edit-distance";
"edit-distance-vector" = dontDistribute super."edit-distance-vector";
"edit-lenses" = dontDistribute super."edit-lenses";
@@ -3023,6 +3030,7 @@ self: super: {
"fad" = dontDistribute super."fad";
"failable-list" = dontDistribute super."failable-list";
"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";
@@ -3253,6 +3261,7 @@ self: super: {
"friday-juicypixels" = dontDistribute super."friday-juicypixels";
"friday-scale-dct" = dontDistribute super."friday-scale-dct";
"friendly-time" = dontDistribute super."friendly-time";
+ "frontmatter" = dontDistribute super."frontmatter";
"frp-arduino" = dontDistribute super."frp-arduino";
"frpnow" = dontDistribute super."frpnow";
"frpnow-gloss" = dontDistribute super."frpnow-gloss";
@@ -3474,6 +3483,7 @@ self: super: {
"gitlib-utils" = dontDistribute super."gitlib-utils";
"gitrev" = dontDistribute super."gitrev";
"gitson" = dontDistribute super."gitson";
+ "gitter" = dontDistribute super."gitter";
"gl" = doDistribute super."gl_0_6_1";
"gl-capture" = dontDistribute super."gl-capture";
"glade" = dontDistribute super."glade";
@@ -3787,6 +3797,7 @@ self: super: {
"hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP";
"hackage-server" = dontDistribute super."hackage-server";
"hackage-sparks" = dontDistribute super."hackage-sparks";
+ "hackage-whatsnew" = dontDistribute super."hackage-whatsnew";
"hackage2hwn" = dontDistribute super."hackage2hwn";
"hackage2twitter" = dontDistribute super."hackage2twitter";
"hackager" = dontDistribute super."hackager";
@@ -4534,6 +4545,7 @@ self: super: {
"hspec-meta" = doDistribute super."hspec-meta_2_0_0";
"hspec-monad-control" = dontDistribute super."hspec-monad-control";
"hspec-server" = dontDistribute super."hspec-server";
+ "hspec-setup" = dontDistribute super."hspec-setup";
"hspec-shouldbe" = dontDistribute super."hspec-shouldbe";
"hspec-smallcheck" = dontDistribute super."hspec-smallcheck";
"hspec-snap" = dontDistribute super."hspec-snap";
@@ -4788,6 +4800,7 @@ self: super: {
"imgurder" = dontDistribute super."imgurder";
"imm" = dontDistribute super."imm";
"imparse" = dontDistribute super."imparse";
+ "imperative-edsl" = dontDistribute super."imperative-edsl";
"imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl";
"implicit" = dontDistribute super."implicit";
"implicit-params" = dontDistribute super."implicit-params";
@@ -4932,6 +4945,7 @@ self: super: {
"ix-shapable" = dontDistribute super."ix-shapable";
"ixdopp" = dontDistribute super."ixdopp";
"ixmonad" = dontDistribute super."ixmonad";
+ "ixset" = doDistribute super."ixset_1_0_6";
"ixset-typed" = dontDistribute super."ixset-typed";
"iyql" = dontDistribute super."iyql";
"j2hs" = dontDistribute super."j2hs";
@@ -4978,6 +4992,7 @@ self: super: {
"json-autotype" = dontDistribute super."json-autotype";
"json-b" = dontDistribute super."json-b";
"json-builder" = dontDistribute super."json-builder";
+ "json-encoder" = dontDistribute super."json-encoder";
"json-enumerator" = dontDistribute super."json-enumerator";
"json-extra" = dontDistribute super."json-extra";
"json-fu" = dontDistribute super."json-fu";
@@ -5119,6 +5134,7 @@ self: super: {
"lambdacube-examples" = dontDistribute super."lambdacube-examples";
"lambdacube-gl" = dontDistribute super."lambdacube-gl";
"lambdacube-samples" = dontDistribute super."lambdacube-samples";
+ "lambdatex" = dontDistribute super."lambdatex";
"lambdatwit" = dontDistribute super."lambdatwit";
"lambdiff" = dontDistribute super."lambdiff";
"lame-tester" = dontDistribute super."lame-tester";
@@ -5329,6 +5345,7 @@ self: super: {
"list-fusion-probe" = dontDistribute super."list-fusion-probe";
"list-grouping" = dontDistribute super."list-grouping";
"list-mux" = dontDistribute super."list-mux";
+ "list-prompt" = dontDistribute super."list-prompt";
"list-remote-forwards" = dontDistribute super."list-remote-forwards";
"list-t" = doDistribute super."list-t_0_3_1";
"list-t-attoparsec" = dontDistribute super."list-t-attoparsec";
@@ -5373,6 +5390,7 @@ self: super: {
"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-domain" = doDistribute super."log-domain_0_9_3";
@@ -6054,6 +6072,7 @@ self: super: {
"omnifmt" = dontDistribute super."omnifmt";
"on-a-horse" = dontDistribute super."on-a-horse";
"on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel";
+ "once" = dontDistribute super."once";
"one-liner" = dontDistribute super."one-liner";
"one-time-password" = dontDistribute super."one-time-password";
"oneOfN" = dontDistribute super."oneOfN";
@@ -6151,7 +6170,6 @@ self: super: {
"padKONTROL" = dontDistribute super."padKONTROL";
"pagarme" = dontDistribute super."pagarme";
"pager" = dontDistribute super."pager";
- "pagerduty" = dontDistribute super."pagerduty";
"pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver";
"palette" = dontDistribute super."palette";
"palindromes" = dontDistribute super."palindromes";
@@ -6314,6 +6332,7 @@ self: super: {
"phasechange" = dontDistribute super."phasechange";
"phash" = dontDistribute super."phash";
"phizzle" = dontDistribute super."phizzle";
+ "phoityne" = dontDistribute super."phoityne";
"phone-numbers" = dontDistribute super."phone-numbers";
"phone-push" = dontDistribute super."phone-push";
"phonetic-code" = dontDistribute super."phonetic-code";
@@ -6924,6 +6943,7 @@ self: super: {
"rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster";
"retry" = dontDistribute super."retry";
"retryer" = dontDistribute super."retryer";
+ "rev-state" = doDistribute super."rev-state_0_1";
"revdectime" = dontDistribute super."revdectime";
"reverse-apply" = dontDistribute super."reverse-apply";
"reverse-geocoding" = dontDistribute super."reverse-geocoding";
@@ -7162,6 +7182,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serv" = dontDistribute super."serv";
"servant" = dontDistribute super."servant";
"servant-JuicyPixels" = dontDistribute super."servant-JuicyPixels";
"servant-blaze" = dontDistribute super."servant-blaze";
@@ -8194,6 +8215,7 @@ self: super: {
"typehash" = dontDistribute super."typehash";
"typelevel" = dontDistribute super."typelevel";
"typelevel-tensor" = dontDistribute super."typelevel-tensor";
+ "typelits-witnesses" = dontDistribute super."typelits-witnesses";
"typeof" = dontDistribute super."typeof";
"typeparams" = dontDistribute super."typeparams";
"types-compat" = dontDistribute super."types-compat";
@@ -8440,6 +8462,7 @@ self: super: {
"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" = dontDistribute super."vty";
diff --git a/pkgs/development/haskell-modules/configuration-lts-0.5.nix b/pkgs/development/haskell-modules/configuration-lts-0.5.nix
index a41c1bfc3b4..5ddb85c629c 100644
--- a/pkgs/development/haskell-modules/configuration-lts-0.5.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-0.5.nix
@@ -336,6 +336,7 @@ self: super: {
"FormalGrammars" = dontDistribute super."FormalGrammars";
"Foster" = dontDistribute super."Foster";
"FpMLv53" = dontDistribute super."FpMLv53";
+ "FractalArt" = dontDistribute super."FractalArt";
"Fractaler" = dontDistribute super."Fractaler";
"Frames" = dontDistribute super."Frames";
"Frank" = dontDistribute super."Frank";
@@ -490,6 +491,7 @@ self: super: {
"HTTP-Simple" = dontDistribute super."HTTP-Simple";
"HTab" = dontDistribute super."HTab";
"HTicTacToe" = dontDistribute super."HTicTacToe";
+ "HUnit" = doDistribute super."HUnit_1_2_5_2";
"HUnit-Diff" = dontDistribute super."HUnit-Diff";
"HUnit-Plus" = dontDistribute super."HUnit-Plus";
"HUnit-approx" = dontDistribute super."HUnit-approx";
@@ -524,6 +526,7 @@ self: super: {
"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";
@@ -1973,6 +1976,7 @@ self: super: {
"cef" = dontDistribute super."cef";
"ceilometer-common" = dontDistribute super."ceilometer-common";
"cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo";
+ "cerberus" = dontDistribute super."cerberus";
"cereal" = doDistribute super."cereal_0_4_1_0";
"cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_3";
"cereal-derive" = dontDistribute super."cereal-derive";
@@ -2190,6 +2194,7 @@ self: super: {
"concrete-typerep" = dontDistribute super."concrete-typerep";
"concurrent-barrier" = dontDistribute super."concurrent-barrier";
"concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache";
+ "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9";
"concurrent-machines" = dontDistribute super."concurrent-machines";
"concurrent-output" = dontDistribute super."concurrent-output";
"concurrent-sa" = dontDistribute super."concurrent-sa";
@@ -2632,6 +2637,7 @@ self: super: {
"diagrams-solve" = dontDistribute super."diagrams-solve";
"diagrams-svg" = doDistribute super."diagrams-svg_1_1_0_3";
"diagrams-tikz" = dontDistribute super."diagrams-tikz";
+ "dialog" = dontDistribute super."dialog";
"dice" = dontDistribute super."dice";
"dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit";
"dicom" = dontDistribute super."dicom";
@@ -2824,6 +2830,7 @@ self: super: {
"edenskel" = dontDistribute super."edenskel";
"edentv" = dontDistribute super."edentv";
"edge" = dontDistribute super."edge";
+ "edis" = dontDistribute super."edis";
"edit-distance" = dontDistribute super."edit-distance";
"edit-distance-vector" = dontDistribute super."edit-distance-vector";
"edit-lenses" = dontDistribute super."edit-lenses";
@@ -3023,6 +3030,7 @@ self: super: {
"fad" = dontDistribute super."fad";
"failable-list" = dontDistribute super."failable-list";
"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";
@@ -3253,6 +3261,7 @@ self: super: {
"friday-juicypixels" = dontDistribute super."friday-juicypixels";
"friday-scale-dct" = dontDistribute super."friday-scale-dct";
"friendly-time" = dontDistribute super."friendly-time";
+ "frontmatter" = dontDistribute super."frontmatter";
"frp-arduino" = dontDistribute super."frp-arduino";
"frpnow" = dontDistribute super."frpnow";
"frpnow-gloss" = dontDistribute super."frpnow-gloss";
@@ -3474,6 +3483,7 @@ self: super: {
"gitlib-utils" = dontDistribute super."gitlib-utils";
"gitrev" = dontDistribute super."gitrev";
"gitson" = dontDistribute super."gitson";
+ "gitter" = dontDistribute super."gitter";
"gl" = doDistribute super."gl_0_6_1";
"gl-capture" = dontDistribute super."gl-capture";
"glade" = dontDistribute super."glade";
@@ -3787,6 +3797,7 @@ self: super: {
"hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP";
"hackage-server" = dontDistribute super."hackage-server";
"hackage-sparks" = dontDistribute super."hackage-sparks";
+ "hackage-whatsnew" = dontDistribute super."hackage-whatsnew";
"hackage2hwn" = dontDistribute super."hackage2hwn";
"hackage2twitter" = dontDistribute super."hackage2twitter";
"hackager" = dontDistribute super."hackager";
@@ -4534,6 +4545,7 @@ self: super: {
"hspec-meta" = doDistribute super."hspec-meta_2_0_0";
"hspec-monad-control" = dontDistribute super."hspec-monad-control";
"hspec-server" = dontDistribute super."hspec-server";
+ "hspec-setup" = dontDistribute super."hspec-setup";
"hspec-shouldbe" = dontDistribute super."hspec-shouldbe";
"hspec-smallcheck" = dontDistribute super."hspec-smallcheck";
"hspec-snap" = dontDistribute super."hspec-snap";
@@ -4788,6 +4800,7 @@ self: super: {
"imgurder" = dontDistribute super."imgurder";
"imm" = dontDistribute super."imm";
"imparse" = dontDistribute super."imparse";
+ "imperative-edsl" = dontDistribute super."imperative-edsl";
"imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl";
"implicit" = dontDistribute super."implicit";
"implicit-params" = dontDistribute super."implicit-params";
@@ -4932,6 +4945,7 @@ self: super: {
"ix-shapable" = dontDistribute super."ix-shapable";
"ixdopp" = dontDistribute super."ixdopp";
"ixmonad" = dontDistribute super."ixmonad";
+ "ixset" = doDistribute super."ixset_1_0_6";
"ixset-typed" = dontDistribute super."ixset-typed";
"iyql" = dontDistribute super."iyql";
"j2hs" = dontDistribute super."j2hs";
@@ -4978,6 +4992,7 @@ self: super: {
"json-autotype" = dontDistribute super."json-autotype";
"json-b" = dontDistribute super."json-b";
"json-builder" = dontDistribute super."json-builder";
+ "json-encoder" = dontDistribute super."json-encoder";
"json-enumerator" = dontDistribute super."json-enumerator";
"json-extra" = dontDistribute super."json-extra";
"json-fu" = dontDistribute super."json-fu";
@@ -5119,6 +5134,7 @@ self: super: {
"lambdacube-examples" = dontDistribute super."lambdacube-examples";
"lambdacube-gl" = dontDistribute super."lambdacube-gl";
"lambdacube-samples" = dontDistribute super."lambdacube-samples";
+ "lambdatex" = dontDistribute super."lambdatex";
"lambdatwit" = dontDistribute super."lambdatwit";
"lambdiff" = dontDistribute super."lambdiff";
"lame-tester" = dontDistribute super."lame-tester";
@@ -5329,6 +5345,7 @@ self: super: {
"list-fusion-probe" = dontDistribute super."list-fusion-probe";
"list-grouping" = dontDistribute super."list-grouping";
"list-mux" = dontDistribute super."list-mux";
+ "list-prompt" = dontDistribute super."list-prompt";
"list-remote-forwards" = dontDistribute super."list-remote-forwards";
"list-t" = doDistribute super."list-t_0_3_1";
"list-t-attoparsec" = dontDistribute super."list-t-attoparsec";
@@ -5373,6 +5390,7 @@ self: super: {
"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-domain" = doDistribute super."log-domain_0_9_3";
@@ -6054,6 +6072,7 @@ self: super: {
"omnifmt" = dontDistribute super."omnifmt";
"on-a-horse" = dontDistribute super."on-a-horse";
"on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel";
+ "once" = dontDistribute super."once";
"one-liner" = dontDistribute super."one-liner";
"one-time-password" = dontDistribute super."one-time-password";
"oneOfN" = dontDistribute super."oneOfN";
@@ -6151,7 +6170,6 @@ self: super: {
"padKONTROL" = dontDistribute super."padKONTROL";
"pagarme" = dontDistribute super."pagarme";
"pager" = dontDistribute super."pager";
- "pagerduty" = dontDistribute super."pagerduty";
"pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver";
"palette" = dontDistribute super."palette";
"palindromes" = dontDistribute super."palindromes";
@@ -6314,6 +6332,7 @@ self: super: {
"phasechange" = dontDistribute super."phasechange";
"phash" = dontDistribute super."phash";
"phizzle" = dontDistribute super."phizzle";
+ "phoityne" = dontDistribute super."phoityne";
"phone-numbers" = dontDistribute super."phone-numbers";
"phone-push" = dontDistribute super."phone-push";
"phonetic-code" = dontDistribute super."phonetic-code";
@@ -6924,6 +6943,7 @@ self: super: {
"rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster";
"retry" = dontDistribute super."retry";
"retryer" = dontDistribute super."retryer";
+ "rev-state" = doDistribute super."rev-state_0_1";
"revdectime" = dontDistribute super."revdectime";
"reverse-apply" = dontDistribute super."reverse-apply";
"reverse-geocoding" = dontDistribute super."reverse-geocoding";
@@ -7162,6 +7182,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serv" = dontDistribute super."serv";
"servant" = dontDistribute super."servant";
"servant-JuicyPixels" = dontDistribute super."servant-JuicyPixels";
"servant-blaze" = dontDistribute super."servant-blaze";
@@ -8194,6 +8215,7 @@ self: super: {
"typehash" = dontDistribute super."typehash";
"typelevel" = dontDistribute super."typelevel";
"typelevel-tensor" = dontDistribute super."typelevel-tensor";
+ "typelits-witnesses" = dontDistribute super."typelits-witnesses";
"typeof" = dontDistribute super."typeof";
"typeparams" = dontDistribute super."typeparams";
"types-compat" = dontDistribute super."types-compat";
@@ -8440,6 +8462,7 @@ self: super: {
"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" = dontDistribute super."vty";
diff --git a/pkgs/development/haskell-modules/configuration-lts-0.6.nix b/pkgs/development/haskell-modules/configuration-lts-0.6.nix
index fadd237ffbc..17b887b8689 100644
--- a/pkgs/development/haskell-modules/configuration-lts-0.6.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-0.6.nix
@@ -336,6 +336,7 @@ self: super: {
"FormalGrammars" = dontDistribute super."FormalGrammars";
"Foster" = dontDistribute super."Foster";
"FpMLv53" = dontDistribute super."FpMLv53";
+ "FractalArt" = dontDistribute super."FractalArt";
"Fractaler" = dontDistribute super."Fractaler";
"Frames" = dontDistribute super."Frames";
"Frank" = dontDistribute super."Frank";
@@ -490,6 +491,7 @@ self: super: {
"HTTP-Simple" = dontDistribute super."HTTP-Simple";
"HTab" = dontDistribute super."HTab";
"HTicTacToe" = dontDistribute super."HTicTacToe";
+ "HUnit" = doDistribute super."HUnit_1_2_5_2";
"HUnit-Diff" = dontDistribute super."HUnit-Diff";
"HUnit-Plus" = dontDistribute super."HUnit-Plus";
"HUnit-approx" = dontDistribute super."HUnit-approx";
@@ -524,6 +526,7 @@ self: super: {
"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";
@@ -1970,6 +1973,7 @@ self: super: {
"cef" = dontDistribute super."cef";
"ceilometer-common" = dontDistribute super."ceilometer-common";
"cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo";
+ "cerberus" = dontDistribute super."cerberus";
"cereal" = doDistribute super."cereal_0_4_1_0";
"cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_3";
"cereal-derive" = dontDistribute super."cereal-derive";
@@ -2187,6 +2191,7 @@ self: super: {
"concrete-typerep" = dontDistribute super."concrete-typerep";
"concurrent-barrier" = dontDistribute super."concurrent-barrier";
"concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache";
+ "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9";
"concurrent-machines" = dontDistribute super."concurrent-machines";
"concurrent-output" = dontDistribute super."concurrent-output";
"concurrent-sa" = dontDistribute super."concurrent-sa";
@@ -2629,6 +2634,7 @@ self: super: {
"diagrams-solve" = dontDistribute super."diagrams-solve";
"diagrams-svg" = doDistribute super."diagrams-svg_1_1_0_3";
"diagrams-tikz" = dontDistribute super."diagrams-tikz";
+ "dialog" = dontDistribute super."dialog";
"dice" = dontDistribute super."dice";
"dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit";
"dicom" = dontDistribute super."dicom";
@@ -2821,6 +2827,7 @@ self: super: {
"edenskel" = dontDistribute super."edenskel";
"edentv" = dontDistribute super."edentv";
"edge" = dontDistribute super."edge";
+ "edis" = dontDistribute super."edis";
"edit-distance" = dontDistribute super."edit-distance";
"edit-distance-vector" = dontDistribute super."edit-distance-vector";
"edit-lenses" = dontDistribute super."edit-lenses";
@@ -3020,6 +3027,7 @@ self: super: {
"fad" = dontDistribute super."fad";
"failable-list" = dontDistribute super."failable-list";
"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";
@@ -3250,6 +3258,7 @@ self: super: {
"friday-juicypixels" = dontDistribute super."friday-juicypixels";
"friday-scale-dct" = dontDistribute super."friday-scale-dct";
"friendly-time" = dontDistribute super."friendly-time";
+ "frontmatter" = dontDistribute super."frontmatter";
"frp-arduino" = dontDistribute super."frp-arduino";
"frpnow" = dontDistribute super."frpnow";
"frpnow-gloss" = dontDistribute super."frpnow-gloss";
@@ -3471,6 +3480,7 @@ self: super: {
"gitlib-utils" = dontDistribute super."gitlib-utils";
"gitrev" = dontDistribute super."gitrev";
"gitson" = dontDistribute super."gitson";
+ "gitter" = dontDistribute super."gitter";
"gl" = doDistribute super."gl_0_6_2";
"gl-capture" = dontDistribute super."gl-capture";
"glade" = dontDistribute super."glade";
@@ -3784,6 +3794,7 @@ self: super: {
"hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP";
"hackage-server" = dontDistribute super."hackage-server";
"hackage-sparks" = dontDistribute super."hackage-sparks";
+ "hackage-whatsnew" = dontDistribute super."hackage-whatsnew";
"hackage2hwn" = dontDistribute super."hackage2hwn";
"hackage2twitter" = dontDistribute super."hackage2twitter";
"hackager" = dontDistribute super."hackager";
@@ -4530,6 +4541,7 @@ self: super: {
"hspec-meta" = doDistribute super."hspec-meta_2_0_0";
"hspec-monad-control" = dontDistribute super."hspec-monad-control";
"hspec-server" = dontDistribute super."hspec-server";
+ "hspec-setup" = dontDistribute super."hspec-setup";
"hspec-shouldbe" = dontDistribute super."hspec-shouldbe";
"hspec-smallcheck" = dontDistribute super."hspec-smallcheck";
"hspec-snap" = dontDistribute super."hspec-snap";
@@ -4784,6 +4796,7 @@ self: super: {
"imgurder" = dontDistribute super."imgurder";
"imm" = dontDistribute super."imm";
"imparse" = dontDistribute super."imparse";
+ "imperative-edsl" = dontDistribute super."imperative-edsl";
"imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl";
"implicit" = dontDistribute super."implicit";
"implicit-params" = dontDistribute super."implicit-params";
@@ -4928,6 +4941,7 @@ self: super: {
"ix-shapable" = dontDistribute super."ix-shapable";
"ixdopp" = dontDistribute super."ixdopp";
"ixmonad" = dontDistribute super."ixmonad";
+ "ixset" = doDistribute super."ixset_1_0_6";
"ixset-typed" = dontDistribute super."ixset-typed";
"iyql" = dontDistribute super."iyql";
"j2hs" = dontDistribute super."j2hs";
@@ -4974,6 +4988,7 @@ self: super: {
"json-autotype" = dontDistribute super."json-autotype";
"json-b" = dontDistribute super."json-b";
"json-builder" = dontDistribute super."json-builder";
+ "json-encoder" = dontDistribute super."json-encoder";
"json-enumerator" = dontDistribute super."json-enumerator";
"json-extra" = dontDistribute super."json-extra";
"json-fu" = dontDistribute super."json-fu";
@@ -5115,6 +5130,7 @@ self: super: {
"lambdacube-examples" = dontDistribute super."lambdacube-examples";
"lambdacube-gl" = dontDistribute super."lambdacube-gl";
"lambdacube-samples" = dontDistribute super."lambdacube-samples";
+ "lambdatex" = dontDistribute super."lambdatex";
"lambdatwit" = dontDistribute super."lambdatwit";
"lambdiff" = dontDistribute super."lambdiff";
"lame-tester" = dontDistribute super."lame-tester";
@@ -5325,6 +5341,7 @@ self: super: {
"list-fusion-probe" = dontDistribute super."list-fusion-probe";
"list-grouping" = dontDistribute super."list-grouping";
"list-mux" = dontDistribute super."list-mux";
+ "list-prompt" = dontDistribute super."list-prompt";
"list-remote-forwards" = dontDistribute super."list-remote-forwards";
"list-t" = doDistribute super."list-t_0_3_2";
"list-t-attoparsec" = dontDistribute super."list-t-attoparsec";
@@ -5369,6 +5386,7 @@ self: super: {
"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-domain" = doDistribute super."log-domain_0_9_3";
@@ -6049,6 +6067,7 @@ self: super: {
"omnifmt" = dontDistribute super."omnifmt";
"on-a-horse" = dontDistribute super."on-a-horse";
"on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel";
+ "once" = dontDistribute super."once";
"one-liner" = dontDistribute super."one-liner";
"one-time-password" = dontDistribute super."one-time-password";
"oneOfN" = dontDistribute super."oneOfN";
@@ -6146,7 +6165,6 @@ self: super: {
"padKONTROL" = dontDistribute super."padKONTROL";
"pagarme" = dontDistribute super."pagarme";
"pager" = dontDistribute super."pager";
- "pagerduty" = dontDistribute super."pagerduty";
"pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver";
"palette" = dontDistribute super."palette";
"palindromes" = dontDistribute super."palindromes";
@@ -6309,6 +6327,7 @@ self: super: {
"phasechange" = dontDistribute super."phasechange";
"phash" = dontDistribute super."phash";
"phizzle" = dontDistribute super."phizzle";
+ "phoityne" = dontDistribute super."phoityne";
"phone-numbers" = dontDistribute super."phone-numbers";
"phone-push" = dontDistribute super."phone-push";
"phonetic-code" = dontDistribute super."phonetic-code";
@@ -6918,6 +6937,7 @@ self: super: {
"rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster";
"retry" = dontDistribute super."retry";
"retryer" = dontDistribute super."retryer";
+ "rev-state" = doDistribute super."rev-state_0_1";
"revdectime" = dontDistribute super."revdectime";
"reverse-apply" = dontDistribute super."reverse-apply";
"reverse-geocoding" = dontDistribute super."reverse-geocoding";
@@ -7156,6 +7176,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serv" = dontDistribute super."serv";
"servant" = dontDistribute super."servant";
"servant-JuicyPixels" = dontDistribute super."servant-JuicyPixels";
"servant-blaze" = dontDistribute super."servant-blaze";
@@ -8188,6 +8209,7 @@ self: super: {
"typehash" = dontDistribute super."typehash";
"typelevel" = dontDistribute super."typelevel";
"typelevel-tensor" = dontDistribute super."typelevel-tensor";
+ "typelits-witnesses" = dontDistribute super."typelits-witnesses";
"typeof" = dontDistribute super."typeof";
"typeparams" = dontDistribute super."typeparams";
"types-compat" = dontDistribute super."types-compat";
@@ -8434,6 +8456,7 @@ self: super: {
"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" = dontDistribute super."vty";
diff --git a/pkgs/development/haskell-modules/configuration-lts-0.7.nix b/pkgs/development/haskell-modules/configuration-lts-0.7.nix
index c5aa7f8ebb9..e9d3b12d37f 100644
--- a/pkgs/development/haskell-modules/configuration-lts-0.7.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-0.7.nix
@@ -336,6 +336,7 @@ self: super: {
"FormalGrammars" = dontDistribute super."FormalGrammars";
"Foster" = dontDistribute super."Foster";
"FpMLv53" = dontDistribute super."FpMLv53";
+ "FractalArt" = dontDistribute super."FractalArt";
"Fractaler" = dontDistribute super."Fractaler";
"Frames" = dontDistribute super."Frames";
"Frank" = dontDistribute super."Frank";
@@ -490,6 +491,7 @@ self: super: {
"HTTP-Simple" = dontDistribute super."HTTP-Simple";
"HTab" = dontDistribute super."HTab";
"HTicTacToe" = dontDistribute super."HTicTacToe";
+ "HUnit" = doDistribute super."HUnit_1_2_5_2";
"HUnit-Diff" = dontDistribute super."HUnit-Diff";
"HUnit-Plus" = dontDistribute super."HUnit-Plus";
"HUnit-approx" = dontDistribute super."HUnit-approx";
@@ -524,6 +526,7 @@ self: super: {
"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";
@@ -1970,6 +1973,7 @@ self: super: {
"cef" = dontDistribute super."cef";
"ceilometer-common" = dontDistribute super."ceilometer-common";
"cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo";
+ "cerberus" = dontDistribute super."cerberus";
"cereal" = doDistribute super."cereal_0_4_1_0";
"cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_3";
"cereal-derive" = dontDistribute super."cereal-derive";
@@ -2187,6 +2191,7 @@ self: super: {
"concrete-typerep" = dontDistribute super."concrete-typerep";
"concurrent-barrier" = dontDistribute super."concurrent-barrier";
"concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache";
+ "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9";
"concurrent-machines" = dontDistribute super."concurrent-machines";
"concurrent-output" = dontDistribute super."concurrent-output";
"concurrent-sa" = dontDistribute super."concurrent-sa";
@@ -2629,6 +2634,7 @@ self: super: {
"diagrams-solve" = dontDistribute super."diagrams-solve";
"diagrams-svg" = doDistribute super."diagrams-svg_1_1_0_3";
"diagrams-tikz" = dontDistribute super."diagrams-tikz";
+ "dialog" = dontDistribute super."dialog";
"dice" = dontDistribute super."dice";
"dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit";
"dicom" = dontDistribute super."dicom";
@@ -2821,6 +2827,7 @@ self: super: {
"edenskel" = dontDistribute super."edenskel";
"edentv" = dontDistribute super."edentv";
"edge" = dontDistribute super."edge";
+ "edis" = dontDistribute super."edis";
"edit-distance" = dontDistribute super."edit-distance";
"edit-distance-vector" = dontDistribute super."edit-distance-vector";
"edit-lenses" = dontDistribute super."edit-lenses";
@@ -3020,6 +3027,7 @@ self: super: {
"fad" = dontDistribute super."fad";
"failable-list" = dontDistribute super."failable-list";
"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";
@@ -3250,6 +3258,7 @@ self: super: {
"friday-juicypixels" = dontDistribute super."friday-juicypixels";
"friday-scale-dct" = dontDistribute super."friday-scale-dct";
"friendly-time" = dontDistribute super."friendly-time";
+ "frontmatter" = dontDistribute super."frontmatter";
"frp-arduino" = dontDistribute super."frp-arduino";
"frpnow" = dontDistribute super."frpnow";
"frpnow-gloss" = dontDistribute super."frpnow-gloss";
@@ -3471,6 +3480,7 @@ self: super: {
"gitlib-utils" = dontDistribute super."gitlib-utils";
"gitrev" = dontDistribute super."gitrev";
"gitson" = dontDistribute super."gitson";
+ "gitter" = dontDistribute super."gitter";
"gl" = doDistribute super."gl_0_6_2";
"gl-capture" = dontDistribute super."gl-capture";
"glade" = dontDistribute super."glade";
@@ -3784,6 +3794,7 @@ self: super: {
"hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP";
"hackage-server" = dontDistribute super."hackage-server";
"hackage-sparks" = dontDistribute super."hackage-sparks";
+ "hackage-whatsnew" = dontDistribute super."hackage-whatsnew";
"hackage2hwn" = dontDistribute super."hackage2hwn";
"hackage2twitter" = dontDistribute super."hackage2twitter";
"hackager" = dontDistribute super."hackager";
@@ -4530,6 +4541,7 @@ self: super: {
"hspec-meta" = doDistribute super."hspec-meta_2_0_0";
"hspec-monad-control" = dontDistribute super."hspec-monad-control";
"hspec-server" = dontDistribute super."hspec-server";
+ "hspec-setup" = dontDistribute super."hspec-setup";
"hspec-shouldbe" = dontDistribute super."hspec-shouldbe";
"hspec-smallcheck" = dontDistribute super."hspec-smallcheck";
"hspec-snap" = dontDistribute super."hspec-snap";
@@ -4784,6 +4796,7 @@ self: super: {
"imgurder" = dontDistribute super."imgurder";
"imm" = dontDistribute super."imm";
"imparse" = dontDistribute super."imparse";
+ "imperative-edsl" = dontDistribute super."imperative-edsl";
"imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl";
"implicit" = dontDistribute super."implicit";
"implicit-params" = dontDistribute super."implicit-params";
@@ -4928,6 +4941,7 @@ self: super: {
"ix-shapable" = dontDistribute super."ix-shapable";
"ixdopp" = dontDistribute super."ixdopp";
"ixmonad" = dontDistribute super."ixmonad";
+ "ixset" = doDistribute super."ixset_1_0_6";
"ixset-typed" = dontDistribute super."ixset-typed";
"iyql" = dontDistribute super."iyql";
"j2hs" = dontDistribute super."j2hs";
@@ -4974,6 +4988,7 @@ self: super: {
"json-autotype" = dontDistribute super."json-autotype";
"json-b" = dontDistribute super."json-b";
"json-builder" = dontDistribute super."json-builder";
+ "json-encoder" = dontDistribute super."json-encoder";
"json-enumerator" = dontDistribute super."json-enumerator";
"json-extra" = dontDistribute super."json-extra";
"json-fu" = dontDistribute super."json-fu";
@@ -5115,6 +5130,7 @@ self: super: {
"lambdacube-examples" = dontDistribute super."lambdacube-examples";
"lambdacube-gl" = dontDistribute super."lambdacube-gl";
"lambdacube-samples" = dontDistribute super."lambdacube-samples";
+ "lambdatex" = dontDistribute super."lambdatex";
"lambdatwit" = dontDistribute super."lambdatwit";
"lambdiff" = dontDistribute super."lambdiff";
"lame-tester" = dontDistribute super."lame-tester";
@@ -5325,6 +5341,7 @@ self: super: {
"list-fusion-probe" = dontDistribute super."list-fusion-probe";
"list-grouping" = dontDistribute super."list-grouping";
"list-mux" = dontDistribute super."list-mux";
+ "list-prompt" = dontDistribute super."list-prompt";
"list-remote-forwards" = dontDistribute super."list-remote-forwards";
"list-t" = doDistribute super."list-t_0_3_2";
"list-t-attoparsec" = dontDistribute super."list-t-attoparsec";
@@ -5369,6 +5386,7 @@ self: super: {
"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-domain" = doDistribute super."log-domain_0_9_3";
@@ -6049,6 +6067,7 @@ self: super: {
"omnifmt" = dontDistribute super."omnifmt";
"on-a-horse" = dontDistribute super."on-a-horse";
"on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel";
+ "once" = dontDistribute super."once";
"one-liner" = dontDistribute super."one-liner";
"one-time-password" = dontDistribute super."one-time-password";
"oneOfN" = dontDistribute super."oneOfN";
@@ -6146,7 +6165,6 @@ self: super: {
"padKONTROL" = dontDistribute super."padKONTROL";
"pagarme" = dontDistribute super."pagarme";
"pager" = dontDistribute super."pager";
- "pagerduty" = dontDistribute super."pagerduty";
"pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver";
"palette" = dontDistribute super."palette";
"palindromes" = dontDistribute super."palindromes";
@@ -6309,6 +6327,7 @@ self: super: {
"phasechange" = dontDistribute super."phasechange";
"phash" = dontDistribute super."phash";
"phizzle" = dontDistribute super."phizzle";
+ "phoityne" = dontDistribute super."phoityne";
"phone-numbers" = dontDistribute super."phone-numbers";
"phone-push" = dontDistribute super."phone-push";
"phonetic-code" = dontDistribute super."phonetic-code";
@@ -6918,6 +6937,7 @@ self: super: {
"rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster";
"retry" = dontDistribute super."retry";
"retryer" = dontDistribute super."retryer";
+ "rev-state" = doDistribute super."rev-state_0_1";
"revdectime" = dontDistribute super."revdectime";
"reverse-apply" = dontDistribute super."reverse-apply";
"reverse-geocoding" = dontDistribute super."reverse-geocoding";
@@ -7156,6 +7176,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serv" = dontDistribute super."serv";
"servant" = dontDistribute super."servant";
"servant-JuicyPixels" = dontDistribute super."servant-JuicyPixels";
"servant-blaze" = dontDistribute super."servant-blaze";
@@ -8188,6 +8209,7 @@ self: super: {
"typehash" = dontDistribute super."typehash";
"typelevel" = dontDistribute super."typelevel";
"typelevel-tensor" = dontDistribute super."typelevel-tensor";
+ "typelits-witnesses" = dontDistribute super."typelits-witnesses";
"typeof" = dontDistribute super."typeof";
"typeparams" = dontDistribute super."typeparams";
"types-compat" = dontDistribute super."types-compat";
@@ -8434,6 +8456,7 @@ self: super: {
"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" = dontDistribute super."vty";
diff --git a/pkgs/development/haskell-modules/configuration-lts-1.0.nix b/pkgs/development/haskell-modules/configuration-lts-1.0.nix
index dac2e4c977f..ceddbc9f890 100644
--- a/pkgs/development/haskell-modules/configuration-lts-1.0.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-1.0.nix
@@ -335,6 +335,7 @@ self: super: {
"FormalGrammars" = dontDistribute super."FormalGrammars";
"Foster" = dontDistribute super."Foster";
"FpMLv53" = dontDistribute super."FpMLv53";
+ "FractalArt" = dontDistribute super."FractalArt";
"Fractaler" = dontDistribute super."Fractaler";
"Frames" = dontDistribute super."Frames";
"Frank" = dontDistribute super."Frank";
@@ -488,6 +489,7 @@ self: super: {
"HTTP-Simple" = dontDistribute super."HTTP-Simple";
"HTab" = dontDistribute super."HTab";
"HTicTacToe" = dontDistribute super."HTicTacToe";
+ "HUnit" = doDistribute super."HUnit_1_2_5_2";
"HUnit-Diff" = dontDistribute super."HUnit-Diff";
"HUnit-Plus" = dontDistribute super."HUnit-Plus";
"HUnit-approx" = dontDistribute super."HUnit-approx";
@@ -522,6 +524,7 @@ self: super: {
"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";
@@ -1963,6 +1966,7 @@ self: super: {
"cef" = dontDistribute super."cef";
"ceilometer-common" = dontDistribute super."ceilometer-common";
"cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo";
+ "cerberus" = dontDistribute super."cerberus";
"cereal" = doDistribute super."cereal_0_4_1_0";
"cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_3";
"cereal-derive" = dontDistribute super."cereal-derive";
@@ -2179,6 +2183,7 @@ self: super: {
"concrete-typerep" = dontDistribute super."concrete-typerep";
"concurrent-barrier" = dontDistribute super."concurrent-barrier";
"concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache";
+ "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9";
"concurrent-machines" = dontDistribute super."concurrent-machines";
"concurrent-output" = dontDistribute super."concurrent-output";
"concurrent-sa" = dontDistribute super."concurrent-sa";
@@ -2620,6 +2625,7 @@ self: super: {
"diagrams-solve" = dontDistribute super."diagrams-solve";
"diagrams-svg" = doDistribute super."diagrams-svg_1_1_0_3";
"diagrams-tikz" = dontDistribute super."diagrams-tikz";
+ "dialog" = dontDistribute super."dialog";
"dice" = dontDistribute super."dice";
"dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit";
"dicom" = dontDistribute super."dicom";
@@ -2812,6 +2818,7 @@ self: super: {
"edenskel" = dontDistribute super."edenskel";
"edentv" = dontDistribute super."edentv";
"edge" = dontDistribute super."edge";
+ "edis" = dontDistribute super."edis";
"edit-distance" = dontDistribute super."edit-distance";
"edit-distance-vector" = dontDistribute super."edit-distance-vector";
"edit-lenses" = dontDistribute super."edit-lenses";
@@ -3010,6 +3017,7 @@ self: super: {
"fad" = dontDistribute super."fad";
"failable-list" = dontDistribute super."failable-list";
"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";
@@ -3240,6 +3248,7 @@ self: super: {
"friday-juicypixels" = dontDistribute super."friday-juicypixels";
"friday-scale-dct" = dontDistribute super."friday-scale-dct";
"friendly-time" = dontDistribute super."friendly-time";
+ "frontmatter" = dontDistribute super."frontmatter";
"frp-arduino" = dontDistribute super."frp-arduino";
"frpnow" = dontDistribute super."frpnow";
"frpnow-gloss" = dontDistribute super."frpnow-gloss";
@@ -3460,6 +3469,7 @@ self: super: {
"gitlib-utils" = dontDistribute super."gitlib-utils";
"gitrev" = dontDistribute super."gitrev";
"gitson" = dontDistribute super."gitson";
+ "gitter" = dontDistribute super."gitter";
"gl" = doDistribute super."gl_0_6_2";
"gl-capture" = dontDistribute super."gl-capture";
"glade" = dontDistribute super."glade";
@@ -3773,6 +3783,7 @@ self: super: {
"hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP";
"hackage-server" = dontDistribute super."hackage-server";
"hackage-sparks" = dontDistribute super."hackage-sparks";
+ "hackage-whatsnew" = dontDistribute super."hackage-whatsnew";
"hackage2hwn" = dontDistribute super."hackage2hwn";
"hackage2twitter" = dontDistribute super."hackage2twitter";
"hackager" = dontDistribute super."hackager";
@@ -4518,6 +4529,7 @@ self: super: {
"hspec-meta" = doDistribute super."hspec-meta_2_0_0";
"hspec-monad-control" = dontDistribute super."hspec-monad-control";
"hspec-server" = dontDistribute super."hspec-server";
+ "hspec-setup" = dontDistribute super."hspec-setup";
"hspec-shouldbe" = dontDistribute super."hspec-shouldbe";
"hspec-smallcheck" = dontDistribute super."hspec-smallcheck";
"hspec-snap" = dontDistribute super."hspec-snap";
@@ -4772,6 +4784,7 @@ self: super: {
"imgurder" = dontDistribute super."imgurder";
"imm" = dontDistribute super."imm";
"imparse" = dontDistribute super."imparse";
+ "imperative-edsl" = dontDistribute super."imperative-edsl";
"imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl";
"implicit" = dontDistribute super."implicit";
"implicit-params" = dontDistribute super."implicit-params";
@@ -4916,6 +4929,7 @@ self: super: {
"ix-shapable" = dontDistribute super."ix-shapable";
"ixdopp" = dontDistribute super."ixdopp";
"ixmonad" = dontDistribute super."ixmonad";
+ "ixset" = doDistribute super."ixset_1_0_6";
"ixset-typed" = dontDistribute super."ixset-typed";
"iyql" = dontDistribute super."iyql";
"j2hs" = dontDistribute super."j2hs";
@@ -4962,6 +4976,7 @@ self: super: {
"json-autotype" = doDistribute super."json-autotype_0_2_5_4";
"json-b" = dontDistribute super."json-b";
"json-builder" = dontDistribute super."json-builder";
+ "json-encoder" = dontDistribute super."json-encoder";
"json-enumerator" = dontDistribute super."json-enumerator";
"json-extra" = dontDistribute super."json-extra";
"json-fu" = dontDistribute super."json-fu";
@@ -5103,6 +5118,7 @@ self: super: {
"lambdacube-examples" = dontDistribute super."lambdacube-examples";
"lambdacube-gl" = dontDistribute super."lambdacube-gl";
"lambdacube-samples" = dontDistribute super."lambdacube-samples";
+ "lambdatex" = dontDistribute super."lambdatex";
"lambdatwit" = dontDistribute super."lambdatwit";
"lambdiff" = dontDistribute super."lambdiff";
"lame-tester" = dontDistribute super."lame-tester";
@@ -5313,6 +5329,7 @@ self: super: {
"list-fusion-probe" = dontDistribute super."list-fusion-probe";
"list-grouping" = dontDistribute super."list-grouping";
"list-mux" = dontDistribute super."list-mux";
+ "list-prompt" = dontDistribute super."list-prompt";
"list-remote-forwards" = dontDistribute super."list-remote-forwards";
"list-t" = doDistribute super."list-t_0_4_2";
"list-t-attoparsec" = dontDistribute super."list-t-attoparsec";
@@ -5357,6 +5374,7 @@ self: super: {
"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-domain" = doDistribute super."log-domain_0_9_3";
@@ -6037,6 +6055,7 @@ self: super: {
"omnifmt" = dontDistribute super."omnifmt";
"on-a-horse" = dontDistribute super."on-a-horse";
"on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel";
+ "once" = dontDistribute super."once";
"one-liner" = dontDistribute super."one-liner";
"one-time-password" = dontDistribute super."one-time-password";
"oneOfN" = dontDistribute super."oneOfN";
@@ -6134,7 +6153,6 @@ self: super: {
"padKONTROL" = dontDistribute super."padKONTROL";
"pagarme" = dontDistribute super."pagarme";
"pager" = dontDistribute super."pager";
- "pagerduty" = dontDistribute super."pagerduty";
"pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver";
"palette" = dontDistribute super."palette";
"palindromes" = dontDistribute super."palindromes";
@@ -6296,6 +6314,7 @@ self: super: {
"phasechange" = dontDistribute super."phasechange";
"phash" = dontDistribute super."phash";
"phizzle" = dontDistribute super."phizzle";
+ "phoityne" = dontDistribute super."phoityne";
"phone-numbers" = dontDistribute super."phone-numbers";
"phone-push" = dontDistribute super."phone-push";
"phonetic-code" = dontDistribute super."phonetic-code";
@@ -6904,6 +6923,7 @@ self: super: {
"rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster";
"retry" = dontDistribute super."retry";
"retryer" = dontDistribute super."retryer";
+ "rev-state" = doDistribute super."rev-state_0_1";
"revdectime" = dontDistribute super."revdectime";
"reverse-apply" = dontDistribute super."reverse-apply";
"reverse-geocoding" = dontDistribute super."reverse-geocoding";
@@ -7142,6 +7162,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serv" = dontDistribute super."serv";
"servant" = dontDistribute super."servant";
"servant-JuicyPixels" = dontDistribute super."servant-JuicyPixels";
"servant-blaze" = dontDistribute super."servant-blaze";
@@ -8173,6 +8194,7 @@ self: super: {
"typehash" = dontDistribute super."typehash";
"typelevel" = dontDistribute super."typelevel";
"typelevel-tensor" = dontDistribute super."typelevel-tensor";
+ "typelits-witnesses" = dontDistribute super."typelits-witnesses";
"typeof" = dontDistribute super."typeof";
"typeparams" = dontDistribute super."typeparams";
"types-compat" = dontDistribute super."types-compat";
@@ -8418,6 +8440,7 @@ self: super: {
"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" = dontDistribute super."vty";
diff --git a/pkgs/development/haskell-modules/configuration-lts-1.1.nix b/pkgs/development/haskell-modules/configuration-lts-1.1.nix
index fbcdb8a86f5..32288e9a7f7 100644
--- a/pkgs/development/haskell-modules/configuration-lts-1.1.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-1.1.nix
@@ -335,6 +335,7 @@ self: super: {
"FormalGrammars" = dontDistribute super."FormalGrammars";
"Foster" = dontDistribute super."Foster";
"FpMLv53" = dontDistribute super."FpMLv53";
+ "FractalArt" = dontDistribute super."FractalArt";
"Fractaler" = dontDistribute super."Fractaler";
"Frames" = dontDistribute super."Frames";
"Frank" = dontDistribute super."Frank";
@@ -488,6 +489,7 @@ self: super: {
"HTTP-Simple" = dontDistribute super."HTTP-Simple";
"HTab" = dontDistribute super."HTab";
"HTicTacToe" = dontDistribute super."HTicTacToe";
+ "HUnit" = doDistribute super."HUnit_1_2_5_2";
"HUnit-Diff" = dontDistribute super."HUnit-Diff";
"HUnit-Plus" = dontDistribute super."HUnit-Plus";
"HUnit-approx" = dontDistribute super."HUnit-approx";
@@ -522,6 +524,7 @@ self: super: {
"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";
@@ -1962,6 +1965,7 @@ self: super: {
"cef" = dontDistribute super."cef";
"ceilometer-common" = dontDistribute super."ceilometer-common";
"cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo";
+ "cerberus" = dontDistribute super."cerberus";
"cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_3";
"cereal-derive" = dontDistribute super."cereal-derive";
"cereal-enumerator" = dontDistribute super."cereal-enumerator";
@@ -2177,6 +2181,7 @@ self: super: {
"concrete-typerep" = dontDistribute super."concrete-typerep";
"concurrent-barrier" = dontDistribute super."concurrent-barrier";
"concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache";
+ "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9";
"concurrent-machines" = dontDistribute super."concurrent-machines";
"concurrent-output" = dontDistribute super."concurrent-output";
"concurrent-sa" = dontDistribute super."concurrent-sa";
@@ -2617,6 +2622,7 @@ self: super: {
"diagrams-solve" = dontDistribute super."diagrams-solve";
"diagrams-svg" = doDistribute super."diagrams-svg_1_1_0_3";
"diagrams-tikz" = dontDistribute super."diagrams-tikz";
+ "dialog" = dontDistribute super."dialog";
"dice" = dontDistribute super."dice";
"dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit";
"dicom" = dontDistribute super."dicom";
@@ -2808,6 +2814,7 @@ self: super: {
"edenskel" = dontDistribute super."edenskel";
"edentv" = dontDistribute super."edentv";
"edge" = dontDistribute super."edge";
+ "edis" = dontDistribute super."edis";
"edit-distance" = dontDistribute super."edit-distance";
"edit-distance-vector" = dontDistribute super."edit-distance-vector";
"edit-lenses" = dontDistribute super."edit-lenses";
@@ -3006,6 +3013,7 @@ self: super: {
"fad" = dontDistribute super."fad";
"failable-list" = dontDistribute super."failable-list";
"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";
@@ -3236,6 +3244,7 @@ self: super: {
"friday-juicypixels" = dontDistribute super."friday-juicypixels";
"friday-scale-dct" = dontDistribute super."friday-scale-dct";
"friendly-time" = dontDistribute super."friendly-time";
+ "frontmatter" = dontDistribute super."frontmatter";
"frp-arduino" = dontDistribute super."frp-arduino";
"frpnow" = dontDistribute super."frpnow";
"frpnow-gloss" = dontDistribute super."frpnow-gloss";
@@ -3456,6 +3465,7 @@ self: super: {
"gitlib-utils" = dontDistribute super."gitlib-utils";
"gitrev" = dontDistribute super."gitrev";
"gitson" = dontDistribute super."gitson";
+ "gitter" = dontDistribute super."gitter";
"gl" = doDistribute super."gl_0_6_3";
"gl-capture" = dontDistribute super."gl-capture";
"glade" = dontDistribute super."glade";
@@ -3769,6 +3779,7 @@ self: super: {
"hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP";
"hackage-server" = dontDistribute super."hackage-server";
"hackage-sparks" = dontDistribute super."hackage-sparks";
+ "hackage-whatsnew" = dontDistribute super."hackage-whatsnew";
"hackage2hwn" = dontDistribute super."hackage2hwn";
"hackage2twitter" = dontDistribute super."hackage2twitter";
"hackager" = dontDistribute super."hackager";
@@ -4511,6 +4522,7 @@ self: super: {
"hspec-meta" = doDistribute super."hspec-meta_2_0_0";
"hspec-monad-control" = dontDistribute super."hspec-monad-control";
"hspec-server" = dontDistribute super."hspec-server";
+ "hspec-setup" = dontDistribute super."hspec-setup";
"hspec-shouldbe" = dontDistribute super."hspec-shouldbe";
"hspec-smallcheck" = dontDistribute super."hspec-smallcheck";
"hspec-snap" = dontDistribute super."hspec-snap";
@@ -4765,6 +4777,7 @@ self: super: {
"imgurder" = dontDistribute super."imgurder";
"imm" = dontDistribute super."imm";
"imparse" = dontDistribute super."imparse";
+ "imperative-edsl" = dontDistribute super."imperative-edsl";
"imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl";
"implicit" = dontDistribute super."implicit";
"implicit-params" = dontDistribute super."implicit-params";
@@ -4909,6 +4922,7 @@ self: super: {
"ix-shapable" = dontDistribute super."ix-shapable";
"ixdopp" = dontDistribute super."ixdopp";
"ixmonad" = dontDistribute super."ixmonad";
+ "ixset" = doDistribute super."ixset_1_0_6";
"ixset-typed" = dontDistribute super."ixset-typed";
"iyql" = dontDistribute super."iyql";
"j2hs" = dontDistribute super."j2hs";
@@ -4955,6 +4969,7 @@ self: super: {
"json-autotype" = doDistribute super."json-autotype_0_2_5_4";
"json-b" = dontDistribute super."json-b";
"json-builder" = dontDistribute super."json-builder";
+ "json-encoder" = dontDistribute super."json-encoder";
"json-enumerator" = dontDistribute super."json-enumerator";
"json-extra" = dontDistribute super."json-extra";
"json-fu" = dontDistribute super."json-fu";
@@ -5096,6 +5111,7 @@ self: super: {
"lambdacube-examples" = dontDistribute super."lambdacube-examples";
"lambdacube-gl" = dontDistribute super."lambdacube-gl";
"lambdacube-samples" = dontDistribute super."lambdacube-samples";
+ "lambdatex" = dontDistribute super."lambdatex";
"lambdatwit" = dontDistribute super."lambdatwit";
"lambdiff" = dontDistribute super."lambdiff";
"lame-tester" = dontDistribute super."lame-tester";
@@ -5306,6 +5322,7 @@ self: super: {
"list-fusion-probe" = dontDistribute super."list-fusion-probe";
"list-grouping" = dontDistribute super."list-grouping";
"list-mux" = dontDistribute super."list-mux";
+ "list-prompt" = dontDistribute super."list-prompt";
"list-remote-forwards" = dontDistribute super."list-remote-forwards";
"list-t" = doDistribute super."list-t_0_4_2";
"list-t-attoparsec" = dontDistribute super."list-t-attoparsec";
@@ -5350,6 +5367,7 @@ self: super: {
"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-domain" = doDistribute super."log-domain_0_9_3";
@@ -6029,6 +6047,7 @@ self: super: {
"omnifmt" = dontDistribute super."omnifmt";
"on-a-horse" = dontDistribute super."on-a-horse";
"on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel";
+ "once" = dontDistribute super."once";
"one-liner" = dontDistribute super."one-liner";
"one-time-password" = dontDistribute super."one-time-password";
"oneOfN" = dontDistribute super."oneOfN";
@@ -6126,7 +6145,6 @@ self: super: {
"padKONTROL" = dontDistribute super."padKONTROL";
"pagarme" = dontDistribute super."pagarme";
"pager" = dontDistribute super."pager";
- "pagerduty" = dontDistribute super."pagerduty";
"pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver";
"palette" = dontDistribute super."palette";
"palindromes" = dontDistribute super."palindromes";
@@ -6288,6 +6306,7 @@ self: super: {
"phasechange" = dontDistribute super."phasechange";
"phash" = dontDistribute super."phash";
"phizzle" = dontDistribute super."phizzle";
+ "phoityne" = dontDistribute super."phoityne";
"phone-numbers" = dontDistribute super."phone-numbers";
"phone-push" = dontDistribute super."phone-push";
"phonetic-code" = dontDistribute super."phonetic-code";
@@ -6896,6 +6915,7 @@ self: super: {
"rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster";
"retry" = dontDistribute super."retry";
"retryer" = dontDistribute super."retryer";
+ "rev-state" = doDistribute super."rev-state_0_1";
"revdectime" = dontDistribute super."revdectime";
"reverse-apply" = dontDistribute super."reverse-apply";
"reverse-geocoding" = dontDistribute super."reverse-geocoding";
@@ -7134,6 +7154,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serv" = dontDistribute super."serv";
"servant" = dontDistribute super."servant";
"servant-JuicyPixels" = dontDistribute super."servant-JuicyPixels";
"servant-blaze" = dontDistribute super."servant-blaze";
@@ -8160,6 +8181,7 @@ self: super: {
"typehash" = dontDistribute super."typehash";
"typelevel" = dontDistribute super."typelevel";
"typelevel-tensor" = dontDistribute super."typelevel-tensor";
+ "typelits-witnesses" = dontDistribute super."typelits-witnesses";
"typeof" = dontDistribute super."typeof";
"typeparams" = dontDistribute super."typeparams";
"types-compat" = dontDistribute super."types-compat";
@@ -8404,6 +8426,7 @@ self: super: {
"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" = dontDistribute super."vty";
diff --git a/pkgs/development/haskell-modules/configuration-lts-1.10.nix b/pkgs/development/haskell-modules/configuration-lts-1.10.nix
index 992d6212022..044678daee3 100644
--- a/pkgs/development/haskell-modules/configuration-lts-1.10.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-1.10.nix
@@ -335,6 +335,7 @@ self: super: {
"FormalGrammars" = dontDistribute super."FormalGrammars";
"Foster" = dontDistribute super."Foster";
"FpMLv53" = dontDistribute super."FpMLv53";
+ "FractalArt" = dontDistribute super."FractalArt";
"Fractaler" = dontDistribute super."Fractaler";
"Frames" = dontDistribute super."Frames";
"Frank" = dontDistribute super."Frank";
@@ -488,6 +489,7 @@ self: super: {
"HTTP-Simple" = dontDistribute super."HTTP-Simple";
"HTab" = dontDistribute super."HTab";
"HTicTacToe" = dontDistribute super."HTicTacToe";
+ "HUnit" = doDistribute super."HUnit_1_2_5_2";
"HUnit-Diff" = dontDistribute super."HUnit-Diff";
"HUnit-Plus" = dontDistribute super."HUnit-Plus";
"HUnit-approx" = dontDistribute super."HUnit-approx";
@@ -521,6 +523,7 @@ self: super: {
"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";
@@ -1959,6 +1962,7 @@ self: super: {
"cef" = dontDistribute super."cef";
"ceilometer-common" = dontDistribute super."ceilometer-common";
"cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo";
+ "cerberus" = dontDistribute super."cerberus";
"cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_3";
"cereal-derive" = dontDistribute super."cereal-derive";
"cereal-enumerator" = dontDistribute super."cereal-enumerator";
@@ -2173,6 +2177,7 @@ self: super: {
"concrete-typerep" = dontDistribute super."concrete-typerep";
"concurrent-barrier" = dontDistribute super."concurrent-barrier";
"concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache";
+ "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9";
"concurrent-machines" = dontDistribute super."concurrent-machines";
"concurrent-output" = dontDistribute super."concurrent-output";
"concurrent-sa" = dontDistribute super."concurrent-sa";
@@ -2612,6 +2617,7 @@ self: super: {
"diagrams-solve" = dontDistribute super."diagrams-solve";
"diagrams-svg" = doDistribute super."diagrams-svg_1_1_0_4";
"diagrams-tikz" = dontDistribute super."diagrams-tikz";
+ "dialog" = dontDistribute super."dialog";
"dice" = dontDistribute super."dice";
"dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit";
"dicom" = dontDistribute super."dicom";
@@ -2803,6 +2809,7 @@ self: super: {
"edenskel" = dontDistribute super."edenskel";
"edentv" = dontDistribute super."edentv";
"edge" = dontDistribute super."edge";
+ "edis" = dontDistribute super."edis";
"edit-distance" = dontDistribute super."edit-distance";
"edit-distance-vector" = dontDistribute super."edit-distance-vector";
"edit-lenses" = dontDistribute super."edit-lenses";
@@ -3001,6 +3008,7 @@ self: super: {
"fad" = dontDistribute super."fad";
"failable-list" = dontDistribute super."failable-list";
"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";
@@ -3227,6 +3235,7 @@ self: super: {
"friday-juicypixels" = dontDistribute super."friday-juicypixels";
"friday-scale-dct" = dontDistribute super."friday-scale-dct";
"friendly-time" = dontDistribute super."friendly-time";
+ "frontmatter" = dontDistribute super."frontmatter";
"frp-arduino" = dontDistribute super."frp-arduino";
"frpnow" = dontDistribute super."frpnow";
"frpnow-gloss" = dontDistribute super."frpnow-gloss";
@@ -3446,6 +3455,7 @@ self: super: {
"gitlib-utils" = dontDistribute super."gitlib-utils";
"gitrev" = dontDistribute super."gitrev";
"gitson" = dontDistribute super."gitson";
+ "gitter" = dontDistribute super."gitter";
"gl" = doDistribute super."gl_0_6_3";
"gl-capture" = dontDistribute super."gl-capture";
"glade" = dontDistribute super."glade";
@@ -3758,6 +3768,7 @@ self: super: {
"hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP";
"hackage-server" = dontDistribute super."hackage-server";
"hackage-sparks" = dontDistribute super."hackage-sparks";
+ "hackage-whatsnew" = dontDistribute super."hackage-whatsnew";
"hackage2hwn" = dontDistribute super."hackage2hwn";
"hackage2twitter" = dontDistribute super."hackage2twitter";
"hackager" = dontDistribute super."hackager";
@@ -4223,6 +4234,7 @@ self: super: {
"hlibBladeRF" = dontDistribute super."hlibBladeRF";
"hlibev" = dontDistribute super."hlibev";
"hlibfam" = dontDistribute super."hlibfam";
+ "hlibgit2" = doDistribute super."hlibgit2_0_18_0_14";
"hlibsass" = dontDistribute super."hlibsass";
"hlint" = doDistribute super."hlint_1_9_16";
"hlogger" = dontDistribute super."hlogger";
@@ -4498,6 +4510,7 @@ self: super: {
"hspec-meta" = doDistribute super."hspec-meta_2_0_0";
"hspec-monad-control" = dontDistribute super."hspec-monad-control";
"hspec-server" = dontDistribute super."hspec-server";
+ "hspec-setup" = dontDistribute super."hspec-setup";
"hspec-shouldbe" = dontDistribute super."hspec-shouldbe";
"hspec-smallcheck" = dontDistribute super."hspec-smallcheck";
"hspec-snap" = dontDistribute super."hspec-snap";
@@ -4599,6 +4612,7 @@ self: super: {
"http-shed" = dontDistribute super."http-shed";
"http-streams" = dontDistribute super."http-streams";
"http-test" = dontDistribute super."http-test";
+ "http-types" = doDistribute super."http-types_0_8_6";
"http-wget" = dontDistribute super."http-wget";
"http2" = dontDistribute super."http2";
"httpd-shed" = dontDistribute super."httpd-shed";
@@ -4745,6 +4759,7 @@ self: super: {
"imgurder" = dontDistribute super."imgurder";
"imm" = dontDistribute super."imm";
"imparse" = dontDistribute super."imparse";
+ "imperative-edsl" = dontDistribute super."imperative-edsl";
"imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl";
"implicit" = dontDistribute super."implicit";
"implicit-params" = dontDistribute super."implicit-params";
@@ -4888,6 +4903,7 @@ self: super: {
"ix-shapable" = dontDistribute super."ix-shapable";
"ixdopp" = dontDistribute super."ixdopp";
"ixmonad" = dontDistribute super."ixmonad";
+ "ixset" = doDistribute super."ixset_1_0_6";
"ixset-typed" = dontDistribute super."ixset-typed";
"iyql" = dontDistribute super."iyql";
"j2hs" = dontDistribute super."j2hs";
@@ -4934,6 +4950,7 @@ self: super: {
"json-autotype" = doDistribute super."json-autotype_0_2_5_4";
"json-b" = dontDistribute super."json-b";
"json-builder" = dontDistribute super."json-builder";
+ "json-encoder" = dontDistribute super."json-encoder";
"json-enumerator" = dontDistribute super."json-enumerator";
"json-extra" = dontDistribute super."json-extra";
"json-fu" = dontDistribute super."json-fu";
@@ -5075,6 +5092,7 @@ self: super: {
"lambdacube-examples" = dontDistribute super."lambdacube-examples";
"lambdacube-gl" = dontDistribute super."lambdacube-gl";
"lambdacube-samples" = dontDistribute super."lambdacube-samples";
+ "lambdatex" = dontDistribute super."lambdatex";
"lambdatwit" = dontDistribute super."lambdatwit";
"lambdiff" = dontDistribute super."lambdiff";
"lame-tester" = dontDistribute super."lame-tester";
@@ -5284,6 +5302,7 @@ self: super: {
"list-fusion-probe" = dontDistribute super."list-fusion-probe";
"list-grouping" = dontDistribute super."list-grouping";
"list-mux" = dontDistribute super."list-mux";
+ "list-prompt" = dontDistribute super."list-prompt";
"list-remote-forwards" = dontDistribute super."list-remote-forwards";
"list-t" = doDistribute super."list-t_0_4_3";
"list-t-attoparsec" = dontDistribute super."list-t-attoparsec";
@@ -5328,6 +5347,7 @@ self: super: {
"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-domain" = doDistribute super."log-domain_0_9_3";
@@ -6005,6 +6025,7 @@ self: super: {
"omnifmt" = dontDistribute super."omnifmt";
"on-a-horse" = dontDistribute super."on-a-horse";
"on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel";
+ "once" = dontDistribute super."once";
"one-liner" = dontDistribute super."one-liner";
"one-time-password" = dontDistribute super."one-time-password";
"oneOfN" = dontDistribute super."oneOfN";
@@ -6062,6 +6083,7 @@ self: super: {
"optional" = dontDistribute super."optional";
"optional-args" = dontDistribute super."optional-args";
"options-time" = dontDistribute super."options-time";
+ "optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"optparse-simple" = dontDistribute super."optparse-simple";
"orc" = dontDistribute super."orc";
@@ -6100,7 +6122,6 @@ self: super: {
"padKONTROL" = dontDistribute super."padKONTROL";
"pagarme" = dontDistribute super."pagarme";
"pager" = dontDistribute super."pager";
- "pagerduty" = dontDistribute super."pagerduty";
"pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver";
"palette" = dontDistribute super."palette";
"palindromes" = dontDistribute super."palindromes";
@@ -6262,6 +6283,7 @@ self: super: {
"phasechange" = dontDistribute super."phasechange";
"phash" = dontDistribute super."phash";
"phizzle" = dontDistribute super."phizzle";
+ "phoityne" = dontDistribute super."phoityne";
"phone-numbers" = dontDistribute super."phone-numbers";
"phone-push" = dontDistribute super."phone-push";
"phonetic-code" = dontDistribute super."phonetic-code";
@@ -6296,6 +6318,7 @@ self: super: {
"pipes-cereal" = dontDistribute super."pipes-cereal";
"pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus";
"pipes-cliff" = dontDistribute super."pipes-cliff";
+ "pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_3";
"pipes-conduit" = dontDistribute super."pipes-conduit";
"pipes-core" = dontDistribute super."pipes-core";
"pipes-courier" = dontDistribute super."pipes-courier";
@@ -6868,6 +6891,7 @@ self: super: {
"rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster";
"retry" = dontDistribute super."retry";
"retryer" = dontDistribute super."retryer";
+ "rev-state" = doDistribute super."rev-state_0_1";
"revdectime" = dontDistribute super."revdectime";
"reverse-apply" = dontDistribute super."reverse-apply";
"reverse-geocoding" = dontDistribute super."reverse-geocoding";
@@ -7105,6 +7129,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serv" = dontDistribute super."serv";
"servant" = dontDistribute super."servant";
"servant-JuicyPixels" = dontDistribute super."servant-JuicyPixels";
"servant-blaze" = dontDistribute super."servant-blaze";
@@ -8125,6 +8150,7 @@ self: super: {
"typehash" = dontDistribute super."typehash";
"typelevel" = dontDistribute super."typelevel";
"typelevel-tensor" = dontDistribute super."typelevel-tensor";
+ "typelits-witnesses" = dontDistribute super."typelits-witnesses";
"typeof" = dontDistribute super."typeof";
"typeparams" = dontDistribute super."typeparams";
"types-compat" = dontDistribute super."types-compat";
@@ -8368,6 +8394,7 @@ self: super: {
"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" = dontDistribute super."vty";
diff --git a/pkgs/development/haskell-modules/configuration-lts-1.11.nix b/pkgs/development/haskell-modules/configuration-lts-1.11.nix
index 8aa2db947bb..dd03c8ce211 100644
--- a/pkgs/development/haskell-modules/configuration-lts-1.11.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-1.11.nix
@@ -335,6 +335,7 @@ self: super: {
"FormalGrammars" = dontDistribute super."FormalGrammars";
"Foster" = dontDistribute super."Foster";
"FpMLv53" = dontDistribute super."FpMLv53";
+ "FractalArt" = dontDistribute super."FractalArt";
"Fractaler" = dontDistribute super."Fractaler";
"Frames" = dontDistribute super."Frames";
"Frank" = dontDistribute super."Frank";
@@ -488,6 +489,7 @@ self: super: {
"HTTP-Simple" = dontDistribute super."HTTP-Simple";
"HTab" = dontDistribute super."HTab";
"HTicTacToe" = dontDistribute super."HTicTacToe";
+ "HUnit" = doDistribute super."HUnit_1_2_5_2";
"HUnit-Diff" = dontDistribute super."HUnit-Diff";
"HUnit-Plus" = dontDistribute super."HUnit-Plus";
"HUnit-approx" = dontDistribute super."HUnit-approx";
@@ -521,6 +523,7 @@ self: super: {
"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";
@@ -1959,6 +1962,7 @@ self: super: {
"cef" = dontDistribute super."cef";
"ceilometer-common" = dontDistribute super."ceilometer-common";
"cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo";
+ "cerberus" = dontDistribute super."cerberus";
"cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_3";
"cereal-derive" = dontDistribute super."cereal-derive";
"cereal-enumerator" = dontDistribute super."cereal-enumerator";
@@ -2173,6 +2177,7 @@ self: super: {
"concrete-typerep" = dontDistribute super."concrete-typerep";
"concurrent-barrier" = dontDistribute super."concurrent-barrier";
"concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache";
+ "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9";
"concurrent-machines" = dontDistribute super."concurrent-machines";
"concurrent-output" = dontDistribute super."concurrent-output";
"concurrent-sa" = dontDistribute super."concurrent-sa";
@@ -2612,6 +2617,7 @@ self: super: {
"diagrams-solve" = dontDistribute super."diagrams-solve";
"diagrams-svg" = doDistribute super."diagrams-svg_1_1_0_4";
"diagrams-tikz" = dontDistribute super."diagrams-tikz";
+ "dialog" = dontDistribute super."dialog";
"dice" = dontDistribute super."dice";
"dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit";
"dicom" = dontDistribute super."dicom";
@@ -2803,6 +2809,7 @@ self: super: {
"edenskel" = dontDistribute super."edenskel";
"edentv" = dontDistribute super."edentv";
"edge" = dontDistribute super."edge";
+ "edis" = dontDistribute super."edis";
"edit-distance" = dontDistribute super."edit-distance";
"edit-distance-vector" = dontDistribute super."edit-distance-vector";
"edit-lenses" = dontDistribute super."edit-lenses";
@@ -3001,6 +3008,7 @@ self: super: {
"fad" = dontDistribute super."fad";
"failable-list" = dontDistribute super."failable-list";
"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";
@@ -3226,6 +3234,7 @@ self: super: {
"friday-juicypixels" = dontDistribute super."friday-juicypixels";
"friday-scale-dct" = dontDistribute super."friday-scale-dct";
"friendly-time" = dontDistribute super."friendly-time";
+ "frontmatter" = dontDistribute super."frontmatter";
"frp-arduino" = dontDistribute super."frp-arduino";
"frpnow" = dontDistribute super."frpnow";
"frpnow-gloss" = dontDistribute super."frpnow-gloss";
@@ -3445,6 +3454,7 @@ self: super: {
"gitlib-utils" = dontDistribute super."gitlib-utils";
"gitrev" = dontDistribute super."gitrev";
"gitson" = dontDistribute super."gitson";
+ "gitter" = dontDistribute super."gitter";
"gl" = doDistribute super."gl_0_6_3";
"gl-capture" = dontDistribute super."gl-capture";
"glade" = dontDistribute super."glade";
@@ -3757,6 +3767,7 @@ self: super: {
"hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP";
"hackage-server" = dontDistribute super."hackage-server";
"hackage-sparks" = dontDistribute super."hackage-sparks";
+ "hackage-whatsnew" = dontDistribute super."hackage-whatsnew";
"hackage2hwn" = dontDistribute super."hackage2hwn";
"hackage2twitter" = dontDistribute super."hackage2twitter";
"hackager" = dontDistribute super."hackager";
@@ -4222,6 +4233,7 @@ self: super: {
"hlibBladeRF" = dontDistribute super."hlibBladeRF";
"hlibev" = dontDistribute super."hlibev";
"hlibfam" = dontDistribute super."hlibfam";
+ "hlibgit2" = doDistribute super."hlibgit2_0_18_0_14";
"hlibsass" = dontDistribute super."hlibsass";
"hlint" = doDistribute super."hlint_1_9_16";
"hlogger" = dontDistribute super."hlogger";
@@ -4497,6 +4509,7 @@ self: super: {
"hspec-meta" = doDistribute super."hspec-meta_2_0_0";
"hspec-monad-control" = dontDistribute super."hspec-monad-control";
"hspec-server" = dontDistribute super."hspec-server";
+ "hspec-setup" = dontDistribute super."hspec-setup";
"hspec-shouldbe" = dontDistribute super."hspec-shouldbe";
"hspec-smallcheck" = dontDistribute super."hspec-smallcheck";
"hspec-snap" = dontDistribute super."hspec-snap";
@@ -4598,6 +4611,7 @@ self: super: {
"http-shed" = dontDistribute super."http-shed";
"http-streams" = dontDistribute super."http-streams";
"http-test" = dontDistribute super."http-test";
+ "http-types" = doDistribute super."http-types_0_8_6";
"http-wget" = dontDistribute super."http-wget";
"http2" = dontDistribute super."http2";
"httpd-shed" = dontDistribute super."httpd-shed";
@@ -4743,6 +4757,7 @@ self: super: {
"imgurder" = dontDistribute super."imgurder";
"imm" = dontDistribute super."imm";
"imparse" = dontDistribute super."imparse";
+ "imperative-edsl" = dontDistribute super."imperative-edsl";
"imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl";
"implicit" = dontDistribute super."implicit";
"implicit-params" = dontDistribute super."implicit-params";
@@ -4885,6 +4900,7 @@ self: super: {
"ix-shapable" = dontDistribute super."ix-shapable";
"ixdopp" = dontDistribute super."ixdopp";
"ixmonad" = dontDistribute super."ixmonad";
+ "ixset" = doDistribute super."ixset_1_0_6";
"ixset-typed" = dontDistribute super."ixset-typed";
"iyql" = dontDistribute super."iyql";
"j2hs" = dontDistribute super."j2hs";
@@ -4931,6 +4947,7 @@ self: super: {
"json-autotype" = doDistribute super."json-autotype_0_2_5_4";
"json-b" = dontDistribute super."json-b";
"json-builder" = dontDistribute super."json-builder";
+ "json-encoder" = dontDistribute super."json-encoder";
"json-enumerator" = dontDistribute super."json-enumerator";
"json-extra" = dontDistribute super."json-extra";
"json-fu" = dontDistribute super."json-fu";
@@ -5072,6 +5089,7 @@ self: super: {
"lambdacube-examples" = dontDistribute super."lambdacube-examples";
"lambdacube-gl" = dontDistribute super."lambdacube-gl";
"lambdacube-samples" = dontDistribute super."lambdacube-samples";
+ "lambdatex" = dontDistribute super."lambdatex";
"lambdatwit" = dontDistribute super."lambdatwit";
"lambdiff" = dontDistribute super."lambdiff";
"lame-tester" = dontDistribute super."lame-tester";
@@ -5280,6 +5298,7 @@ self: super: {
"list-fusion-probe" = dontDistribute super."list-fusion-probe";
"list-grouping" = dontDistribute super."list-grouping";
"list-mux" = dontDistribute super."list-mux";
+ "list-prompt" = dontDistribute super."list-prompt";
"list-remote-forwards" = dontDistribute super."list-remote-forwards";
"list-t" = doDistribute super."list-t_0_4_3";
"list-t-attoparsec" = dontDistribute super."list-t-attoparsec";
@@ -5324,6 +5343,7 @@ self: super: {
"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-domain" = doDistribute super."log-domain_0_9_3";
@@ -6001,6 +6021,7 @@ self: super: {
"omnifmt" = dontDistribute super."omnifmt";
"on-a-horse" = dontDistribute super."on-a-horse";
"on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel";
+ "once" = dontDistribute super."once";
"one-liner" = dontDistribute super."one-liner";
"one-time-password" = dontDistribute super."one-time-password";
"oneOfN" = dontDistribute super."oneOfN";
@@ -6058,6 +6079,7 @@ self: super: {
"optional" = dontDistribute super."optional";
"optional-args" = dontDistribute super."optional-args";
"options-time" = dontDistribute super."options-time";
+ "optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"optparse-simple" = dontDistribute super."optparse-simple";
"orc" = dontDistribute super."orc";
@@ -6096,7 +6118,6 @@ self: super: {
"padKONTROL" = dontDistribute super."padKONTROL";
"pagarme" = dontDistribute super."pagarme";
"pager" = dontDistribute super."pager";
- "pagerduty" = dontDistribute super."pagerduty";
"pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver";
"palette" = dontDistribute super."palette";
"palindromes" = dontDistribute super."palindromes";
@@ -6258,6 +6279,7 @@ self: super: {
"phasechange" = dontDistribute super."phasechange";
"phash" = dontDistribute super."phash";
"phizzle" = dontDistribute super."phizzle";
+ "phoityne" = dontDistribute super."phoityne";
"phone-numbers" = dontDistribute super."phone-numbers";
"phone-push" = dontDistribute super."phone-push";
"phonetic-code" = dontDistribute super."phonetic-code";
@@ -6292,6 +6314,7 @@ self: super: {
"pipes-cereal" = dontDistribute super."pipes-cereal";
"pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus";
"pipes-cliff" = dontDistribute super."pipes-cliff";
+ "pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_3";
"pipes-conduit" = dontDistribute super."pipes-conduit";
"pipes-core" = dontDistribute super."pipes-core";
"pipes-courier" = dontDistribute super."pipes-courier";
@@ -6864,6 +6887,7 @@ self: super: {
"rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster";
"retry" = dontDistribute super."retry";
"retryer" = dontDistribute super."retryer";
+ "rev-state" = doDistribute super."rev-state_0_1";
"revdectime" = dontDistribute super."revdectime";
"reverse-apply" = dontDistribute super."reverse-apply";
"reverse-geocoding" = dontDistribute super."reverse-geocoding";
@@ -7101,6 +7125,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serv" = dontDistribute super."serv";
"servant" = dontDistribute super."servant";
"servant-JuicyPixels" = dontDistribute super."servant-JuicyPixels";
"servant-blaze" = dontDistribute super."servant-blaze";
@@ -8121,6 +8146,7 @@ self: super: {
"typehash" = dontDistribute super."typehash";
"typelevel" = dontDistribute super."typelevel";
"typelevel-tensor" = dontDistribute super."typelevel-tensor";
+ "typelits-witnesses" = dontDistribute super."typelits-witnesses";
"typeof" = dontDistribute super."typeof";
"typeparams" = dontDistribute super."typeparams";
"types-compat" = dontDistribute super."types-compat";
@@ -8364,6 +8390,7 @@ self: super: {
"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" = dontDistribute super."vty";
diff --git a/pkgs/development/haskell-modules/configuration-lts-1.12.nix b/pkgs/development/haskell-modules/configuration-lts-1.12.nix
index 87461679853..04da2509ad2 100644
--- a/pkgs/development/haskell-modules/configuration-lts-1.12.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-1.12.nix
@@ -335,6 +335,7 @@ self: super: {
"FormalGrammars" = dontDistribute super."FormalGrammars";
"Foster" = dontDistribute super."Foster";
"FpMLv53" = dontDistribute super."FpMLv53";
+ "FractalArt" = dontDistribute super."FractalArt";
"Fractaler" = dontDistribute super."Fractaler";
"Frames" = dontDistribute super."Frames";
"Frank" = dontDistribute super."Frank";
@@ -488,6 +489,7 @@ self: super: {
"HTTP-Simple" = dontDistribute super."HTTP-Simple";
"HTab" = dontDistribute super."HTab";
"HTicTacToe" = dontDistribute super."HTicTacToe";
+ "HUnit" = doDistribute super."HUnit_1_2_5_2";
"HUnit-Diff" = dontDistribute super."HUnit-Diff";
"HUnit-Plus" = dontDistribute super."HUnit-Plus";
"HUnit-approx" = dontDistribute super."HUnit-approx";
@@ -521,6 +523,7 @@ self: super: {
"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";
@@ -1959,6 +1962,7 @@ self: super: {
"cef" = dontDistribute super."cef";
"ceilometer-common" = dontDistribute super."ceilometer-common";
"cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo";
+ "cerberus" = dontDistribute super."cerberus";
"cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_3";
"cereal-derive" = dontDistribute super."cereal-derive";
"cereal-enumerator" = dontDistribute super."cereal-enumerator";
@@ -2173,6 +2177,7 @@ self: super: {
"concrete-typerep" = dontDistribute super."concrete-typerep";
"concurrent-barrier" = dontDistribute super."concurrent-barrier";
"concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache";
+ "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9";
"concurrent-machines" = dontDistribute super."concurrent-machines";
"concurrent-output" = dontDistribute super."concurrent-output";
"concurrent-sa" = dontDistribute super."concurrent-sa";
@@ -2612,6 +2617,7 @@ self: super: {
"diagrams-solve" = dontDistribute super."diagrams-solve";
"diagrams-svg" = doDistribute super."diagrams-svg_1_1_0_4";
"diagrams-tikz" = dontDistribute super."diagrams-tikz";
+ "dialog" = dontDistribute super."dialog";
"dice" = dontDistribute super."dice";
"dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit";
"dicom" = dontDistribute super."dicom";
@@ -2803,6 +2809,7 @@ self: super: {
"edenskel" = dontDistribute super."edenskel";
"edentv" = dontDistribute super."edentv";
"edge" = dontDistribute super."edge";
+ "edis" = dontDistribute super."edis";
"edit-distance" = dontDistribute super."edit-distance";
"edit-distance-vector" = dontDistribute super."edit-distance-vector";
"edit-lenses" = dontDistribute super."edit-lenses";
@@ -3001,6 +3008,7 @@ self: super: {
"fad" = dontDistribute super."fad";
"failable-list" = dontDistribute super."failable-list";
"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";
@@ -3226,6 +3234,7 @@ self: super: {
"friday-juicypixels" = dontDistribute super."friday-juicypixels";
"friday-scale-dct" = dontDistribute super."friday-scale-dct";
"friendly-time" = dontDistribute super."friendly-time";
+ "frontmatter" = dontDistribute super."frontmatter";
"frp-arduino" = dontDistribute super."frp-arduino";
"frpnow" = dontDistribute super."frpnow";
"frpnow-gloss" = dontDistribute super."frpnow-gloss";
@@ -3445,6 +3454,7 @@ self: super: {
"gitlib-utils" = dontDistribute super."gitlib-utils";
"gitrev" = dontDistribute super."gitrev";
"gitson" = dontDistribute super."gitson";
+ "gitter" = dontDistribute super."gitter";
"gl" = doDistribute super."gl_0_6_3";
"gl-capture" = dontDistribute super."gl-capture";
"glade" = dontDistribute super."glade";
@@ -3757,6 +3767,7 @@ self: super: {
"hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP";
"hackage-server" = dontDistribute super."hackage-server";
"hackage-sparks" = dontDistribute super."hackage-sparks";
+ "hackage-whatsnew" = dontDistribute super."hackage-whatsnew";
"hackage2hwn" = dontDistribute super."hackage2hwn";
"hackage2twitter" = dontDistribute super."hackage2twitter";
"hackager" = dontDistribute super."hackager";
@@ -4221,6 +4232,7 @@ self: super: {
"hlibBladeRF" = dontDistribute super."hlibBladeRF";
"hlibev" = dontDistribute super."hlibev";
"hlibfam" = dontDistribute super."hlibfam";
+ "hlibgit2" = doDistribute super."hlibgit2_0_18_0_14";
"hlibsass" = dontDistribute super."hlibsass";
"hlint" = doDistribute super."hlint_1_9_16";
"hlogger" = dontDistribute super."hlogger";
@@ -4496,6 +4508,7 @@ self: super: {
"hspec-meta" = doDistribute super."hspec-meta_2_0_0";
"hspec-monad-control" = dontDistribute super."hspec-monad-control";
"hspec-server" = dontDistribute super."hspec-server";
+ "hspec-setup" = dontDistribute super."hspec-setup";
"hspec-shouldbe" = dontDistribute super."hspec-shouldbe";
"hspec-smallcheck" = dontDistribute super."hspec-smallcheck";
"hspec-snap" = dontDistribute super."hspec-snap";
@@ -4597,6 +4610,7 @@ self: super: {
"http-shed" = dontDistribute super."http-shed";
"http-streams" = dontDistribute super."http-streams";
"http-test" = dontDistribute super."http-test";
+ "http-types" = doDistribute super."http-types_0_8_6";
"http-wget" = dontDistribute super."http-wget";
"http2" = dontDistribute super."http2";
"httpd-shed" = dontDistribute super."httpd-shed";
@@ -4742,6 +4756,7 @@ self: super: {
"imgurder" = dontDistribute super."imgurder";
"imm" = dontDistribute super."imm";
"imparse" = dontDistribute super."imparse";
+ "imperative-edsl" = dontDistribute super."imperative-edsl";
"imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl";
"implicit" = dontDistribute super."implicit";
"implicit-params" = dontDistribute super."implicit-params";
@@ -4884,6 +4899,7 @@ self: super: {
"ix-shapable" = dontDistribute super."ix-shapable";
"ixdopp" = dontDistribute super."ixdopp";
"ixmonad" = dontDistribute super."ixmonad";
+ "ixset" = doDistribute super."ixset_1_0_6";
"ixset-typed" = dontDistribute super."ixset-typed";
"iyql" = dontDistribute super."iyql";
"j2hs" = dontDistribute super."j2hs";
@@ -4930,6 +4946,7 @@ self: super: {
"json-autotype" = doDistribute super."json-autotype_0_2_5_8";
"json-b" = dontDistribute super."json-b";
"json-builder" = dontDistribute super."json-builder";
+ "json-encoder" = dontDistribute super."json-encoder";
"json-enumerator" = dontDistribute super."json-enumerator";
"json-extra" = dontDistribute super."json-extra";
"json-fu" = dontDistribute super."json-fu";
@@ -5071,6 +5088,7 @@ self: super: {
"lambdacube-examples" = dontDistribute super."lambdacube-examples";
"lambdacube-gl" = dontDistribute super."lambdacube-gl";
"lambdacube-samples" = dontDistribute super."lambdacube-samples";
+ "lambdatex" = dontDistribute super."lambdatex";
"lambdatwit" = dontDistribute super."lambdatwit";
"lambdiff" = dontDistribute super."lambdiff";
"lame-tester" = dontDistribute super."lame-tester";
@@ -5279,6 +5297,7 @@ self: super: {
"list-fusion-probe" = dontDistribute super."list-fusion-probe";
"list-grouping" = dontDistribute super."list-grouping";
"list-mux" = dontDistribute super."list-mux";
+ "list-prompt" = dontDistribute super."list-prompt";
"list-remote-forwards" = dontDistribute super."list-remote-forwards";
"list-t" = doDistribute super."list-t_0_4_3";
"list-t-attoparsec" = dontDistribute super."list-t-attoparsec";
@@ -5323,6 +5342,7 @@ self: super: {
"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-domain" = doDistribute super."log-domain_0_9_3";
@@ -6000,6 +6020,7 @@ self: super: {
"omnifmt" = dontDistribute super."omnifmt";
"on-a-horse" = dontDistribute super."on-a-horse";
"on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel";
+ "once" = dontDistribute super."once";
"one-liner" = dontDistribute super."one-liner";
"one-time-password" = dontDistribute super."one-time-password";
"oneOfN" = dontDistribute super."oneOfN";
@@ -6057,6 +6078,7 @@ self: super: {
"optional" = dontDistribute super."optional";
"optional-args" = dontDistribute super."optional-args";
"options-time" = dontDistribute super."options-time";
+ "optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"optparse-simple" = dontDistribute super."optparse-simple";
"orc" = dontDistribute super."orc";
@@ -6095,7 +6117,6 @@ self: super: {
"padKONTROL" = dontDistribute super."padKONTROL";
"pagarme" = dontDistribute super."pagarme";
"pager" = dontDistribute super."pager";
- "pagerduty" = dontDistribute super."pagerduty";
"pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver";
"palette" = dontDistribute super."palette";
"palindromes" = dontDistribute super."palindromes";
@@ -6257,6 +6278,7 @@ self: super: {
"phasechange" = dontDistribute super."phasechange";
"phash" = dontDistribute super."phash";
"phizzle" = dontDistribute super."phizzle";
+ "phoityne" = dontDistribute super."phoityne";
"phone-numbers" = dontDistribute super."phone-numbers";
"phone-push" = dontDistribute super."phone-push";
"phonetic-code" = dontDistribute super."phonetic-code";
@@ -6291,6 +6313,7 @@ self: super: {
"pipes-cereal" = dontDistribute super."pipes-cereal";
"pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus";
"pipes-cliff" = dontDistribute super."pipes-cliff";
+ "pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_3";
"pipes-conduit" = dontDistribute super."pipes-conduit";
"pipes-core" = dontDistribute super."pipes-core";
"pipes-courier" = dontDistribute super."pipes-courier";
@@ -6863,6 +6886,7 @@ self: super: {
"rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster";
"retry" = dontDistribute super."retry";
"retryer" = dontDistribute super."retryer";
+ "rev-state" = doDistribute super."rev-state_0_1";
"revdectime" = dontDistribute super."revdectime";
"reverse-apply" = dontDistribute super."reverse-apply";
"reverse-geocoding" = dontDistribute super."reverse-geocoding";
@@ -7100,6 +7124,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serv" = dontDistribute super."serv";
"servant" = dontDistribute super."servant";
"servant-JuicyPixels" = dontDistribute super."servant-JuicyPixels";
"servant-blaze" = dontDistribute super."servant-blaze";
@@ -8118,6 +8143,7 @@ self: super: {
"typehash" = dontDistribute super."typehash";
"typelevel" = dontDistribute super."typelevel";
"typelevel-tensor" = dontDistribute super."typelevel-tensor";
+ "typelits-witnesses" = dontDistribute super."typelits-witnesses";
"typeof" = dontDistribute super."typeof";
"typeparams" = dontDistribute super."typeparams";
"types-compat" = dontDistribute super."types-compat";
@@ -8361,6 +8387,7 @@ self: super: {
"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" = dontDistribute super."vty";
diff --git a/pkgs/development/haskell-modules/configuration-lts-1.13.nix b/pkgs/development/haskell-modules/configuration-lts-1.13.nix
index e50346655f1..fe75d3a8e93 100644
--- a/pkgs/development/haskell-modules/configuration-lts-1.13.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-1.13.nix
@@ -335,6 +335,7 @@ self: super: {
"FormalGrammars" = dontDistribute super."FormalGrammars";
"Foster" = dontDistribute super."Foster";
"FpMLv53" = dontDistribute super."FpMLv53";
+ "FractalArt" = dontDistribute super."FractalArt";
"Fractaler" = dontDistribute super."Fractaler";
"Frames" = dontDistribute super."Frames";
"Frank" = dontDistribute super."Frank";
@@ -488,6 +489,7 @@ self: super: {
"HTTP-Simple" = dontDistribute super."HTTP-Simple";
"HTab" = dontDistribute super."HTab";
"HTicTacToe" = dontDistribute super."HTicTacToe";
+ "HUnit" = doDistribute super."HUnit_1_2_5_2";
"HUnit-Diff" = dontDistribute super."HUnit-Diff";
"HUnit-Plus" = dontDistribute super."HUnit-Plus";
"HUnit-approx" = dontDistribute super."HUnit-approx";
@@ -521,6 +523,7 @@ self: super: {
"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";
@@ -1959,6 +1962,7 @@ self: super: {
"cef" = dontDistribute super."cef";
"ceilometer-common" = dontDistribute super."ceilometer-common";
"cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo";
+ "cerberus" = dontDistribute super."cerberus";
"cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_3";
"cereal-derive" = dontDistribute super."cereal-derive";
"cereal-enumerator" = dontDistribute super."cereal-enumerator";
@@ -2173,6 +2177,7 @@ self: super: {
"concrete-typerep" = dontDistribute super."concrete-typerep";
"concurrent-barrier" = dontDistribute super."concurrent-barrier";
"concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache";
+ "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9";
"concurrent-machines" = dontDistribute super."concurrent-machines";
"concurrent-output" = dontDistribute super."concurrent-output";
"concurrent-sa" = dontDistribute super."concurrent-sa";
@@ -2612,6 +2617,7 @@ self: super: {
"diagrams-solve" = dontDistribute super."diagrams-solve";
"diagrams-svg" = doDistribute super."diagrams-svg_1_1_0_4";
"diagrams-tikz" = dontDistribute super."diagrams-tikz";
+ "dialog" = dontDistribute super."dialog";
"dice" = dontDistribute super."dice";
"dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit";
"dicom" = dontDistribute super."dicom";
@@ -2803,6 +2809,7 @@ self: super: {
"edenskel" = dontDistribute super."edenskel";
"edentv" = dontDistribute super."edentv";
"edge" = dontDistribute super."edge";
+ "edis" = dontDistribute super."edis";
"edit-distance" = dontDistribute super."edit-distance";
"edit-distance-vector" = dontDistribute super."edit-distance-vector";
"edit-lenses" = dontDistribute super."edit-lenses";
@@ -3001,6 +3008,7 @@ self: super: {
"fad" = dontDistribute super."fad";
"failable-list" = dontDistribute super."failable-list";
"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";
@@ -3226,6 +3234,7 @@ self: super: {
"friday-juicypixels" = dontDistribute super."friday-juicypixels";
"friday-scale-dct" = dontDistribute super."friday-scale-dct";
"friendly-time" = dontDistribute super."friendly-time";
+ "frontmatter" = dontDistribute super."frontmatter";
"frp-arduino" = dontDistribute super."frp-arduino";
"frpnow" = dontDistribute super."frpnow";
"frpnow-gloss" = dontDistribute super."frpnow-gloss";
@@ -3445,6 +3454,7 @@ self: super: {
"gitlib-utils" = dontDistribute super."gitlib-utils";
"gitrev" = dontDistribute super."gitrev";
"gitson" = dontDistribute super."gitson";
+ "gitter" = dontDistribute super."gitter";
"gl" = doDistribute super."gl_0_6_3";
"gl-capture" = dontDistribute super."gl-capture";
"glade" = dontDistribute super."glade";
@@ -3756,6 +3766,7 @@ self: super: {
"hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP";
"hackage-server" = dontDistribute super."hackage-server";
"hackage-sparks" = dontDistribute super."hackage-sparks";
+ "hackage-whatsnew" = dontDistribute super."hackage-whatsnew";
"hackage2hwn" = dontDistribute super."hackage2hwn";
"hackage2twitter" = dontDistribute super."hackage2twitter";
"hackager" = dontDistribute super."hackager";
@@ -4220,6 +4231,7 @@ self: super: {
"hlibBladeRF" = dontDistribute super."hlibBladeRF";
"hlibev" = dontDistribute super."hlibev";
"hlibfam" = dontDistribute super."hlibfam";
+ "hlibgit2" = doDistribute super."hlibgit2_0_18_0_14";
"hlibsass" = dontDistribute super."hlibsass";
"hlint" = doDistribute super."hlint_1_9_16";
"hlogger" = dontDistribute super."hlogger";
@@ -4495,6 +4507,7 @@ self: super: {
"hspec-meta" = doDistribute super."hspec-meta_2_0_0";
"hspec-monad-control" = dontDistribute super."hspec-monad-control";
"hspec-server" = dontDistribute super."hspec-server";
+ "hspec-setup" = dontDistribute super."hspec-setup";
"hspec-shouldbe" = dontDistribute super."hspec-shouldbe";
"hspec-smallcheck" = dontDistribute super."hspec-smallcheck";
"hspec-snap" = dontDistribute super."hspec-snap";
@@ -4596,6 +4609,7 @@ self: super: {
"http-shed" = dontDistribute super."http-shed";
"http-streams" = dontDistribute super."http-streams";
"http-test" = dontDistribute super."http-test";
+ "http-types" = doDistribute super."http-types_0_8_6";
"http-wget" = dontDistribute super."http-wget";
"http2" = dontDistribute super."http2";
"httpd-shed" = dontDistribute super."httpd-shed";
@@ -4741,6 +4755,7 @@ self: super: {
"imgurder" = dontDistribute super."imgurder";
"imm" = dontDistribute super."imm";
"imparse" = dontDistribute super."imparse";
+ "imperative-edsl" = dontDistribute super."imperative-edsl";
"imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl";
"implicit" = dontDistribute super."implicit";
"implicit-params" = dontDistribute super."implicit-params";
@@ -4883,6 +4898,7 @@ self: super: {
"ix-shapable" = dontDistribute super."ix-shapable";
"ixdopp" = dontDistribute super."ixdopp";
"ixmonad" = dontDistribute super."ixmonad";
+ "ixset" = doDistribute super."ixset_1_0_6";
"ixset-typed" = dontDistribute super."ixset-typed";
"iyql" = dontDistribute super."iyql";
"j2hs" = dontDistribute super."j2hs";
@@ -4929,6 +4945,7 @@ self: super: {
"json-autotype" = doDistribute super."json-autotype_0_2_5_8";
"json-b" = dontDistribute super."json-b";
"json-builder" = dontDistribute super."json-builder";
+ "json-encoder" = dontDistribute super."json-encoder";
"json-enumerator" = dontDistribute super."json-enumerator";
"json-extra" = dontDistribute super."json-extra";
"json-fu" = dontDistribute super."json-fu";
@@ -5070,6 +5087,7 @@ self: super: {
"lambdacube-examples" = dontDistribute super."lambdacube-examples";
"lambdacube-gl" = dontDistribute super."lambdacube-gl";
"lambdacube-samples" = dontDistribute super."lambdacube-samples";
+ "lambdatex" = dontDistribute super."lambdatex";
"lambdatwit" = dontDistribute super."lambdatwit";
"lambdiff" = dontDistribute super."lambdiff";
"lame-tester" = dontDistribute super."lame-tester";
@@ -5278,6 +5296,7 @@ self: super: {
"list-fusion-probe" = dontDistribute super."list-fusion-probe";
"list-grouping" = dontDistribute super."list-grouping";
"list-mux" = dontDistribute super."list-mux";
+ "list-prompt" = dontDistribute super."list-prompt";
"list-remote-forwards" = dontDistribute super."list-remote-forwards";
"list-t" = doDistribute super."list-t_0_4_3";
"list-t-attoparsec" = dontDistribute super."list-t-attoparsec";
@@ -5322,6 +5341,7 @@ self: super: {
"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-domain" = doDistribute super."log-domain_0_9_3";
@@ -5999,6 +6019,7 @@ self: super: {
"omnifmt" = dontDistribute super."omnifmt";
"on-a-horse" = dontDistribute super."on-a-horse";
"on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel";
+ "once" = dontDistribute super."once";
"one-liner" = dontDistribute super."one-liner";
"one-time-password" = dontDistribute super."one-time-password";
"oneOfN" = dontDistribute super."oneOfN";
@@ -6056,6 +6077,7 @@ self: super: {
"optional" = dontDistribute super."optional";
"optional-args" = dontDistribute super."optional-args";
"options-time" = dontDistribute super."options-time";
+ "optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"optparse-simple" = dontDistribute super."optparse-simple";
"orc" = dontDistribute super."orc";
@@ -6094,7 +6116,6 @@ self: super: {
"padKONTROL" = dontDistribute super."padKONTROL";
"pagarme" = dontDistribute super."pagarme";
"pager" = dontDistribute super."pager";
- "pagerduty" = dontDistribute super."pagerduty";
"pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver";
"palette" = dontDistribute super."palette";
"palindromes" = dontDistribute super."palindromes";
@@ -6256,6 +6277,7 @@ self: super: {
"phasechange" = dontDistribute super."phasechange";
"phash" = dontDistribute super."phash";
"phizzle" = dontDistribute super."phizzle";
+ "phoityne" = dontDistribute super."phoityne";
"phone-numbers" = dontDistribute super."phone-numbers";
"phone-push" = dontDistribute super."phone-push";
"phonetic-code" = dontDistribute super."phonetic-code";
@@ -6290,6 +6312,7 @@ self: super: {
"pipes-cereal" = dontDistribute super."pipes-cereal";
"pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus";
"pipes-cliff" = dontDistribute super."pipes-cliff";
+ "pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_3";
"pipes-conduit" = dontDistribute super."pipes-conduit";
"pipes-core" = dontDistribute super."pipes-core";
"pipes-courier" = dontDistribute super."pipes-courier";
@@ -6862,6 +6885,7 @@ self: super: {
"rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster";
"retry" = dontDistribute super."retry";
"retryer" = dontDistribute super."retryer";
+ "rev-state" = doDistribute super."rev-state_0_1";
"revdectime" = dontDistribute super."revdectime";
"reverse-apply" = dontDistribute super."reverse-apply";
"reverse-geocoding" = dontDistribute super."reverse-geocoding";
@@ -7099,6 +7123,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serv" = dontDistribute super."serv";
"servant" = dontDistribute super."servant";
"servant-JuicyPixels" = dontDistribute super."servant-JuicyPixels";
"servant-blaze" = dontDistribute super."servant-blaze";
@@ -8116,6 +8141,7 @@ self: super: {
"typehash" = dontDistribute super."typehash";
"typelevel" = dontDistribute super."typelevel";
"typelevel-tensor" = dontDistribute super."typelevel-tensor";
+ "typelits-witnesses" = dontDistribute super."typelits-witnesses";
"typeof" = dontDistribute super."typeof";
"typeparams" = dontDistribute super."typeparams";
"types-compat" = dontDistribute super."types-compat";
@@ -8359,6 +8385,7 @@ self: super: {
"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" = dontDistribute super."vty";
diff --git a/pkgs/development/haskell-modules/configuration-lts-1.14.nix b/pkgs/development/haskell-modules/configuration-lts-1.14.nix
index 2addeb5c06d..88880efcca4 100644
--- a/pkgs/development/haskell-modules/configuration-lts-1.14.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-1.14.nix
@@ -334,6 +334,7 @@ self: super: {
"FormalGrammars" = dontDistribute super."FormalGrammars";
"Foster" = dontDistribute super."Foster";
"FpMLv53" = dontDistribute super."FpMLv53";
+ "FractalArt" = dontDistribute super."FractalArt";
"Fractaler" = dontDistribute super."Fractaler";
"Frames" = dontDistribute super."Frames";
"Frank" = dontDistribute super."Frank";
@@ -487,6 +488,7 @@ self: super: {
"HTTP-Simple" = dontDistribute super."HTTP-Simple";
"HTab" = dontDistribute super."HTab";
"HTicTacToe" = dontDistribute super."HTicTacToe";
+ "HUnit" = doDistribute super."HUnit_1_2_5_2";
"HUnit-Diff" = dontDistribute super."HUnit-Diff";
"HUnit-Plus" = dontDistribute super."HUnit-Plus";
"HUnit-approx" = dontDistribute super."HUnit-approx";
@@ -520,6 +522,7 @@ self: super: {
"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";
@@ -1957,6 +1960,7 @@ self: super: {
"cef" = dontDistribute super."cef";
"ceilometer-common" = dontDistribute super."ceilometer-common";
"cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo";
+ "cerberus" = dontDistribute super."cerberus";
"cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_3";
"cereal-derive" = dontDistribute super."cereal-derive";
"cereal-enumerator" = dontDistribute super."cereal-enumerator";
@@ -2171,6 +2175,7 @@ self: super: {
"concrete-typerep" = dontDistribute super."concrete-typerep";
"concurrent-barrier" = dontDistribute super."concurrent-barrier";
"concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache";
+ "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9";
"concurrent-machines" = dontDistribute super."concurrent-machines";
"concurrent-output" = dontDistribute super."concurrent-output";
"concurrent-sa" = dontDistribute super."concurrent-sa";
@@ -2609,6 +2614,7 @@ self: super: {
"diagrams-solve" = dontDistribute super."diagrams-solve";
"diagrams-svg" = doDistribute super."diagrams-svg_1_1_0_4";
"diagrams-tikz" = dontDistribute super."diagrams-tikz";
+ "dialog" = dontDistribute super."dialog";
"dice" = dontDistribute super."dice";
"dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit";
"dicom" = dontDistribute super."dicom";
@@ -2800,6 +2806,7 @@ self: super: {
"edenskel" = dontDistribute super."edenskel";
"edentv" = dontDistribute super."edentv";
"edge" = dontDistribute super."edge";
+ "edis" = dontDistribute super."edis";
"edit-distance" = dontDistribute super."edit-distance";
"edit-distance-vector" = dontDistribute super."edit-distance-vector";
"edit-lenses" = dontDistribute super."edit-lenses";
@@ -2998,6 +3005,7 @@ self: super: {
"fad" = dontDistribute super."fad";
"failable-list" = dontDistribute super."failable-list";
"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";
@@ -3223,6 +3231,7 @@ self: super: {
"friday-juicypixels" = dontDistribute super."friday-juicypixels";
"friday-scale-dct" = dontDistribute super."friday-scale-dct";
"friendly-time" = dontDistribute super."friendly-time";
+ "frontmatter" = dontDistribute super."frontmatter";
"frp-arduino" = dontDistribute super."frp-arduino";
"frpnow" = dontDistribute super."frpnow";
"frpnow-gloss" = dontDistribute super."frpnow-gloss";
@@ -3442,6 +3451,7 @@ self: super: {
"gitlib-utils" = dontDistribute super."gitlib-utils";
"gitrev" = dontDistribute super."gitrev";
"gitson" = dontDistribute super."gitson";
+ "gitter" = dontDistribute super."gitter";
"gl" = doDistribute super."gl_0_6_3";
"gl-capture" = dontDistribute super."gl-capture";
"glade" = dontDistribute super."glade";
@@ -3753,6 +3763,7 @@ self: super: {
"hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP";
"hackage-server" = dontDistribute super."hackage-server";
"hackage-sparks" = dontDistribute super."hackage-sparks";
+ "hackage-whatsnew" = dontDistribute super."hackage-whatsnew";
"hackage2hwn" = dontDistribute super."hackage2hwn";
"hackage2twitter" = dontDistribute super."hackage2twitter";
"hackager" = dontDistribute super."hackager";
@@ -4216,6 +4227,7 @@ self: super: {
"hlibBladeRF" = dontDistribute super."hlibBladeRF";
"hlibev" = dontDistribute super."hlibev";
"hlibfam" = dontDistribute super."hlibfam";
+ "hlibgit2" = doDistribute super."hlibgit2_0_18_0_14";
"hlibsass" = dontDistribute super."hlibsass";
"hlint" = doDistribute super."hlint_1_9_16";
"hlogger" = dontDistribute super."hlogger";
@@ -4491,6 +4503,7 @@ self: super: {
"hspec-meta" = doDistribute super."hspec-meta_2_0_0";
"hspec-monad-control" = dontDistribute super."hspec-monad-control";
"hspec-server" = dontDistribute super."hspec-server";
+ "hspec-setup" = dontDistribute super."hspec-setup";
"hspec-shouldbe" = dontDistribute super."hspec-shouldbe";
"hspec-smallcheck" = dontDistribute super."hspec-smallcheck";
"hspec-snap" = dontDistribute super."hspec-snap";
@@ -4592,6 +4605,7 @@ self: super: {
"http-shed" = dontDistribute super."http-shed";
"http-streams" = dontDistribute super."http-streams";
"http-test" = dontDistribute super."http-test";
+ "http-types" = doDistribute super."http-types_0_8_6";
"http-wget" = dontDistribute super."http-wget";
"http2" = dontDistribute super."http2";
"httpd-shed" = dontDistribute super."httpd-shed";
@@ -4737,6 +4751,7 @@ self: super: {
"imgurder" = dontDistribute super."imgurder";
"imm" = dontDistribute super."imm";
"imparse" = dontDistribute super."imparse";
+ "imperative-edsl" = dontDistribute super."imperative-edsl";
"imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl";
"implicit" = dontDistribute super."implicit";
"implicit-params" = dontDistribute super."implicit-params";
@@ -4879,6 +4894,7 @@ self: super: {
"ix-shapable" = dontDistribute super."ix-shapable";
"ixdopp" = dontDistribute super."ixdopp";
"ixmonad" = dontDistribute super."ixmonad";
+ "ixset" = doDistribute super."ixset_1_0_6";
"ixset-typed" = dontDistribute super."ixset-typed";
"iyql" = dontDistribute super."iyql";
"j2hs" = dontDistribute super."j2hs";
@@ -4925,6 +4941,7 @@ self: super: {
"json-autotype" = doDistribute super."json-autotype_0_2_5_9";
"json-b" = dontDistribute super."json-b";
"json-builder" = dontDistribute super."json-builder";
+ "json-encoder" = dontDistribute super."json-encoder";
"json-enumerator" = dontDistribute super."json-enumerator";
"json-extra" = dontDistribute super."json-extra";
"json-fu" = dontDistribute super."json-fu";
@@ -5065,6 +5082,7 @@ self: super: {
"lambdacube-examples" = dontDistribute super."lambdacube-examples";
"lambdacube-gl" = dontDistribute super."lambdacube-gl";
"lambdacube-samples" = dontDistribute super."lambdacube-samples";
+ "lambdatex" = dontDistribute super."lambdatex";
"lambdatwit" = dontDistribute super."lambdatwit";
"lambdiff" = dontDistribute super."lambdiff";
"lame-tester" = dontDistribute super."lame-tester";
@@ -5273,6 +5291,7 @@ self: super: {
"list-fusion-probe" = dontDistribute super."list-fusion-probe";
"list-grouping" = dontDistribute super."list-grouping";
"list-mux" = dontDistribute super."list-mux";
+ "list-prompt" = dontDistribute super."list-prompt";
"list-remote-forwards" = dontDistribute super."list-remote-forwards";
"list-t" = doDistribute super."list-t_0_4_3";
"list-t-attoparsec" = dontDistribute super."list-t-attoparsec";
@@ -5317,6 +5336,7 @@ self: super: {
"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-domain" = doDistribute super."log-domain_0_9_3";
@@ -5992,6 +6012,7 @@ self: super: {
"omnifmt" = dontDistribute super."omnifmt";
"on-a-horse" = dontDistribute super."on-a-horse";
"on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel";
+ "once" = dontDistribute super."once";
"one-liner" = dontDistribute super."one-liner";
"one-time-password" = dontDistribute super."one-time-password";
"oneOfN" = dontDistribute super."oneOfN";
@@ -6049,6 +6070,7 @@ self: super: {
"optional" = dontDistribute super."optional";
"optional-args" = dontDistribute super."optional-args";
"options-time" = dontDistribute super."options-time";
+ "optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"optparse-simple" = dontDistribute super."optparse-simple";
"orc" = dontDistribute super."orc";
@@ -6087,7 +6109,6 @@ self: super: {
"padKONTROL" = dontDistribute super."padKONTROL";
"pagarme" = dontDistribute super."pagarme";
"pager" = dontDistribute super."pager";
- "pagerduty" = dontDistribute super."pagerduty";
"pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver";
"palette" = dontDistribute super."palette";
"palindromes" = dontDistribute super."palindromes";
@@ -6249,6 +6270,7 @@ self: super: {
"phasechange" = dontDistribute super."phasechange";
"phash" = dontDistribute super."phash";
"phizzle" = dontDistribute super."phizzle";
+ "phoityne" = dontDistribute super."phoityne";
"phone-numbers" = dontDistribute super."phone-numbers";
"phone-push" = dontDistribute super."phone-push";
"phonetic-code" = dontDistribute super."phonetic-code";
@@ -6283,6 +6305,7 @@ self: super: {
"pipes-cereal" = dontDistribute super."pipes-cereal";
"pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus";
"pipes-cliff" = dontDistribute super."pipes-cliff";
+ "pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_3";
"pipes-conduit" = dontDistribute super."pipes-conduit";
"pipes-core" = dontDistribute super."pipes-core";
"pipes-courier" = dontDistribute super."pipes-courier";
@@ -6854,6 +6877,7 @@ self: super: {
"rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster";
"retry" = dontDistribute super."retry";
"retryer" = dontDistribute super."retryer";
+ "rev-state" = doDistribute super."rev-state_0_1";
"revdectime" = dontDistribute super."revdectime";
"reverse-apply" = dontDistribute super."reverse-apply";
"reverse-geocoding" = dontDistribute super."reverse-geocoding";
@@ -7091,6 +7115,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serv" = dontDistribute super."serv";
"servant" = dontDistribute super."servant";
"servant-JuicyPixels" = dontDistribute super."servant-JuicyPixels";
"servant-blaze" = dontDistribute super."servant-blaze";
@@ -8108,6 +8133,7 @@ self: super: {
"typehash" = dontDistribute super."typehash";
"typelevel" = dontDistribute super."typelevel";
"typelevel-tensor" = dontDistribute super."typelevel-tensor";
+ "typelits-witnesses" = dontDistribute super."typelits-witnesses";
"typeof" = dontDistribute super."typeof";
"typeparams" = dontDistribute super."typeparams";
"types-compat" = dontDistribute super."types-compat";
@@ -8351,6 +8377,7 @@ self: super: {
"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" = dontDistribute super."vty";
diff --git a/pkgs/development/haskell-modules/configuration-lts-1.15.nix b/pkgs/development/haskell-modules/configuration-lts-1.15.nix
index 5682f7e1f25..34f6cc66200 100644
--- a/pkgs/development/haskell-modules/configuration-lts-1.15.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-1.15.nix
@@ -334,6 +334,7 @@ self: super: {
"FormalGrammars" = dontDistribute super."FormalGrammars";
"Foster" = dontDistribute super."Foster";
"FpMLv53" = dontDistribute super."FpMLv53";
+ "FractalArt" = dontDistribute super."FractalArt";
"Fractaler" = dontDistribute super."Fractaler";
"Frames" = dontDistribute super."Frames";
"Frank" = dontDistribute super."Frank";
@@ -487,6 +488,7 @@ self: super: {
"HTTP-Simple" = dontDistribute super."HTTP-Simple";
"HTab" = dontDistribute super."HTab";
"HTicTacToe" = dontDistribute super."HTicTacToe";
+ "HUnit" = doDistribute super."HUnit_1_2_5_2";
"HUnit-Diff" = dontDistribute super."HUnit-Diff";
"HUnit-Plus" = dontDistribute super."HUnit-Plus";
"HUnit-approx" = dontDistribute super."HUnit-approx";
@@ -520,6 +522,7 @@ self: super: {
"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";
@@ -1956,6 +1959,7 @@ self: super: {
"cef" = dontDistribute super."cef";
"ceilometer-common" = dontDistribute super."ceilometer-common";
"cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo";
+ "cerberus" = dontDistribute super."cerberus";
"cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_3";
"cereal-derive" = dontDistribute super."cereal-derive";
"cereal-enumerator" = dontDistribute super."cereal-enumerator";
@@ -2169,6 +2173,7 @@ self: super: {
"concrete-typerep" = dontDistribute super."concrete-typerep";
"concurrent-barrier" = dontDistribute super."concurrent-barrier";
"concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache";
+ "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9";
"concurrent-machines" = dontDistribute super."concurrent-machines";
"concurrent-output" = dontDistribute super."concurrent-output";
"concurrent-sa" = dontDistribute super."concurrent-sa";
@@ -2605,6 +2610,7 @@ self: super: {
"diagrams-solve" = dontDistribute super."diagrams-solve";
"diagrams-svg" = doDistribute super."diagrams-svg_1_1_0_4";
"diagrams-tikz" = dontDistribute super."diagrams-tikz";
+ "dialog" = dontDistribute super."dialog";
"dice" = dontDistribute super."dice";
"dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit";
"dicom" = dontDistribute super."dicom";
@@ -2796,6 +2802,7 @@ self: super: {
"edenskel" = dontDistribute super."edenskel";
"edentv" = dontDistribute super."edentv";
"edge" = dontDistribute super."edge";
+ "edis" = dontDistribute super."edis";
"edit-distance" = dontDistribute super."edit-distance";
"edit-distance-vector" = dontDistribute super."edit-distance-vector";
"edit-lenses" = dontDistribute super."edit-lenses";
@@ -2993,6 +3000,7 @@ self: super: {
"fad" = dontDistribute super."fad";
"failable-list" = dontDistribute super."failable-list";
"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";
@@ -3218,6 +3226,7 @@ self: super: {
"friday-juicypixels" = dontDistribute super."friday-juicypixels";
"friday-scale-dct" = dontDistribute super."friday-scale-dct";
"friendly-time" = dontDistribute super."friendly-time";
+ "frontmatter" = dontDistribute super."frontmatter";
"frp-arduino" = dontDistribute super."frp-arduino";
"frpnow" = dontDistribute super."frpnow";
"frpnow-gloss" = dontDistribute super."frpnow-gloss";
@@ -3437,6 +3446,7 @@ self: super: {
"gitlib-utils" = dontDistribute super."gitlib-utils";
"gitrev" = dontDistribute super."gitrev";
"gitson" = dontDistribute super."gitson";
+ "gitter" = dontDistribute super."gitter";
"gl" = doDistribute super."gl_0_6_3";
"gl-capture" = dontDistribute super."gl-capture";
"glade" = dontDistribute super."glade";
@@ -3748,6 +3758,7 @@ self: super: {
"hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP";
"hackage-server" = dontDistribute super."hackage-server";
"hackage-sparks" = dontDistribute super."hackage-sparks";
+ "hackage-whatsnew" = dontDistribute super."hackage-whatsnew";
"hackage2hwn" = dontDistribute super."hackage2hwn";
"hackage2twitter" = dontDistribute super."hackage2twitter";
"hackager" = dontDistribute super."hackager";
@@ -4211,6 +4222,7 @@ self: super: {
"hlibBladeRF" = dontDistribute super."hlibBladeRF";
"hlibev" = dontDistribute super."hlibev";
"hlibfam" = dontDistribute super."hlibfam";
+ "hlibgit2" = doDistribute super."hlibgit2_0_18_0_14";
"hlibsass" = dontDistribute super."hlibsass";
"hlint" = doDistribute super."hlint_1_9_16";
"hlogger" = dontDistribute super."hlogger";
@@ -4486,6 +4498,7 @@ self: super: {
"hspec-meta" = doDistribute super."hspec-meta_2_0_0";
"hspec-monad-control" = dontDistribute super."hspec-monad-control";
"hspec-server" = dontDistribute super."hspec-server";
+ "hspec-setup" = dontDistribute super."hspec-setup";
"hspec-shouldbe" = dontDistribute super."hspec-shouldbe";
"hspec-smallcheck" = dontDistribute super."hspec-smallcheck";
"hspec-snap" = dontDistribute super."hspec-snap";
@@ -4587,6 +4600,7 @@ self: super: {
"http-shed" = dontDistribute super."http-shed";
"http-streams" = dontDistribute super."http-streams";
"http-test" = dontDistribute super."http-test";
+ "http-types" = doDistribute super."http-types_0_8_6";
"http-wget" = dontDistribute super."http-wget";
"http2" = dontDistribute super."http2";
"httpd-shed" = dontDistribute super."httpd-shed";
@@ -4732,6 +4746,7 @@ self: super: {
"imgurder" = dontDistribute super."imgurder";
"imm" = dontDistribute super."imm";
"imparse" = dontDistribute super."imparse";
+ "imperative-edsl" = dontDistribute super."imperative-edsl";
"imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl";
"implicit" = dontDistribute super."implicit";
"implicit-params" = dontDistribute super."implicit-params";
@@ -4874,6 +4889,7 @@ self: super: {
"ix-shapable" = dontDistribute super."ix-shapable";
"ixdopp" = dontDistribute super."ixdopp";
"ixmonad" = dontDistribute super."ixmonad";
+ "ixset" = doDistribute super."ixset_1_0_6";
"ixset-typed" = dontDistribute super."ixset-typed";
"iyql" = dontDistribute super."iyql";
"j2hs" = dontDistribute super."j2hs";
@@ -4920,6 +4936,7 @@ self: super: {
"json-autotype" = doDistribute super."json-autotype_0_2_5_9";
"json-b" = dontDistribute super."json-b";
"json-builder" = dontDistribute super."json-builder";
+ "json-encoder" = dontDistribute super."json-encoder";
"json-enumerator" = dontDistribute super."json-enumerator";
"json-extra" = dontDistribute super."json-extra";
"json-fu" = dontDistribute super."json-fu";
@@ -5060,6 +5077,7 @@ self: super: {
"lambdacube-examples" = dontDistribute super."lambdacube-examples";
"lambdacube-gl" = dontDistribute super."lambdacube-gl";
"lambdacube-samples" = dontDistribute super."lambdacube-samples";
+ "lambdatex" = dontDistribute super."lambdatex";
"lambdatwit" = dontDistribute super."lambdatwit";
"lambdiff" = dontDistribute super."lambdiff";
"lame-tester" = dontDistribute super."lame-tester";
@@ -5268,6 +5286,7 @@ self: super: {
"list-fusion-probe" = dontDistribute super."list-fusion-probe";
"list-grouping" = dontDistribute super."list-grouping";
"list-mux" = dontDistribute super."list-mux";
+ "list-prompt" = dontDistribute super."list-prompt";
"list-remote-forwards" = dontDistribute super."list-remote-forwards";
"list-t" = doDistribute super."list-t_0_4_3";
"list-t-attoparsec" = dontDistribute super."list-t-attoparsec";
@@ -5312,6 +5331,7 @@ self: super: {
"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-domain" = doDistribute super."log-domain_0_9_3";
@@ -5985,6 +6005,7 @@ self: super: {
"omnifmt" = dontDistribute super."omnifmt";
"on-a-horse" = dontDistribute super."on-a-horse";
"on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel";
+ "once" = dontDistribute super."once";
"one-liner" = dontDistribute super."one-liner";
"one-time-password" = dontDistribute super."one-time-password";
"oneOfN" = dontDistribute super."oneOfN";
@@ -6042,6 +6063,7 @@ self: super: {
"optional" = dontDistribute super."optional";
"optional-args" = dontDistribute super."optional-args";
"options-time" = dontDistribute super."options-time";
+ "optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"optparse-simple" = dontDistribute super."optparse-simple";
"orc" = dontDistribute super."orc";
@@ -6080,7 +6102,6 @@ self: super: {
"padKONTROL" = dontDistribute super."padKONTROL";
"pagarme" = dontDistribute super."pagarme";
"pager" = dontDistribute super."pager";
- "pagerduty" = dontDistribute super."pagerduty";
"pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver";
"palette" = dontDistribute super."palette";
"palindromes" = dontDistribute super."palindromes";
@@ -6242,6 +6263,7 @@ self: super: {
"phasechange" = dontDistribute super."phasechange";
"phash" = dontDistribute super."phash";
"phizzle" = dontDistribute super."phizzle";
+ "phoityne" = dontDistribute super."phoityne";
"phone-numbers" = dontDistribute super."phone-numbers";
"phone-push" = dontDistribute super."phone-push";
"phonetic-code" = dontDistribute super."phonetic-code";
@@ -6276,6 +6298,7 @@ self: super: {
"pipes-cereal" = dontDistribute super."pipes-cereal";
"pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus";
"pipes-cliff" = dontDistribute super."pipes-cliff";
+ "pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_3";
"pipes-conduit" = dontDistribute super."pipes-conduit";
"pipes-core" = dontDistribute super."pipes-core";
"pipes-courier" = dontDistribute super."pipes-courier";
@@ -6845,6 +6868,7 @@ self: super: {
"rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster";
"retry" = dontDistribute super."retry";
"retryer" = dontDistribute super."retryer";
+ "rev-state" = doDistribute super."rev-state_0_1";
"revdectime" = dontDistribute super."revdectime";
"reverse-apply" = dontDistribute super."reverse-apply";
"reverse-geocoding" = dontDistribute super."reverse-geocoding";
@@ -7082,6 +7106,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serv" = dontDistribute super."serv";
"servant" = dontDistribute super."servant";
"servant-JuicyPixels" = dontDistribute super."servant-JuicyPixels";
"servant-blaze" = dontDistribute super."servant-blaze";
@@ -8097,6 +8122,7 @@ self: super: {
"typehash" = dontDistribute super."typehash";
"typelevel" = dontDistribute super."typelevel";
"typelevel-tensor" = dontDistribute super."typelevel-tensor";
+ "typelits-witnesses" = dontDistribute super."typelits-witnesses";
"typeof" = dontDistribute super."typeof";
"typeparams" = dontDistribute super."typeparams";
"types-compat" = dontDistribute super."types-compat";
@@ -8340,6 +8366,7 @@ self: super: {
"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" = dontDistribute super."vty";
diff --git a/pkgs/development/haskell-modules/configuration-lts-1.2.nix b/pkgs/development/haskell-modules/configuration-lts-1.2.nix
index d5b3f51926b..3f6a8c35c12 100644
--- a/pkgs/development/haskell-modules/configuration-lts-1.2.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-1.2.nix
@@ -335,6 +335,7 @@ self: super: {
"FormalGrammars" = dontDistribute super."FormalGrammars";
"Foster" = dontDistribute super."Foster";
"FpMLv53" = dontDistribute super."FpMLv53";
+ "FractalArt" = dontDistribute super."FractalArt";
"Fractaler" = dontDistribute super."Fractaler";
"Frames" = dontDistribute super."Frames";
"Frank" = dontDistribute super."Frank";
@@ -488,6 +489,7 @@ self: super: {
"HTTP-Simple" = dontDistribute super."HTTP-Simple";
"HTab" = dontDistribute super."HTab";
"HTicTacToe" = dontDistribute super."HTicTacToe";
+ "HUnit" = doDistribute super."HUnit_1_2_5_2";
"HUnit-Diff" = dontDistribute super."HUnit-Diff";
"HUnit-Plus" = dontDistribute super."HUnit-Plus";
"HUnit-approx" = dontDistribute super."HUnit-approx";
@@ -522,6 +524,7 @@ self: super: {
"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";
@@ -1962,6 +1965,7 @@ self: super: {
"cef" = dontDistribute super."cef";
"ceilometer-common" = dontDistribute super."ceilometer-common";
"cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo";
+ "cerberus" = dontDistribute super."cerberus";
"cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_3";
"cereal-derive" = dontDistribute super."cereal-derive";
"cereal-enumerator" = dontDistribute super."cereal-enumerator";
@@ -2176,6 +2180,7 @@ self: super: {
"concrete-typerep" = dontDistribute super."concrete-typerep";
"concurrent-barrier" = dontDistribute super."concurrent-barrier";
"concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache";
+ "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9";
"concurrent-machines" = dontDistribute super."concurrent-machines";
"concurrent-output" = dontDistribute super."concurrent-output";
"concurrent-sa" = dontDistribute super."concurrent-sa";
@@ -2615,6 +2620,7 @@ self: super: {
"diagrams-solve" = dontDistribute super."diagrams-solve";
"diagrams-svg" = doDistribute super."diagrams-svg_1_1_0_4";
"diagrams-tikz" = dontDistribute super."diagrams-tikz";
+ "dialog" = dontDistribute super."dialog";
"dice" = dontDistribute super."dice";
"dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit";
"dicom" = dontDistribute super."dicom";
@@ -2806,6 +2812,7 @@ self: super: {
"edenskel" = dontDistribute super."edenskel";
"edentv" = dontDistribute super."edentv";
"edge" = dontDistribute super."edge";
+ "edis" = dontDistribute super."edis";
"edit-distance" = dontDistribute super."edit-distance";
"edit-distance-vector" = dontDistribute super."edit-distance-vector";
"edit-lenses" = dontDistribute super."edit-lenses";
@@ -3004,6 +3011,7 @@ self: super: {
"fad" = dontDistribute super."fad";
"failable-list" = dontDistribute super."failable-list";
"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";
@@ -3234,6 +3242,7 @@ self: super: {
"friday-juicypixels" = dontDistribute super."friday-juicypixels";
"friday-scale-dct" = dontDistribute super."friday-scale-dct";
"friendly-time" = dontDistribute super."friendly-time";
+ "frontmatter" = dontDistribute super."frontmatter";
"frp-arduino" = dontDistribute super."frp-arduino";
"frpnow" = dontDistribute super."frpnow";
"frpnow-gloss" = dontDistribute super."frpnow-gloss";
@@ -3453,6 +3462,7 @@ self: super: {
"gitlib-utils" = dontDistribute super."gitlib-utils";
"gitrev" = dontDistribute super."gitrev";
"gitson" = dontDistribute super."gitson";
+ "gitter" = dontDistribute super."gitter";
"gl" = doDistribute super."gl_0_6_3";
"gl-capture" = dontDistribute super."gl-capture";
"glade" = dontDistribute super."glade";
@@ -3766,6 +3776,7 @@ self: super: {
"hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP";
"hackage-server" = dontDistribute super."hackage-server";
"hackage-sparks" = dontDistribute super."hackage-sparks";
+ "hackage-whatsnew" = dontDistribute super."hackage-whatsnew";
"hackage2hwn" = dontDistribute super."hackage2hwn";
"hackage2twitter" = dontDistribute super."hackage2twitter";
"hackager" = dontDistribute super."hackager";
@@ -4508,6 +4519,7 @@ self: super: {
"hspec-meta" = doDistribute super."hspec-meta_2_0_0";
"hspec-monad-control" = dontDistribute super."hspec-monad-control";
"hspec-server" = dontDistribute super."hspec-server";
+ "hspec-setup" = dontDistribute super."hspec-setup";
"hspec-shouldbe" = dontDistribute super."hspec-shouldbe";
"hspec-smallcheck" = dontDistribute super."hspec-smallcheck";
"hspec-snap" = dontDistribute super."hspec-snap";
@@ -4762,6 +4774,7 @@ self: super: {
"imgurder" = dontDistribute super."imgurder";
"imm" = dontDistribute super."imm";
"imparse" = dontDistribute super."imparse";
+ "imperative-edsl" = dontDistribute super."imperative-edsl";
"imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl";
"implicit" = dontDistribute super."implicit";
"implicit-params" = dontDistribute super."implicit-params";
@@ -4906,6 +4919,7 @@ self: super: {
"ix-shapable" = dontDistribute super."ix-shapable";
"ixdopp" = dontDistribute super."ixdopp";
"ixmonad" = dontDistribute super."ixmonad";
+ "ixset" = doDistribute super."ixset_1_0_6";
"ixset-typed" = dontDistribute super."ixset-typed";
"iyql" = dontDistribute super."iyql";
"j2hs" = dontDistribute super."j2hs";
@@ -4952,6 +4966,7 @@ self: super: {
"json-autotype" = doDistribute super."json-autotype_0_2_5_4";
"json-b" = dontDistribute super."json-b";
"json-builder" = dontDistribute super."json-builder";
+ "json-encoder" = dontDistribute super."json-encoder";
"json-enumerator" = dontDistribute super."json-enumerator";
"json-extra" = dontDistribute super."json-extra";
"json-fu" = dontDistribute super."json-fu";
@@ -5093,6 +5108,7 @@ self: super: {
"lambdacube-examples" = dontDistribute super."lambdacube-examples";
"lambdacube-gl" = dontDistribute super."lambdacube-gl";
"lambdacube-samples" = dontDistribute super."lambdacube-samples";
+ "lambdatex" = dontDistribute super."lambdatex";
"lambdatwit" = dontDistribute super."lambdatwit";
"lambdiff" = dontDistribute super."lambdiff";
"lame-tester" = dontDistribute super."lame-tester";
@@ -5303,6 +5319,7 @@ self: super: {
"list-fusion-probe" = dontDistribute super."list-fusion-probe";
"list-grouping" = dontDistribute super."list-grouping";
"list-mux" = dontDistribute super."list-mux";
+ "list-prompt" = dontDistribute super."list-prompt";
"list-remote-forwards" = dontDistribute super."list-remote-forwards";
"list-t" = doDistribute super."list-t_0_4_2";
"list-t-attoparsec" = dontDistribute super."list-t-attoparsec";
@@ -5347,6 +5364,7 @@ self: super: {
"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-domain" = doDistribute super."log-domain_0_9_3";
@@ -6026,6 +6044,7 @@ self: super: {
"omnifmt" = dontDistribute super."omnifmt";
"on-a-horse" = dontDistribute super."on-a-horse";
"on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel";
+ "once" = dontDistribute super."once";
"one-liner" = dontDistribute super."one-liner";
"one-time-password" = dontDistribute super."one-time-password";
"oneOfN" = dontDistribute super."oneOfN";
@@ -6122,7 +6141,6 @@ self: super: {
"padKONTROL" = dontDistribute super."padKONTROL";
"pagarme" = dontDistribute super."pagarme";
"pager" = dontDistribute super."pager";
- "pagerduty" = dontDistribute super."pagerduty";
"pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver";
"palette" = dontDistribute super."palette";
"palindromes" = dontDistribute super."palindromes";
@@ -6284,6 +6302,7 @@ self: super: {
"phasechange" = dontDistribute super."phasechange";
"phash" = dontDistribute super."phash";
"phizzle" = dontDistribute super."phizzle";
+ "phoityne" = dontDistribute super."phoityne";
"phone-numbers" = dontDistribute super."phone-numbers";
"phone-push" = dontDistribute super."phone-push";
"phonetic-code" = dontDistribute super."phonetic-code";
@@ -6891,6 +6910,7 @@ self: super: {
"rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster";
"retry" = dontDistribute super."retry";
"retryer" = dontDistribute super."retryer";
+ "rev-state" = doDistribute super."rev-state_0_1";
"revdectime" = dontDistribute super."revdectime";
"reverse-apply" = dontDistribute super."reverse-apply";
"reverse-geocoding" = dontDistribute super."reverse-geocoding";
@@ -7128,6 +7148,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serv" = dontDistribute super."serv";
"servant" = dontDistribute super."servant";
"servant-JuicyPixels" = dontDistribute super."servant-JuicyPixels";
"servant-blaze" = dontDistribute super."servant-blaze";
@@ -8154,6 +8175,7 @@ self: super: {
"typehash" = dontDistribute super."typehash";
"typelevel" = dontDistribute super."typelevel";
"typelevel-tensor" = dontDistribute super."typelevel-tensor";
+ "typelits-witnesses" = dontDistribute super."typelits-witnesses";
"typeof" = dontDistribute super."typeof";
"typeparams" = dontDistribute super."typeparams";
"types-compat" = dontDistribute super."types-compat";
@@ -8398,6 +8420,7 @@ self: super: {
"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" = dontDistribute super."vty";
diff --git a/pkgs/development/haskell-modules/configuration-lts-1.4.nix b/pkgs/development/haskell-modules/configuration-lts-1.4.nix
index 0b3ac781834..60ac68fa6af 100644
--- a/pkgs/development/haskell-modules/configuration-lts-1.4.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-1.4.nix
@@ -335,6 +335,7 @@ self: super: {
"FormalGrammars" = dontDistribute super."FormalGrammars";
"Foster" = dontDistribute super."Foster";
"FpMLv53" = dontDistribute super."FpMLv53";
+ "FractalArt" = dontDistribute super."FractalArt";
"Fractaler" = dontDistribute super."Fractaler";
"Frames" = dontDistribute super."Frames";
"Frank" = dontDistribute super."Frank";
@@ -488,6 +489,7 @@ self: super: {
"HTTP-Simple" = dontDistribute super."HTTP-Simple";
"HTab" = dontDistribute super."HTab";
"HTicTacToe" = dontDistribute super."HTicTacToe";
+ "HUnit" = doDistribute super."HUnit_1_2_5_2";
"HUnit-Diff" = dontDistribute super."HUnit-Diff";
"HUnit-Plus" = dontDistribute super."HUnit-Plus";
"HUnit-approx" = dontDistribute super."HUnit-approx";
@@ -521,6 +523,7 @@ self: super: {
"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";
@@ -1961,6 +1964,7 @@ self: super: {
"cef" = dontDistribute super."cef";
"ceilometer-common" = dontDistribute super."ceilometer-common";
"cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo";
+ "cerberus" = dontDistribute super."cerberus";
"cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_3";
"cereal-derive" = dontDistribute super."cereal-derive";
"cereal-enumerator" = dontDistribute super."cereal-enumerator";
@@ -2175,6 +2179,7 @@ self: super: {
"concrete-typerep" = dontDistribute super."concrete-typerep";
"concurrent-barrier" = dontDistribute super."concurrent-barrier";
"concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache";
+ "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9";
"concurrent-machines" = dontDistribute super."concurrent-machines";
"concurrent-output" = dontDistribute super."concurrent-output";
"concurrent-sa" = dontDistribute super."concurrent-sa";
@@ -2614,6 +2619,7 @@ self: super: {
"diagrams-solve" = dontDistribute super."diagrams-solve";
"diagrams-svg" = doDistribute super."diagrams-svg_1_1_0_4";
"diagrams-tikz" = dontDistribute super."diagrams-tikz";
+ "dialog" = dontDistribute super."dialog";
"dice" = dontDistribute super."dice";
"dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit";
"dicom" = dontDistribute super."dicom";
@@ -2805,6 +2811,7 @@ self: super: {
"edenskel" = dontDistribute super."edenskel";
"edentv" = dontDistribute super."edentv";
"edge" = dontDistribute super."edge";
+ "edis" = dontDistribute super."edis";
"edit-distance" = dontDistribute super."edit-distance";
"edit-distance-vector" = dontDistribute super."edit-distance-vector";
"edit-lenses" = dontDistribute super."edit-lenses";
@@ -3003,6 +3010,7 @@ self: super: {
"fad" = dontDistribute super."fad";
"failable-list" = dontDistribute super."failable-list";
"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";
@@ -3232,6 +3240,7 @@ self: super: {
"friday-juicypixels" = dontDistribute super."friday-juicypixels";
"friday-scale-dct" = dontDistribute super."friday-scale-dct";
"friendly-time" = dontDistribute super."friendly-time";
+ "frontmatter" = dontDistribute super."frontmatter";
"frp-arduino" = dontDistribute super."frp-arduino";
"frpnow" = dontDistribute super."frpnow";
"frpnow-gloss" = dontDistribute super."frpnow-gloss";
@@ -3451,6 +3460,7 @@ self: super: {
"gitlib-utils" = dontDistribute super."gitlib-utils";
"gitrev" = dontDistribute super."gitrev";
"gitson" = dontDistribute super."gitson";
+ "gitter" = dontDistribute super."gitter";
"gl" = doDistribute super."gl_0_6_3";
"gl-capture" = dontDistribute super."gl-capture";
"glade" = dontDistribute super."glade";
@@ -3764,6 +3774,7 @@ self: super: {
"hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP";
"hackage-server" = dontDistribute super."hackage-server";
"hackage-sparks" = dontDistribute super."hackage-sparks";
+ "hackage-whatsnew" = dontDistribute super."hackage-whatsnew";
"hackage2hwn" = dontDistribute super."hackage2hwn";
"hackage2twitter" = dontDistribute super."hackage2twitter";
"hackager" = dontDistribute super."hackager";
@@ -4505,6 +4516,7 @@ self: super: {
"hspec-meta" = doDistribute super."hspec-meta_2_0_0";
"hspec-monad-control" = dontDistribute super."hspec-monad-control";
"hspec-server" = dontDistribute super."hspec-server";
+ "hspec-setup" = dontDistribute super."hspec-setup";
"hspec-shouldbe" = dontDistribute super."hspec-shouldbe";
"hspec-smallcheck" = dontDistribute super."hspec-smallcheck";
"hspec-snap" = dontDistribute super."hspec-snap";
@@ -4759,6 +4771,7 @@ self: super: {
"imgurder" = dontDistribute super."imgurder";
"imm" = dontDistribute super."imm";
"imparse" = dontDistribute super."imparse";
+ "imperative-edsl" = dontDistribute super."imperative-edsl";
"imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl";
"implicit" = dontDistribute super."implicit";
"implicit-params" = dontDistribute super."implicit-params";
@@ -4903,6 +4916,7 @@ self: super: {
"ix-shapable" = dontDistribute super."ix-shapable";
"ixdopp" = dontDistribute super."ixdopp";
"ixmonad" = dontDistribute super."ixmonad";
+ "ixset" = doDistribute super."ixset_1_0_6";
"ixset-typed" = dontDistribute super."ixset-typed";
"iyql" = dontDistribute super."iyql";
"j2hs" = dontDistribute super."j2hs";
@@ -4949,6 +4963,7 @@ self: super: {
"json-autotype" = doDistribute super."json-autotype_0_2_5_4";
"json-b" = dontDistribute super."json-b";
"json-builder" = dontDistribute super."json-builder";
+ "json-encoder" = dontDistribute super."json-encoder";
"json-enumerator" = dontDistribute super."json-enumerator";
"json-extra" = dontDistribute super."json-extra";
"json-fu" = dontDistribute super."json-fu";
@@ -5090,6 +5105,7 @@ self: super: {
"lambdacube-examples" = dontDistribute super."lambdacube-examples";
"lambdacube-gl" = dontDistribute super."lambdacube-gl";
"lambdacube-samples" = dontDistribute super."lambdacube-samples";
+ "lambdatex" = dontDistribute super."lambdatex";
"lambdatwit" = dontDistribute super."lambdatwit";
"lambdiff" = dontDistribute super."lambdiff";
"lame-tester" = dontDistribute super."lame-tester";
@@ -5300,6 +5316,7 @@ self: super: {
"list-fusion-probe" = dontDistribute super."list-fusion-probe";
"list-grouping" = dontDistribute super."list-grouping";
"list-mux" = dontDistribute super."list-mux";
+ "list-prompt" = dontDistribute super."list-prompt";
"list-remote-forwards" = dontDistribute super."list-remote-forwards";
"list-t" = doDistribute super."list-t_0_4_2";
"list-t-attoparsec" = dontDistribute super."list-t-attoparsec";
@@ -5344,6 +5361,7 @@ self: super: {
"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-domain" = doDistribute super."log-domain_0_9_3";
@@ -6022,6 +6040,7 @@ self: super: {
"omnifmt" = dontDistribute super."omnifmt";
"on-a-horse" = dontDistribute super."on-a-horse";
"on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel";
+ "once" = dontDistribute super."once";
"one-liner" = dontDistribute super."one-liner";
"one-time-password" = dontDistribute super."one-time-password";
"oneOfN" = dontDistribute super."oneOfN";
@@ -6118,7 +6137,6 @@ self: super: {
"padKONTROL" = dontDistribute super."padKONTROL";
"pagarme" = dontDistribute super."pagarme";
"pager" = dontDistribute super."pager";
- "pagerduty" = dontDistribute super."pagerduty";
"pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver";
"palette" = dontDistribute super."palette";
"palindromes" = dontDistribute super."palindromes";
@@ -6280,6 +6298,7 @@ self: super: {
"phasechange" = dontDistribute super."phasechange";
"phash" = dontDistribute super."phash";
"phizzle" = dontDistribute super."phizzle";
+ "phoityne" = dontDistribute super."phoityne";
"phone-numbers" = dontDistribute super."phone-numbers";
"phone-push" = dontDistribute super."phone-push";
"phonetic-code" = dontDistribute super."phonetic-code";
@@ -6314,6 +6333,7 @@ self: super: {
"pipes-cereal" = dontDistribute super."pipes-cereal";
"pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus";
"pipes-cliff" = dontDistribute super."pipes-cliff";
+ "pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_3";
"pipes-conduit" = dontDistribute super."pipes-conduit";
"pipes-core" = dontDistribute super."pipes-core";
"pipes-courier" = dontDistribute super."pipes-courier";
@@ -6886,6 +6906,7 @@ self: super: {
"rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster";
"retry" = dontDistribute super."retry";
"retryer" = dontDistribute super."retryer";
+ "rev-state" = doDistribute super."rev-state_0_1";
"revdectime" = dontDistribute super."revdectime";
"reverse-apply" = dontDistribute super."reverse-apply";
"reverse-geocoding" = dontDistribute super."reverse-geocoding";
@@ -7123,6 +7144,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serv" = dontDistribute super."serv";
"servant" = dontDistribute super."servant";
"servant-JuicyPixels" = dontDistribute super."servant-JuicyPixels";
"servant-blaze" = dontDistribute super."servant-blaze";
@@ -8148,6 +8170,7 @@ self: super: {
"typehash" = dontDistribute super."typehash";
"typelevel" = dontDistribute super."typelevel";
"typelevel-tensor" = dontDistribute super."typelevel-tensor";
+ "typelits-witnesses" = dontDistribute super."typelits-witnesses";
"typeof" = dontDistribute super."typeof";
"typeparams" = dontDistribute super."typeparams";
"types-compat" = dontDistribute super."types-compat";
@@ -8392,6 +8415,7 @@ self: super: {
"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" = dontDistribute super."vty";
diff --git a/pkgs/development/haskell-modules/configuration-lts-1.5.nix b/pkgs/development/haskell-modules/configuration-lts-1.5.nix
index fd90d1d8d45..d78bac500e3 100644
--- a/pkgs/development/haskell-modules/configuration-lts-1.5.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-1.5.nix
@@ -335,6 +335,7 @@ self: super: {
"FormalGrammars" = dontDistribute super."FormalGrammars";
"Foster" = dontDistribute super."Foster";
"FpMLv53" = dontDistribute super."FpMLv53";
+ "FractalArt" = dontDistribute super."FractalArt";
"Fractaler" = dontDistribute super."Fractaler";
"Frames" = dontDistribute super."Frames";
"Frank" = dontDistribute super."Frank";
@@ -488,6 +489,7 @@ self: super: {
"HTTP-Simple" = dontDistribute super."HTTP-Simple";
"HTab" = dontDistribute super."HTab";
"HTicTacToe" = dontDistribute super."HTicTacToe";
+ "HUnit" = doDistribute super."HUnit_1_2_5_2";
"HUnit-Diff" = dontDistribute super."HUnit-Diff";
"HUnit-Plus" = dontDistribute super."HUnit-Plus";
"HUnit-approx" = dontDistribute super."HUnit-approx";
@@ -521,6 +523,7 @@ self: super: {
"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";
@@ -1960,6 +1963,7 @@ self: super: {
"cef" = dontDistribute super."cef";
"ceilometer-common" = dontDistribute super."ceilometer-common";
"cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo";
+ "cerberus" = dontDistribute super."cerberus";
"cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_3";
"cereal-derive" = dontDistribute super."cereal-derive";
"cereal-enumerator" = dontDistribute super."cereal-enumerator";
@@ -2174,6 +2178,7 @@ self: super: {
"concrete-typerep" = dontDistribute super."concrete-typerep";
"concurrent-barrier" = dontDistribute super."concurrent-barrier";
"concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache";
+ "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9";
"concurrent-machines" = dontDistribute super."concurrent-machines";
"concurrent-output" = dontDistribute super."concurrent-output";
"concurrent-sa" = dontDistribute super."concurrent-sa";
@@ -2613,6 +2618,7 @@ self: super: {
"diagrams-solve" = dontDistribute super."diagrams-solve";
"diagrams-svg" = doDistribute super."diagrams-svg_1_1_0_4";
"diagrams-tikz" = dontDistribute super."diagrams-tikz";
+ "dialog" = dontDistribute super."dialog";
"dice" = dontDistribute super."dice";
"dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit";
"dicom" = dontDistribute super."dicom";
@@ -2804,6 +2810,7 @@ self: super: {
"edenskel" = dontDistribute super."edenskel";
"edentv" = dontDistribute super."edentv";
"edge" = dontDistribute super."edge";
+ "edis" = dontDistribute super."edis";
"edit-distance" = dontDistribute super."edit-distance";
"edit-distance-vector" = dontDistribute super."edit-distance-vector";
"edit-lenses" = dontDistribute super."edit-lenses";
@@ -3002,6 +3009,7 @@ self: super: {
"fad" = dontDistribute super."fad";
"failable-list" = dontDistribute super."failable-list";
"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";
@@ -3231,6 +3239,7 @@ self: super: {
"friday-juicypixels" = dontDistribute super."friday-juicypixels";
"friday-scale-dct" = dontDistribute super."friday-scale-dct";
"friendly-time" = dontDistribute super."friendly-time";
+ "frontmatter" = dontDistribute super."frontmatter";
"frp-arduino" = dontDistribute super."frp-arduino";
"frpnow" = dontDistribute super."frpnow";
"frpnow-gloss" = dontDistribute super."frpnow-gloss";
@@ -3450,6 +3459,7 @@ self: super: {
"gitlib-utils" = dontDistribute super."gitlib-utils";
"gitrev" = dontDistribute super."gitrev";
"gitson" = dontDistribute super."gitson";
+ "gitter" = dontDistribute super."gitter";
"gl" = doDistribute super."gl_0_6_3";
"gl-capture" = dontDistribute super."gl-capture";
"glade" = dontDistribute super."glade";
@@ -3763,6 +3773,7 @@ self: super: {
"hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP";
"hackage-server" = dontDistribute super."hackage-server";
"hackage-sparks" = dontDistribute super."hackage-sparks";
+ "hackage-whatsnew" = dontDistribute super."hackage-whatsnew";
"hackage2hwn" = dontDistribute super."hackage2hwn";
"hackage2twitter" = dontDistribute super."hackage2twitter";
"hackager" = dontDistribute super."hackager";
@@ -4504,6 +4515,7 @@ self: super: {
"hspec-meta" = doDistribute super."hspec-meta_2_0_0";
"hspec-monad-control" = dontDistribute super."hspec-monad-control";
"hspec-server" = dontDistribute super."hspec-server";
+ "hspec-setup" = dontDistribute super."hspec-setup";
"hspec-shouldbe" = dontDistribute super."hspec-shouldbe";
"hspec-smallcheck" = dontDistribute super."hspec-smallcheck";
"hspec-snap" = dontDistribute super."hspec-snap";
@@ -4757,6 +4769,7 @@ self: super: {
"imgurder" = dontDistribute super."imgurder";
"imm" = dontDistribute super."imm";
"imparse" = dontDistribute super."imparse";
+ "imperative-edsl" = dontDistribute super."imperative-edsl";
"imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl";
"implicit" = dontDistribute super."implicit";
"implicit-params" = dontDistribute super."implicit-params";
@@ -4901,6 +4914,7 @@ self: super: {
"ix-shapable" = dontDistribute super."ix-shapable";
"ixdopp" = dontDistribute super."ixdopp";
"ixmonad" = dontDistribute super."ixmonad";
+ "ixset" = doDistribute super."ixset_1_0_6";
"ixset-typed" = dontDistribute super."ixset-typed";
"iyql" = dontDistribute super."iyql";
"j2hs" = dontDistribute super."j2hs";
@@ -4947,6 +4961,7 @@ self: super: {
"json-autotype" = doDistribute super."json-autotype_0_2_5_4";
"json-b" = dontDistribute super."json-b";
"json-builder" = dontDistribute super."json-builder";
+ "json-encoder" = dontDistribute super."json-encoder";
"json-enumerator" = dontDistribute super."json-enumerator";
"json-extra" = dontDistribute super."json-extra";
"json-fu" = dontDistribute super."json-fu";
@@ -5088,6 +5103,7 @@ self: super: {
"lambdacube-examples" = dontDistribute super."lambdacube-examples";
"lambdacube-gl" = dontDistribute super."lambdacube-gl";
"lambdacube-samples" = dontDistribute super."lambdacube-samples";
+ "lambdatex" = dontDistribute super."lambdatex";
"lambdatwit" = dontDistribute super."lambdatwit";
"lambdiff" = dontDistribute super."lambdiff";
"lame-tester" = dontDistribute super."lame-tester";
@@ -5298,6 +5314,7 @@ self: super: {
"list-fusion-probe" = dontDistribute super."list-fusion-probe";
"list-grouping" = dontDistribute super."list-grouping";
"list-mux" = dontDistribute super."list-mux";
+ "list-prompt" = dontDistribute super."list-prompt";
"list-remote-forwards" = dontDistribute super."list-remote-forwards";
"list-t" = doDistribute super."list-t_0_4_2";
"list-t-attoparsec" = dontDistribute super."list-t-attoparsec";
@@ -5342,6 +5359,7 @@ self: super: {
"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-domain" = doDistribute super."log-domain_0_9_3";
@@ -6020,6 +6038,7 @@ self: super: {
"omnifmt" = dontDistribute super."omnifmt";
"on-a-horse" = dontDistribute super."on-a-horse";
"on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel";
+ "once" = dontDistribute super."once";
"one-liner" = dontDistribute super."one-liner";
"one-time-password" = dontDistribute super."one-time-password";
"oneOfN" = dontDistribute super."oneOfN";
@@ -6116,7 +6135,6 @@ self: super: {
"padKONTROL" = dontDistribute super."padKONTROL";
"pagarme" = dontDistribute super."pagarme";
"pager" = dontDistribute super."pager";
- "pagerduty" = dontDistribute super."pagerduty";
"pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver";
"palette" = dontDistribute super."palette";
"palindromes" = dontDistribute super."palindromes";
@@ -6278,6 +6296,7 @@ self: super: {
"phasechange" = dontDistribute super."phasechange";
"phash" = dontDistribute super."phash";
"phizzle" = dontDistribute super."phizzle";
+ "phoityne" = dontDistribute super."phoityne";
"phone-numbers" = dontDistribute super."phone-numbers";
"phone-push" = dontDistribute super."phone-push";
"phonetic-code" = dontDistribute super."phonetic-code";
@@ -6312,6 +6331,7 @@ self: super: {
"pipes-cereal" = dontDistribute super."pipes-cereal";
"pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus";
"pipes-cliff" = dontDistribute super."pipes-cliff";
+ "pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_3";
"pipes-conduit" = dontDistribute super."pipes-conduit";
"pipes-core" = dontDistribute super."pipes-core";
"pipes-courier" = dontDistribute super."pipes-courier";
@@ -6884,6 +6904,7 @@ self: super: {
"rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster";
"retry" = dontDistribute super."retry";
"retryer" = dontDistribute super."retryer";
+ "rev-state" = doDistribute super."rev-state_0_1";
"revdectime" = dontDistribute super."revdectime";
"reverse-apply" = dontDistribute super."reverse-apply";
"reverse-geocoding" = dontDistribute super."reverse-geocoding";
@@ -7121,6 +7142,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serv" = dontDistribute super."serv";
"servant" = dontDistribute super."servant";
"servant-JuicyPixels" = dontDistribute super."servant-JuicyPixels";
"servant-blaze" = dontDistribute super."servant-blaze";
@@ -8145,6 +8167,7 @@ self: super: {
"typehash" = dontDistribute super."typehash";
"typelevel" = dontDistribute super."typelevel";
"typelevel-tensor" = dontDistribute super."typelevel-tensor";
+ "typelits-witnesses" = dontDistribute super."typelits-witnesses";
"typeof" = dontDistribute super."typeof";
"typeparams" = dontDistribute super."typeparams";
"types-compat" = dontDistribute super."types-compat";
@@ -8388,6 +8411,7 @@ self: super: {
"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" = dontDistribute super."vty";
diff --git a/pkgs/development/haskell-modules/configuration-lts-1.7.nix b/pkgs/development/haskell-modules/configuration-lts-1.7.nix
index dad8d991a76..11e6d050e97 100644
--- a/pkgs/development/haskell-modules/configuration-lts-1.7.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-1.7.nix
@@ -335,6 +335,7 @@ self: super: {
"FormalGrammars" = dontDistribute super."FormalGrammars";
"Foster" = dontDistribute super."Foster";
"FpMLv53" = dontDistribute super."FpMLv53";
+ "FractalArt" = dontDistribute super."FractalArt";
"Fractaler" = dontDistribute super."Fractaler";
"Frames" = dontDistribute super."Frames";
"Frank" = dontDistribute super."Frank";
@@ -488,6 +489,7 @@ self: super: {
"HTTP-Simple" = dontDistribute super."HTTP-Simple";
"HTab" = dontDistribute super."HTab";
"HTicTacToe" = dontDistribute super."HTicTacToe";
+ "HUnit" = doDistribute super."HUnit_1_2_5_2";
"HUnit-Diff" = dontDistribute super."HUnit-Diff";
"HUnit-Plus" = dontDistribute super."HUnit-Plus";
"HUnit-approx" = dontDistribute super."HUnit-approx";
@@ -521,6 +523,7 @@ self: super: {
"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";
@@ -1960,6 +1963,7 @@ self: super: {
"cef" = dontDistribute super."cef";
"ceilometer-common" = dontDistribute super."ceilometer-common";
"cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo";
+ "cerberus" = dontDistribute super."cerberus";
"cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_3";
"cereal-derive" = dontDistribute super."cereal-derive";
"cereal-enumerator" = dontDistribute super."cereal-enumerator";
@@ -2174,6 +2178,7 @@ self: super: {
"concrete-typerep" = dontDistribute super."concrete-typerep";
"concurrent-barrier" = dontDistribute super."concurrent-barrier";
"concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache";
+ "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9";
"concurrent-machines" = dontDistribute super."concurrent-machines";
"concurrent-output" = dontDistribute super."concurrent-output";
"concurrent-sa" = dontDistribute super."concurrent-sa";
@@ -2613,6 +2618,7 @@ self: super: {
"diagrams-solve" = dontDistribute super."diagrams-solve";
"diagrams-svg" = doDistribute super."diagrams-svg_1_1_0_4";
"diagrams-tikz" = dontDistribute super."diagrams-tikz";
+ "dialog" = dontDistribute super."dialog";
"dice" = dontDistribute super."dice";
"dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit";
"dicom" = dontDistribute super."dicom";
@@ -2804,6 +2810,7 @@ self: super: {
"edenskel" = dontDistribute super."edenskel";
"edentv" = dontDistribute super."edentv";
"edge" = dontDistribute super."edge";
+ "edis" = dontDistribute super."edis";
"edit-distance" = dontDistribute super."edit-distance";
"edit-distance-vector" = dontDistribute super."edit-distance-vector";
"edit-lenses" = dontDistribute super."edit-lenses";
@@ -3002,6 +3009,7 @@ self: super: {
"fad" = dontDistribute super."fad";
"failable-list" = dontDistribute super."failable-list";
"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";
@@ -3231,6 +3239,7 @@ self: super: {
"friday-juicypixels" = dontDistribute super."friday-juicypixels";
"friday-scale-dct" = dontDistribute super."friday-scale-dct";
"friendly-time" = dontDistribute super."friendly-time";
+ "frontmatter" = dontDistribute super."frontmatter";
"frp-arduino" = dontDistribute super."frp-arduino";
"frpnow" = dontDistribute super."frpnow";
"frpnow-gloss" = dontDistribute super."frpnow-gloss";
@@ -3450,6 +3459,7 @@ self: super: {
"gitlib-utils" = dontDistribute super."gitlib-utils";
"gitrev" = dontDistribute super."gitrev";
"gitson" = dontDistribute super."gitson";
+ "gitter" = dontDistribute super."gitter";
"gl" = doDistribute super."gl_0_6_3";
"gl-capture" = dontDistribute super."gl-capture";
"glade" = dontDistribute super."glade";
@@ -3763,6 +3773,7 @@ self: super: {
"hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP";
"hackage-server" = dontDistribute super."hackage-server";
"hackage-sparks" = dontDistribute super."hackage-sparks";
+ "hackage-whatsnew" = dontDistribute super."hackage-whatsnew";
"hackage2hwn" = dontDistribute super."hackage2hwn";
"hackage2twitter" = dontDistribute super."hackage2twitter";
"hackager" = dontDistribute super."hackager";
@@ -4504,6 +4515,7 @@ self: super: {
"hspec-meta" = doDistribute super."hspec-meta_2_0_0";
"hspec-monad-control" = dontDistribute super."hspec-monad-control";
"hspec-server" = dontDistribute super."hspec-server";
+ "hspec-setup" = dontDistribute super."hspec-setup";
"hspec-shouldbe" = dontDistribute super."hspec-shouldbe";
"hspec-smallcheck" = dontDistribute super."hspec-smallcheck";
"hspec-snap" = dontDistribute super."hspec-snap";
@@ -4752,6 +4764,7 @@ self: super: {
"imgurder" = dontDistribute super."imgurder";
"imm" = dontDistribute super."imm";
"imparse" = dontDistribute super."imparse";
+ "imperative-edsl" = dontDistribute super."imperative-edsl";
"imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl";
"implicit" = dontDistribute super."implicit";
"implicit-params" = dontDistribute super."implicit-params";
@@ -4895,6 +4908,7 @@ self: super: {
"ix-shapable" = dontDistribute super."ix-shapable";
"ixdopp" = dontDistribute super."ixdopp";
"ixmonad" = dontDistribute super."ixmonad";
+ "ixset" = doDistribute super."ixset_1_0_6";
"ixset-typed" = dontDistribute super."ixset-typed";
"iyql" = dontDistribute super."iyql";
"j2hs" = dontDistribute super."j2hs";
@@ -4941,6 +4955,7 @@ self: super: {
"json-autotype" = doDistribute super."json-autotype_0_2_5_4";
"json-b" = dontDistribute super."json-b";
"json-builder" = dontDistribute super."json-builder";
+ "json-encoder" = dontDistribute super."json-encoder";
"json-enumerator" = dontDistribute super."json-enumerator";
"json-extra" = dontDistribute super."json-extra";
"json-fu" = dontDistribute super."json-fu";
@@ -5082,6 +5097,7 @@ self: super: {
"lambdacube-examples" = dontDistribute super."lambdacube-examples";
"lambdacube-gl" = dontDistribute super."lambdacube-gl";
"lambdacube-samples" = dontDistribute super."lambdacube-samples";
+ "lambdatex" = dontDistribute super."lambdatex";
"lambdatwit" = dontDistribute super."lambdatwit";
"lambdiff" = dontDistribute super."lambdiff";
"lame-tester" = dontDistribute super."lame-tester";
@@ -5292,6 +5308,7 @@ self: super: {
"list-fusion-probe" = dontDistribute super."list-fusion-probe";
"list-grouping" = dontDistribute super."list-grouping";
"list-mux" = dontDistribute super."list-mux";
+ "list-prompt" = dontDistribute super."list-prompt";
"list-remote-forwards" = dontDistribute super."list-remote-forwards";
"list-t" = doDistribute super."list-t_0_4_3";
"list-t-attoparsec" = dontDistribute super."list-t-attoparsec";
@@ -5336,6 +5353,7 @@ self: super: {
"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-domain" = doDistribute super."log-domain_0_9_3";
@@ -6014,6 +6032,7 @@ self: super: {
"omnifmt" = dontDistribute super."omnifmt";
"on-a-horse" = dontDistribute super."on-a-horse";
"on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel";
+ "once" = dontDistribute super."once";
"one-liner" = dontDistribute super."one-liner";
"one-time-password" = dontDistribute super."one-time-password";
"oneOfN" = dontDistribute super."oneOfN";
@@ -6110,7 +6129,6 @@ self: super: {
"padKONTROL" = dontDistribute super."padKONTROL";
"pagarme" = dontDistribute super."pagarme";
"pager" = dontDistribute super."pager";
- "pagerduty" = dontDistribute super."pagerduty";
"pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver";
"palette" = dontDistribute super."palette";
"palindromes" = dontDistribute super."palindromes";
@@ -6272,6 +6290,7 @@ self: super: {
"phasechange" = dontDistribute super."phasechange";
"phash" = dontDistribute super."phash";
"phizzle" = dontDistribute super."phizzle";
+ "phoityne" = dontDistribute super."phoityne";
"phone-numbers" = dontDistribute super."phone-numbers";
"phone-push" = dontDistribute super."phone-push";
"phonetic-code" = dontDistribute super."phonetic-code";
@@ -6306,6 +6325,7 @@ self: super: {
"pipes-cereal" = dontDistribute super."pipes-cereal";
"pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus";
"pipes-cliff" = dontDistribute super."pipes-cliff";
+ "pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_3";
"pipes-conduit" = dontDistribute super."pipes-conduit";
"pipes-core" = dontDistribute super."pipes-core";
"pipes-courier" = dontDistribute super."pipes-courier";
@@ -6878,6 +6898,7 @@ self: super: {
"rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster";
"retry" = dontDistribute super."retry";
"retryer" = dontDistribute super."retryer";
+ "rev-state" = doDistribute super."rev-state_0_1";
"revdectime" = dontDistribute super."revdectime";
"reverse-apply" = dontDistribute super."reverse-apply";
"reverse-geocoding" = dontDistribute super."reverse-geocoding";
@@ -7115,6 +7136,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serv" = dontDistribute super."serv";
"servant" = dontDistribute super."servant";
"servant-JuicyPixels" = dontDistribute super."servant-JuicyPixels";
"servant-blaze" = dontDistribute super."servant-blaze";
@@ -8139,6 +8161,7 @@ self: super: {
"typehash" = dontDistribute super."typehash";
"typelevel" = dontDistribute super."typelevel";
"typelevel-tensor" = dontDistribute super."typelevel-tensor";
+ "typelits-witnesses" = dontDistribute super."typelits-witnesses";
"typeof" = dontDistribute super."typeof";
"typeparams" = dontDistribute super."typeparams";
"types-compat" = dontDistribute super."types-compat";
@@ -8382,6 +8405,7 @@ self: super: {
"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" = dontDistribute super."vty";
diff --git a/pkgs/development/haskell-modules/configuration-lts-1.8.nix b/pkgs/development/haskell-modules/configuration-lts-1.8.nix
index 11ba47df60d..140cb1f9f71 100644
--- a/pkgs/development/haskell-modules/configuration-lts-1.8.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-1.8.nix
@@ -335,6 +335,7 @@ self: super: {
"FormalGrammars" = dontDistribute super."FormalGrammars";
"Foster" = dontDistribute super."Foster";
"FpMLv53" = dontDistribute super."FpMLv53";
+ "FractalArt" = dontDistribute super."FractalArt";
"Fractaler" = dontDistribute super."Fractaler";
"Frames" = dontDistribute super."Frames";
"Frank" = dontDistribute super."Frank";
@@ -488,6 +489,7 @@ self: super: {
"HTTP-Simple" = dontDistribute super."HTTP-Simple";
"HTab" = dontDistribute super."HTab";
"HTicTacToe" = dontDistribute super."HTicTacToe";
+ "HUnit" = doDistribute super."HUnit_1_2_5_2";
"HUnit-Diff" = dontDistribute super."HUnit-Diff";
"HUnit-Plus" = dontDistribute super."HUnit-Plus";
"HUnit-approx" = dontDistribute super."HUnit-approx";
@@ -521,6 +523,7 @@ self: super: {
"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";
@@ -1960,6 +1963,7 @@ self: super: {
"cef" = dontDistribute super."cef";
"ceilometer-common" = dontDistribute super."ceilometer-common";
"cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo";
+ "cerberus" = dontDistribute super."cerberus";
"cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_3";
"cereal-derive" = dontDistribute super."cereal-derive";
"cereal-enumerator" = dontDistribute super."cereal-enumerator";
@@ -2174,6 +2178,7 @@ self: super: {
"concrete-typerep" = dontDistribute super."concrete-typerep";
"concurrent-barrier" = dontDistribute super."concurrent-barrier";
"concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache";
+ "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9";
"concurrent-machines" = dontDistribute super."concurrent-machines";
"concurrent-output" = dontDistribute super."concurrent-output";
"concurrent-sa" = dontDistribute super."concurrent-sa";
@@ -2613,6 +2618,7 @@ self: super: {
"diagrams-solve" = dontDistribute super."diagrams-solve";
"diagrams-svg" = doDistribute super."diagrams-svg_1_1_0_4";
"diagrams-tikz" = dontDistribute super."diagrams-tikz";
+ "dialog" = dontDistribute super."dialog";
"dice" = dontDistribute super."dice";
"dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit";
"dicom" = dontDistribute super."dicom";
@@ -2804,6 +2810,7 @@ self: super: {
"edenskel" = dontDistribute super."edenskel";
"edentv" = dontDistribute super."edentv";
"edge" = dontDistribute super."edge";
+ "edis" = dontDistribute super."edis";
"edit-distance" = dontDistribute super."edit-distance";
"edit-distance-vector" = dontDistribute super."edit-distance-vector";
"edit-lenses" = dontDistribute super."edit-lenses";
@@ -3002,6 +3009,7 @@ self: super: {
"fad" = dontDistribute super."fad";
"failable-list" = dontDistribute super."failable-list";
"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";
@@ -3229,6 +3237,7 @@ self: super: {
"friday-juicypixels" = dontDistribute super."friday-juicypixels";
"friday-scale-dct" = dontDistribute super."friday-scale-dct";
"friendly-time" = dontDistribute super."friendly-time";
+ "frontmatter" = dontDistribute super."frontmatter";
"frp-arduino" = dontDistribute super."frp-arduino";
"frpnow" = dontDistribute super."frpnow";
"frpnow-gloss" = dontDistribute super."frpnow-gloss";
@@ -3448,6 +3457,7 @@ self: super: {
"gitlib-utils" = dontDistribute super."gitlib-utils";
"gitrev" = dontDistribute super."gitrev";
"gitson" = dontDistribute super."gitson";
+ "gitter" = dontDistribute super."gitter";
"gl" = doDistribute super."gl_0_6_3";
"gl-capture" = dontDistribute super."gl-capture";
"glade" = dontDistribute super."glade";
@@ -3760,6 +3770,7 @@ self: super: {
"hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP";
"hackage-server" = dontDistribute super."hackage-server";
"hackage-sparks" = dontDistribute super."hackage-sparks";
+ "hackage-whatsnew" = dontDistribute super."hackage-whatsnew";
"hackage2hwn" = dontDistribute super."hackage2hwn";
"hackage2twitter" = dontDistribute super."hackage2twitter";
"hackager" = dontDistribute super."hackager";
@@ -4225,6 +4236,7 @@ self: super: {
"hlibBladeRF" = dontDistribute super."hlibBladeRF";
"hlibev" = dontDistribute super."hlibev";
"hlibfam" = dontDistribute super."hlibfam";
+ "hlibgit2" = doDistribute super."hlibgit2_0_18_0_14";
"hlibsass" = dontDistribute super."hlibsass";
"hlint" = doDistribute super."hlint_1_9_16";
"hlogger" = dontDistribute super."hlogger";
@@ -4500,6 +4512,7 @@ self: super: {
"hspec-meta" = doDistribute super."hspec-meta_2_0_0";
"hspec-monad-control" = dontDistribute super."hspec-monad-control";
"hspec-server" = dontDistribute super."hspec-server";
+ "hspec-setup" = dontDistribute super."hspec-setup";
"hspec-shouldbe" = dontDistribute super."hspec-shouldbe";
"hspec-smallcheck" = dontDistribute super."hspec-smallcheck";
"hspec-snap" = dontDistribute super."hspec-snap";
@@ -4748,6 +4761,7 @@ self: super: {
"imgurder" = dontDistribute super."imgurder";
"imm" = dontDistribute super."imm";
"imparse" = dontDistribute super."imparse";
+ "imperative-edsl" = dontDistribute super."imperative-edsl";
"imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl";
"implicit" = dontDistribute super."implicit";
"implicit-params" = dontDistribute super."implicit-params";
@@ -4891,6 +4905,7 @@ self: super: {
"ix-shapable" = dontDistribute super."ix-shapable";
"ixdopp" = dontDistribute super."ixdopp";
"ixmonad" = dontDistribute super."ixmonad";
+ "ixset" = doDistribute super."ixset_1_0_6";
"ixset-typed" = dontDistribute super."ixset-typed";
"iyql" = dontDistribute super."iyql";
"j2hs" = dontDistribute super."j2hs";
@@ -4937,6 +4952,7 @@ self: super: {
"json-autotype" = doDistribute super."json-autotype_0_2_5_4";
"json-b" = dontDistribute super."json-b";
"json-builder" = dontDistribute super."json-builder";
+ "json-encoder" = dontDistribute super."json-encoder";
"json-enumerator" = dontDistribute super."json-enumerator";
"json-extra" = dontDistribute super."json-extra";
"json-fu" = dontDistribute super."json-fu";
@@ -5078,6 +5094,7 @@ self: super: {
"lambdacube-examples" = dontDistribute super."lambdacube-examples";
"lambdacube-gl" = dontDistribute super."lambdacube-gl";
"lambdacube-samples" = dontDistribute super."lambdacube-samples";
+ "lambdatex" = dontDistribute super."lambdatex";
"lambdatwit" = dontDistribute super."lambdatwit";
"lambdiff" = dontDistribute super."lambdiff";
"lame-tester" = dontDistribute super."lame-tester";
@@ -5287,6 +5304,7 @@ self: super: {
"list-fusion-probe" = dontDistribute super."list-fusion-probe";
"list-grouping" = dontDistribute super."list-grouping";
"list-mux" = dontDistribute super."list-mux";
+ "list-prompt" = dontDistribute super."list-prompt";
"list-remote-forwards" = dontDistribute super."list-remote-forwards";
"list-t" = doDistribute super."list-t_0_4_3";
"list-t-attoparsec" = dontDistribute super."list-t-attoparsec";
@@ -5331,6 +5349,7 @@ self: super: {
"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-domain" = doDistribute super."log-domain_0_9_3";
@@ -6009,6 +6028,7 @@ self: super: {
"omnifmt" = dontDistribute super."omnifmt";
"on-a-horse" = dontDistribute super."on-a-horse";
"on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel";
+ "once" = dontDistribute super."once";
"one-liner" = dontDistribute super."one-liner";
"one-time-password" = dontDistribute super."one-time-password";
"oneOfN" = dontDistribute super."oneOfN";
@@ -6105,7 +6125,6 @@ self: super: {
"padKONTROL" = dontDistribute super."padKONTROL";
"pagarme" = dontDistribute super."pagarme";
"pager" = dontDistribute super."pager";
- "pagerduty" = dontDistribute super."pagerduty";
"pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver";
"palette" = dontDistribute super."palette";
"palindromes" = dontDistribute super."palindromes";
@@ -6267,6 +6286,7 @@ self: super: {
"phasechange" = dontDistribute super."phasechange";
"phash" = dontDistribute super."phash";
"phizzle" = dontDistribute super."phizzle";
+ "phoityne" = dontDistribute super."phoityne";
"phone-numbers" = dontDistribute super."phone-numbers";
"phone-push" = dontDistribute super."phone-push";
"phonetic-code" = dontDistribute super."phonetic-code";
@@ -6301,6 +6321,7 @@ self: super: {
"pipes-cereal" = dontDistribute super."pipes-cereal";
"pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus";
"pipes-cliff" = dontDistribute super."pipes-cliff";
+ "pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_3";
"pipes-conduit" = dontDistribute super."pipes-conduit";
"pipes-core" = dontDistribute super."pipes-core";
"pipes-courier" = dontDistribute super."pipes-courier";
@@ -6873,6 +6894,7 @@ self: super: {
"rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster";
"retry" = dontDistribute super."retry";
"retryer" = dontDistribute super."retryer";
+ "rev-state" = doDistribute super."rev-state_0_1";
"revdectime" = dontDistribute super."revdectime";
"reverse-apply" = dontDistribute super."reverse-apply";
"reverse-geocoding" = dontDistribute super."reverse-geocoding";
@@ -7110,6 +7132,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serv" = dontDistribute super."serv";
"servant" = dontDistribute super."servant";
"servant-JuicyPixels" = dontDistribute super."servant-JuicyPixels";
"servant-blaze" = dontDistribute super."servant-blaze";
@@ -8133,6 +8156,7 @@ self: super: {
"typehash" = dontDistribute super."typehash";
"typelevel" = dontDistribute super."typelevel";
"typelevel-tensor" = dontDistribute super."typelevel-tensor";
+ "typelits-witnesses" = dontDistribute super."typelits-witnesses";
"typeof" = dontDistribute super."typeof";
"typeparams" = dontDistribute super."typeparams";
"types-compat" = dontDistribute super."types-compat";
@@ -8376,6 +8400,7 @@ self: super: {
"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" = dontDistribute super."vty";
diff --git a/pkgs/development/haskell-modules/configuration-lts-1.9.nix b/pkgs/development/haskell-modules/configuration-lts-1.9.nix
index 3d43aab4224..cd3ac17033e 100644
--- a/pkgs/development/haskell-modules/configuration-lts-1.9.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-1.9.nix
@@ -335,6 +335,7 @@ self: super: {
"FormalGrammars" = dontDistribute super."FormalGrammars";
"Foster" = dontDistribute super."Foster";
"FpMLv53" = dontDistribute super."FpMLv53";
+ "FractalArt" = dontDistribute super."FractalArt";
"Fractaler" = dontDistribute super."Fractaler";
"Frames" = dontDistribute super."Frames";
"Frank" = dontDistribute super."Frank";
@@ -488,6 +489,7 @@ self: super: {
"HTTP-Simple" = dontDistribute super."HTTP-Simple";
"HTab" = dontDistribute super."HTab";
"HTicTacToe" = dontDistribute super."HTicTacToe";
+ "HUnit" = doDistribute super."HUnit_1_2_5_2";
"HUnit-Diff" = dontDistribute super."HUnit-Diff";
"HUnit-Plus" = dontDistribute super."HUnit-Plus";
"HUnit-approx" = dontDistribute super."HUnit-approx";
@@ -521,6 +523,7 @@ self: super: {
"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";
@@ -1960,6 +1963,7 @@ self: super: {
"cef" = dontDistribute super."cef";
"ceilometer-common" = dontDistribute super."ceilometer-common";
"cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo";
+ "cerberus" = dontDistribute super."cerberus";
"cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_3";
"cereal-derive" = dontDistribute super."cereal-derive";
"cereal-enumerator" = dontDistribute super."cereal-enumerator";
@@ -2174,6 +2178,7 @@ self: super: {
"concrete-typerep" = dontDistribute super."concrete-typerep";
"concurrent-barrier" = dontDistribute super."concurrent-barrier";
"concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache";
+ "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9";
"concurrent-machines" = dontDistribute super."concurrent-machines";
"concurrent-output" = dontDistribute super."concurrent-output";
"concurrent-sa" = dontDistribute super."concurrent-sa";
@@ -2613,6 +2618,7 @@ self: super: {
"diagrams-solve" = dontDistribute super."diagrams-solve";
"diagrams-svg" = doDistribute super."diagrams-svg_1_1_0_4";
"diagrams-tikz" = dontDistribute super."diagrams-tikz";
+ "dialog" = dontDistribute super."dialog";
"dice" = dontDistribute super."dice";
"dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit";
"dicom" = dontDistribute super."dicom";
@@ -2804,6 +2810,7 @@ self: super: {
"edenskel" = dontDistribute super."edenskel";
"edentv" = dontDistribute super."edentv";
"edge" = dontDistribute super."edge";
+ "edis" = dontDistribute super."edis";
"edit-distance" = dontDistribute super."edit-distance";
"edit-distance-vector" = dontDistribute super."edit-distance-vector";
"edit-lenses" = dontDistribute super."edit-lenses";
@@ -3002,6 +3009,7 @@ self: super: {
"fad" = dontDistribute super."fad";
"failable-list" = dontDistribute super."failable-list";
"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";
@@ -3228,6 +3236,7 @@ self: super: {
"friday-juicypixels" = dontDistribute super."friday-juicypixels";
"friday-scale-dct" = dontDistribute super."friday-scale-dct";
"friendly-time" = dontDistribute super."friendly-time";
+ "frontmatter" = dontDistribute super."frontmatter";
"frp-arduino" = dontDistribute super."frp-arduino";
"frpnow" = dontDistribute super."frpnow";
"frpnow-gloss" = dontDistribute super."frpnow-gloss";
@@ -3447,6 +3456,7 @@ self: super: {
"gitlib-utils" = dontDistribute super."gitlib-utils";
"gitrev" = dontDistribute super."gitrev";
"gitson" = dontDistribute super."gitson";
+ "gitter" = dontDistribute super."gitter";
"gl" = doDistribute super."gl_0_6_3";
"gl-capture" = dontDistribute super."gl-capture";
"glade" = dontDistribute super."glade";
@@ -3759,6 +3769,7 @@ self: super: {
"hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP";
"hackage-server" = dontDistribute super."hackage-server";
"hackage-sparks" = dontDistribute super."hackage-sparks";
+ "hackage-whatsnew" = dontDistribute super."hackage-whatsnew";
"hackage2hwn" = dontDistribute super."hackage2hwn";
"hackage2twitter" = dontDistribute super."hackage2twitter";
"hackager" = dontDistribute super."hackager";
@@ -4224,6 +4235,7 @@ self: super: {
"hlibBladeRF" = dontDistribute super."hlibBladeRF";
"hlibev" = dontDistribute super."hlibev";
"hlibfam" = dontDistribute super."hlibfam";
+ "hlibgit2" = doDistribute super."hlibgit2_0_18_0_14";
"hlibsass" = dontDistribute super."hlibsass";
"hlint" = doDistribute super."hlint_1_9_16";
"hlogger" = dontDistribute super."hlogger";
@@ -4499,6 +4511,7 @@ self: super: {
"hspec-meta" = doDistribute super."hspec-meta_2_0_0";
"hspec-monad-control" = dontDistribute super."hspec-monad-control";
"hspec-server" = dontDistribute super."hspec-server";
+ "hspec-setup" = dontDistribute super."hspec-setup";
"hspec-shouldbe" = dontDistribute super."hspec-shouldbe";
"hspec-smallcheck" = dontDistribute super."hspec-smallcheck";
"hspec-snap" = dontDistribute super."hspec-snap";
@@ -4600,6 +4613,7 @@ self: super: {
"http-shed" = dontDistribute super."http-shed";
"http-streams" = dontDistribute super."http-streams";
"http-test" = dontDistribute super."http-test";
+ "http-types" = doDistribute super."http-types_0_8_6";
"http-wget" = dontDistribute super."http-wget";
"http2" = dontDistribute super."http2";
"httpd-shed" = dontDistribute super."httpd-shed";
@@ -4746,6 +4760,7 @@ self: super: {
"imgurder" = dontDistribute super."imgurder";
"imm" = dontDistribute super."imm";
"imparse" = dontDistribute super."imparse";
+ "imperative-edsl" = dontDistribute super."imperative-edsl";
"imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl";
"implicit" = dontDistribute super."implicit";
"implicit-params" = dontDistribute super."implicit-params";
@@ -4889,6 +4904,7 @@ self: super: {
"ix-shapable" = dontDistribute super."ix-shapable";
"ixdopp" = dontDistribute super."ixdopp";
"ixmonad" = dontDistribute super."ixmonad";
+ "ixset" = doDistribute super."ixset_1_0_6";
"ixset-typed" = dontDistribute super."ixset-typed";
"iyql" = dontDistribute super."iyql";
"j2hs" = dontDistribute super."j2hs";
@@ -4935,6 +4951,7 @@ self: super: {
"json-autotype" = doDistribute super."json-autotype_0_2_5_4";
"json-b" = dontDistribute super."json-b";
"json-builder" = dontDistribute super."json-builder";
+ "json-encoder" = dontDistribute super."json-encoder";
"json-enumerator" = dontDistribute super."json-enumerator";
"json-extra" = dontDistribute super."json-extra";
"json-fu" = dontDistribute super."json-fu";
@@ -5076,6 +5093,7 @@ self: super: {
"lambdacube-examples" = dontDistribute super."lambdacube-examples";
"lambdacube-gl" = dontDistribute super."lambdacube-gl";
"lambdacube-samples" = dontDistribute super."lambdacube-samples";
+ "lambdatex" = dontDistribute super."lambdatex";
"lambdatwit" = dontDistribute super."lambdatwit";
"lambdiff" = dontDistribute super."lambdiff";
"lame-tester" = dontDistribute super."lame-tester";
@@ -5285,6 +5303,7 @@ self: super: {
"list-fusion-probe" = dontDistribute super."list-fusion-probe";
"list-grouping" = dontDistribute super."list-grouping";
"list-mux" = dontDistribute super."list-mux";
+ "list-prompt" = dontDistribute super."list-prompt";
"list-remote-forwards" = dontDistribute super."list-remote-forwards";
"list-t" = doDistribute super."list-t_0_4_3";
"list-t-attoparsec" = dontDistribute super."list-t-attoparsec";
@@ -5329,6 +5348,7 @@ self: super: {
"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-domain" = doDistribute super."log-domain_0_9_3";
@@ -6007,6 +6027,7 @@ self: super: {
"omnifmt" = dontDistribute super."omnifmt";
"on-a-horse" = dontDistribute super."on-a-horse";
"on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel";
+ "once" = dontDistribute super."once";
"one-liner" = dontDistribute super."one-liner";
"one-time-password" = dontDistribute super."one-time-password";
"oneOfN" = dontDistribute super."oneOfN";
@@ -6064,6 +6085,7 @@ self: super: {
"optional" = dontDistribute super."optional";
"optional-args" = dontDistribute super."optional-args";
"options-time" = dontDistribute super."options-time";
+ "optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"optparse-simple" = dontDistribute super."optparse-simple";
"orc" = dontDistribute super."orc";
@@ -6102,7 +6124,6 @@ self: super: {
"padKONTROL" = dontDistribute super."padKONTROL";
"pagarme" = dontDistribute super."pagarme";
"pager" = dontDistribute super."pager";
- "pagerduty" = dontDistribute super."pagerduty";
"pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver";
"palette" = dontDistribute super."palette";
"palindromes" = dontDistribute super."palindromes";
@@ -6264,6 +6285,7 @@ self: super: {
"phasechange" = dontDistribute super."phasechange";
"phash" = dontDistribute super."phash";
"phizzle" = dontDistribute super."phizzle";
+ "phoityne" = dontDistribute super."phoityne";
"phone-numbers" = dontDistribute super."phone-numbers";
"phone-push" = dontDistribute super."phone-push";
"phonetic-code" = dontDistribute super."phonetic-code";
@@ -6298,6 +6320,7 @@ self: super: {
"pipes-cereal" = dontDistribute super."pipes-cereal";
"pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus";
"pipes-cliff" = dontDistribute super."pipes-cliff";
+ "pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_3";
"pipes-conduit" = dontDistribute super."pipes-conduit";
"pipes-core" = dontDistribute super."pipes-core";
"pipes-courier" = dontDistribute super."pipes-courier";
@@ -6870,6 +6893,7 @@ self: super: {
"rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster";
"retry" = dontDistribute super."retry";
"retryer" = dontDistribute super."retryer";
+ "rev-state" = doDistribute super."rev-state_0_1";
"revdectime" = dontDistribute super."revdectime";
"reverse-apply" = dontDistribute super."reverse-apply";
"reverse-geocoding" = dontDistribute super."reverse-geocoding";
@@ -7107,6 +7131,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serv" = dontDistribute super."serv";
"servant" = dontDistribute super."servant";
"servant-JuicyPixels" = dontDistribute super."servant-JuicyPixels";
"servant-blaze" = dontDistribute super."servant-blaze";
@@ -8130,6 +8155,7 @@ self: super: {
"typehash" = dontDistribute super."typehash";
"typelevel" = dontDistribute super."typelevel";
"typelevel-tensor" = dontDistribute super."typelevel-tensor";
+ "typelits-witnesses" = dontDistribute super."typelits-witnesses";
"typeof" = dontDistribute super."typeof";
"typeparams" = dontDistribute super."typeparams";
"types-compat" = dontDistribute super."types-compat";
@@ -8373,6 +8399,7 @@ self: super: {
"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" = dontDistribute super."vty";
diff --git a/pkgs/development/haskell-modules/configuration-lts-2.0.nix b/pkgs/development/haskell-modules/configuration-lts-2.0.nix
index cab9b99357b..29e118c18a3 100644
--- a/pkgs/development/haskell-modules/configuration-lts-2.0.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-2.0.nix
@@ -332,6 +332,7 @@ self: super: {
"FormalGrammars" = dontDistribute super."FormalGrammars";
"Foster" = dontDistribute super."Foster";
"FpMLv53" = dontDistribute super."FpMLv53";
+ "FractalArt" = dontDistribute super."FractalArt";
"Fractaler" = dontDistribute super."Fractaler";
"Frames" = dontDistribute super."Frames";
"Frank" = dontDistribute super."Frank";
@@ -483,6 +484,7 @@ self: super: {
"HTTP-Simple" = dontDistribute super."HTTP-Simple";
"HTab" = dontDistribute super."HTab";
"HTicTacToe" = dontDistribute super."HTicTacToe";
+ "HUnit" = doDistribute super."HUnit_1_2_5_2";
"HUnit-Diff" = dontDistribute super."HUnit-Diff";
"HUnit-Plus" = dontDistribute super."HUnit-Plus";
"HUnit-approx" = dontDistribute super."HUnit-approx";
@@ -516,6 +518,7 @@ self: super: {
"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";
@@ -1516,6 +1519,7 @@ self: super: {
"base-io-access" = dontDistribute super."base-io-access";
"base-noprelude" = dontDistribute super."base-noprelude";
"base-orphans" = dontDistribute super."base-orphans";
+ "base-prelude" = doDistribute super."base-prelude_0_1_19";
"base32-bytestring" = dontDistribute super."base32-bytestring";
"base32string" = dontDistribute super."base32string";
"base58-bytestring" = dontDistribute super."base58-bytestring";
@@ -1943,6 +1947,7 @@ self: super: {
"cef" = dontDistribute super."cef";
"ceilometer-common" = dontDistribute super."ceilometer-common";
"cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo";
+ "cerberus" = dontDistribute super."cerberus";
"cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_3";
"cereal-derive" = dontDistribute super."cereal-derive";
"cereal-enumerator" = dontDistribute super."cereal-enumerator";
@@ -2154,6 +2159,7 @@ self: super: {
"concrete-typerep" = dontDistribute super."concrete-typerep";
"concurrent-barrier" = dontDistribute super."concurrent-barrier";
"concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache";
+ "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9";
"concurrent-machines" = dontDistribute super."concurrent-machines";
"concurrent-output" = dontDistribute super."concurrent-output";
"concurrent-sa" = dontDistribute super."concurrent-sa";
@@ -2587,6 +2593,7 @@ self: super: {
"diagrams-solve" = dontDistribute super."diagrams-solve";
"diagrams-svg" = doDistribute super."diagrams-svg_1_1_0_4";
"diagrams-tikz" = dontDistribute super."diagrams-tikz";
+ "dialog" = dontDistribute super."dialog";
"dice" = dontDistribute super."dice";
"dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit";
"dicom" = dontDistribute super."dicom";
@@ -2778,6 +2785,7 @@ self: super: {
"edenskel" = dontDistribute super."edenskel";
"edentv" = dontDistribute super."edentv";
"edge" = dontDistribute super."edge";
+ "edis" = dontDistribute super."edis";
"edit-distance" = doDistribute super."edit-distance_0_2_1_2";
"edit-distance-vector" = dontDistribute super."edit-distance-vector";
"edit-lenses" = dontDistribute super."edit-lenses";
@@ -2974,6 +2982,7 @@ self: super: {
"failable-list" = dontDistribute super."failable-list";
"failure" = dontDistribute super."failure";
"fair-predicates" = dontDistribute super."fair-predicates";
+ "fake-type" = dontDistribute super."fake-type";
"faker" = dontDistribute super."faker";
"falling-turnip" = dontDistribute super."falling-turnip";
"fallingblocks" = dontDistribute super."fallingblocks";
@@ -3196,6 +3205,7 @@ self: super: {
"friday-juicypixels" = dontDistribute super."friday-juicypixels";
"friday-scale-dct" = dontDistribute super."friday-scale-dct";
"friendly-time" = dontDistribute super."friendly-time";
+ "frontmatter" = dontDistribute super."frontmatter";
"frp-arduino" = dontDistribute super."frp-arduino";
"frpnow" = dontDistribute super."frpnow";
"frpnow-gloss" = dontDistribute super."frpnow-gloss";
@@ -3414,6 +3424,7 @@ self: super: {
"gitlib-test" = doDistribute super."gitlib-test_3_1_0_2";
"gitlib-utils" = dontDistribute super."gitlib-utils";
"gitrev" = doDistribute super."gitrev_1_0_0";
+ "gitter" = dontDistribute super."gitter";
"gl" = doDistribute super."gl_0_7_4";
"gl-capture" = dontDistribute super."gl-capture";
"glade" = dontDistribute super."glade";
@@ -3722,6 +3733,7 @@ self: super: {
"hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP";
"hackage-server" = dontDistribute super."hackage-server";
"hackage-sparks" = dontDistribute super."hackage-sparks";
+ "hackage-whatsnew" = dontDistribute super."hackage-whatsnew";
"hackage2hwn" = dontDistribute super."hackage2hwn";
"hackage2twitter" = dontDistribute super."hackage2twitter";
"hackager" = dontDistribute super."hackager";
@@ -4184,6 +4196,7 @@ self: super: {
"hlibBladeRF" = dontDistribute super."hlibBladeRF";
"hlibev" = dontDistribute super."hlibev";
"hlibfam" = dontDistribute super."hlibfam";
+ "hlibgit2" = doDistribute super."hlibgit2_0_18_0_14";
"hlibsass" = dontDistribute super."hlibsass";
"hlint" = doDistribute super."hlint_1_9_19";
"hlogger" = dontDistribute super."hlogger";
@@ -4456,6 +4469,7 @@ self: super: {
"hspec-meta" = doDistribute super."hspec-meta_2_1_5";
"hspec-monad-control" = dontDistribute super."hspec-monad-control";
"hspec-server" = dontDistribute super."hspec-server";
+ "hspec-setup" = dontDistribute super."hspec-setup";
"hspec-shouldbe" = dontDistribute super."hspec-shouldbe";
"hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0";
"hspec-snap" = dontDistribute super."hspec-snap";
@@ -4557,6 +4571,7 @@ self: super: {
"http-shed" = dontDistribute super."http-shed";
"http-streams" = dontDistribute super."http-streams";
"http-test" = dontDistribute super."http-test";
+ "http-types" = doDistribute super."http-types_0_8_6";
"http-wget" = dontDistribute super."http-wget";
"http2" = dontDistribute super."http2";
"httpd-shed" = dontDistribute super."httpd-shed";
@@ -4697,6 +4712,7 @@ self: super: {
"imgurder" = dontDistribute super."imgurder";
"imm" = dontDistribute super."imm";
"imparse" = dontDistribute super."imparse";
+ "imperative-edsl" = dontDistribute super."imperative-edsl";
"imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl";
"implicit" = dontDistribute super."implicit";
"implicit-params" = dontDistribute super."implicit-params";
@@ -4838,6 +4854,7 @@ self: super: {
"ix-shapable" = dontDistribute super."ix-shapable";
"ixdopp" = dontDistribute super."ixdopp";
"ixmonad" = dontDistribute super."ixmonad";
+ "ixset" = doDistribute super."ixset_1_0_6";
"ixset-typed" = dontDistribute super."ixset-typed";
"iyql" = dontDistribute super."iyql";
"j2hs" = dontDistribute super."j2hs";
@@ -4882,6 +4899,7 @@ self: super: {
"json-autotype" = doDistribute super."json-autotype_0_2_5_11";
"json-b" = dontDistribute super."json-b";
"json-builder" = dontDistribute super."json-builder";
+ "json-encoder" = dontDistribute super."json-encoder";
"json-enumerator" = dontDistribute super."json-enumerator";
"json-extra" = dontDistribute super."json-extra";
"json-fu" = dontDistribute super."json-fu";
@@ -5020,6 +5038,7 @@ self: super: {
"lambdacube-examples" = dontDistribute super."lambdacube-examples";
"lambdacube-gl" = dontDistribute super."lambdacube-gl";
"lambdacube-samples" = dontDistribute super."lambdacube-samples";
+ "lambdatex" = dontDistribute super."lambdatex";
"lambdatwit" = dontDistribute super."lambdatwit";
"lambdiff" = dontDistribute super."lambdiff";
"lame-tester" = dontDistribute super."lame-tester";
@@ -5225,6 +5244,7 @@ self: super: {
"list-fusion-probe" = dontDistribute super."list-fusion-probe";
"list-grouping" = dontDistribute super."list-grouping";
"list-mux" = dontDistribute super."list-mux";
+ "list-prompt" = dontDistribute super."list-prompt";
"list-remote-forwards" = dontDistribute super."list-remote-forwards";
"list-t" = doDistribute super."list-t_0_4_3";
"list-t-attoparsec" = dontDistribute super."list-t-attoparsec";
@@ -5269,6 +5289,7 @@ self: super: {
"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-domain" = doDistribute super."log-domain_0_10_0_1";
@@ -5929,6 +5950,7 @@ self: super: {
"omnifmt" = dontDistribute super."omnifmt";
"on-a-horse" = dontDistribute super."on-a-horse";
"on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel";
+ "once" = dontDistribute super."once";
"one-liner" = dontDistribute super."one-liner";
"one-time-password" = dontDistribute super."one-time-password";
"oneOfN" = dontDistribute super."oneOfN";
@@ -5986,6 +6008,7 @@ self: super: {
"optional" = dontDistribute super."optional";
"optional-args" = dontDistribute super."optional-args";
"options-time" = dontDistribute super."options-time";
+ "optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"optparse-simple" = dontDistribute super."optparse-simple";
"orc" = dontDistribute super."orc";
@@ -6185,6 +6208,7 @@ self: super: {
"phasechange" = dontDistribute super."phasechange";
"phash" = dontDistribute super."phash";
"phizzle" = dontDistribute super."phizzle";
+ "phoityne" = dontDistribute super."phoityne";
"phone-numbers" = dontDistribute super."phone-numbers";
"phone-push" = dontDistribute super."phone-push";
"phonetic-code" = dontDistribute super."phonetic-code";
@@ -6218,6 +6242,7 @@ self: super: {
"pipes-cereal" = dontDistribute super."pipes-cereal";
"pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus";
"pipes-cliff" = dontDistribute super."pipes-cliff";
+ "pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_3";
"pipes-conduit" = dontDistribute super."pipes-conduit";
"pipes-core" = dontDistribute super."pipes-core";
"pipes-courier" = dontDistribute super."pipes-courier";
@@ -6786,6 +6811,7 @@ self: super: {
"rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster";
"retry" = doDistribute super."retry_0_6";
"retryer" = dontDistribute super."retryer";
+ "rev-state" = doDistribute super."rev-state_0_1";
"revdectime" = dontDistribute super."revdectime";
"reverse-apply" = dontDistribute super."reverse-apply";
"reverse-geocoding" = dontDistribute super."reverse-geocoding";
@@ -7022,6 +7048,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serv" = dontDistribute super."serv";
"servant" = doDistribute super."servant_0_2_2";
"servant-JuicyPixels" = dontDistribute super."servant-JuicyPixels";
"servant-blaze" = dontDistribute super."servant-blaze";
@@ -8029,6 +8056,7 @@ self: super: {
"typehash" = dontDistribute super."typehash";
"typelevel" = dontDistribute super."typelevel";
"typelevel-tensor" = dontDistribute super."typelevel-tensor";
+ "typelits-witnesses" = dontDistribute super."typelits-witnesses";
"typeof" = dontDistribute super."typeof";
"typeparams" = dontDistribute super."typeparams";
"types-compat" = dontDistribute super."types-compat";
@@ -8271,6 +8299,7 @@ self: super: {
"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" = dontDistribute super."vty";
diff --git a/pkgs/development/haskell-modules/configuration-lts-2.1.nix b/pkgs/development/haskell-modules/configuration-lts-2.1.nix
index 3b450fc9081..c470c638e01 100644
--- a/pkgs/development/haskell-modules/configuration-lts-2.1.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-2.1.nix
@@ -332,6 +332,7 @@ self: super: {
"FormalGrammars" = dontDistribute super."FormalGrammars";
"Foster" = dontDistribute super."Foster";
"FpMLv53" = dontDistribute super."FpMLv53";
+ "FractalArt" = dontDistribute super."FractalArt";
"Fractaler" = dontDistribute super."Fractaler";
"Frames" = dontDistribute super."Frames";
"Frank" = dontDistribute super."Frank";
@@ -483,6 +484,7 @@ self: super: {
"HTTP-Simple" = dontDistribute super."HTTP-Simple";
"HTab" = dontDistribute super."HTab";
"HTicTacToe" = dontDistribute super."HTicTacToe";
+ "HUnit" = doDistribute super."HUnit_1_2_5_2";
"HUnit-Diff" = dontDistribute super."HUnit-Diff";
"HUnit-Plus" = dontDistribute super."HUnit-Plus";
"HUnit-approx" = dontDistribute super."HUnit-approx";
@@ -516,6 +518,7 @@ self: super: {
"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";
@@ -1516,6 +1519,7 @@ self: super: {
"base-io-access" = dontDistribute super."base-io-access";
"base-noprelude" = dontDistribute super."base-noprelude";
"base-orphans" = dontDistribute super."base-orphans";
+ "base-prelude" = doDistribute super."base-prelude_0_1_19";
"base32-bytestring" = dontDistribute super."base32-bytestring";
"base32string" = dontDistribute super."base32string";
"base58-bytestring" = dontDistribute super."base58-bytestring";
@@ -1942,6 +1946,7 @@ self: super: {
"cef" = dontDistribute super."cef";
"ceilometer-common" = dontDistribute super."ceilometer-common";
"cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo";
+ "cerberus" = dontDistribute super."cerberus";
"cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_3";
"cereal-derive" = dontDistribute super."cereal-derive";
"cereal-enumerator" = dontDistribute super."cereal-enumerator";
@@ -2153,6 +2158,7 @@ self: super: {
"concrete-typerep" = dontDistribute super."concrete-typerep";
"concurrent-barrier" = dontDistribute super."concurrent-barrier";
"concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache";
+ "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9";
"concurrent-machines" = dontDistribute super."concurrent-machines";
"concurrent-output" = dontDistribute super."concurrent-output";
"concurrent-sa" = dontDistribute super."concurrent-sa";
@@ -2586,6 +2592,7 @@ self: super: {
"diagrams-solve" = dontDistribute super."diagrams-solve";
"diagrams-svg" = doDistribute super."diagrams-svg_1_1_0_5";
"diagrams-tikz" = dontDistribute super."diagrams-tikz";
+ "dialog" = dontDistribute super."dialog";
"dice" = dontDistribute super."dice";
"dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit";
"dicom" = dontDistribute super."dicom";
@@ -2777,6 +2784,7 @@ self: super: {
"edenskel" = dontDistribute super."edenskel";
"edentv" = dontDistribute super."edentv";
"edge" = dontDistribute super."edge";
+ "edis" = dontDistribute super."edis";
"edit-distance" = doDistribute super."edit-distance_0_2_1_2";
"edit-distance-vector" = dontDistribute super."edit-distance-vector";
"edit-lenses" = dontDistribute super."edit-lenses";
@@ -2973,6 +2981,7 @@ self: super: {
"failable-list" = dontDistribute super."failable-list";
"failure" = dontDistribute super."failure";
"fair-predicates" = dontDistribute super."fair-predicates";
+ "fake-type" = dontDistribute super."fake-type";
"faker" = dontDistribute super."faker";
"falling-turnip" = dontDistribute super."falling-turnip";
"fallingblocks" = dontDistribute super."fallingblocks";
@@ -3195,6 +3204,7 @@ self: super: {
"friday-juicypixels" = dontDistribute super."friday-juicypixels";
"friday-scale-dct" = dontDistribute super."friday-scale-dct";
"friendly-time" = dontDistribute super."friendly-time";
+ "frontmatter" = dontDistribute super."frontmatter";
"frp-arduino" = dontDistribute super."frp-arduino";
"frpnow" = dontDistribute super."frpnow";
"frpnow-gloss" = dontDistribute super."frpnow-gloss";
@@ -3413,6 +3423,7 @@ self: super: {
"gitlib-test" = doDistribute super."gitlib-test_3_1_0_2";
"gitlib-utils" = dontDistribute super."gitlib-utils";
"gitrev" = doDistribute super."gitrev_1_0_0";
+ "gitter" = dontDistribute super."gitter";
"gl" = doDistribute super."gl_0_7_4";
"gl-capture" = dontDistribute super."gl-capture";
"glade" = dontDistribute super."glade";
@@ -3721,6 +3732,7 @@ self: super: {
"hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP";
"hackage-server" = dontDistribute super."hackage-server";
"hackage-sparks" = dontDistribute super."hackage-sparks";
+ "hackage-whatsnew" = dontDistribute super."hackage-whatsnew";
"hackage2hwn" = dontDistribute super."hackage2hwn";
"hackage2twitter" = dontDistribute super."hackage2twitter";
"hackager" = dontDistribute super."hackager";
@@ -4182,6 +4194,7 @@ self: super: {
"hlibBladeRF" = dontDistribute super."hlibBladeRF";
"hlibev" = dontDistribute super."hlibev";
"hlibfam" = dontDistribute super."hlibfam";
+ "hlibgit2" = doDistribute super."hlibgit2_0_18_0_14";
"hlibsass" = dontDistribute super."hlibsass";
"hlint" = doDistribute super."hlint_1_9_19";
"hlogger" = dontDistribute super."hlogger";
@@ -4454,6 +4467,7 @@ self: super: {
"hspec-meta" = doDistribute super."hspec-meta_2_1_5";
"hspec-monad-control" = dontDistribute super."hspec-monad-control";
"hspec-server" = dontDistribute super."hspec-server";
+ "hspec-setup" = dontDistribute super."hspec-setup";
"hspec-shouldbe" = dontDistribute super."hspec-shouldbe";
"hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0";
"hspec-snap" = dontDistribute super."hspec-snap";
@@ -4555,6 +4569,7 @@ self: super: {
"http-shed" = dontDistribute super."http-shed";
"http-streams" = dontDistribute super."http-streams";
"http-test" = dontDistribute super."http-test";
+ "http-types" = doDistribute super."http-types_0_8_6";
"http-wget" = dontDistribute super."http-wget";
"http2" = dontDistribute super."http2";
"httpd-shed" = dontDistribute super."httpd-shed";
@@ -4695,6 +4710,7 @@ self: super: {
"imgurder" = dontDistribute super."imgurder";
"imm" = dontDistribute super."imm";
"imparse" = dontDistribute super."imparse";
+ "imperative-edsl" = dontDistribute super."imperative-edsl";
"imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl";
"implicit" = dontDistribute super."implicit";
"implicit-params" = dontDistribute super."implicit-params";
@@ -4836,6 +4852,7 @@ self: super: {
"ix-shapable" = dontDistribute super."ix-shapable";
"ixdopp" = dontDistribute super."ixdopp";
"ixmonad" = dontDistribute super."ixmonad";
+ "ixset" = doDistribute super."ixset_1_0_6";
"ixset-typed" = dontDistribute super."ixset-typed";
"iyql" = dontDistribute super."iyql";
"j2hs" = dontDistribute super."j2hs";
@@ -4880,6 +4897,7 @@ self: super: {
"json-autotype" = doDistribute super."json-autotype_0_2_5_13";
"json-b" = dontDistribute super."json-b";
"json-builder" = dontDistribute super."json-builder";
+ "json-encoder" = dontDistribute super."json-encoder";
"json-enumerator" = dontDistribute super."json-enumerator";
"json-extra" = dontDistribute super."json-extra";
"json-fu" = dontDistribute super."json-fu";
@@ -5018,6 +5036,7 @@ self: super: {
"lambdacube-examples" = dontDistribute super."lambdacube-examples";
"lambdacube-gl" = dontDistribute super."lambdacube-gl";
"lambdacube-samples" = dontDistribute super."lambdacube-samples";
+ "lambdatex" = dontDistribute super."lambdatex";
"lambdatwit" = dontDistribute super."lambdatwit";
"lambdiff" = dontDistribute super."lambdiff";
"lame-tester" = dontDistribute super."lame-tester";
@@ -5223,6 +5242,7 @@ self: super: {
"list-fusion-probe" = dontDistribute super."list-fusion-probe";
"list-grouping" = dontDistribute super."list-grouping";
"list-mux" = dontDistribute super."list-mux";
+ "list-prompt" = dontDistribute super."list-prompt";
"list-remote-forwards" = dontDistribute super."list-remote-forwards";
"list-t" = doDistribute super."list-t_0_4_3";
"list-t-attoparsec" = dontDistribute super."list-t-attoparsec";
@@ -5267,6 +5287,7 @@ self: super: {
"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-domain" = doDistribute super."log-domain_0_10_0_1";
@@ -5927,6 +5948,7 @@ self: super: {
"omnifmt" = dontDistribute super."omnifmt";
"on-a-horse" = dontDistribute super."on-a-horse";
"on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel";
+ "once" = dontDistribute super."once";
"one-liner" = dontDistribute super."one-liner";
"one-time-password" = dontDistribute super."one-time-password";
"oneOfN" = dontDistribute super."oneOfN";
@@ -5984,6 +6006,7 @@ self: super: {
"optional" = dontDistribute super."optional";
"optional-args" = dontDistribute super."optional-args";
"options-time" = dontDistribute super."options-time";
+ "optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"optparse-simple" = dontDistribute super."optparse-simple";
"orc" = dontDistribute super."orc";
@@ -6183,6 +6206,7 @@ self: super: {
"phasechange" = dontDistribute super."phasechange";
"phash" = dontDistribute super."phash";
"phizzle" = dontDistribute super."phizzle";
+ "phoityne" = dontDistribute super."phoityne";
"phone-numbers" = dontDistribute super."phone-numbers";
"phone-push" = dontDistribute super."phone-push";
"phonetic-code" = dontDistribute super."phonetic-code";
@@ -6216,6 +6240,7 @@ self: super: {
"pipes-cereal" = dontDistribute super."pipes-cereal";
"pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus";
"pipes-cliff" = dontDistribute super."pipes-cliff";
+ "pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_3";
"pipes-conduit" = dontDistribute super."pipes-conduit";
"pipes-core" = dontDistribute super."pipes-core";
"pipes-courier" = dontDistribute super."pipes-courier";
@@ -6784,6 +6809,7 @@ self: super: {
"rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster";
"retry" = doDistribute super."retry_0_6";
"retryer" = dontDistribute super."retryer";
+ "rev-state" = doDistribute super."rev-state_0_1";
"revdectime" = dontDistribute super."revdectime";
"reverse-apply" = dontDistribute super."reverse-apply";
"reverse-geocoding" = dontDistribute super."reverse-geocoding";
@@ -7020,6 +7046,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serv" = dontDistribute super."serv";
"servant" = doDistribute super."servant_0_2_2";
"servant-JuicyPixels" = dontDistribute super."servant-JuicyPixels";
"servant-blaze" = dontDistribute super."servant-blaze";
@@ -8027,6 +8054,7 @@ self: super: {
"typehash" = dontDistribute super."typehash";
"typelevel" = dontDistribute super."typelevel";
"typelevel-tensor" = dontDistribute super."typelevel-tensor";
+ "typelits-witnesses" = dontDistribute super."typelits-witnesses";
"typeof" = dontDistribute super."typeof";
"typeparams" = dontDistribute super."typeparams";
"types-compat" = dontDistribute super."types-compat";
@@ -8268,6 +8296,7 @@ self: super: {
"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" = dontDistribute super."vty";
diff --git a/pkgs/development/haskell-modules/configuration-lts-2.10.nix b/pkgs/development/haskell-modules/configuration-lts-2.10.nix
index 3e703edcc20..78b5b034374 100644
--- a/pkgs/development/haskell-modules/configuration-lts-2.10.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-2.10.nix
@@ -331,6 +331,7 @@ self: super: {
"FormalGrammars" = dontDistribute super."FormalGrammars";
"Foster" = dontDistribute super."Foster";
"FpMLv53" = dontDistribute super."FpMLv53";
+ "FractalArt" = dontDistribute super."FractalArt";
"Fractaler" = dontDistribute super."Fractaler";
"Frames" = dontDistribute super."Frames";
"Frank" = dontDistribute super."Frank";
@@ -482,6 +483,7 @@ self: super: {
"HTTP-Simple" = dontDistribute super."HTTP-Simple";
"HTab" = dontDistribute super."HTab";
"HTicTacToe" = dontDistribute super."HTicTacToe";
+ "HUnit" = doDistribute super."HUnit_1_2_5_2";
"HUnit-Diff" = dontDistribute super."HUnit-Diff";
"HUnit-Plus" = dontDistribute super."HUnit-Plus";
"HUnit-approx" = dontDistribute super."HUnit-approx";
@@ -515,6 +517,7 @@ self: super: {
"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";
@@ -1508,6 +1511,7 @@ self: super: {
"base-io-access" = dontDistribute super."base-io-access";
"base-noprelude" = dontDistribute super."base-noprelude";
"base-orphans" = dontDistribute super."base-orphans";
+ "base-prelude" = doDistribute super."base-prelude_0_1_19";
"base32-bytestring" = dontDistribute super."base32-bytestring";
"base32string" = dontDistribute super."base32string";
"base58-bytestring" = dontDistribute super."base58-bytestring";
@@ -1930,6 +1934,7 @@ self: super: {
"cef" = dontDistribute super."cef";
"ceilometer-common" = dontDistribute super."ceilometer-common";
"cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo";
+ "cerberus" = dontDistribute super."cerberus";
"cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_3";
"cereal-derive" = dontDistribute super."cereal-derive";
"cereal-enumerator" = dontDistribute super."cereal-enumerator";
@@ -2140,6 +2145,7 @@ self: super: {
"concrete-typerep" = dontDistribute super."concrete-typerep";
"concurrent-barrier" = dontDistribute super."concurrent-barrier";
"concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache";
+ "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9";
"concurrent-machines" = dontDistribute super."concurrent-machines";
"concurrent-output" = dontDistribute super."concurrent-output";
"concurrent-sa" = dontDistribute super."concurrent-sa";
@@ -2571,6 +2577,7 @@ self: super: {
"diagrams-solve" = dontDistribute super."diagrams-solve";
"diagrams-svg" = doDistribute super."diagrams-svg_1_1_0_5";
"diagrams-tikz" = dontDistribute super."diagrams-tikz";
+ "dialog" = dontDistribute super."dialog";
"dice" = dontDistribute super."dice";
"dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit";
"dicom" = dontDistribute super."dicom";
@@ -2761,6 +2768,7 @@ self: super: {
"edenskel" = dontDistribute super."edenskel";
"edentv" = dontDistribute super."edentv";
"edge" = dontDistribute super."edge";
+ "edis" = dontDistribute super."edis";
"edit-distance" = doDistribute super."edit-distance_0_2_1_3";
"edit-distance-vector" = dontDistribute super."edit-distance-vector";
"edit-lenses" = dontDistribute super."edit-lenses";
@@ -2956,6 +2964,7 @@ self: super: {
"failable-list" = dontDistribute super."failable-list";
"failure" = dontDistribute super."failure";
"fair-predicates" = dontDistribute super."fair-predicates";
+ "fake-type" = dontDistribute super."fake-type";
"faker" = dontDistribute super."faker";
"falling-turnip" = dontDistribute super."falling-turnip";
"fallingblocks" = dontDistribute super."fallingblocks";
@@ -3176,6 +3185,7 @@ self: super: {
"friday-juicypixels" = dontDistribute super."friday-juicypixels";
"friday-scale-dct" = dontDistribute super."friday-scale-dct";
"friendly-time" = dontDistribute super."friendly-time";
+ "frontmatter" = dontDistribute super."frontmatter";
"frp-arduino" = dontDistribute super."frp-arduino";
"frpnow" = dontDistribute super."frpnow";
"frpnow-gloss" = dontDistribute super."frpnow-gloss";
@@ -3394,6 +3404,7 @@ self: super: {
"gitlib-test" = doDistribute super."gitlib-test_3_1_0_2";
"gitlib-utils" = dontDistribute super."gitlib-utils";
"gitrev" = doDistribute super."gitrev_1_0_0";
+ "gitter" = dontDistribute super."gitter";
"gl-capture" = dontDistribute super."gl-capture";
"glade" = dontDistribute super."glade";
"gladexml-accessor" = dontDistribute super."gladexml-accessor";
@@ -3699,6 +3710,7 @@ self: super: {
"hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP";
"hackage-server" = dontDistribute super."hackage-server";
"hackage-sparks" = dontDistribute super."hackage-sparks";
+ "hackage-whatsnew" = dontDistribute super."hackage-whatsnew";
"hackage2hwn" = dontDistribute super."hackage2hwn";
"hackage2twitter" = dontDistribute super."hackage2twitter";
"hackager" = dontDistribute super."hackager";
@@ -4159,6 +4171,7 @@ self: super: {
"hlibBladeRF" = dontDistribute super."hlibBladeRF";
"hlibev" = dontDistribute super."hlibev";
"hlibfam" = dontDistribute super."hlibfam";
+ "hlibgit2" = doDistribute super."hlibgit2_0_18_0_14";
"hlibsass" = dontDistribute super."hlibsass";
"hlint" = doDistribute super."hlint_1_9_20";
"hlogger" = dontDistribute super."hlogger";
@@ -4430,6 +4443,7 @@ self: super: {
"hspec-meta" = doDistribute super."hspec-meta_2_1_7";
"hspec-monad-control" = dontDistribute super."hspec-monad-control";
"hspec-server" = dontDistribute super."hspec-server";
+ "hspec-setup" = dontDistribute super."hspec-setup";
"hspec-shouldbe" = dontDistribute super."hspec-shouldbe";
"hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0";
"hspec-snap" = dontDistribute super."hspec-snap";
@@ -4529,6 +4543,7 @@ self: super: {
"http-shed" = dontDistribute super."http-shed";
"http-streams" = dontDistribute super."http-streams";
"http-test" = dontDistribute super."http-test";
+ "http-types" = doDistribute super."http-types_0_8_6";
"http-wget" = dontDistribute super."http-wget";
"http2" = dontDistribute super."http2";
"httpd-shed" = dontDistribute super."httpd-shed";
@@ -4668,6 +4683,7 @@ self: super: {
"imgurder" = dontDistribute super."imgurder";
"imm" = dontDistribute super."imm";
"imparse" = dontDistribute super."imparse";
+ "imperative-edsl" = dontDistribute super."imperative-edsl";
"imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl";
"implicit" = dontDistribute super."implicit";
"implicit-params" = dontDistribute super."implicit-params";
@@ -4809,6 +4825,7 @@ self: super: {
"ix-shapable" = dontDistribute super."ix-shapable";
"ixdopp" = dontDistribute super."ixdopp";
"ixmonad" = dontDistribute super."ixmonad";
+ "ixset" = doDistribute super."ixset_1_0_6";
"ixset-typed" = dontDistribute super."ixset-typed";
"iyql" = dontDistribute super."iyql";
"j2hs" = dontDistribute super."j2hs";
@@ -4850,6 +4867,7 @@ self: super: {
"json-autotype" = doDistribute super."json-autotype_0_2_5_13";
"json-b" = dontDistribute super."json-b";
"json-builder" = dontDistribute super."json-builder";
+ "json-encoder" = dontDistribute super."json-encoder";
"json-enumerator" = dontDistribute super."json-enumerator";
"json-extra" = dontDistribute super."json-extra";
"json-fu" = dontDistribute super."json-fu";
@@ -4987,6 +5005,7 @@ self: super: {
"lambdacube-examples" = dontDistribute super."lambdacube-examples";
"lambdacube-gl" = dontDistribute super."lambdacube-gl";
"lambdacube-samples" = dontDistribute super."lambdacube-samples";
+ "lambdatex" = dontDistribute super."lambdatex";
"lambdatwit" = dontDistribute super."lambdatwit";
"lambdiff" = dontDistribute super."lambdiff";
"lame-tester" = dontDistribute super."lame-tester";
@@ -5191,6 +5210,7 @@ self: super: {
"list-fusion-probe" = dontDistribute super."list-fusion-probe";
"list-grouping" = dontDistribute super."list-grouping";
"list-mux" = dontDistribute super."list-mux";
+ "list-prompt" = dontDistribute super."list-prompt";
"list-remote-forwards" = dontDistribute super."list-remote-forwards";
"list-t-attoparsec" = dontDistribute super."list-t-attoparsec";
"list-t-html-parser" = dontDistribute super."list-t-html-parser";
@@ -5234,6 +5254,7 @@ self: super: {
"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-domain" = doDistribute super."log-domain_0_10_0_1";
@@ -5888,6 +5909,7 @@ self: super: {
"omnifmt" = dontDistribute super."omnifmt";
"on-a-horse" = dontDistribute super."on-a-horse";
"on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel";
+ "once" = dontDistribute super."once";
"one-liner" = dontDistribute super."one-liner";
"one-time-password" = dontDistribute super."one-time-password";
"oneOfN" = dontDistribute super."oneOfN";
@@ -5945,6 +5967,7 @@ self: super: {
"optional" = dontDistribute super."optional";
"optional-args" = dontDistribute super."optional-args";
"options-time" = dontDistribute super."options-time";
+ "optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"optparse-simple" = doDistribute super."optparse-simple_0_0_2";
"orc" = dontDistribute super."orc";
@@ -6142,6 +6165,7 @@ self: super: {
"phasechange" = dontDistribute super."phasechange";
"phash" = dontDistribute super."phash";
"phizzle" = dontDistribute super."phizzle";
+ "phoityne" = dontDistribute super."phoityne";
"phone-numbers" = dontDistribute super."phone-numbers";
"phone-push" = dontDistribute super."phone-push";
"phonetic-code" = dontDistribute super."phonetic-code";
@@ -6174,6 +6198,7 @@ self: super: {
"pipes-cereal" = dontDistribute super."pipes-cereal";
"pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus";
"pipes-cliff" = dontDistribute super."pipes-cliff";
+ "pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_3";
"pipes-conduit" = dontDistribute super."pipes-conduit";
"pipes-core" = dontDistribute super."pipes-core";
"pipes-courier" = dontDistribute super."pipes-courier";
@@ -6291,6 +6316,7 @@ self: super: {
"possible" = dontDistribute super."possible";
"post-mess-age" = doDistribute super."post-mess-age_0_1_0_0";
"postcodes" = dontDistribute super."postcodes";
+ "postgresql-binary" = doDistribute super."postgresql-binary_0_5_2_1";
"postgresql-config" = dontDistribute super."postgresql-config";
"postgresql-connector" = dontDistribute super."postgresql-connector";
"postgresql-copy-escape" = dontDistribute super."postgresql-copy-escape";
@@ -6738,6 +6764,7 @@ self: super: {
"rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster";
"retry" = doDistribute super."retry_0_6";
"retryer" = dontDistribute super."retryer";
+ "rev-state" = doDistribute super."rev-state_0_1";
"revdectime" = dontDistribute super."revdectime";
"reverse-apply" = dontDistribute super."reverse-apply";
"reverse-geocoding" = dontDistribute super."reverse-geocoding";
@@ -6973,6 +7000,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serv" = dontDistribute super."serv";
"servant" = doDistribute super."servant_0_2_2";
"servant-JuicyPixels" = dontDistribute super."servant-JuicyPixels";
"servant-blaze" = dontDistribute super."servant-blaze";
@@ -7968,6 +7996,7 @@ self: super: {
"typehash" = dontDistribute super."typehash";
"typelevel" = dontDistribute super."typelevel";
"typelevel-tensor" = dontDistribute super."typelevel-tensor";
+ "typelits-witnesses" = dontDistribute super."typelits-witnesses";
"typeof" = dontDistribute super."typeof";
"typeparams" = dontDistribute super."typeparams";
"types-compat" = dontDistribute super."types-compat";
@@ -8209,6 +8238,7 @@ self: super: {
"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" = dontDistribute super."vty";
diff --git a/pkgs/development/haskell-modules/configuration-lts-2.11.nix b/pkgs/development/haskell-modules/configuration-lts-2.11.nix
index 8f8cd53d76b..3f14883bb14 100644
--- a/pkgs/development/haskell-modules/configuration-lts-2.11.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-2.11.nix
@@ -331,6 +331,7 @@ self: super: {
"FormalGrammars" = dontDistribute super."FormalGrammars";
"Foster" = dontDistribute super."Foster";
"FpMLv53" = dontDistribute super."FpMLv53";
+ "FractalArt" = dontDistribute super."FractalArt";
"Fractaler" = dontDistribute super."Fractaler";
"Frames" = dontDistribute super."Frames";
"Frank" = dontDistribute super."Frank";
@@ -482,6 +483,7 @@ self: super: {
"HTTP-Simple" = dontDistribute super."HTTP-Simple";
"HTab" = dontDistribute super."HTab";
"HTicTacToe" = dontDistribute super."HTicTacToe";
+ "HUnit" = doDistribute super."HUnit_1_2_5_2";
"HUnit-Diff" = dontDistribute super."HUnit-Diff";
"HUnit-Plus" = dontDistribute super."HUnit-Plus";
"HUnit-approx" = dontDistribute super."HUnit-approx";
@@ -515,6 +517,7 @@ self: super: {
"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";
@@ -1507,6 +1510,7 @@ self: super: {
"base-io-access" = dontDistribute super."base-io-access";
"base-noprelude" = dontDistribute super."base-noprelude";
"base-orphans" = dontDistribute super."base-orphans";
+ "base-prelude" = doDistribute super."base-prelude_0_1_19";
"base32-bytestring" = dontDistribute super."base32-bytestring";
"base32string" = dontDistribute super."base32string";
"base58-bytestring" = dontDistribute super."base58-bytestring";
@@ -1929,6 +1933,7 @@ self: super: {
"cef" = dontDistribute super."cef";
"ceilometer-common" = dontDistribute super."ceilometer-common";
"cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo";
+ "cerberus" = dontDistribute super."cerberus";
"cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_3";
"cereal-derive" = dontDistribute super."cereal-derive";
"cereal-enumerator" = dontDistribute super."cereal-enumerator";
@@ -2139,6 +2144,7 @@ self: super: {
"concrete-typerep" = dontDistribute super."concrete-typerep";
"concurrent-barrier" = dontDistribute super."concurrent-barrier";
"concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache";
+ "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9";
"concurrent-machines" = dontDistribute super."concurrent-machines";
"concurrent-output" = dontDistribute super."concurrent-output";
"concurrent-sa" = dontDistribute super."concurrent-sa";
@@ -2570,6 +2576,7 @@ self: super: {
"diagrams-solve" = dontDistribute super."diagrams-solve";
"diagrams-svg" = doDistribute super."diagrams-svg_1_1_0_5";
"diagrams-tikz" = dontDistribute super."diagrams-tikz";
+ "dialog" = dontDistribute super."dialog";
"dice" = dontDistribute super."dice";
"dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit";
"dicom" = dontDistribute super."dicom";
@@ -2760,6 +2767,7 @@ self: super: {
"edenskel" = dontDistribute super."edenskel";
"edentv" = dontDistribute super."edentv";
"edge" = dontDistribute super."edge";
+ "edis" = dontDistribute super."edis";
"edit-distance" = doDistribute super."edit-distance_0_2_1_3";
"edit-distance-vector" = dontDistribute super."edit-distance-vector";
"edit-lenses" = dontDistribute super."edit-lenses";
@@ -2955,6 +2963,7 @@ self: super: {
"failable-list" = dontDistribute super."failable-list";
"failure" = dontDistribute super."failure";
"fair-predicates" = dontDistribute super."fair-predicates";
+ "fake-type" = dontDistribute super."fake-type";
"faker" = dontDistribute super."faker";
"falling-turnip" = dontDistribute super."falling-turnip";
"fallingblocks" = dontDistribute super."fallingblocks";
@@ -3175,6 +3184,7 @@ self: super: {
"friday-juicypixels" = dontDistribute super."friday-juicypixels";
"friday-scale-dct" = dontDistribute super."friday-scale-dct";
"friendly-time" = dontDistribute super."friendly-time";
+ "frontmatter" = dontDistribute super."frontmatter";
"frp-arduino" = dontDistribute super."frp-arduino";
"frpnow" = dontDistribute super."frpnow";
"frpnow-gloss" = dontDistribute super."frpnow-gloss";
@@ -3392,6 +3402,7 @@ self: super: {
"gitlib-test" = doDistribute super."gitlib-test_3_1_0_2";
"gitlib-utils" = dontDistribute super."gitlib-utils";
"gitrev" = doDistribute super."gitrev_1_0_0";
+ "gitter" = dontDistribute super."gitter";
"gl-capture" = dontDistribute super."gl-capture";
"glade" = dontDistribute super."glade";
"gladexml-accessor" = dontDistribute super."gladexml-accessor";
@@ -3697,6 +3708,7 @@ self: super: {
"hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP";
"hackage-server" = dontDistribute super."hackage-server";
"hackage-sparks" = dontDistribute super."hackage-sparks";
+ "hackage-whatsnew" = dontDistribute super."hackage-whatsnew";
"hackage2hwn" = dontDistribute super."hackage2hwn";
"hackage2twitter" = dontDistribute super."hackage2twitter";
"hackager" = dontDistribute super."hackager";
@@ -4156,6 +4168,7 @@ self: super: {
"hlibBladeRF" = dontDistribute super."hlibBladeRF";
"hlibev" = dontDistribute super."hlibev";
"hlibfam" = dontDistribute super."hlibfam";
+ "hlibgit2" = doDistribute super."hlibgit2_0_18_0_14";
"hlibsass" = dontDistribute super."hlibsass";
"hlint" = doDistribute super."hlint_1_9_21";
"hlogger" = dontDistribute super."hlogger";
@@ -4426,6 +4439,7 @@ self: super: {
"hspec-meta" = doDistribute super."hspec-meta_2_1_7";
"hspec-monad-control" = dontDistribute super."hspec-monad-control";
"hspec-server" = dontDistribute super."hspec-server";
+ "hspec-setup" = dontDistribute super."hspec-setup";
"hspec-shouldbe" = dontDistribute super."hspec-shouldbe";
"hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0";
"hspec-snap" = dontDistribute super."hspec-snap";
@@ -4525,6 +4539,7 @@ self: super: {
"http-shed" = dontDistribute super."http-shed";
"http-streams" = dontDistribute super."http-streams";
"http-test" = dontDistribute super."http-test";
+ "http-types" = doDistribute super."http-types_0_8_6";
"http-wget" = dontDistribute super."http-wget";
"http2" = dontDistribute super."http2";
"httpd-shed" = dontDistribute super."httpd-shed";
@@ -4664,6 +4679,7 @@ self: super: {
"imgurder" = dontDistribute super."imgurder";
"imm" = dontDistribute super."imm";
"imparse" = dontDistribute super."imparse";
+ "imperative-edsl" = dontDistribute super."imperative-edsl";
"imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl";
"implicit" = dontDistribute super."implicit";
"implicit-params" = dontDistribute super."implicit-params";
@@ -4805,6 +4821,7 @@ self: super: {
"ix-shapable" = dontDistribute super."ix-shapable";
"ixdopp" = dontDistribute super."ixdopp";
"ixmonad" = dontDistribute super."ixmonad";
+ "ixset" = doDistribute super."ixset_1_0_6";
"ixset-typed" = dontDistribute super."ixset-typed";
"iyql" = dontDistribute super."iyql";
"j2hs" = dontDistribute super."j2hs";
@@ -4845,6 +4862,7 @@ self: super: {
"json-autotype" = doDistribute super."json-autotype_0_2_5_13";
"json-b" = dontDistribute super."json-b";
"json-builder" = dontDistribute super."json-builder";
+ "json-encoder" = dontDistribute super."json-encoder";
"json-enumerator" = dontDistribute super."json-enumerator";
"json-extra" = dontDistribute super."json-extra";
"json-fu" = dontDistribute super."json-fu";
@@ -4982,6 +5000,7 @@ self: super: {
"lambdacube-examples" = dontDistribute super."lambdacube-examples";
"lambdacube-gl" = dontDistribute super."lambdacube-gl";
"lambdacube-samples" = dontDistribute super."lambdacube-samples";
+ "lambdatex" = dontDistribute super."lambdatex";
"lambdatwit" = dontDistribute super."lambdatwit";
"lambdiff" = dontDistribute super."lambdiff";
"lame-tester" = dontDistribute super."lame-tester";
@@ -5186,6 +5205,7 @@ self: super: {
"list-fusion-probe" = dontDistribute super."list-fusion-probe";
"list-grouping" = dontDistribute super."list-grouping";
"list-mux" = dontDistribute super."list-mux";
+ "list-prompt" = dontDistribute super."list-prompt";
"list-remote-forwards" = dontDistribute super."list-remote-forwards";
"list-t-attoparsec" = dontDistribute super."list-t-attoparsec";
"list-t-html-parser" = dontDistribute super."list-t-html-parser";
@@ -5229,6 +5249,7 @@ self: super: {
"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-domain" = doDistribute super."log-domain_0_10_1";
@@ -5882,6 +5903,7 @@ self: super: {
"omnifmt" = dontDistribute super."omnifmt";
"on-a-horse" = dontDistribute super."on-a-horse";
"on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel";
+ "once" = dontDistribute super."once";
"one-liner" = dontDistribute super."one-liner";
"one-time-password" = dontDistribute super."one-time-password";
"oneOfN" = dontDistribute super."oneOfN";
@@ -5939,6 +5961,7 @@ self: super: {
"optional" = dontDistribute super."optional";
"optional-args" = dontDistribute super."optional-args";
"options-time" = dontDistribute super."options-time";
+ "optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"orc" = dontDistribute super."orc";
"orchestrate" = dontDistribute super."orchestrate";
@@ -6135,6 +6158,7 @@ self: super: {
"phasechange" = dontDistribute super."phasechange";
"phash" = dontDistribute super."phash";
"phizzle" = dontDistribute super."phizzle";
+ "phoityne" = dontDistribute super."phoityne";
"phone-numbers" = dontDistribute super."phone-numbers";
"phone-push" = dontDistribute super."phone-push";
"phonetic-code" = dontDistribute super."phonetic-code";
@@ -6167,6 +6191,7 @@ self: super: {
"pipes-cereal" = dontDistribute super."pipes-cereal";
"pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus";
"pipes-cliff" = dontDistribute super."pipes-cliff";
+ "pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_3";
"pipes-conduit" = dontDistribute super."pipes-conduit";
"pipes-core" = dontDistribute super."pipes-core";
"pipes-courier" = dontDistribute super."pipes-courier";
@@ -6284,6 +6309,7 @@ self: super: {
"possible" = dontDistribute super."possible";
"post-mess-age" = doDistribute super."post-mess-age_0_1_0_0";
"postcodes" = dontDistribute super."postcodes";
+ "postgresql-binary" = doDistribute super."postgresql-binary_0_5_2_1";
"postgresql-config" = dontDistribute super."postgresql-config";
"postgresql-connector" = dontDistribute super."postgresql-connector";
"postgresql-copy-escape" = dontDistribute super."postgresql-copy-escape";
@@ -6730,6 +6756,7 @@ self: super: {
"rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster";
"retry" = doDistribute super."retry_0_6";
"retryer" = dontDistribute super."retryer";
+ "rev-state" = doDistribute super."rev-state_0_1";
"revdectime" = dontDistribute super."revdectime";
"reverse-apply" = dontDistribute super."reverse-apply";
"reverse-geocoding" = dontDistribute super."reverse-geocoding";
@@ -6965,6 +6992,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serv" = dontDistribute super."serv";
"servant" = doDistribute super."servant_0_2_2";
"servant-JuicyPixels" = dontDistribute super."servant-JuicyPixels";
"servant-blaze" = dontDistribute super."servant-blaze";
@@ -7958,6 +7986,7 @@ self: super: {
"typehash" = dontDistribute super."typehash";
"typelevel" = dontDistribute super."typelevel";
"typelevel-tensor" = dontDistribute super."typelevel-tensor";
+ "typelits-witnesses" = dontDistribute super."typelits-witnesses";
"typeof" = dontDistribute super."typeof";
"typeparams" = dontDistribute super."typeparams";
"types-compat" = dontDistribute super."types-compat";
@@ -8199,6 +8228,7 @@ self: super: {
"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" = dontDistribute super."vty";
diff --git a/pkgs/development/haskell-modules/configuration-lts-2.12.nix b/pkgs/development/haskell-modules/configuration-lts-2.12.nix
index b612864ed83..9f79732a018 100644
--- a/pkgs/development/haskell-modules/configuration-lts-2.12.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-2.12.nix
@@ -331,6 +331,7 @@ self: super: {
"FormalGrammars" = dontDistribute super."FormalGrammars";
"Foster" = dontDistribute super."Foster";
"FpMLv53" = dontDistribute super."FpMLv53";
+ "FractalArt" = dontDistribute super."FractalArt";
"Fractaler" = dontDistribute super."Fractaler";
"Frames" = dontDistribute super."Frames";
"Frank" = dontDistribute super."Frank";
@@ -482,6 +483,7 @@ self: super: {
"HTTP-Simple" = dontDistribute super."HTTP-Simple";
"HTab" = dontDistribute super."HTab";
"HTicTacToe" = dontDistribute super."HTicTacToe";
+ "HUnit" = doDistribute super."HUnit_1_2_5_2";
"HUnit-Diff" = dontDistribute super."HUnit-Diff";
"HUnit-Plus" = dontDistribute super."HUnit-Plus";
"HUnit-approx" = dontDistribute super."HUnit-approx";
@@ -515,6 +517,7 @@ self: super: {
"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";
@@ -1507,6 +1510,7 @@ self: super: {
"base-io-access" = dontDistribute super."base-io-access";
"base-noprelude" = dontDistribute super."base-noprelude";
"base-orphans" = dontDistribute super."base-orphans";
+ "base-prelude" = doDistribute super."base-prelude_0_1_19";
"base32-bytestring" = dontDistribute super."base32-bytestring";
"base32string" = dontDistribute super."base32string";
"base58-bytestring" = dontDistribute super."base58-bytestring";
@@ -1929,6 +1933,7 @@ self: super: {
"cef" = dontDistribute super."cef";
"ceilometer-common" = dontDistribute super."ceilometer-common";
"cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo";
+ "cerberus" = dontDistribute super."cerberus";
"cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_3";
"cereal-derive" = dontDistribute super."cereal-derive";
"cereal-enumerator" = dontDistribute super."cereal-enumerator";
@@ -2139,6 +2144,7 @@ self: super: {
"concrete-typerep" = dontDistribute super."concrete-typerep";
"concurrent-barrier" = dontDistribute super."concurrent-barrier";
"concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache";
+ "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9";
"concurrent-machines" = dontDistribute super."concurrent-machines";
"concurrent-output" = dontDistribute super."concurrent-output";
"concurrent-sa" = dontDistribute super."concurrent-sa";
@@ -2570,6 +2576,7 @@ self: super: {
"diagrams-solve" = dontDistribute super."diagrams-solve";
"diagrams-svg" = doDistribute super."diagrams-svg_1_1_0_5";
"diagrams-tikz" = dontDistribute super."diagrams-tikz";
+ "dialog" = dontDistribute super."dialog";
"dice" = dontDistribute super."dice";
"dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit";
"dicom" = dontDistribute super."dicom";
@@ -2760,6 +2767,7 @@ self: super: {
"edenskel" = dontDistribute super."edenskel";
"edentv" = dontDistribute super."edentv";
"edge" = dontDistribute super."edge";
+ "edis" = dontDistribute super."edis";
"edit-distance" = doDistribute super."edit-distance_0_2_1_3";
"edit-distance-vector" = dontDistribute super."edit-distance-vector";
"edit-lenses" = dontDistribute super."edit-lenses";
@@ -2955,6 +2963,7 @@ self: super: {
"failable-list" = dontDistribute super."failable-list";
"failure" = dontDistribute super."failure";
"fair-predicates" = dontDistribute super."fair-predicates";
+ "fake-type" = dontDistribute super."fake-type";
"faker" = dontDistribute super."faker";
"falling-turnip" = dontDistribute super."falling-turnip";
"fallingblocks" = dontDistribute super."fallingblocks";
@@ -3175,6 +3184,7 @@ self: super: {
"friday-juicypixels" = dontDistribute super."friday-juicypixels";
"friday-scale-dct" = dontDistribute super."friday-scale-dct";
"friendly-time" = dontDistribute super."friendly-time";
+ "frontmatter" = dontDistribute super."frontmatter";
"frp-arduino" = dontDistribute super."frp-arduino";
"frpnow" = dontDistribute super."frpnow";
"frpnow-gloss" = dontDistribute super."frpnow-gloss";
@@ -3392,6 +3402,7 @@ self: super: {
"gitlib-test" = doDistribute super."gitlib-test_3_1_0_2";
"gitlib-utils" = dontDistribute super."gitlib-utils";
"gitrev" = doDistribute super."gitrev_1_0_0";
+ "gitter" = dontDistribute super."gitter";
"gl-capture" = dontDistribute super."gl-capture";
"glade" = dontDistribute super."glade";
"gladexml-accessor" = dontDistribute super."gladexml-accessor";
@@ -3697,6 +3708,7 @@ self: super: {
"hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP";
"hackage-server" = dontDistribute super."hackage-server";
"hackage-sparks" = dontDistribute super."hackage-sparks";
+ "hackage-whatsnew" = dontDistribute super."hackage-whatsnew";
"hackage2hwn" = dontDistribute super."hackage2hwn";
"hackage2twitter" = dontDistribute super."hackage2twitter";
"hackager" = dontDistribute super."hackager";
@@ -4156,6 +4168,7 @@ self: super: {
"hlibBladeRF" = dontDistribute super."hlibBladeRF";
"hlibev" = dontDistribute super."hlibev";
"hlibfam" = dontDistribute super."hlibfam";
+ "hlibgit2" = doDistribute super."hlibgit2_0_18_0_14";
"hlibsass" = dontDistribute super."hlibsass";
"hlint" = doDistribute super."hlint_1_9_21";
"hlogger" = dontDistribute super."hlogger";
@@ -4426,6 +4439,7 @@ self: super: {
"hspec-meta" = doDistribute super."hspec-meta_2_1_7";
"hspec-monad-control" = dontDistribute super."hspec-monad-control";
"hspec-server" = dontDistribute super."hspec-server";
+ "hspec-setup" = dontDistribute super."hspec-setup";
"hspec-shouldbe" = dontDistribute super."hspec-shouldbe";
"hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0";
"hspec-snap" = dontDistribute super."hspec-snap";
@@ -4525,6 +4539,7 @@ self: super: {
"http-shed" = dontDistribute super."http-shed";
"http-streams" = dontDistribute super."http-streams";
"http-test" = dontDistribute super."http-test";
+ "http-types" = doDistribute super."http-types_0_8_6";
"http-wget" = dontDistribute super."http-wget";
"http2" = dontDistribute super."http2";
"httpd-shed" = dontDistribute super."httpd-shed";
@@ -4664,6 +4679,7 @@ self: super: {
"imgurder" = dontDistribute super."imgurder";
"imm" = dontDistribute super."imm";
"imparse" = dontDistribute super."imparse";
+ "imperative-edsl" = dontDistribute super."imperative-edsl";
"imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl";
"implicit" = dontDistribute super."implicit";
"implicit-params" = dontDistribute super."implicit-params";
@@ -4805,6 +4821,7 @@ self: super: {
"ix-shapable" = dontDistribute super."ix-shapable";
"ixdopp" = dontDistribute super."ixdopp";
"ixmonad" = dontDistribute super."ixmonad";
+ "ixset" = doDistribute super."ixset_1_0_6";
"ixset-typed" = dontDistribute super."ixset-typed";
"iyql" = dontDistribute super."iyql";
"j2hs" = dontDistribute super."j2hs";
@@ -4845,6 +4862,7 @@ self: super: {
"json-autotype" = doDistribute super."json-autotype_0_2_5_13";
"json-b" = dontDistribute super."json-b";
"json-builder" = dontDistribute super."json-builder";
+ "json-encoder" = dontDistribute super."json-encoder";
"json-enumerator" = dontDistribute super."json-enumerator";
"json-extra" = dontDistribute super."json-extra";
"json-fu" = dontDistribute super."json-fu";
@@ -4982,6 +5000,7 @@ self: super: {
"lambdacube-examples" = dontDistribute super."lambdacube-examples";
"lambdacube-gl" = dontDistribute super."lambdacube-gl";
"lambdacube-samples" = dontDistribute super."lambdacube-samples";
+ "lambdatex" = dontDistribute super."lambdatex";
"lambdatwit" = dontDistribute super."lambdatwit";
"lambdiff" = dontDistribute super."lambdiff";
"lame-tester" = dontDistribute super."lame-tester";
@@ -5186,6 +5205,7 @@ self: super: {
"list-fusion-probe" = dontDistribute super."list-fusion-probe";
"list-grouping" = dontDistribute super."list-grouping";
"list-mux" = dontDistribute super."list-mux";
+ "list-prompt" = dontDistribute super."list-prompt";
"list-remote-forwards" = dontDistribute super."list-remote-forwards";
"list-t-attoparsec" = dontDistribute super."list-t-attoparsec";
"list-t-html-parser" = dontDistribute super."list-t-html-parser";
@@ -5229,6 +5249,7 @@ self: super: {
"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-domain" = doDistribute super."log-domain_0_10_1";
@@ -5882,6 +5903,7 @@ self: super: {
"omnifmt" = dontDistribute super."omnifmt";
"on-a-horse" = dontDistribute super."on-a-horse";
"on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel";
+ "once" = dontDistribute super."once";
"one-liner" = dontDistribute super."one-liner";
"one-time-password" = dontDistribute super."one-time-password";
"oneOfN" = dontDistribute super."oneOfN";
@@ -5939,6 +5961,7 @@ self: super: {
"optional" = dontDistribute super."optional";
"optional-args" = dontDistribute super."optional-args";
"options-time" = dontDistribute super."options-time";
+ "optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"orc" = dontDistribute super."orc";
"orchestrate" = dontDistribute super."orchestrate";
@@ -6135,6 +6158,7 @@ self: super: {
"phasechange" = dontDistribute super."phasechange";
"phash" = dontDistribute super."phash";
"phizzle" = dontDistribute super."phizzle";
+ "phoityne" = dontDistribute super."phoityne";
"phone-numbers" = dontDistribute super."phone-numbers";
"phone-push" = dontDistribute super."phone-push";
"phonetic-code" = dontDistribute super."phonetic-code";
@@ -6167,6 +6191,7 @@ self: super: {
"pipes-cereal" = dontDistribute super."pipes-cereal";
"pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus";
"pipes-cliff" = dontDistribute super."pipes-cliff";
+ "pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_3";
"pipes-conduit" = dontDistribute super."pipes-conduit";
"pipes-core" = dontDistribute super."pipes-core";
"pipes-courier" = dontDistribute super."pipes-courier";
@@ -6284,6 +6309,7 @@ self: super: {
"possible" = dontDistribute super."possible";
"post-mess-age" = doDistribute super."post-mess-age_0_1_0_0";
"postcodes" = dontDistribute super."postcodes";
+ "postgresql-binary" = doDistribute super."postgresql-binary_0_5_2_1";
"postgresql-config" = dontDistribute super."postgresql-config";
"postgresql-connector" = dontDistribute super."postgresql-connector";
"postgresql-copy-escape" = dontDistribute super."postgresql-copy-escape";
@@ -6730,6 +6756,7 @@ self: super: {
"rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster";
"retry" = doDistribute super."retry_0_6";
"retryer" = dontDistribute super."retryer";
+ "rev-state" = doDistribute super."rev-state_0_1";
"revdectime" = dontDistribute super."revdectime";
"reverse-apply" = dontDistribute super."reverse-apply";
"reverse-geocoding" = dontDistribute super."reverse-geocoding";
@@ -6964,6 +6991,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serv" = dontDistribute super."serv";
"servant" = doDistribute super."servant_0_2_2";
"servant-JuicyPixels" = dontDistribute super."servant-JuicyPixels";
"servant-blaze" = dontDistribute super."servant-blaze";
@@ -7957,6 +7985,7 @@ self: super: {
"typehash" = dontDistribute super."typehash";
"typelevel" = dontDistribute super."typelevel";
"typelevel-tensor" = dontDistribute super."typelevel-tensor";
+ "typelits-witnesses" = dontDistribute super."typelits-witnesses";
"typeof" = dontDistribute super."typeof";
"typeparams" = dontDistribute super."typeparams";
"types-compat" = dontDistribute super."types-compat";
@@ -8198,6 +8227,7 @@ self: super: {
"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" = dontDistribute super."vty";
diff --git a/pkgs/development/haskell-modules/configuration-lts-2.13.nix b/pkgs/development/haskell-modules/configuration-lts-2.13.nix
index bd2110ef60c..813898be750 100644
--- a/pkgs/development/haskell-modules/configuration-lts-2.13.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-2.13.nix
@@ -331,6 +331,7 @@ self: super: {
"FormalGrammars" = dontDistribute super."FormalGrammars";
"Foster" = dontDistribute super."Foster";
"FpMLv53" = dontDistribute super."FpMLv53";
+ "FractalArt" = dontDistribute super."FractalArt";
"Fractaler" = dontDistribute super."Fractaler";
"Frames" = dontDistribute super."Frames";
"Frank" = dontDistribute super."Frank";
@@ -482,6 +483,7 @@ self: super: {
"HTTP-Simple" = dontDistribute super."HTTP-Simple";
"HTab" = dontDistribute super."HTab";
"HTicTacToe" = dontDistribute super."HTicTacToe";
+ "HUnit" = doDistribute super."HUnit_1_2_5_2";
"HUnit-Diff" = dontDistribute super."HUnit-Diff";
"HUnit-Plus" = dontDistribute super."HUnit-Plus";
"HUnit-approx" = dontDistribute super."HUnit-approx";
@@ -515,6 +517,7 @@ self: super: {
"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";
@@ -1507,6 +1510,7 @@ self: super: {
"base-io-access" = dontDistribute super."base-io-access";
"base-noprelude" = dontDistribute super."base-noprelude";
"base-orphans" = dontDistribute super."base-orphans";
+ "base-prelude" = doDistribute super."base-prelude_0_1_19";
"base32-bytestring" = dontDistribute super."base32-bytestring";
"base32string" = dontDistribute super."base32string";
"base58-bytestring" = dontDistribute super."base58-bytestring";
@@ -1929,6 +1933,7 @@ self: super: {
"cef" = dontDistribute super."cef";
"ceilometer-common" = dontDistribute super."ceilometer-common";
"cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo";
+ "cerberus" = dontDistribute super."cerberus";
"cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_3";
"cereal-derive" = dontDistribute super."cereal-derive";
"cereal-enumerator" = dontDistribute super."cereal-enumerator";
@@ -2139,6 +2144,7 @@ self: super: {
"concrete-typerep" = dontDistribute super."concrete-typerep";
"concurrent-barrier" = dontDistribute super."concurrent-barrier";
"concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache";
+ "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9";
"concurrent-machines" = dontDistribute super."concurrent-machines";
"concurrent-output" = dontDistribute super."concurrent-output";
"concurrent-sa" = dontDistribute super."concurrent-sa";
@@ -2570,6 +2576,7 @@ self: super: {
"diagrams-solve" = dontDistribute super."diagrams-solve";
"diagrams-svg" = doDistribute super."diagrams-svg_1_1_0_5";
"diagrams-tikz" = dontDistribute super."diagrams-tikz";
+ "dialog" = dontDistribute super."dialog";
"dice" = dontDistribute super."dice";
"dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit";
"dicom" = dontDistribute super."dicom";
@@ -2760,6 +2767,7 @@ self: super: {
"edenskel" = dontDistribute super."edenskel";
"edentv" = dontDistribute super."edentv";
"edge" = dontDistribute super."edge";
+ "edis" = dontDistribute super."edis";
"edit-distance" = doDistribute super."edit-distance_0_2_1_3";
"edit-distance-vector" = dontDistribute super."edit-distance-vector";
"edit-lenses" = dontDistribute super."edit-lenses";
@@ -2955,6 +2963,7 @@ self: super: {
"failable-list" = dontDistribute super."failable-list";
"failure" = dontDistribute super."failure";
"fair-predicates" = dontDistribute super."fair-predicates";
+ "fake-type" = dontDistribute super."fake-type";
"faker" = dontDistribute super."faker";
"falling-turnip" = dontDistribute super."falling-turnip";
"fallingblocks" = dontDistribute super."fallingblocks";
@@ -3175,6 +3184,7 @@ self: super: {
"friday-juicypixels" = dontDistribute super."friday-juicypixels";
"friday-scale-dct" = dontDistribute super."friday-scale-dct";
"friendly-time" = dontDistribute super."friendly-time";
+ "frontmatter" = dontDistribute super."frontmatter";
"frp-arduino" = dontDistribute super."frp-arduino";
"frpnow" = dontDistribute super."frpnow";
"frpnow-gloss" = dontDistribute super."frpnow-gloss";
@@ -3392,6 +3402,7 @@ self: super: {
"gitlib-test" = doDistribute super."gitlib-test_3_1_0_2";
"gitlib-utils" = dontDistribute super."gitlib-utils";
"gitrev" = doDistribute super."gitrev_1_0_0";
+ "gitter" = dontDistribute super."gitter";
"gl-capture" = dontDistribute super."gl-capture";
"glade" = dontDistribute super."glade";
"gladexml-accessor" = dontDistribute super."gladexml-accessor";
@@ -3696,6 +3707,7 @@ self: super: {
"hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP";
"hackage-server" = dontDistribute super."hackage-server";
"hackage-sparks" = dontDistribute super."hackage-sparks";
+ "hackage-whatsnew" = dontDistribute super."hackage-whatsnew";
"hackage2hwn" = dontDistribute super."hackage2hwn";
"hackage2twitter" = dontDistribute super."hackage2twitter";
"hackager" = dontDistribute super."hackager";
@@ -4155,6 +4167,7 @@ self: super: {
"hlibBladeRF" = dontDistribute super."hlibBladeRF";
"hlibev" = dontDistribute super."hlibev";
"hlibfam" = dontDistribute super."hlibfam";
+ "hlibgit2" = doDistribute super."hlibgit2_0_18_0_14";
"hlibsass" = dontDistribute super."hlibsass";
"hlint" = doDistribute super."hlint_1_9_21";
"hlogger" = dontDistribute super."hlogger";
@@ -4425,6 +4438,7 @@ self: super: {
"hspec-meta" = doDistribute super."hspec-meta_2_1_7";
"hspec-monad-control" = dontDistribute super."hspec-monad-control";
"hspec-server" = dontDistribute super."hspec-server";
+ "hspec-setup" = dontDistribute super."hspec-setup";
"hspec-shouldbe" = dontDistribute super."hspec-shouldbe";
"hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0";
"hspec-snap" = dontDistribute super."hspec-snap";
@@ -4524,6 +4538,7 @@ self: super: {
"http-shed" = dontDistribute super."http-shed";
"http-streams" = dontDistribute super."http-streams";
"http-test" = dontDistribute super."http-test";
+ "http-types" = doDistribute super."http-types_0_8_6";
"http-wget" = dontDistribute super."http-wget";
"http2" = dontDistribute super."http2";
"httpd-shed" = dontDistribute super."httpd-shed";
@@ -4662,6 +4677,7 @@ self: super: {
"imgurder" = dontDistribute super."imgurder";
"imm" = dontDistribute super."imm";
"imparse" = dontDistribute super."imparse";
+ "imperative-edsl" = dontDistribute super."imperative-edsl";
"imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl";
"implicit" = dontDistribute super."implicit";
"implicit-params" = dontDistribute super."implicit-params";
@@ -4803,6 +4819,7 @@ self: super: {
"ix-shapable" = dontDistribute super."ix-shapable";
"ixdopp" = dontDistribute super."ixdopp";
"ixmonad" = dontDistribute super."ixmonad";
+ "ixset" = doDistribute super."ixset_1_0_6";
"ixset-typed" = dontDistribute super."ixset-typed";
"iyql" = dontDistribute super."iyql";
"j2hs" = dontDistribute super."j2hs";
@@ -4843,6 +4860,7 @@ self: super: {
"json-autotype" = doDistribute super."json-autotype_0_2_5_13";
"json-b" = dontDistribute super."json-b";
"json-builder" = dontDistribute super."json-builder";
+ "json-encoder" = dontDistribute super."json-encoder";
"json-enumerator" = dontDistribute super."json-enumerator";
"json-extra" = dontDistribute super."json-extra";
"json-fu" = dontDistribute super."json-fu";
@@ -4980,6 +4998,7 @@ self: super: {
"lambdacube-examples" = dontDistribute super."lambdacube-examples";
"lambdacube-gl" = dontDistribute super."lambdacube-gl";
"lambdacube-samples" = dontDistribute super."lambdacube-samples";
+ "lambdatex" = dontDistribute super."lambdatex";
"lambdatwit" = dontDistribute super."lambdatwit";
"lambdiff" = dontDistribute super."lambdiff";
"lame-tester" = dontDistribute super."lame-tester";
@@ -5184,6 +5203,7 @@ self: super: {
"list-fusion-probe" = dontDistribute super."list-fusion-probe";
"list-grouping" = dontDistribute super."list-grouping";
"list-mux" = dontDistribute super."list-mux";
+ "list-prompt" = dontDistribute super."list-prompt";
"list-remote-forwards" = dontDistribute super."list-remote-forwards";
"list-t-attoparsec" = dontDistribute super."list-t-attoparsec";
"list-t-html-parser" = dontDistribute super."list-t-html-parser";
@@ -5227,6 +5247,7 @@ self: super: {
"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-domain" = doDistribute super."log-domain_0_10_1";
@@ -5879,6 +5900,7 @@ self: super: {
"omnifmt" = dontDistribute super."omnifmt";
"on-a-horse" = dontDistribute super."on-a-horse";
"on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel";
+ "once" = dontDistribute super."once";
"one-liner" = dontDistribute super."one-liner";
"one-time-password" = dontDistribute super."one-time-password";
"oneOfN" = dontDistribute super."oneOfN";
@@ -5936,6 +5958,7 @@ self: super: {
"optional" = dontDistribute super."optional";
"optional-args" = dontDistribute super."optional-args";
"options-time" = dontDistribute super."options-time";
+ "optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"orc" = dontDistribute super."orc";
"orchestrate" = dontDistribute super."orchestrate";
@@ -6132,6 +6155,7 @@ self: super: {
"phasechange" = dontDistribute super."phasechange";
"phash" = dontDistribute super."phash";
"phizzle" = dontDistribute super."phizzle";
+ "phoityne" = dontDistribute super."phoityne";
"phone-numbers" = dontDistribute super."phone-numbers";
"phone-push" = dontDistribute super."phone-push";
"phonetic-code" = dontDistribute super."phonetic-code";
@@ -6164,6 +6188,7 @@ self: super: {
"pipes-cereal" = dontDistribute super."pipes-cereal";
"pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus";
"pipes-cliff" = dontDistribute super."pipes-cliff";
+ "pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_3";
"pipes-conduit" = dontDistribute super."pipes-conduit";
"pipes-core" = dontDistribute super."pipes-core";
"pipes-courier" = dontDistribute super."pipes-courier";
@@ -6281,6 +6306,7 @@ self: super: {
"possible" = dontDistribute super."possible";
"post-mess-age" = doDistribute super."post-mess-age_0_1_0_0";
"postcodes" = dontDistribute super."postcodes";
+ "postgresql-binary" = doDistribute super."postgresql-binary_0_5_2_1";
"postgresql-config" = dontDistribute super."postgresql-config";
"postgresql-connector" = dontDistribute super."postgresql-connector";
"postgresql-copy-escape" = dontDistribute super."postgresql-copy-escape";
@@ -6727,6 +6753,7 @@ self: super: {
"rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster";
"retry" = doDistribute super."retry_0_6";
"retryer" = dontDistribute super."retryer";
+ "rev-state" = doDistribute super."rev-state_0_1";
"revdectime" = dontDistribute super."revdectime";
"reverse-apply" = dontDistribute super."reverse-apply";
"reverse-geocoding" = dontDistribute super."reverse-geocoding";
@@ -6961,6 +6988,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serv" = dontDistribute super."serv";
"servant" = doDistribute super."servant_0_2_2";
"servant-JuicyPixels" = dontDistribute super."servant-JuicyPixels";
"servant-blaze" = dontDistribute super."servant-blaze";
@@ -7954,6 +7982,7 @@ self: super: {
"typehash" = dontDistribute super."typehash";
"typelevel" = dontDistribute super."typelevel";
"typelevel-tensor" = dontDistribute super."typelevel-tensor";
+ "typelits-witnesses" = dontDistribute super."typelits-witnesses";
"typeof" = dontDistribute super."typeof";
"typeparams" = dontDistribute super."typeparams";
"types-compat" = dontDistribute super."types-compat";
@@ -8195,6 +8224,7 @@ self: super: {
"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" = dontDistribute super."vty";
diff --git a/pkgs/development/haskell-modules/configuration-lts-2.14.nix b/pkgs/development/haskell-modules/configuration-lts-2.14.nix
index cec6bda6e3a..6ffc4a6b531 100644
--- a/pkgs/development/haskell-modules/configuration-lts-2.14.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-2.14.nix
@@ -331,6 +331,7 @@ self: super: {
"FormalGrammars" = dontDistribute super."FormalGrammars";
"Foster" = dontDistribute super."Foster";
"FpMLv53" = dontDistribute super."FpMLv53";
+ "FractalArt" = dontDistribute super."FractalArt";
"Fractaler" = dontDistribute super."Fractaler";
"Frames" = dontDistribute super."Frames";
"Frank" = dontDistribute super."Frank";
@@ -482,6 +483,7 @@ self: super: {
"HTTP-Simple" = dontDistribute super."HTTP-Simple";
"HTab" = dontDistribute super."HTab";
"HTicTacToe" = dontDistribute super."HTicTacToe";
+ "HUnit" = doDistribute super."HUnit_1_2_5_2";
"HUnit-Diff" = dontDistribute super."HUnit-Diff";
"HUnit-Plus" = dontDistribute super."HUnit-Plus";
"HUnit-approx" = dontDistribute super."HUnit-approx";
@@ -515,6 +517,7 @@ self: super: {
"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";
@@ -1506,6 +1509,7 @@ self: super: {
"base-io-access" = dontDistribute super."base-io-access";
"base-noprelude" = dontDistribute super."base-noprelude";
"base-orphans" = dontDistribute super."base-orphans";
+ "base-prelude" = doDistribute super."base-prelude_0_1_19";
"base32-bytestring" = dontDistribute super."base32-bytestring";
"base32string" = dontDistribute super."base32string";
"base58-bytestring" = dontDistribute super."base58-bytestring";
@@ -1928,6 +1932,7 @@ self: super: {
"cef" = dontDistribute super."cef";
"ceilometer-common" = dontDistribute super."ceilometer-common";
"cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo";
+ "cerberus" = dontDistribute super."cerberus";
"cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_3";
"cereal-derive" = dontDistribute super."cereal-derive";
"cereal-enumerator" = dontDistribute super."cereal-enumerator";
@@ -2138,6 +2143,7 @@ self: super: {
"concrete-typerep" = dontDistribute super."concrete-typerep";
"concurrent-barrier" = dontDistribute super."concurrent-barrier";
"concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache";
+ "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9";
"concurrent-machines" = dontDistribute super."concurrent-machines";
"concurrent-output" = dontDistribute super."concurrent-output";
"concurrent-sa" = dontDistribute super."concurrent-sa";
@@ -2569,6 +2575,7 @@ self: super: {
"diagrams-solve" = dontDistribute super."diagrams-solve";
"diagrams-svg" = doDistribute super."diagrams-svg_1_1_0_5";
"diagrams-tikz" = dontDistribute super."diagrams-tikz";
+ "dialog" = dontDistribute super."dialog";
"dice" = dontDistribute super."dice";
"dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit";
"dicom" = dontDistribute super."dicom";
@@ -2759,6 +2766,7 @@ self: super: {
"edenskel" = dontDistribute super."edenskel";
"edentv" = dontDistribute super."edentv";
"edge" = dontDistribute super."edge";
+ "edis" = dontDistribute super."edis";
"edit-distance" = doDistribute super."edit-distance_0_2_1_3";
"edit-distance-vector" = dontDistribute super."edit-distance-vector";
"edit-lenses" = dontDistribute super."edit-lenses";
@@ -2954,6 +2962,7 @@ self: super: {
"failable-list" = dontDistribute super."failable-list";
"failure" = dontDistribute super."failure";
"fair-predicates" = dontDistribute super."fair-predicates";
+ "fake-type" = dontDistribute super."fake-type";
"faker" = dontDistribute super."faker";
"falling-turnip" = dontDistribute super."falling-turnip";
"fallingblocks" = dontDistribute super."fallingblocks";
@@ -3173,6 +3182,7 @@ self: super: {
"friday-juicypixels" = dontDistribute super."friday-juicypixels";
"friday-scale-dct" = dontDistribute super."friday-scale-dct";
"friendly-time" = dontDistribute super."friendly-time";
+ "frontmatter" = dontDistribute super."frontmatter";
"frp-arduino" = dontDistribute super."frp-arduino";
"frpnow" = dontDistribute super."frpnow";
"frpnow-gloss" = dontDistribute super."frpnow-gloss";
@@ -3390,6 +3400,7 @@ self: super: {
"gitlib-test" = doDistribute super."gitlib-test_3_1_0_2";
"gitlib-utils" = dontDistribute super."gitlib-utils";
"gitrev" = doDistribute super."gitrev_1_0_0";
+ "gitter" = dontDistribute super."gitter";
"gl-capture" = dontDistribute super."gl-capture";
"glade" = dontDistribute super."glade";
"gladexml-accessor" = dontDistribute super."gladexml-accessor";
@@ -3694,6 +3705,7 @@ self: super: {
"hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP";
"hackage-server" = dontDistribute super."hackage-server";
"hackage-sparks" = dontDistribute super."hackage-sparks";
+ "hackage-whatsnew" = dontDistribute super."hackage-whatsnew";
"hackage2hwn" = dontDistribute super."hackage2hwn";
"hackage2twitter" = dontDistribute super."hackage2twitter";
"hackager" = dontDistribute super."hackager";
@@ -4153,6 +4165,7 @@ self: super: {
"hlibBladeRF" = dontDistribute super."hlibBladeRF";
"hlibev" = dontDistribute super."hlibev";
"hlibfam" = dontDistribute super."hlibfam";
+ "hlibgit2" = doDistribute super."hlibgit2_0_18_0_14";
"hlibsass" = dontDistribute super."hlibsass";
"hlint" = doDistribute super."hlint_1_9_21";
"hlogger" = dontDistribute super."hlogger";
@@ -4423,6 +4436,7 @@ self: super: {
"hspec-meta" = doDistribute super."hspec-meta_2_1_7";
"hspec-monad-control" = dontDistribute super."hspec-monad-control";
"hspec-server" = dontDistribute super."hspec-server";
+ "hspec-setup" = dontDistribute super."hspec-setup";
"hspec-shouldbe" = dontDistribute super."hspec-shouldbe";
"hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0";
"hspec-snap" = dontDistribute super."hspec-snap";
@@ -4521,6 +4535,7 @@ self: super: {
"http-shed" = dontDistribute super."http-shed";
"http-streams" = dontDistribute super."http-streams";
"http-test" = dontDistribute super."http-test";
+ "http-types" = doDistribute super."http-types_0_8_6";
"http-wget" = dontDistribute super."http-wget";
"http2" = dontDistribute super."http2";
"httpd-shed" = dontDistribute super."httpd-shed";
@@ -4659,6 +4674,7 @@ self: super: {
"imgurder" = dontDistribute super."imgurder";
"imm" = dontDistribute super."imm";
"imparse" = dontDistribute super."imparse";
+ "imperative-edsl" = dontDistribute super."imperative-edsl";
"imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl";
"implicit" = dontDistribute super."implicit";
"implicit-params" = dontDistribute super."implicit-params";
@@ -4800,6 +4816,7 @@ self: super: {
"ix-shapable" = dontDistribute super."ix-shapable";
"ixdopp" = dontDistribute super."ixdopp";
"ixmonad" = dontDistribute super."ixmonad";
+ "ixset" = doDistribute super."ixset_1_0_6";
"ixset-typed" = dontDistribute super."ixset-typed";
"iyql" = dontDistribute super."iyql";
"j2hs" = dontDistribute super."j2hs";
@@ -4840,6 +4857,7 @@ self: super: {
"json-autotype" = doDistribute super."json-autotype_0_2_5_13";
"json-b" = dontDistribute super."json-b";
"json-builder" = dontDistribute super."json-builder";
+ "json-encoder" = dontDistribute super."json-encoder";
"json-enumerator" = dontDistribute super."json-enumerator";
"json-extra" = dontDistribute super."json-extra";
"json-fu" = dontDistribute super."json-fu";
@@ -4977,6 +4995,7 @@ self: super: {
"lambdacube-examples" = dontDistribute super."lambdacube-examples";
"lambdacube-gl" = dontDistribute super."lambdacube-gl";
"lambdacube-samples" = dontDistribute super."lambdacube-samples";
+ "lambdatex" = dontDistribute super."lambdatex";
"lambdatwit" = dontDistribute super."lambdatwit";
"lambdiff" = dontDistribute super."lambdiff";
"lame-tester" = dontDistribute super."lame-tester";
@@ -5181,6 +5200,7 @@ self: super: {
"list-fusion-probe" = dontDistribute super."list-fusion-probe";
"list-grouping" = dontDistribute super."list-grouping";
"list-mux" = dontDistribute super."list-mux";
+ "list-prompt" = dontDistribute super."list-prompt";
"list-remote-forwards" = dontDistribute super."list-remote-forwards";
"list-t-attoparsec" = dontDistribute super."list-t-attoparsec";
"list-t-html-parser" = dontDistribute super."list-t-html-parser";
@@ -5224,6 +5244,7 @@ self: super: {
"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-domain" = doDistribute super."log-domain_0_10_1";
@@ -5876,6 +5897,7 @@ self: super: {
"omnifmt" = dontDistribute super."omnifmt";
"on-a-horse" = dontDistribute super."on-a-horse";
"on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel";
+ "once" = dontDistribute super."once";
"one-liner" = dontDistribute super."one-liner";
"one-time-password" = dontDistribute super."one-time-password";
"oneOfN" = dontDistribute super."oneOfN";
@@ -5933,6 +5955,7 @@ self: super: {
"optional" = dontDistribute super."optional";
"optional-args" = dontDistribute super."optional-args";
"options-time" = dontDistribute super."options-time";
+ "optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"orc" = dontDistribute super."orc";
"orchestrate" = dontDistribute super."orchestrate";
@@ -6129,6 +6152,7 @@ self: super: {
"phasechange" = dontDistribute super."phasechange";
"phash" = dontDistribute super."phash";
"phizzle" = dontDistribute super."phizzle";
+ "phoityne" = dontDistribute super."phoityne";
"phone-numbers" = dontDistribute super."phone-numbers";
"phone-push" = dontDistribute super."phone-push";
"phonetic-code" = dontDistribute super."phonetic-code";
@@ -6161,6 +6185,7 @@ self: super: {
"pipes-cereal" = dontDistribute super."pipes-cereal";
"pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus";
"pipes-cliff" = dontDistribute super."pipes-cliff";
+ "pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_3";
"pipes-conduit" = dontDistribute super."pipes-conduit";
"pipes-core" = dontDistribute super."pipes-core";
"pipes-courier" = dontDistribute super."pipes-courier";
@@ -6278,6 +6303,7 @@ self: super: {
"possible" = dontDistribute super."possible";
"post-mess-age" = doDistribute super."post-mess-age_0_1_0_0";
"postcodes" = dontDistribute super."postcodes";
+ "postgresql-binary" = doDistribute super."postgresql-binary_0_5_2_1";
"postgresql-config" = dontDistribute super."postgresql-config";
"postgresql-connector" = dontDistribute super."postgresql-connector";
"postgresql-copy-escape" = dontDistribute super."postgresql-copy-escape";
@@ -6723,6 +6749,7 @@ self: super: {
"rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster";
"retry" = doDistribute super."retry_0_6";
"retryer" = dontDistribute super."retryer";
+ "rev-state" = doDistribute super."rev-state_0_1";
"revdectime" = dontDistribute super."revdectime";
"reverse-apply" = dontDistribute super."reverse-apply";
"reverse-geocoding" = dontDistribute super."reverse-geocoding";
@@ -6957,6 +6984,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serv" = dontDistribute super."serv";
"servant" = doDistribute super."servant_0_2_2";
"servant-JuicyPixels" = dontDistribute super."servant-JuicyPixels";
"servant-blaze" = dontDistribute super."servant-blaze";
@@ -7949,6 +7977,7 @@ self: super: {
"typehash" = dontDistribute super."typehash";
"typelevel" = dontDistribute super."typelevel";
"typelevel-tensor" = dontDistribute super."typelevel-tensor";
+ "typelits-witnesses" = dontDistribute super."typelits-witnesses";
"typeof" = dontDistribute super."typeof";
"typeparams" = dontDistribute super."typeparams";
"types-compat" = dontDistribute super."types-compat";
@@ -8190,6 +8219,7 @@ self: super: {
"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" = dontDistribute super."vty";
diff --git a/pkgs/development/haskell-modules/configuration-lts-2.15.nix b/pkgs/development/haskell-modules/configuration-lts-2.15.nix
index 2d98f22ccc1..c129a3ed578 100644
--- a/pkgs/development/haskell-modules/configuration-lts-2.15.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-2.15.nix
@@ -331,6 +331,7 @@ self: super: {
"FormalGrammars" = dontDistribute super."FormalGrammars";
"Foster" = dontDistribute super."Foster";
"FpMLv53" = dontDistribute super."FpMLv53";
+ "FractalArt" = dontDistribute super."FractalArt";
"Fractaler" = dontDistribute super."Fractaler";
"Frames" = dontDistribute super."Frames";
"Frank" = dontDistribute super."Frank";
@@ -482,6 +483,7 @@ self: super: {
"HTTP-Simple" = dontDistribute super."HTTP-Simple";
"HTab" = dontDistribute super."HTab";
"HTicTacToe" = dontDistribute super."HTicTacToe";
+ "HUnit" = doDistribute super."HUnit_1_2_5_2";
"HUnit-Diff" = dontDistribute super."HUnit-Diff";
"HUnit-Plus" = dontDistribute super."HUnit-Plus";
"HUnit-approx" = dontDistribute super."HUnit-approx";
@@ -515,6 +517,7 @@ self: super: {
"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";
@@ -1506,6 +1509,7 @@ self: super: {
"base-io-access" = dontDistribute super."base-io-access";
"base-noprelude" = dontDistribute super."base-noprelude";
"base-orphans" = dontDistribute super."base-orphans";
+ "base-prelude" = doDistribute super."base-prelude_0_1_19";
"base32-bytestring" = dontDistribute super."base32-bytestring";
"base32string" = dontDistribute super."base32string";
"base58-bytestring" = dontDistribute super."base58-bytestring";
@@ -1928,6 +1932,7 @@ self: super: {
"cef" = dontDistribute super."cef";
"ceilometer-common" = dontDistribute super."ceilometer-common";
"cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo";
+ "cerberus" = dontDistribute super."cerberus";
"cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_3";
"cereal-derive" = dontDistribute super."cereal-derive";
"cereal-enumerator" = dontDistribute super."cereal-enumerator";
@@ -2138,6 +2143,7 @@ self: super: {
"concrete-typerep" = dontDistribute super."concrete-typerep";
"concurrent-barrier" = dontDistribute super."concurrent-barrier";
"concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache";
+ "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9";
"concurrent-machines" = dontDistribute super."concurrent-machines";
"concurrent-output" = dontDistribute super."concurrent-output";
"concurrent-sa" = dontDistribute super."concurrent-sa";
@@ -2569,6 +2575,7 @@ self: super: {
"diagrams-solve" = dontDistribute super."diagrams-solve";
"diagrams-svg" = doDistribute super."diagrams-svg_1_1_0_5";
"diagrams-tikz" = dontDistribute super."diagrams-tikz";
+ "dialog" = dontDistribute super."dialog";
"dice" = dontDistribute super."dice";
"dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit";
"dicom" = dontDistribute super."dicom";
@@ -2759,6 +2766,7 @@ self: super: {
"edenskel" = dontDistribute super."edenskel";
"edentv" = dontDistribute super."edentv";
"edge" = dontDistribute super."edge";
+ "edis" = dontDistribute super."edis";
"edit-distance" = doDistribute super."edit-distance_0_2_1_3";
"edit-distance-vector" = dontDistribute super."edit-distance-vector";
"edit-lenses" = dontDistribute super."edit-lenses";
@@ -2953,6 +2961,7 @@ self: super: {
"failable-list" = dontDistribute super."failable-list";
"failure" = dontDistribute super."failure";
"fair-predicates" = dontDistribute super."fair-predicates";
+ "fake-type" = dontDistribute super."fake-type";
"faker" = dontDistribute super."faker";
"falling-turnip" = dontDistribute super."falling-turnip";
"fallingblocks" = dontDistribute super."fallingblocks";
@@ -3172,6 +3181,7 @@ self: super: {
"friday-juicypixels" = dontDistribute super."friday-juicypixels";
"friday-scale-dct" = dontDistribute super."friday-scale-dct";
"friendly-time" = dontDistribute super."friendly-time";
+ "frontmatter" = dontDistribute super."frontmatter";
"frp-arduino" = dontDistribute super."frp-arduino";
"frpnow" = dontDistribute super."frpnow";
"frpnow-gloss" = dontDistribute super."frpnow-gloss";
@@ -3389,6 +3399,7 @@ self: super: {
"gitlib-test" = doDistribute super."gitlib-test_3_1_0_2";
"gitlib-utils" = dontDistribute super."gitlib-utils";
"gitrev" = doDistribute super."gitrev_1_0_0";
+ "gitter" = dontDistribute super."gitter";
"gl-capture" = dontDistribute super."gl-capture";
"glade" = dontDistribute super."glade";
"gladexml-accessor" = dontDistribute super."gladexml-accessor";
@@ -3693,6 +3704,7 @@ self: super: {
"hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP";
"hackage-server" = dontDistribute super."hackage-server";
"hackage-sparks" = dontDistribute super."hackage-sparks";
+ "hackage-whatsnew" = dontDistribute super."hackage-whatsnew";
"hackage2hwn" = dontDistribute super."hackage2hwn";
"hackage2twitter" = dontDistribute super."hackage2twitter";
"hackager" = dontDistribute super."hackager";
@@ -4152,6 +4164,7 @@ self: super: {
"hlibBladeRF" = dontDistribute super."hlibBladeRF";
"hlibev" = dontDistribute super."hlibev";
"hlibfam" = dontDistribute super."hlibfam";
+ "hlibgit2" = doDistribute super."hlibgit2_0_18_0_14";
"hlibsass" = dontDistribute super."hlibsass";
"hlint" = doDistribute super."hlint_1_9_21";
"hlogger" = dontDistribute super."hlogger";
@@ -4422,6 +4435,7 @@ self: super: {
"hspec-meta" = doDistribute super."hspec-meta_2_1_7";
"hspec-monad-control" = dontDistribute super."hspec-monad-control";
"hspec-server" = dontDistribute super."hspec-server";
+ "hspec-setup" = dontDistribute super."hspec-setup";
"hspec-shouldbe" = dontDistribute super."hspec-shouldbe";
"hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0";
"hspec-snap" = dontDistribute super."hspec-snap";
@@ -4520,6 +4534,7 @@ self: super: {
"http-shed" = dontDistribute super."http-shed";
"http-streams" = dontDistribute super."http-streams";
"http-test" = dontDistribute super."http-test";
+ "http-types" = doDistribute super."http-types_0_8_6";
"http-wget" = dontDistribute super."http-wget";
"http2" = dontDistribute super."http2";
"httpd-shed" = dontDistribute super."httpd-shed";
@@ -4658,6 +4673,7 @@ self: super: {
"imgurder" = dontDistribute super."imgurder";
"imm" = dontDistribute super."imm";
"imparse" = dontDistribute super."imparse";
+ "imperative-edsl" = dontDistribute super."imperative-edsl";
"imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl";
"implicit" = dontDistribute super."implicit";
"implicit-params" = dontDistribute super."implicit-params";
@@ -4799,6 +4815,7 @@ self: super: {
"ix-shapable" = dontDistribute super."ix-shapable";
"ixdopp" = dontDistribute super."ixdopp";
"ixmonad" = dontDistribute super."ixmonad";
+ "ixset" = doDistribute super."ixset_1_0_6";
"ixset-typed" = dontDistribute super."ixset-typed";
"iyql" = dontDistribute super."iyql";
"j2hs" = dontDistribute super."j2hs";
@@ -4839,6 +4856,7 @@ self: super: {
"json-autotype" = doDistribute super."json-autotype_0_2_5_13";
"json-b" = dontDistribute super."json-b";
"json-builder" = dontDistribute super."json-builder";
+ "json-encoder" = dontDistribute super."json-encoder";
"json-enumerator" = dontDistribute super."json-enumerator";
"json-extra" = dontDistribute super."json-extra";
"json-fu" = dontDistribute super."json-fu";
@@ -4976,6 +4994,7 @@ self: super: {
"lambdacube-examples" = dontDistribute super."lambdacube-examples";
"lambdacube-gl" = dontDistribute super."lambdacube-gl";
"lambdacube-samples" = dontDistribute super."lambdacube-samples";
+ "lambdatex" = dontDistribute super."lambdatex";
"lambdatwit" = dontDistribute super."lambdatwit";
"lambdiff" = dontDistribute super."lambdiff";
"lame-tester" = dontDistribute super."lame-tester";
@@ -5180,6 +5199,7 @@ self: super: {
"list-fusion-probe" = dontDistribute super."list-fusion-probe";
"list-grouping" = dontDistribute super."list-grouping";
"list-mux" = dontDistribute super."list-mux";
+ "list-prompt" = dontDistribute super."list-prompt";
"list-remote-forwards" = dontDistribute super."list-remote-forwards";
"list-t-attoparsec" = dontDistribute super."list-t-attoparsec";
"list-t-html-parser" = dontDistribute super."list-t-html-parser";
@@ -5223,6 +5243,7 @@ self: super: {
"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-domain" = doDistribute super."log-domain_0_10_1";
@@ -5872,6 +5893,7 @@ self: super: {
"omnifmt" = dontDistribute super."omnifmt";
"on-a-horse" = dontDistribute super."on-a-horse";
"on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel";
+ "once" = dontDistribute super."once";
"one-liner" = dontDistribute super."one-liner";
"one-time-password" = dontDistribute super."one-time-password";
"oneOfN" = dontDistribute super."oneOfN";
@@ -5929,6 +5951,7 @@ self: super: {
"optional" = dontDistribute super."optional";
"optional-args" = dontDistribute super."optional-args";
"options-time" = dontDistribute super."options-time";
+ "optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"orc" = dontDistribute super."orc";
"orchestrate" = dontDistribute super."orchestrate";
@@ -6125,6 +6148,7 @@ self: super: {
"phasechange" = dontDistribute super."phasechange";
"phash" = dontDistribute super."phash";
"phizzle" = dontDistribute super."phizzle";
+ "phoityne" = dontDistribute super."phoityne";
"phone-numbers" = dontDistribute super."phone-numbers";
"phone-push" = dontDistribute super."phone-push";
"phonetic-code" = dontDistribute super."phonetic-code";
@@ -6157,6 +6181,7 @@ self: super: {
"pipes-cereal" = dontDistribute super."pipes-cereal";
"pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus";
"pipes-cliff" = dontDistribute super."pipes-cliff";
+ "pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_3";
"pipes-conduit" = dontDistribute super."pipes-conduit";
"pipes-core" = dontDistribute super."pipes-core";
"pipes-courier" = dontDistribute super."pipes-courier";
@@ -6274,6 +6299,7 @@ self: super: {
"possible" = dontDistribute super."possible";
"post-mess-age" = doDistribute super."post-mess-age_0_1_0_0";
"postcodes" = dontDistribute super."postcodes";
+ "postgresql-binary" = doDistribute super."postgresql-binary_0_5_2_1";
"postgresql-config" = dontDistribute super."postgresql-config";
"postgresql-connector" = dontDistribute super."postgresql-connector";
"postgresql-copy-escape" = dontDistribute super."postgresql-copy-escape";
@@ -6719,6 +6745,7 @@ self: super: {
"rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster";
"retry" = doDistribute super."retry_0_6";
"retryer" = dontDistribute super."retryer";
+ "rev-state" = doDistribute super."rev-state_0_1";
"revdectime" = dontDistribute super."revdectime";
"reverse-apply" = dontDistribute super."reverse-apply";
"reverse-geocoding" = dontDistribute super."reverse-geocoding";
@@ -6953,6 +6980,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serv" = dontDistribute super."serv";
"servant" = doDistribute super."servant_0_2_2";
"servant-JuicyPixels" = dontDistribute super."servant-JuicyPixels";
"servant-blaze" = dontDistribute super."servant-blaze";
@@ -7944,6 +7972,7 @@ self: super: {
"typehash" = dontDistribute super."typehash";
"typelevel" = dontDistribute super."typelevel";
"typelevel-tensor" = dontDistribute super."typelevel-tensor";
+ "typelits-witnesses" = dontDistribute super."typelits-witnesses";
"typeof" = dontDistribute super."typeof";
"typeparams" = dontDistribute super."typeparams";
"types-compat" = dontDistribute super."types-compat";
@@ -8185,6 +8214,7 @@ self: super: {
"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" = dontDistribute super."vty";
diff --git a/pkgs/development/haskell-modules/configuration-lts-2.16.nix b/pkgs/development/haskell-modules/configuration-lts-2.16.nix
index cebef846148..dcd5a1cc4c5 100644
--- a/pkgs/development/haskell-modules/configuration-lts-2.16.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-2.16.nix
@@ -330,6 +330,7 @@ self: super: {
"FormalGrammars" = dontDistribute super."FormalGrammars";
"Foster" = dontDistribute super."Foster";
"FpMLv53" = dontDistribute super."FpMLv53";
+ "FractalArt" = dontDistribute super."FractalArt";
"Fractaler" = dontDistribute super."Fractaler";
"Frames" = dontDistribute super."Frames";
"Frank" = dontDistribute super."Frank";
@@ -481,6 +482,7 @@ self: super: {
"HTTP-Simple" = dontDistribute super."HTTP-Simple";
"HTab" = dontDistribute super."HTab";
"HTicTacToe" = dontDistribute super."HTicTacToe";
+ "HUnit" = doDistribute super."HUnit_1_2_5_2";
"HUnit-Diff" = dontDistribute super."HUnit-Diff";
"HUnit-Plus" = dontDistribute super."HUnit-Plus";
"HUnit-approx" = dontDistribute super."HUnit-approx";
@@ -514,6 +516,7 @@ self: super: {
"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";
@@ -1505,6 +1508,7 @@ self: super: {
"base-io-access" = dontDistribute super."base-io-access";
"base-noprelude" = dontDistribute super."base-noprelude";
"base-orphans" = dontDistribute super."base-orphans";
+ "base-prelude" = doDistribute super."base-prelude_0_1_19";
"base32-bytestring" = dontDistribute super."base32-bytestring";
"base32string" = dontDistribute super."base32string";
"base58-bytestring" = dontDistribute super."base58-bytestring";
@@ -1927,6 +1931,7 @@ self: super: {
"cef" = dontDistribute super."cef";
"ceilometer-common" = dontDistribute super."ceilometer-common";
"cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo";
+ "cerberus" = dontDistribute super."cerberus";
"cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_3";
"cereal-derive" = dontDistribute super."cereal-derive";
"cereal-enumerator" = dontDistribute super."cereal-enumerator";
@@ -2136,6 +2141,7 @@ self: super: {
"concrete-typerep" = dontDistribute super."concrete-typerep";
"concurrent-barrier" = dontDistribute super."concurrent-barrier";
"concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache";
+ "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9";
"concurrent-machines" = dontDistribute super."concurrent-machines";
"concurrent-output" = dontDistribute super."concurrent-output";
"concurrent-sa" = dontDistribute super."concurrent-sa";
@@ -2565,6 +2571,7 @@ self: super: {
"diagrams-solve" = dontDistribute super."diagrams-solve";
"diagrams-svg" = doDistribute super."diagrams-svg_1_1_0_5";
"diagrams-tikz" = dontDistribute super."diagrams-tikz";
+ "dialog" = dontDistribute super."dialog";
"dice" = dontDistribute super."dice";
"dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit";
"dicom" = dontDistribute super."dicom";
@@ -2755,6 +2762,7 @@ self: super: {
"edenskel" = dontDistribute super."edenskel";
"edentv" = dontDistribute super."edentv";
"edge" = dontDistribute super."edge";
+ "edis" = dontDistribute super."edis";
"edit-distance" = doDistribute super."edit-distance_0_2_1_3";
"edit-distance-vector" = dontDistribute super."edit-distance-vector";
"edit-lenses" = dontDistribute super."edit-lenses";
@@ -2949,6 +2957,7 @@ self: super: {
"failable-list" = dontDistribute super."failable-list";
"failure" = dontDistribute super."failure";
"fair-predicates" = dontDistribute super."fair-predicates";
+ "fake-type" = dontDistribute super."fake-type";
"faker" = dontDistribute super."faker";
"falling-turnip" = dontDistribute super."falling-turnip";
"fallingblocks" = dontDistribute super."fallingblocks";
@@ -3166,6 +3175,7 @@ self: super: {
"friday-juicypixels" = dontDistribute super."friday-juicypixels";
"friday-scale-dct" = dontDistribute super."friday-scale-dct";
"friendly-time" = dontDistribute super."friendly-time";
+ "frontmatter" = dontDistribute super."frontmatter";
"frp-arduino" = dontDistribute super."frp-arduino";
"frpnow" = dontDistribute super."frpnow";
"frpnow-gloss" = dontDistribute super."frpnow-gloss";
@@ -3383,6 +3393,7 @@ self: super: {
"gitlib-test" = doDistribute super."gitlib-test_3_1_0_2";
"gitlib-utils" = dontDistribute super."gitlib-utils";
"gitrev" = doDistribute super."gitrev_1_0_0";
+ "gitter" = dontDistribute super."gitter";
"gl-capture" = dontDistribute super."gl-capture";
"glade" = dontDistribute super."glade";
"gladexml-accessor" = dontDistribute super."gladexml-accessor";
@@ -3687,6 +3698,7 @@ self: super: {
"hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP";
"hackage-server" = dontDistribute super."hackage-server";
"hackage-sparks" = dontDistribute super."hackage-sparks";
+ "hackage-whatsnew" = dontDistribute super."hackage-whatsnew";
"hackage2hwn" = dontDistribute super."hackage2hwn";
"hackage2twitter" = dontDistribute super."hackage2twitter";
"hackager" = dontDistribute super."hackager";
@@ -4145,6 +4157,7 @@ self: super: {
"hlibBladeRF" = dontDistribute super."hlibBladeRF";
"hlibev" = dontDistribute super."hlibev";
"hlibfam" = dontDistribute super."hlibfam";
+ "hlibgit2" = doDistribute super."hlibgit2_0_18_0_14";
"hlibsass" = dontDistribute super."hlibsass";
"hlint" = doDistribute super."hlint_1_9_21";
"hlogger" = dontDistribute super."hlogger";
@@ -4415,6 +4428,7 @@ self: super: {
"hspec-meta" = doDistribute super."hspec-meta_2_1_7";
"hspec-monad-control" = dontDistribute super."hspec-monad-control";
"hspec-server" = dontDistribute super."hspec-server";
+ "hspec-setup" = dontDistribute super."hspec-setup";
"hspec-shouldbe" = dontDistribute super."hspec-shouldbe";
"hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0";
"hspec-snap" = dontDistribute super."hspec-snap";
@@ -4513,6 +4527,7 @@ self: super: {
"http-shed" = dontDistribute super."http-shed";
"http-streams" = dontDistribute super."http-streams";
"http-test" = dontDistribute super."http-test";
+ "http-types" = doDistribute super."http-types_0_8_6";
"http-wget" = dontDistribute super."http-wget";
"http2" = dontDistribute super."http2";
"httpd-shed" = dontDistribute super."httpd-shed";
@@ -4651,6 +4666,7 @@ self: super: {
"imgurder" = dontDistribute super."imgurder";
"imm" = dontDistribute super."imm";
"imparse" = dontDistribute super."imparse";
+ "imperative-edsl" = dontDistribute super."imperative-edsl";
"imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl";
"implicit" = dontDistribute super."implicit";
"implicit-params" = dontDistribute super."implicit-params";
@@ -4792,6 +4808,7 @@ self: super: {
"ix-shapable" = dontDistribute super."ix-shapable";
"ixdopp" = dontDistribute super."ixdopp";
"ixmonad" = dontDistribute super."ixmonad";
+ "ixset" = doDistribute super."ixset_1_0_6";
"ixset-typed" = dontDistribute super."ixset-typed";
"iyql" = dontDistribute super."iyql";
"j2hs" = dontDistribute super."j2hs";
@@ -4832,6 +4849,7 @@ self: super: {
"json-autotype" = doDistribute super."json-autotype_0_2_5_13";
"json-b" = dontDistribute super."json-b";
"json-builder" = dontDistribute super."json-builder";
+ "json-encoder" = dontDistribute super."json-encoder";
"json-enumerator" = dontDistribute super."json-enumerator";
"json-extra" = dontDistribute super."json-extra";
"json-fu" = dontDistribute super."json-fu";
@@ -4969,6 +4987,7 @@ self: super: {
"lambdacube-examples" = dontDistribute super."lambdacube-examples";
"lambdacube-gl" = dontDistribute super."lambdacube-gl";
"lambdacube-samples" = dontDistribute super."lambdacube-samples";
+ "lambdatex" = dontDistribute super."lambdatex";
"lambdatwit" = dontDistribute super."lambdatwit";
"lambdiff" = dontDistribute super."lambdiff";
"lame-tester" = dontDistribute super."lame-tester";
@@ -5172,6 +5191,7 @@ self: super: {
"list-fusion-probe" = dontDistribute super."list-fusion-probe";
"list-grouping" = dontDistribute super."list-grouping";
"list-mux" = dontDistribute super."list-mux";
+ "list-prompt" = dontDistribute super."list-prompt";
"list-remote-forwards" = dontDistribute super."list-remote-forwards";
"list-t-attoparsec" = dontDistribute super."list-t-attoparsec";
"list-t-html-parser" = dontDistribute super."list-t-html-parser";
@@ -5215,6 +5235,7 @@ self: super: {
"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-domain" = doDistribute super."log-domain_0_10_1";
@@ -5864,6 +5885,7 @@ self: super: {
"omnifmt" = dontDistribute super."omnifmt";
"on-a-horse" = dontDistribute super."on-a-horse";
"on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel";
+ "once" = dontDistribute super."once";
"one-liner" = dontDistribute super."one-liner";
"one-time-password" = dontDistribute super."one-time-password";
"oneOfN" = dontDistribute super."oneOfN";
@@ -5921,6 +5943,7 @@ self: super: {
"optional" = dontDistribute super."optional";
"optional-args" = dontDistribute super."optional-args";
"options-time" = dontDistribute super."options-time";
+ "optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"orc" = dontDistribute super."orc";
"orchestrate" = dontDistribute super."orchestrate";
@@ -6117,6 +6140,7 @@ self: super: {
"phasechange" = dontDistribute super."phasechange";
"phash" = dontDistribute super."phash";
"phizzle" = dontDistribute super."phizzle";
+ "phoityne" = dontDistribute super."phoityne";
"phone-numbers" = dontDistribute super."phone-numbers";
"phone-push" = dontDistribute super."phone-push";
"phonetic-code" = dontDistribute super."phonetic-code";
@@ -6149,6 +6173,7 @@ self: super: {
"pipes-cereal" = dontDistribute super."pipes-cereal";
"pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus";
"pipes-cliff" = dontDistribute super."pipes-cliff";
+ "pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_3";
"pipes-conduit" = dontDistribute super."pipes-conduit";
"pipes-core" = dontDistribute super."pipes-core";
"pipes-courier" = dontDistribute super."pipes-courier";
@@ -6266,6 +6291,7 @@ self: super: {
"possible" = dontDistribute super."possible";
"post-mess-age" = doDistribute super."post-mess-age_0_1_0_0";
"postcodes" = dontDistribute super."postcodes";
+ "postgresql-binary" = doDistribute super."postgresql-binary_0_5_2_1";
"postgresql-config" = dontDistribute super."postgresql-config";
"postgresql-connector" = dontDistribute super."postgresql-connector";
"postgresql-copy-escape" = dontDistribute super."postgresql-copy-escape";
@@ -6711,6 +6737,7 @@ self: super: {
"rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster";
"retry" = doDistribute super."retry_0_6";
"retryer" = dontDistribute super."retryer";
+ "rev-state" = doDistribute super."rev-state_0_1";
"revdectime" = dontDistribute super."revdectime";
"reverse-apply" = dontDistribute super."reverse-apply";
"reverse-geocoding" = dontDistribute super."reverse-geocoding";
@@ -6945,6 +6972,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serv" = dontDistribute super."serv";
"servant" = doDistribute super."servant_0_2_2";
"servant-JuicyPixels" = dontDistribute super."servant-JuicyPixels";
"servant-blaze" = dontDistribute super."servant-blaze";
@@ -7170,6 +7198,7 @@ self: super: {
"snaplet-coffee" = dontDistribute super."snaplet-coffee";
"snaplet-css-min" = dontDistribute super."snaplet-css-min";
"snaplet-environments" = dontDistribute super."snaplet-environments";
+ "snaplet-fay" = doDistribute super."snaplet-fay_0_3_3_12";
"snaplet-ghcjs" = dontDistribute super."snaplet-ghcjs";
"snaplet-hasql" = dontDistribute super."snaplet-hasql";
"snaplet-haxl" = dontDistribute super."snaplet-haxl";
@@ -7935,6 +7964,7 @@ self: super: {
"typehash" = dontDistribute super."typehash";
"typelevel" = dontDistribute super."typelevel";
"typelevel-tensor" = dontDistribute super."typelevel-tensor";
+ "typelits-witnesses" = dontDistribute super."typelits-witnesses";
"typeof" = dontDistribute super."typeof";
"typeparams" = dontDistribute super."typeparams";
"types-compat" = dontDistribute super."types-compat";
@@ -8176,6 +8206,7 @@ self: super: {
"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" = dontDistribute super."vty";
diff --git a/pkgs/development/haskell-modules/configuration-lts-2.17.nix b/pkgs/development/haskell-modules/configuration-lts-2.17.nix
index 5d66775b49e..cd7bd1d5b4e 100644
--- a/pkgs/development/haskell-modules/configuration-lts-2.17.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-2.17.nix
@@ -330,6 +330,7 @@ self: super: {
"FormalGrammars" = dontDistribute super."FormalGrammars";
"Foster" = dontDistribute super."Foster";
"FpMLv53" = dontDistribute super."FpMLv53";
+ "FractalArt" = dontDistribute super."FractalArt";
"Fractaler" = dontDistribute super."Fractaler";
"Frames" = dontDistribute super."Frames";
"Frank" = dontDistribute super."Frank";
@@ -481,6 +482,7 @@ self: super: {
"HTTP-Simple" = dontDistribute super."HTTP-Simple";
"HTab" = dontDistribute super."HTab";
"HTicTacToe" = dontDistribute super."HTicTacToe";
+ "HUnit" = doDistribute super."HUnit_1_2_5_2";
"HUnit-Diff" = dontDistribute super."HUnit-Diff";
"HUnit-Plus" = dontDistribute super."HUnit-Plus";
"HUnit-approx" = dontDistribute super."HUnit-approx";
@@ -514,6 +516,7 @@ self: super: {
"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";
@@ -1437,6 +1440,7 @@ self: super: {
"authinfo-hs" = dontDistribute super."authinfo-hs";
"authoring" = dontDistribute super."authoring";
"auto" = dontDistribute super."auto";
+ "auto-update" = doDistribute super."auto-update_0_1_2_2";
"autonix-deps" = dontDistribute super."autonix-deps";
"autonix-deps-kf5" = dontDistribute super."autonix-deps-kf5";
"autoproc" = dontDistribute super."autoproc";
@@ -1503,6 +1507,7 @@ self: super: {
"base-io-access" = dontDistribute super."base-io-access";
"base-noprelude" = dontDistribute super."base-noprelude";
"base-orphans" = dontDistribute super."base-orphans";
+ "base-prelude" = doDistribute super."base-prelude_0_1_19";
"base32-bytestring" = dontDistribute super."base32-bytestring";
"base32string" = dontDistribute super."base32string";
"base58-bytestring" = dontDistribute super."base58-bytestring";
@@ -1924,6 +1929,7 @@ self: super: {
"cef" = dontDistribute super."cef";
"ceilometer-common" = dontDistribute super."ceilometer-common";
"cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo";
+ "cerberus" = dontDistribute super."cerberus";
"cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_3";
"cereal-derive" = dontDistribute super."cereal-derive";
"cereal-enumerator" = dontDistribute super."cereal-enumerator";
@@ -2133,6 +2139,7 @@ self: super: {
"concrete-typerep" = dontDistribute super."concrete-typerep";
"concurrent-barrier" = dontDistribute super."concurrent-barrier";
"concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache";
+ "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9";
"concurrent-machines" = dontDistribute super."concurrent-machines";
"concurrent-output" = dontDistribute super."concurrent-output";
"concurrent-sa" = dontDistribute super."concurrent-sa";
@@ -2562,6 +2569,7 @@ self: super: {
"diagrams-solve" = dontDistribute super."diagrams-solve";
"diagrams-svg" = doDistribute super."diagrams-svg_1_1_0_5";
"diagrams-tikz" = dontDistribute super."diagrams-tikz";
+ "dialog" = dontDistribute super."dialog";
"dice" = dontDistribute super."dice";
"dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit";
"dicom" = dontDistribute super."dicom";
@@ -2752,6 +2760,7 @@ self: super: {
"edenskel" = dontDistribute super."edenskel";
"edentv" = dontDistribute super."edentv";
"edge" = dontDistribute super."edge";
+ "edis" = dontDistribute super."edis";
"edit-distance" = doDistribute super."edit-distance_0_2_1_3";
"edit-distance-vector" = dontDistribute super."edit-distance-vector";
"edit-lenses" = dontDistribute super."edit-lenses";
@@ -2945,6 +2954,7 @@ self: super: {
"failable-list" = dontDistribute super."failable-list";
"failure" = dontDistribute super."failure";
"fair-predicates" = dontDistribute super."fair-predicates";
+ "fake-type" = dontDistribute super."fake-type";
"faker" = dontDistribute super."faker";
"falling-turnip" = dontDistribute super."falling-turnip";
"fallingblocks" = dontDistribute super."fallingblocks";
@@ -3161,6 +3171,7 @@ self: super: {
"friday-juicypixels" = dontDistribute super."friday-juicypixels";
"friday-scale-dct" = dontDistribute super."friday-scale-dct";
"friendly-time" = dontDistribute super."friendly-time";
+ "frontmatter" = dontDistribute super."frontmatter";
"frp-arduino" = dontDistribute super."frp-arduino";
"frpnow" = dontDistribute super."frpnow";
"frpnow-gloss" = dontDistribute super."frpnow-gloss";
@@ -3377,6 +3388,7 @@ self: super: {
"gitlib-test" = doDistribute super."gitlib-test_3_1_0_2";
"gitlib-utils" = dontDistribute super."gitlib-utils";
"gitrev" = doDistribute super."gitrev_1_0_0";
+ "gitter" = dontDistribute super."gitter";
"gl-capture" = dontDistribute super."gl-capture";
"glade" = dontDistribute super."glade";
"gladexml-accessor" = dontDistribute super."gladexml-accessor";
@@ -3681,6 +3693,7 @@ self: super: {
"hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP";
"hackage-server" = dontDistribute super."hackage-server";
"hackage-sparks" = dontDistribute super."hackage-sparks";
+ "hackage-whatsnew" = dontDistribute super."hackage-whatsnew";
"hackage2hwn" = dontDistribute super."hackage2hwn";
"hackage2twitter" = dontDistribute super."hackage2twitter";
"hackager" = dontDistribute super."hackager";
@@ -3839,6 +3852,7 @@ self: super: {
"haskell-in-space" = dontDistribute super."haskell-in-space";
"haskell-modbus" = dontDistribute super."haskell-modbus";
"haskell-mpi" = dontDistribute super."haskell-mpi";
+ "haskell-names" = doDistribute super."haskell-names_0_5_3";
"haskell-neo4j-client" = dontDistribute super."haskell-neo4j-client";
"haskell-openflow" = dontDistribute super."haskell-openflow";
"haskell-packages" = doDistribute super."haskell-packages_0_2_4_4";
@@ -4138,6 +4152,7 @@ self: super: {
"hlibBladeRF" = dontDistribute super."hlibBladeRF";
"hlibev" = dontDistribute super."hlibev";
"hlibfam" = dontDistribute super."hlibfam";
+ "hlibgit2" = doDistribute super."hlibgit2_0_18_0_14";
"hlibsass" = dontDistribute super."hlibsass";
"hlint" = doDistribute super."hlint_1_9_21";
"hlogger" = dontDistribute super."hlogger";
@@ -4408,6 +4423,7 @@ self: super: {
"hspec-meta" = doDistribute super."hspec-meta_2_1_7";
"hspec-monad-control" = dontDistribute super."hspec-monad-control";
"hspec-server" = dontDistribute super."hspec-server";
+ "hspec-setup" = dontDistribute super."hspec-setup";
"hspec-shouldbe" = dontDistribute super."hspec-shouldbe";
"hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0";
"hspec-snap" = dontDistribute super."hspec-snap";
@@ -4506,6 +4522,7 @@ self: super: {
"http-shed" = dontDistribute super."http-shed";
"http-streams" = dontDistribute super."http-streams";
"http-test" = dontDistribute super."http-test";
+ "http-types" = doDistribute super."http-types_0_8_6";
"http-wget" = dontDistribute super."http-wget";
"http2" = dontDistribute super."http2";
"httpd-shed" = dontDistribute super."httpd-shed";
@@ -4644,6 +4661,7 @@ self: super: {
"imgurder" = dontDistribute super."imgurder";
"imm" = dontDistribute super."imm";
"imparse" = dontDistribute super."imparse";
+ "imperative-edsl" = dontDistribute super."imperative-edsl";
"imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl";
"implicit" = dontDistribute super."implicit";
"implicit-params" = dontDistribute super."implicit-params";
@@ -4785,6 +4803,7 @@ self: super: {
"ix-shapable" = dontDistribute super."ix-shapable";
"ixdopp" = dontDistribute super."ixdopp";
"ixmonad" = dontDistribute super."ixmonad";
+ "ixset" = doDistribute super."ixset_1_0_6";
"ixset-typed" = dontDistribute super."ixset-typed";
"iyql" = dontDistribute super."iyql";
"j2hs" = dontDistribute super."j2hs";
@@ -4825,6 +4844,7 @@ self: super: {
"json-autotype" = doDistribute super."json-autotype_0_2_5_13";
"json-b" = dontDistribute super."json-b";
"json-builder" = dontDistribute super."json-builder";
+ "json-encoder" = dontDistribute super."json-encoder";
"json-enumerator" = dontDistribute super."json-enumerator";
"json-extra" = dontDistribute super."json-extra";
"json-fu" = dontDistribute super."json-fu";
@@ -4962,6 +4982,7 @@ self: super: {
"lambdacube-examples" = dontDistribute super."lambdacube-examples";
"lambdacube-gl" = dontDistribute super."lambdacube-gl";
"lambdacube-samples" = dontDistribute super."lambdacube-samples";
+ "lambdatex" = dontDistribute super."lambdatex";
"lambdatwit" = dontDistribute super."lambdatwit";
"lambdiff" = dontDistribute super."lambdiff";
"lame-tester" = dontDistribute super."lame-tester";
@@ -5165,6 +5186,7 @@ self: super: {
"list-fusion-probe" = dontDistribute super."list-fusion-probe";
"list-grouping" = dontDistribute super."list-grouping";
"list-mux" = dontDistribute super."list-mux";
+ "list-prompt" = dontDistribute super."list-prompt";
"list-remote-forwards" = dontDistribute super."list-remote-forwards";
"list-t-attoparsec" = dontDistribute super."list-t-attoparsec";
"list-t-html-parser" = dontDistribute super."list-t-html-parser";
@@ -5208,6 +5230,7 @@ self: super: {
"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-domain" = doDistribute super."log-domain_0_10_1";
@@ -5856,6 +5879,7 @@ self: super: {
"omnifmt" = dontDistribute super."omnifmt";
"on-a-horse" = dontDistribute super."on-a-horse";
"on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel";
+ "once" = dontDistribute super."once";
"one-liner" = dontDistribute super."one-liner";
"one-time-password" = dontDistribute super."one-time-password";
"oneOfN" = dontDistribute super."oneOfN";
@@ -5913,6 +5937,7 @@ self: super: {
"optional" = dontDistribute super."optional";
"optional-args" = dontDistribute super."optional-args";
"options-time" = dontDistribute super."options-time";
+ "optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"orc" = dontDistribute super."orc";
"orchestrate" = dontDistribute super."orchestrate";
@@ -6109,6 +6134,7 @@ self: super: {
"phasechange" = dontDistribute super."phasechange";
"phash" = dontDistribute super."phash";
"phizzle" = dontDistribute super."phizzle";
+ "phoityne" = dontDistribute super."phoityne";
"phone-numbers" = dontDistribute super."phone-numbers";
"phone-push" = dontDistribute super."phone-push";
"phonetic-code" = dontDistribute super."phonetic-code";
@@ -6141,6 +6167,7 @@ self: super: {
"pipes-cereal" = dontDistribute super."pipes-cereal";
"pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus";
"pipes-cliff" = dontDistribute super."pipes-cliff";
+ "pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_3";
"pipes-conduit" = dontDistribute super."pipes-conduit";
"pipes-core" = dontDistribute super."pipes-core";
"pipes-courier" = dontDistribute super."pipes-courier";
@@ -6258,6 +6285,7 @@ self: super: {
"possible" = dontDistribute super."possible";
"post-mess-age" = doDistribute super."post-mess-age_0_1_0_0";
"postcodes" = dontDistribute super."postcodes";
+ "postgresql-binary" = doDistribute super."postgresql-binary_0_5_2_1";
"postgresql-config" = dontDistribute super."postgresql-config";
"postgresql-connector" = dontDistribute super."postgresql-connector";
"postgresql-copy-escape" = dontDistribute super."postgresql-copy-escape";
@@ -6702,6 +6730,7 @@ self: super: {
"rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster";
"retry" = doDistribute super."retry_0_6";
"retryer" = dontDistribute super."retryer";
+ "rev-state" = doDistribute super."rev-state_0_1";
"revdectime" = dontDistribute super."revdectime";
"reverse-apply" = dontDistribute super."reverse-apply";
"reverse-geocoding" = dontDistribute super."reverse-geocoding";
@@ -6936,6 +6965,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serv" = dontDistribute super."serv";
"servant" = doDistribute super."servant_0_2_2";
"servant-JuicyPixels" = dontDistribute super."servant-JuicyPixels";
"servant-blaze" = dontDistribute super."servant-blaze";
@@ -7161,6 +7191,7 @@ self: super: {
"snaplet-coffee" = dontDistribute super."snaplet-coffee";
"snaplet-css-min" = dontDistribute super."snaplet-css-min";
"snaplet-environments" = dontDistribute super."snaplet-environments";
+ "snaplet-fay" = doDistribute super."snaplet-fay_0_3_3_12";
"snaplet-ghcjs" = dontDistribute super."snaplet-ghcjs";
"snaplet-hasql" = dontDistribute super."snaplet-hasql";
"snaplet-haxl" = dontDistribute super."snaplet-haxl";
@@ -7926,6 +7957,7 @@ self: super: {
"typehash" = dontDistribute super."typehash";
"typelevel" = dontDistribute super."typelevel";
"typelevel-tensor" = dontDistribute super."typelevel-tensor";
+ "typelits-witnesses" = dontDistribute super."typelits-witnesses";
"typeof" = dontDistribute super."typeof";
"typeparams" = dontDistribute super."typeparams";
"types-compat" = dontDistribute super."types-compat";
@@ -8167,6 +8199,7 @@ self: super: {
"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" = dontDistribute super."vty";
diff --git a/pkgs/development/haskell-modules/configuration-lts-2.18.nix b/pkgs/development/haskell-modules/configuration-lts-2.18.nix
index 8f3048c29e7..ce2067384fe 100644
--- a/pkgs/development/haskell-modules/configuration-lts-2.18.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-2.18.nix
@@ -330,6 +330,7 @@ self: super: {
"FormalGrammars" = dontDistribute super."FormalGrammars";
"Foster" = dontDistribute super."Foster";
"FpMLv53" = dontDistribute super."FpMLv53";
+ "FractalArt" = dontDistribute super."FractalArt";
"Fractaler" = dontDistribute super."Fractaler";
"Frames" = dontDistribute super."Frames";
"Frank" = dontDistribute super."Frank";
@@ -481,6 +482,7 @@ self: super: {
"HTTP-Simple" = dontDistribute super."HTTP-Simple";
"HTab" = dontDistribute super."HTab";
"HTicTacToe" = dontDistribute super."HTicTacToe";
+ "HUnit" = doDistribute super."HUnit_1_2_5_2";
"HUnit-Diff" = dontDistribute super."HUnit-Diff";
"HUnit-Plus" = dontDistribute super."HUnit-Plus";
"HUnit-approx" = dontDistribute super."HUnit-approx";
@@ -514,6 +516,7 @@ self: super: {
"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";
@@ -1437,6 +1440,7 @@ self: super: {
"authinfo-hs" = dontDistribute super."authinfo-hs";
"authoring" = dontDistribute super."authoring";
"auto" = dontDistribute super."auto";
+ "auto-update" = doDistribute super."auto-update_0_1_2_2";
"autonix-deps" = dontDistribute super."autonix-deps";
"autonix-deps-kf5" = dontDistribute super."autonix-deps-kf5";
"autoproc" = dontDistribute super."autoproc";
@@ -1503,6 +1507,7 @@ self: super: {
"base-io-access" = dontDistribute super."base-io-access";
"base-noprelude" = dontDistribute super."base-noprelude";
"base-orphans" = dontDistribute super."base-orphans";
+ "base-prelude" = doDistribute super."base-prelude_0_1_19";
"base32-bytestring" = dontDistribute super."base32-bytestring";
"base32string" = dontDistribute super."base32string";
"base58-bytestring" = dontDistribute super."base58-bytestring";
@@ -1724,6 +1729,7 @@ self: super: {
"bot" = dontDistribute super."bot";
"both" = dontDistribute super."both";
"botpp" = dontDistribute super."botpp";
+ "bound" = doDistribute super."bound_1_0_6";
"bound-gen" = dontDistribute super."bound-gen";
"bounded-tchan" = dontDistribute super."bounded-tchan";
"boundingboxes" = dontDistribute super."boundingboxes";
@@ -1922,6 +1928,7 @@ self: super: {
"cef" = dontDistribute super."cef";
"ceilometer-common" = dontDistribute super."ceilometer-common";
"cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo";
+ "cerberus" = dontDistribute super."cerberus";
"cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_3";
"cereal-derive" = dontDistribute super."cereal-derive";
"cereal-enumerator" = dontDistribute super."cereal-enumerator";
@@ -2131,6 +2138,7 @@ self: super: {
"concrete-typerep" = dontDistribute super."concrete-typerep";
"concurrent-barrier" = dontDistribute super."concurrent-barrier";
"concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache";
+ "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9";
"concurrent-machines" = dontDistribute super."concurrent-machines";
"concurrent-output" = dontDistribute super."concurrent-output";
"concurrent-sa" = dontDistribute super."concurrent-sa";
@@ -2560,6 +2568,7 @@ self: super: {
"diagrams-solve" = dontDistribute super."diagrams-solve";
"diagrams-svg" = doDistribute super."diagrams-svg_1_1_0_5";
"diagrams-tikz" = dontDistribute super."diagrams-tikz";
+ "dialog" = dontDistribute super."dialog";
"dice" = dontDistribute super."dice";
"dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit";
"dicom" = dontDistribute super."dicom";
@@ -2750,6 +2759,7 @@ self: super: {
"edenskel" = dontDistribute super."edenskel";
"edentv" = dontDistribute super."edentv";
"edge" = dontDistribute super."edge";
+ "edis" = dontDistribute super."edis";
"edit-distance-vector" = dontDistribute super."edit-distance-vector";
"edit-lenses" = dontDistribute super."edit-lenses";
"edit-lenses-demo" = dontDistribute super."edit-lenses-demo";
@@ -2942,6 +2952,7 @@ self: super: {
"failable-list" = dontDistribute super."failable-list";
"failure" = dontDistribute super."failure";
"fair-predicates" = dontDistribute super."fair-predicates";
+ "fake-type" = dontDistribute super."fake-type";
"faker" = dontDistribute super."faker";
"falling-turnip" = dontDistribute super."falling-turnip";
"fallingblocks" = dontDistribute super."fallingblocks";
@@ -3158,6 +3169,7 @@ self: super: {
"friday-juicypixels" = dontDistribute super."friday-juicypixels";
"friday-scale-dct" = dontDistribute super."friday-scale-dct";
"friendly-time" = dontDistribute super."friendly-time";
+ "frontmatter" = dontDistribute super."frontmatter";
"frp-arduino" = dontDistribute super."frp-arduino";
"frpnow" = dontDistribute super."frpnow";
"frpnow-gloss" = dontDistribute super."frpnow-gloss";
@@ -3374,6 +3386,7 @@ self: super: {
"gitlib-test" = doDistribute super."gitlib-test_3_1_0_2";
"gitlib-utils" = dontDistribute super."gitlib-utils";
"gitrev" = doDistribute super."gitrev_1_0_0";
+ "gitter" = dontDistribute super."gitter";
"gl-capture" = dontDistribute super."gl-capture";
"glade" = dontDistribute super."glade";
"gladexml-accessor" = dontDistribute super."gladexml-accessor";
@@ -3585,6 +3598,7 @@ self: super: {
"gstreamer" = dontDistribute super."gstreamer";
"gt-tools" = dontDistribute super."gt-tools";
"gtfs" = dontDistribute super."gtfs";
+ "gtk" = doDistribute super."gtk_0_13_9";
"gtk-helpers" = dontDistribute super."gtk-helpers";
"gtk-jsinput" = dontDistribute super."gtk-jsinput";
"gtk-largeTreeStore" = dontDistribute super."gtk-largeTreeStore";
@@ -3677,6 +3691,7 @@ self: super: {
"hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP";
"hackage-server" = dontDistribute super."hackage-server";
"hackage-sparks" = dontDistribute super."hackage-sparks";
+ "hackage-whatsnew" = dontDistribute super."hackage-whatsnew";
"hackage2hwn" = dontDistribute super."hackage2hwn";
"hackage2twitter" = dontDistribute super."hackage2twitter";
"hackager" = dontDistribute super."hackager";
@@ -3835,6 +3850,7 @@ self: super: {
"haskell-in-space" = dontDistribute super."haskell-in-space";
"haskell-modbus" = dontDistribute super."haskell-modbus";
"haskell-mpi" = dontDistribute super."haskell-mpi";
+ "haskell-names" = doDistribute super."haskell-names_0_5_3";
"haskell-neo4j-client" = dontDistribute super."haskell-neo4j-client";
"haskell-openflow" = dontDistribute super."haskell-openflow";
"haskell-packages" = doDistribute super."haskell-packages_0_2_4_4";
@@ -4133,6 +4149,7 @@ self: super: {
"hlibBladeRF" = dontDistribute super."hlibBladeRF";
"hlibev" = dontDistribute super."hlibev";
"hlibfam" = dontDistribute super."hlibfam";
+ "hlibgit2" = doDistribute super."hlibgit2_0_18_0_14";
"hlibsass" = dontDistribute super."hlibsass";
"hlint" = doDistribute super."hlint_1_9_21";
"hlogger" = dontDistribute super."hlogger";
@@ -4403,6 +4420,7 @@ self: super: {
"hspec-meta" = doDistribute super."hspec-meta_2_1_7";
"hspec-monad-control" = dontDistribute super."hspec-monad-control";
"hspec-server" = dontDistribute super."hspec-server";
+ "hspec-setup" = dontDistribute super."hspec-setup";
"hspec-shouldbe" = dontDistribute super."hspec-shouldbe";
"hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0";
"hspec-snap" = dontDistribute super."hspec-snap";
@@ -4501,6 +4519,7 @@ self: super: {
"http-shed" = dontDistribute super."http-shed";
"http-streams" = dontDistribute super."http-streams";
"http-test" = dontDistribute super."http-test";
+ "http-types" = doDistribute super."http-types_0_8_6";
"http-wget" = dontDistribute super."http-wget";
"http2" = dontDistribute super."http2";
"httpd-shed" = dontDistribute super."httpd-shed";
@@ -4639,6 +4658,7 @@ self: super: {
"imgurder" = dontDistribute super."imgurder";
"imm" = dontDistribute super."imm";
"imparse" = dontDistribute super."imparse";
+ "imperative-edsl" = dontDistribute super."imperative-edsl";
"imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl";
"implicit" = dontDistribute super."implicit";
"implicit-params" = dontDistribute super."implicit-params";
@@ -4780,6 +4800,7 @@ self: super: {
"ix-shapable" = dontDistribute super."ix-shapable";
"ixdopp" = dontDistribute super."ixdopp";
"ixmonad" = dontDistribute super."ixmonad";
+ "ixset" = doDistribute super."ixset_1_0_6";
"ixset-typed" = dontDistribute super."ixset-typed";
"iyql" = dontDistribute super."iyql";
"j2hs" = dontDistribute super."j2hs";
@@ -4820,6 +4841,7 @@ self: super: {
"json-autotype" = doDistribute super."json-autotype_0_2_5_13";
"json-b" = dontDistribute super."json-b";
"json-builder" = dontDistribute super."json-builder";
+ "json-encoder" = dontDistribute super."json-encoder";
"json-enumerator" = dontDistribute super."json-enumerator";
"json-extra" = dontDistribute super."json-extra";
"json-fu" = dontDistribute super."json-fu";
@@ -4957,6 +4979,7 @@ self: super: {
"lambdacube-examples" = dontDistribute super."lambdacube-examples";
"lambdacube-gl" = dontDistribute super."lambdacube-gl";
"lambdacube-samples" = dontDistribute super."lambdacube-samples";
+ "lambdatex" = dontDistribute super."lambdatex";
"lambdatwit" = dontDistribute super."lambdatwit";
"lambdiff" = dontDistribute super."lambdiff";
"lame-tester" = dontDistribute super."lame-tester";
@@ -5160,6 +5183,7 @@ self: super: {
"list-fusion-probe" = dontDistribute super."list-fusion-probe";
"list-grouping" = dontDistribute super."list-grouping";
"list-mux" = dontDistribute super."list-mux";
+ "list-prompt" = dontDistribute super."list-prompt";
"list-remote-forwards" = dontDistribute super."list-remote-forwards";
"list-t-attoparsec" = dontDistribute super."list-t-attoparsec";
"list-t-html-parser" = dontDistribute super."list-t-html-parser";
@@ -5203,6 +5227,7 @@ self: super: {
"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-domain" = doDistribute super."log-domain_0_10_1_1";
@@ -5850,6 +5875,7 @@ self: super: {
"omnifmt" = dontDistribute super."omnifmt";
"on-a-horse" = dontDistribute super."on-a-horse";
"on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel";
+ "once" = dontDistribute super."once";
"one-liner" = dontDistribute super."one-liner";
"one-time-password" = dontDistribute super."one-time-password";
"oneOfN" = dontDistribute super."oneOfN";
@@ -5907,6 +5933,7 @@ self: super: {
"optional" = dontDistribute super."optional";
"optional-args" = dontDistribute super."optional-args";
"options-time" = dontDistribute super."options-time";
+ "optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"orc" = dontDistribute super."orc";
"orchestrate" = dontDistribute super."orchestrate";
@@ -6103,6 +6130,7 @@ self: super: {
"phasechange" = dontDistribute super."phasechange";
"phash" = dontDistribute super."phash";
"phizzle" = dontDistribute super."phizzle";
+ "phoityne" = dontDistribute super."phoityne";
"phone-numbers" = dontDistribute super."phone-numbers";
"phone-push" = dontDistribute super."phone-push";
"phonetic-code" = dontDistribute super."phonetic-code";
@@ -6135,6 +6163,7 @@ self: super: {
"pipes-cereal" = dontDistribute super."pipes-cereal";
"pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus";
"pipes-cliff" = dontDistribute super."pipes-cliff";
+ "pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_3";
"pipes-conduit" = dontDistribute super."pipes-conduit";
"pipes-core" = dontDistribute super."pipes-core";
"pipes-courier" = dontDistribute super."pipes-courier";
@@ -6251,6 +6280,7 @@ self: super: {
"possible" = dontDistribute super."possible";
"post-mess-age" = doDistribute super."post-mess-age_0_1_0_0";
"postcodes" = dontDistribute super."postcodes";
+ "postgresql-binary" = doDistribute super."postgresql-binary_0_5_2_1";
"postgresql-config" = dontDistribute super."postgresql-config";
"postgresql-connector" = dontDistribute super."postgresql-connector";
"postgresql-copy-escape" = dontDistribute super."postgresql-copy-escape";
@@ -6695,6 +6725,7 @@ self: super: {
"rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster";
"retry" = doDistribute super."retry_0_6";
"retryer" = dontDistribute super."retryer";
+ "rev-state" = doDistribute super."rev-state_0_1";
"revdectime" = dontDistribute super."revdectime";
"reverse-apply" = dontDistribute super."reverse-apply";
"reverse-geocoding" = dontDistribute super."reverse-geocoding";
@@ -6929,6 +6960,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serv" = dontDistribute super."serv";
"servant" = doDistribute super."servant_0_2_2";
"servant-JuicyPixels" = dontDistribute super."servant-JuicyPixels";
"servant-blaze" = dontDistribute super."servant-blaze";
@@ -7154,6 +7186,7 @@ self: super: {
"snaplet-coffee" = dontDistribute super."snaplet-coffee";
"snaplet-css-min" = dontDistribute super."snaplet-css-min";
"snaplet-environments" = dontDistribute super."snaplet-environments";
+ "snaplet-fay" = doDistribute super."snaplet-fay_0_3_3_12";
"snaplet-ghcjs" = dontDistribute super."snaplet-ghcjs";
"snaplet-hasql" = dontDistribute super."snaplet-hasql";
"snaplet-haxl" = dontDistribute super."snaplet-haxl";
@@ -7918,6 +7951,7 @@ self: super: {
"typehash" = dontDistribute super."typehash";
"typelevel" = dontDistribute super."typelevel";
"typelevel-tensor" = dontDistribute super."typelevel-tensor";
+ "typelits-witnesses" = dontDistribute super."typelits-witnesses";
"typeof" = dontDistribute super."typeof";
"typeparams" = dontDistribute super."typeparams";
"types-compat" = dontDistribute super."types-compat";
@@ -8159,6 +8193,7 @@ self: super: {
"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" = dontDistribute super."vty";
diff --git a/pkgs/development/haskell-modules/configuration-lts-2.19.nix b/pkgs/development/haskell-modules/configuration-lts-2.19.nix
index fd4812219ec..7496f0ff744 100644
--- a/pkgs/development/haskell-modules/configuration-lts-2.19.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-2.19.nix
@@ -330,6 +330,7 @@ self: super: {
"FormalGrammars" = dontDistribute super."FormalGrammars";
"Foster" = dontDistribute super."Foster";
"FpMLv53" = dontDistribute super."FpMLv53";
+ "FractalArt" = dontDistribute super."FractalArt";
"Fractaler" = dontDistribute super."Fractaler";
"Frames" = dontDistribute super."Frames";
"Frank" = dontDistribute super."Frank";
@@ -481,6 +482,7 @@ self: super: {
"HTTP-Simple" = dontDistribute super."HTTP-Simple";
"HTab" = dontDistribute super."HTab";
"HTicTacToe" = dontDistribute super."HTicTacToe";
+ "HUnit" = doDistribute super."HUnit_1_2_5_2";
"HUnit-Diff" = dontDistribute super."HUnit-Diff";
"HUnit-Plus" = dontDistribute super."HUnit-Plus";
"HUnit-approx" = dontDistribute super."HUnit-approx";
@@ -514,6 +516,7 @@ self: super: {
"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";
@@ -1437,6 +1440,7 @@ self: super: {
"authinfo-hs" = dontDistribute super."authinfo-hs";
"authoring" = dontDistribute super."authoring";
"auto" = dontDistribute super."auto";
+ "auto-update" = doDistribute super."auto-update_0_1_2_2";
"autonix-deps" = dontDistribute super."autonix-deps";
"autonix-deps-kf5" = dontDistribute super."autonix-deps-kf5";
"autoproc" = dontDistribute super."autoproc";
@@ -1503,6 +1507,7 @@ self: super: {
"base-io-access" = dontDistribute super."base-io-access";
"base-noprelude" = dontDistribute super."base-noprelude";
"base-orphans" = dontDistribute super."base-orphans";
+ "base-prelude" = doDistribute super."base-prelude_0_1_19";
"base32-bytestring" = dontDistribute super."base32-bytestring";
"base32string" = dontDistribute super."base32string";
"base58-bytestring" = dontDistribute super."base58-bytestring";
@@ -1724,6 +1729,7 @@ self: super: {
"bot" = dontDistribute super."bot";
"both" = dontDistribute super."both";
"botpp" = dontDistribute super."botpp";
+ "bound" = doDistribute super."bound_1_0_6";
"bound-gen" = dontDistribute super."bound-gen";
"bounded-tchan" = dontDistribute super."bounded-tchan";
"boundingboxes" = dontDistribute super."boundingboxes";
@@ -1922,6 +1928,7 @@ self: super: {
"cef" = dontDistribute super."cef";
"ceilometer-common" = dontDistribute super."ceilometer-common";
"cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo";
+ "cerberus" = dontDistribute super."cerberus";
"cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_3";
"cereal-derive" = dontDistribute super."cereal-derive";
"cereal-enumerator" = dontDistribute super."cereal-enumerator";
@@ -2131,6 +2138,7 @@ self: super: {
"concrete-typerep" = dontDistribute super."concrete-typerep";
"concurrent-barrier" = dontDistribute super."concurrent-barrier";
"concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache";
+ "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9";
"concurrent-machines" = dontDistribute super."concurrent-machines";
"concurrent-output" = dontDistribute super."concurrent-output";
"concurrent-sa" = dontDistribute super."concurrent-sa";
@@ -2560,6 +2568,7 @@ self: super: {
"diagrams-solve" = dontDistribute super."diagrams-solve";
"diagrams-svg" = doDistribute super."diagrams-svg_1_1_0_5";
"diagrams-tikz" = dontDistribute super."diagrams-tikz";
+ "dialog" = dontDistribute super."dialog";
"dice" = dontDistribute super."dice";
"dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit";
"dicom" = dontDistribute super."dicom";
@@ -2750,6 +2759,7 @@ self: super: {
"edenskel" = dontDistribute super."edenskel";
"edentv" = dontDistribute super."edentv";
"edge" = dontDistribute super."edge";
+ "edis" = dontDistribute super."edis";
"edit-distance-vector" = dontDistribute super."edit-distance-vector";
"edit-lenses" = dontDistribute super."edit-lenses";
"edit-lenses-demo" = dontDistribute super."edit-lenses-demo";
@@ -2942,6 +2952,7 @@ self: super: {
"failable-list" = dontDistribute super."failable-list";
"failure" = dontDistribute super."failure";
"fair-predicates" = dontDistribute super."fair-predicates";
+ "fake-type" = dontDistribute super."fake-type";
"faker" = dontDistribute super."faker";
"falling-turnip" = dontDistribute super."falling-turnip";
"fallingblocks" = dontDistribute super."fallingblocks";
@@ -3157,6 +3168,7 @@ self: super: {
"friday-juicypixels" = dontDistribute super."friday-juicypixels";
"friday-scale-dct" = dontDistribute super."friday-scale-dct";
"friendly-time" = dontDistribute super."friendly-time";
+ "frontmatter" = dontDistribute super."frontmatter";
"frp-arduino" = dontDistribute super."frp-arduino";
"frpnow" = dontDistribute super."frpnow";
"frpnow-gloss" = dontDistribute super."frpnow-gloss";
@@ -3373,6 +3385,7 @@ self: super: {
"gitlib-test" = doDistribute super."gitlib-test_3_1_0_2";
"gitlib-utils" = dontDistribute super."gitlib-utils";
"gitrev" = doDistribute super."gitrev_1_0_0";
+ "gitter" = dontDistribute super."gitter";
"gl-capture" = dontDistribute super."gl-capture";
"glade" = dontDistribute super."glade";
"gladexml-accessor" = dontDistribute super."gladexml-accessor";
@@ -3584,6 +3597,7 @@ self: super: {
"gstreamer" = dontDistribute super."gstreamer";
"gt-tools" = dontDistribute super."gt-tools";
"gtfs" = dontDistribute super."gtfs";
+ "gtk" = doDistribute super."gtk_0_13_9";
"gtk-helpers" = dontDistribute super."gtk-helpers";
"gtk-jsinput" = dontDistribute super."gtk-jsinput";
"gtk-largeTreeStore" = dontDistribute super."gtk-largeTreeStore";
@@ -3676,6 +3690,7 @@ self: super: {
"hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP";
"hackage-server" = dontDistribute super."hackage-server";
"hackage-sparks" = dontDistribute super."hackage-sparks";
+ "hackage-whatsnew" = dontDistribute super."hackage-whatsnew";
"hackage2hwn" = dontDistribute super."hackage2hwn";
"hackage2twitter" = dontDistribute super."hackage2twitter";
"hackager" = dontDistribute super."hackager";
@@ -3834,6 +3849,7 @@ self: super: {
"haskell-in-space" = dontDistribute super."haskell-in-space";
"haskell-modbus" = dontDistribute super."haskell-modbus";
"haskell-mpi" = dontDistribute super."haskell-mpi";
+ "haskell-names" = doDistribute super."haskell-names_0_5_3";
"haskell-neo4j-client" = dontDistribute super."haskell-neo4j-client";
"haskell-openflow" = dontDistribute super."haskell-openflow";
"haskell-packages" = doDistribute super."haskell-packages_0_2_4_4";
@@ -4132,6 +4148,7 @@ self: super: {
"hlibBladeRF" = dontDistribute super."hlibBladeRF";
"hlibev" = dontDistribute super."hlibev";
"hlibfam" = dontDistribute super."hlibfam";
+ "hlibgit2" = doDistribute super."hlibgit2_0_18_0_14";
"hlibsass" = dontDistribute super."hlibsass";
"hlint" = doDistribute super."hlint_1_9_21";
"hlogger" = dontDistribute super."hlogger";
@@ -4402,6 +4419,7 @@ self: super: {
"hspec-meta" = doDistribute super."hspec-meta_2_1_7";
"hspec-monad-control" = dontDistribute super."hspec-monad-control";
"hspec-server" = dontDistribute super."hspec-server";
+ "hspec-setup" = dontDistribute super."hspec-setup";
"hspec-shouldbe" = dontDistribute super."hspec-shouldbe";
"hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0";
"hspec-snap" = dontDistribute super."hspec-snap";
@@ -4500,6 +4518,7 @@ self: super: {
"http-shed" = dontDistribute super."http-shed";
"http-streams" = dontDistribute super."http-streams";
"http-test" = dontDistribute super."http-test";
+ "http-types" = doDistribute super."http-types_0_8_6";
"http-wget" = dontDistribute super."http-wget";
"http2" = dontDistribute super."http2";
"httpd-shed" = dontDistribute super."httpd-shed";
@@ -4638,6 +4657,7 @@ self: super: {
"imgurder" = dontDistribute super."imgurder";
"imm" = dontDistribute super."imm";
"imparse" = dontDistribute super."imparse";
+ "imperative-edsl" = dontDistribute super."imperative-edsl";
"imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl";
"implicit" = dontDistribute super."implicit";
"implicit-params" = dontDistribute super."implicit-params";
@@ -4779,6 +4799,7 @@ self: super: {
"ix-shapable" = dontDistribute super."ix-shapable";
"ixdopp" = dontDistribute super."ixdopp";
"ixmonad" = dontDistribute super."ixmonad";
+ "ixset" = doDistribute super."ixset_1_0_6";
"ixset-typed" = dontDistribute super."ixset-typed";
"iyql" = dontDistribute super."iyql";
"j2hs" = dontDistribute super."j2hs";
@@ -4819,6 +4840,7 @@ self: super: {
"json-autotype" = doDistribute super."json-autotype_0_2_5_13";
"json-b" = dontDistribute super."json-b";
"json-builder" = dontDistribute super."json-builder";
+ "json-encoder" = dontDistribute super."json-encoder";
"json-enumerator" = dontDistribute super."json-enumerator";
"json-extra" = dontDistribute super."json-extra";
"json-fu" = dontDistribute super."json-fu";
@@ -4956,6 +4978,7 @@ self: super: {
"lambdacube-examples" = dontDistribute super."lambdacube-examples";
"lambdacube-gl" = dontDistribute super."lambdacube-gl";
"lambdacube-samples" = dontDistribute super."lambdacube-samples";
+ "lambdatex" = dontDistribute super."lambdatex";
"lambdatwit" = dontDistribute super."lambdatwit";
"lambdiff" = dontDistribute super."lambdiff";
"lame-tester" = dontDistribute super."lame-tester";
@@ -5159,6 +5182,7 @@ self: super: {
"list-fusion-probe" = dontDistribute super."list-fusion-probe";
"list-grouping" = dontDistribute super."list-grouping";
"list-mux" = dontDistribute super."list-mux";
+ "list-prompt" = dontDistribute super."list-prompt";
"list-remote-forwards" = dontDistribute super."list-remote-forwards";
"list-t-attoparsec" = dontDistribute super."list-t-attoparsec";
"list-t-html-parser" = dontDistribute super."list-t-html-parser";
@@ -5202,6 +5226,7 @@ self: super: {
"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-domain" = doDistribute super."log-domain_0_10_1_1";
@@ -5847,6 +5872,7 @@ self: super: {
"omnifmt" = dontDistribute super."omnifmt";
"on-a-horse" = dontDistribute super."on-a-horse";
"on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel";
+ "once" = dontDistribute super."once";
"one-liner" = dontDistribute super."one-liner";
"one-time-password" = dontDistribute super."one-time-password";
"oneOfN" = dontDistribute super."oneOfN";
@@ -5904,6 +5930,7 @@ self: super: {
"optional" = dontDistribute super."optional";
"optional-args" = dontDistribute super."optional-args";
"options-time" = dontDistribute super."options-time";
+ "optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"orc" = dontDistribute super."orc";
"orchestrate" = dontDistribute super."orchestrate";
@@ -6100,6 +6127,7 @@ self: super: {
"phasechange" = dontDistribute super."phasechange";
"phash" = dontDistribute super."phash";
"phizzle" = dontDistribute super."phizzle";
+ "phoityne" = dontDistribute super."phoityne";
"phone-numbers" = dontDistribute super."phone-numbers";
"phone-push" = dontDistribute super."phone-push";
"phonetic-code" = dontDistribute super."phonetic-code";
@@ -6132,6 +6160,7 @@ self: super: {
"pipes-cereal" = dontDistribute super."pipes-cereal";
"pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus";
"pipes-cliff" = dontDistribute super."pipes-cliff";
+ "pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_3";
"pipes-conduit" = dontDistribute super."pipes-conduit";
"pipes-core" = dontDistribute super."pipes-core";
"pipes-courier" = dontDistribute super."pipes-courier";
@@ -6248,6 +6277,7 @@ self: super: {
"possible" = dontDistribute super."possible";
"post-mess-age" = doDistribute super."post-mess-age_0_1_0_0";
"postcodes" = dontDistribute super."postcodes";
+ "postgresql-binary" = doDistribute super."postgresql-binary_0_5_2_1";
"postgresql-config" = dontDistribute super."postgresql-config";
"postgresql-connector" = dontDistribute super."postgresql-connector";
"postgresql-copy-escape" = dontDistribute super."postgresql-copy-escape";
@@ -6692,6 +6722,7 @@ self: super: {
"rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster";
"retry" = doDistribute super."retry_0_6";
"retryer" = dontDistribute super."retryer";
+ "rev-state" = doDistribute super."rev-state_0_1";
"revdectime" = dontDistribute super."revdectime";
"reverse-apply" = dontDistribute super."reverse-apply";
"reverse-geocoding" = dontDistribute super."reverse-geocoding";
@@ -6926,6 +6957,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serv" = dontDistribute super."serv";
"servant" = doDistribute super."servant_0_2_2";
"servant-JuicyPixels" = dontDistribute super."servant-JuicyPixels";
"servant-blaze" = dontDistribute super."servant-blaze";
@@ -7150,6 +7182,7 @@ self: super: {
"snaplet-coffee" = dontDistribute super."snaplet-coffee";
"snaplet-css-min" = dontDistribute super."snaplet-css-min";
"snaplet-environments" = dontDistribute super."snaplet-environments";
+ "snaplet-fay" = doDistribute super."snaplet-fay_0_3_3_12";
"snaplet-ghcjs" = dontDistribute super."snaplet-ghcjs";
"snaplet-hasql" = dontDistribute super."snaplet-hasql";
"snaplet-haxl" = dontDistribute super."snaplet-haxl";
@@ -7913,6 +7946,7 @@ self: super: {
"typehash" = dontDistribute super."typehash";
"typelevel" = dontDistribute super."typelevel";
"typelevel-tensor" = dontDistribute super."typelevel-tensor";
+ "typelits-witnesses" = dontDistribute super."typelits-witnesses";
"typeof" = dontDistribute super."typeof";
"typeparams" = dontDistribute super."typeparams";
"types-compat" = dontDistribute super."types-compat";
@@ -8154,6 +8188,7 @@ self: super: {
"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" = dontDistribute super."vty";
diff --git a/pkgs/development/haskell-modules/configuration-lts-2.2.nix b/pkgs/development/haskell-modules/configuration-lts-2.2.nix
index f54a7c92e52..c8c572b01e5 100644
--- a/pkgs/development/haskell-modules/configuration-lts-2.2.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-2.2.nix
@@ -332,6 +332,7 @@ self: super: {
"FormalGrammars" = dontDistribute super."FormalGrammars";
"Foster" = dontDistribute super."Foster";
"FpMLv53" = dontDistribute super."FpMLv53";
+ "FractalArt" = dontDistribute super."FractalArt";
"Fractaler" = dontDistribute super."Fractaler";
"Frames" = dontDistribute super."Frames";
"Frank" = dontDistribute super."Frank";
@@ -483,6 +484,7 @@ self: super: {
"HTTP-Simple" = dontDistribute super."HTTP-Simple";
"HTab" = dontDistribute super."HTab";
"HTicTacToe" = dontDistribute super."HTicTacToe";
+ "HUnit" = doDistribute super."HUnit_1_2_5_2";
"HUnit-Diff" = dontDistribute super."HUnit-Diff";
"HUnit-Plus" = dontDistribute super."HUnit-Plus";
"HUnit-approx" = dontDistribute super."HUnit-approx";
@@ -516,6 +518,7 @@ self: super: {
"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";
@@ -1515,6 +1518,7 @@ self: super: {
"base-io-access" = dontDistribute super."base-io-access";
"base-noprelude" = dontDistribute super."base-noprelude";
"base-orphans" = dontDistribute super."base-orphans";
+ "base-prelude" = doDistribute super."base-prelude_0_1_19";
"base32-bytestring" = dontDistribute super."base32-bytestring";
"base32string" = dontDistribute super."base32string";
"base58-bytestring" = dontDistribute super."base58-bytestring";
@@ -1939,6 +1943,7 @@ self: super: {
"cef" = dontDistribute super."cef";
"ceilometer-common" = dontDistribute super."ceilometer-common";
"cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo";
+ "cerberus" = dontDistribute super."cerberus";
"cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_3";
"cereal-derive" = dontDistribute super."cereal-derive";
"cereal-enumerator" = dontDistribute super."cereal-enumerator";
@@ -2150,6 +2155,7 @@ self: super: {
"concrete-typerep" = dontDistribute super."concrete-typerep";
"concurrent-barrier" = dontDistribute super."concurrent-barrier";
"concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache";
+ "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9";
"concurrent-machines" = dontDistribute super."concurrent-machines";
"concurrent-output" = dontDistribute super."concurrent-output";
"concurrent-sa" = dontDistribute super."concurrent-sa";
@@ -2583,6 +2589,7 @@ self: super: {
"diagrams-solve" = dontDistribute super."diagrams-solve";
"diagrams-svg" = doDistribute super."diagrams-svg_1_1_0_5";
"diagrams-tikz" = dontDistribute super."diagrams-tikz";
+ "dialog" = dontDistribute super."dialog";
"dice" = dontDistribute super."dice";
"dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit";
"dicom" = dontDistribute super."dicom";
@@ -2774,6 +2781,7 @@ self: super: {
"edenskel" = dontDistribute super."edenskel";
"edentv" = dontDistribute super."edentv";
"edge" = dontDistribute super."edge";
+ "edis" = dontDistribute super."edis";
"edit-distance" = doDistribute super."edit-distance_0_2_1_2";
"edit-distance-vector" = dontDistribute super."edit-distance-vector";
"edit-lenses" = dontDistribute super."edit-lenses";
@@ -2970,6 +2978,7 @@ self: super: {
"failable-list" = dontDistribute super."failable-list";
"failure" = dontDistribute super."failure";
"fair-predicates" = dontDistribute super."fair-predicates";
+ "fake-type" = dontDistribute super."fake-type";
"faker" = dontDistribute super."faker";
"falling-turnip" = dontDistribute super."falling-turnip";
"fallingblocks" = dontDistribute super."fallingblocks";
@@ -3192,6 +3201,7 @@ self: super: {
"friday-juicypixels" = dontDistribute super."friday-juicypixels";
"friday-scale-dct" = dontDistribute super."friday-scale-dct";
"friendly-time" = dontDistribute super."friendly-time";
+ "frontmatter" = dontDistribute super."frontmatter";
"frp-arduino" = dontDistribute super."frp-arduino";
"frpnow" = dontDistribute super."frpnow";
"frpnow-gloss" = dontDistribute super."frpnow-gloss";
@@ -3410,6 +3420,7 @@ self: super: {
"gitlib-test" = doDistribute super."gitlib-test_3_1_0_2";
"gitlib-utils" = dontDistribute super."gitlib-utils";
"gitrev" = doDistribute super."gitrev_1_0_0";
+ "gitter" = dontDistribute super."gitter";
"gl" = doDistribute super."gl_0_7_4";
"gl-capture" = dontDistribute super."gl-capture";
"glade" = dontDistribute super."glade";
@@ -3718,6 +3729,7 @@ self: super: {
"hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP";
"hackage-server" = dontDistribute super."hackage-server";
"hackage-sparks" = dontDistribute super."hackage-sparks";
+ "hackage-whatsnew" = dontDistribute super."hackage-whatsnew";
"hackage2hwn" = dontDistribute super."hackage2hwn";
"hackage2twitter" = dontDistribute super."hackage2twitter";
"hackager" = dontDistribute super."hackager";
@@ -4179,6 +4191,7 @@ self: super: {
"hlibBladeRF" = dontDistribute super."hlibBladeRF";
"hlibev" = dontDistribute super."hlibev";
"hlibfam" = dontDistribute super."hlibfam";
+ "hlibgit2" = doDistribute super."hlibgit2_0_18_0_14";
"hlibsass" = dontDistribute super."hlibsass";
"hlint" = doDistribute super."hlint_1_9_19";
"hlogger" = dontDistribute super."hlogger";
@@ -4451,6 +4464,7 @@ self: super: {
"hspec-meta" = doDistribute super."hspec-meta_2_1_5";
"hspec-monad-control" = dontDistribute super."hspec-monad-control";
"hspec-server" = dontDistribute super."hspec-server";
+ "hspec-setup" = dontDistribute super."hspec-setup";
"hspec-shouldbe" = dontDistribute super."hspec-shouldbe";
"hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0";
"hspec-snap" = dontDistribute super."hspec-snap";
@@ -4552,6 +4566,7 @@ self: super: {
"http-shed" = dontDistribute super."http-shed";
"http-streams" = dontDistribute super."http-streams";
"http-test" = dontDistribute super."http-test";
+ "http-types" = doDistribute super."http-types_0_8_6";
"http-wget" = dontDistribute super."http-wget";
"http2" = dontDistribute super."http2";
"httpd-shed" = dontDistribute super."httpd-shed";
@@ -4692,6 +4707,7 @@ self: super: {
"imgurder" = dontDistribute super."imgurder";
"imm" = dontDistribute super."imm";
"imparse" = dontDistribute super."imparse";
+ "imperative-edsl" = dontDistribute super."imperative-edsl";
"imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl";
"implicit" = dontDistribute super."implicit";
"implicit-params" = dontDistribute super."implicit-params";
@@ -4833,6 +4849,7 @@ self: super: {
"ix-shapable" = dontDistribute super."ix-shapable";
"ixdopp" = dontDistribute super."ixdopp";
"ixmonad" = dontDistribute super."ixmonad";
+ "ixset" = doDistribute super."ixset_1_0_6";
"ixset-typed" = dontDistribute super."ixset-typed";
"iyql" = dontDistribute super."iyql";
"j2hs" = dontDistribute super."j2hs";
@@ -4877,6 +4894,7 @@ self: super: {
"json-autotype" = doDistribute super."json-autotype_0_2_5_13";
"json-b" = dontDistribute super."json-b";
"json-builder" = dontDistribute super."json-builder";
+ "json-encoder" = dontDistribute super."json-encoder";
"json-enumerator" = dontDistribute super."json-enumerator";
"json-extra" = dontDistribute super."json-extra";
"json-fu" = dontDistribute super."json-fu";
@@ -5015,6 +5033,7 @@ self: super: {
"lambdacube-examples" = dontDistribute super."lambdacube-examples";
"lambdacube-gl" = dontDistribute super."lambdacube-gl";
"lambdacube-samples" = dontDistribute super."lambdacube-samples";
+ "lambdatex" = dontDistribute super."lambdatex";
"lambdatwit" = dontDistribute super."lambdatwit";
"lambdiff" = dontDistribute super."lambdiff";
"lame-tester" = dontDistribute super."lame-tester";
@@ -5220,6 +5239,7 @@ self: super: {
"list-fusion-probe" = dontDistribute super."list-fusion-probe";
"list-grouping" = dontDistribute super."list-grouping";
"list-mux" = dontDistribute super."list-mux";
+ "list-prompt" = dontDistribute super."list-prompt";
"list-remote-forwards" = dontDistribute super."list-remote-forwards";
"list-t" = doDistribute super."list-t_0_4_3";
"list-t-attoparsec" = dontDistribute super."list-t-attoparsec";
@@ -5264,6 +5284,7 @@ self: super: {
"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-domain" = doDistribute super."log-domain_0_10_0_1";
@@ -5924,6 +5945,7 @@ self: super: {
"omnifmt" = dontDistribute super."omnifmt";
"on-a-horse" = dontDistribute super."on-a-horse";
"on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel";
+ "once" = dontDistribute super."once";
"one-liner" = dontDistribute super."one-liner";
"one-time-password" = dontDistribute super."one-time-password";
"oneOfN" = dontDistribute super."oneOfN";
@@ -5981,6 +6003,7 @@ self: super: {
"optional" = dontDistribute super."optional";
"optional-args" = dontDistribute super."optional-args";
"options-time" = dontDistribute super."options-time";
+ "optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"optparse-simple" = dontDistribute super."optparse-simple";
"orc" = dontDistribute super."orc";
@@ -6180,6 +6203,7 @@ self: super: {
"phasechange" = dontDistribute super."phasechange";
"phash" = dontDistribute super."phash";
"phizzle" = dontDistribute super."phizzle";
+ "phoityne" = dontDistribute super."phoityne";
"phone-numbers" = dontDistribute super."phone-numbers";
"phone-push" = dontDistribute super."phone-push";
"phonetic-code" = dontDistribute super."phonetic-code";
@@ -6213,6 +6237,7 @@ self: super: {
"pipes-cereal" = dontDistribute super."pipes-cereal";
"pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus";
"pipes-cliff" = dontDistribute super."pipes-cliff";
+ "pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_3";
"pipes-conduit" = dontDistribute super."pipes-conduit";
"pipes-core" = dontDistribute super."pipes-core";
"pipes-courier" = dontDistribute super."pipes-courier";
@@ -6781,6 +6806,7 @@ self: super: {
"rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster";
"retry" = doDistribute super."retry_0_6";
"retryer" = dontDistribute super."retryer";
+ "rev-state" = doDistribute super."rev-state_0_1";
"revdectime" = dontDistribute super."revdectime";
"reverse-apply" = dontDistribute super."reverse-apply";
"reverse-geocoding" = dontDistribute super."reverse-geocoding";
@@ -7017,6 +7043,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serv" = dontDistribute super."serv";
"servant" = doDistribute super."servant_0_2_2";
"servant-JuicyPixels" = dontDistribute super."servant-JuicyPixels";
"servant-blaze" = dontDistribute super."servant-blaze";
@@ -8024,6 +8051,7 @@ self: super: {
"typehash" = dontDistribute super."typehash";
"typelevel" = dontDistribute super."typelevel";
"typelevel-tensor" = dontDistribute super."typelevel-tensor";
+ "typelits-witnesses" = dontDistribute super."typelits-witnesses";
"typeof" = dontDistribute super."typeof";
"typeparams" = dontDistribute super."typeparams";
"types-compat" = dontDistribute super."types-compat";
@@ -8265,6 +8293,7 @@ self: super: {
"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" = dontDistribute super."vty";
diff --git a/pkgs/development/haskell-modules/configuration-lts-2.20.nix b/pkgs/development/haskell-modules/configuration-lts-2.20.nix
index f78f8e91c56..1e5174692ee 100644
--- a/pkgs/development/haskell-modules/configuration-lts-2.20.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-2.20.nix
@@ -330,6 +330,7 @@ self: super: {
"FormalGrammars" = dontDistribute super."FormalGrammars";
"Foster" = dontDistribute super."Foster";
"FpMLv53" = dontDistribute super."FpMLv53";
+ "FractalArt" = dontDistribute super."FractalArt";
"Fractaler" = dontDistribute super."Fractaler";
"Frames" = dontDistribute super."Frames";
"Frank" = dontDistribute super."Frank";
@@ -481,6 +482,7 @@ self: super: {
"HTTP-Simple" = dontDistribute super."HTTP-Simple";
"HTab" = dontDistribute super."HTab";
"HTicTacToe" = dontDistribute super."HTicTacToe";
+ "HUnit" = doDistribute super."HUnit_1_2_5_2";
"HUnit-Diff" = dontDistribute super."HUnit-Diff";
"HUnit-Plus" = dontDistribute super."HUnit-Plus";
"HUnit-approx" = dontDistribute super."HUnit-approx";
@@ -514,6 +516,7 @@ self: super: {
"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";
@@ -1437,6 +1440,7 @@ self: super: {
"authinfo-hs" = dontDistribute super."authinfo-hs";
"authoring" = dontDistribute super."authoring";
"auto" = dontDistribute super."auto";
+ "auto-update" = doDistribute super."auto-update_0_1_2_2";
"autonix-deps" = dontDistribute super."autonix-deps";
"autonix-deps-kf5" = dontDistribute super."autonix-deps-kf5";
"autoproc" = dontDistribute super."autoproc";
@@ -1503,6 +1507,7 @@ self: super: {
"base-io-access" = dontDistribute super."base-io-access";
"base-noprelude" = dontDistribute super."base-noprelude";
"base-orphans" = dontDistribute super."base-orphans";
+ "base-prelude" = doDistribute super."base-prelude_0_1_19";
"base32-bytestring" = dontDistribute super."base32-bytestring";
"base32string" = dontDistribute super."base32string";
"base58-bytestring" = dontDistribute super."base58-bytestring";
@@ -1724,6 +1729,7 @@ self: super: {
"bot" = dontDistribute super."bot";
"both" = dontDistribute super."both";
"botpp" = dontDistribute super."botpp";
+ "bound" = doDistribute super."bound_1_0_6";
"bound-gen" = dontDistribute super."bound-gen";
"bounded-tchan" = dontDistribute super."bounded-tchan";
"boundingboxes" = dontDistribute super."boundingboxes";
@@ -1922,6 +1928,7 @@ self: super: {
"cef" = dontDistribute super."cef";
"ceilometer-common" = dontDistribute super."ceilometer-common";
"cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo";
+ "cerberus" = dontDistribute super."cerberus";
"cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_3";
"cereal-derive" = dontDistribute super."cereal-derive";
"cereal-enumerator" = dontDistribute super."cereal-enumerator";
@@ -2130,6 +2137,7 @@ self: super: {
"concrete-typerep" = dontDistribute super."concrete-typerep";
"concurrent-barrier" = dontDistribute super."concurrent-barrier";
"concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache";
+ "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9";
"concurrent-machines" = dontDistribute super."concurrent-machines";
"concurrent-output" = dontDistribute super."concurrent-output";
"concurrent-sa" = dontDistribute super."concurrent-sa";
@@ -2559,6 +2567,7 @@ self: super: {
"diagrams-solve" = dontDistribute super."diagrams-solve";
"diagrams-svg" = doDistribute super."diagrams-svg_1_1_0_5";
"diagrams-tikz" = dontDistribute super."diagrams-tikz";
+ "dialog" = dontDistribute super."dialog";
"dice" = dontDistribute super."dice";
"dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit";
"dicom" = dontDistribute super."dicom";
@@ -2749,6 +2758,7 @@ self: super: {
"edenskel" = dontDistribute super."edenskel";
"edentv" = dontDistribute super."edentv";
"edge" = dontDistribute super."edge";
+ "edis" = dontDistribute super."edis";
"edit-distance-vector" = dontDistribute super."edit-distance-vector";
"edit-lenses" = dontDistribute super."edit-lenses";
"edit-lenses-demo" = dontDistribute super."edit-lenses-demo";
@@ -2941,6 +2951,7 @@ self: super: {
"failable-list" = dontDistribute super."failable-list";
"failure" = dontDistribute super."failure";
"fair-predicates" = dontDistribute super."fair-predicates";
+ "fake-type" = dontDistribute super."fake-type";
"faker" = dontDistribute super."faker";
"falling-turnip" = dontDistribute super."falling-turnip";
"fallingblocks" = dontDistribute super."fallingblocks";
@@ -3156,6 +3167,7 @@ self: super: {
"friday-juicypixels" = dontDistribute super."friday-juicypixels";
"friday-scale-dct" = dontDistribute super."friday-scale-dct";
"friendly-time" = dontDistribute super."friendly-time";
+ "frontmatter" = dontDistribute super."frontmatter";
"frp-arduino" = dontDistribute super."frp-arduino";
"frpnow" = dontDistribute super."frpnow";
"frpnow-gloss" = dontDistribute super."frpnow-gloss";
@@ -3372,6 +3384,7 @@ self: super: {
"gitlib-test" = doDistribute super."gitlib-test_3_1_0_2";
"gitlib-utils" = dontDistribute super."gitlib-utils";
"gitrev" = doDistribute super."gitrev_1_0_0";
+ "gitter" = dontDistribute super."gitter";
"gl-capture" = dontDistribute super."gl-capture";
"glade" = dontDistribute super."glade";
"gladexml-accessor" = dontDistribute super."gladexml-accessor";
@@ -3583,6 +3596,7 @@ self: super: {
"gstreamer" = dontDistribute super."gstreamer";
"gt-tools" = dontDistribute super."gt-tools";
"gtfs" = dontDistribute super."gtfs";
+ "gtk" = doDistribute super."gtk_0_13_9";
"gtk-helpers" = dontDistribute super."gtk-helpers";
"gtk-jsinput" = dontDistribute super."gtk-jsinput";
"gtk-largeTreeStore" = dontDistribute super."gtk-largeTreeStore";
@@ -3675,6 +3689,7 @@ self: super: {
"hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP";
"hackage-server" = dontDistribute super."hackage-server";
"hackage-sparks" = dontDistribute super."hackage-sparks";
+ "hackage-whatsnew" = dontDistribute super."hackage-whatsnew";
"hackage2hwn" = dontDistribute super."hackage2hwn";
"hackage2twitter" = dontDistribute super."hackage2twitter";
"hackager" = dontDistribute super."hackager";
@@ -3832,6 +3847,7 @@ self: super: {
"haskell-in-space" = dontDistribute super."haskell-in-space";
"haskell-modbus" = dontDistribute super."haskell-modbus";
"haskell-mpi" = dontDistribute super."haskell-mpi";
+ "haskell-names" = doDistribute super."haskell-names_0_5_3";
"haskell-neo4j-client" = dontDistribute super."haskell-neo4j-client";
"haskell-openflow" = dontDistribute super."haskell-openflow";
"haskell-packages" = doDistribute super."haskell-packages_0_2_4_4";
@@ -4130,6 +4146,7 @@ self: super: {
"hlibBladeRF" = dontDistribute super."hlibBladeRF";
"hlibev" = dontDistribute super."hlibev";
"hlibfam" = dontDistribute super."hlibfam";
+ "hlibgit2" = doDistribute super."hlibgit2_0_18_0_14";
"hlibsass" = dontDistribute super."hlibsass";
"hlint" = doDistribute super."hlint_1_9_21";
"hlogger" = dontDistribute super."hlogger";
@@ -4400,6 +4417,7 @@ self: super: {
"hspec-meta" = doDistribute super."hspec-meta_2_1_7";
"hspec-monad-control" = dontDistribute super."hspec-monad-control";
"hspec-server" = dontDistribute super."hspec-server";
+ "hspec-setup" = dontDistribute super."hspec-setup";
"hspec-shouldbe" = dontDistribute super."hspec-shouldbe";
"hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0";
"hspec-snap" = dontDistribute super."hspec-snap";
@@ -4498,6 +4516,7 @@ self: super: {
"http-shed" = dontDistribute super."http-shed";
"http-streams" = dontDistribute super."http-streams";
"http-test" = dontDistribute super."http-test";
+ "http-types" = doDistribute super."http-types_0_8_6";
"http-wget" = dontDistribute super."http-wget";
"http2" = dontDistribute super."http2";
"httpd-shed" = dontDistribute super."httpd-shed";
@@ -4636,6 +4655,7 @@ self: super: {
"imgurder" = dontDistribute super."imgurder";
"imm" = dontDistribute super."imm";
"imparse" = dontDistribute super."imparse";
+ "imperative-edsl" = dontDistribute super."imperative-edsl";
"imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl";
"implicit" = dontDistribute super."implicit";
"implicit-params" = dontDistribute super."implicit-params";
@@ -4777,6 +4797,7 @@ self: super: {
"ix-shapable" = dontDistribute super."ix-shapable";
"ixdopp" = dontDistribute super."ixdopp";
"ixmonad" = dontDistribute super."ixmonad";
+ "ixset" = doDistribute super."ixset_1_0_6";
"ixset-typed" = dontDistribute super."ixset-typed";
"iyql" = dontDistribute super."iyql";
"j2hs" = dontDistribute super."j2hs";
@@ -4817,6 +4838,7 @@ self: super: {
"json-autotype" = doDistribute super."json-autotype_0_2_5_13";
"json-b" = dontDistribute super."json-b";
"json-builder" = dontDistribute super."json-builder";
+ "json-encoder" = dontDistribute super."json-encoder";
"json-enumerator" = dontDistribute super."json-enumerator";
"json-extra" = dontDistribute super."json-extra";
"json-fu" = dontDistribute super."json-fu";
@@ -4954,6 +4976,7 @@ self: super: {
"lambdacube-examples" = dontDistribute super."lambdacube-examples";
"lambdacube-gl" = dontDistribute super."lambdacube-gl";
"lambdacube-samples" = dontDistribute super."lambdacube-samples";
+ "lambdatex" = dontDistribute super."lambdatex";
"lambdatwit" = dontDistribute super."lambdatwit";
"lambdiff" = dontDistribute super."lambdiff";
"lame-tester" = dontDistribute super."lame-tester";
@@ -5157,6 +5180,7 @@ self: super: {
"list-fusion-probe" = dontDistribute super."list-fusion-probe";
"list-grouping" = dontDistribute super."list-grouping";
"list-mux" = dontDistribute super."list-mux";
+ "list-prompt" = dontDistribute super."list-prompt";
"list-remote-forwards" = dontDistribute super."list-remote-forwards";
"list-t-attoparsec" = dontDistribute super."list-t-attoparsec";
"list-t-html-parser" = dontDistribute super."list-t-html-parser";
@@ -5200,6 +5224,7 @@ self: super: {
"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-domain" = doDistribute super."log-domain_0_10_2";
@@ -5845,6 +5870,7 @@ self: super: {
"omnifmt" = dontDistribute super."omnifmt";
"on-a-horse" = dontDistribute super."on-a-horse";
"on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel";
+ "once" = dontDistribute super."once";
"one-liner" = dontDistribute super."one-liner";
"one-time-password" = dontDistribute super."one-time-password";
"oneOfN" = dontDistribute super."oneOfN";
@@ -5902,6 +5928,7 @@ self: super: {
"optional" = dontDistribute super."optional";
"optional-args" = dontDistribute super."optional-args";
"options-time" = dontDistribute super."options-time";
+ "optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"orc" = dontDistribute super."orc";
"orchestrate" = dontDistribute super."orchestrate";
@@ -6098,6 +6125,7 @@ self: super: {
"phasechange" = dontDistribute super."phasechange";
"phash" = dontDistribute super."phash";
"phizzle" = dontDistribute super."phizzle";
+ "phoityne" = dontDistribute super."phoityne";
"phone-numbers" = dontDistribute super."phone-numbers";
"phone-push" = dontDistribute super."phone-push";
"phonetic-code" = dontDistribute super."phonetic-code";
@@ -6130,6 +6158,7 @@ self: super: {
"pipes-cereal" = dontDistribute super."pipes-cereal";
"pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus";
"pipes-cliff" = dontDistribute super."pipes-cliff";
+ "pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_3";
"pipes-conduit" = dontDistribute super."pipes-conduit";
"pipes-core" = dontDistribute super."pipes-core";
"pipes-courier" = dontDistribute super."pipes-courier";
@@ -6245,6 +6274,7 @@ self: super: {
"possible" = dontDistribute super."possible";
"post-mess-age" = doDistribute super."post-mess-age_0_1_0_0";
"postcodes" = dontDistribute super."postcodes";
+ "postgresql-binary" = doDistribute super."postgresql-binary_0_5_2_1";
"postgresql-config" = dontDistribute super."postgresql-config";
"postgresql-connector" = dontDistribute super."postgresql-connector";
"postgresql-copy-escape" = dontDistribute super."postgresql-copy-escape";
@@ -6689,6 +6719,7 @@ self: super: {
"rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster";
"retry" = doDistribute super."retry_0_6";
"retryer" = dontDistribute super."retryer";
+ "rev-state" = doDistribute super."rev-state_0_1";
"revdectime" = dontDistribute super."revdectime";
"reverse-apply" = dontDistribute super."reverse-apply";
"reverse-geocoding" = dontDistribute super."reverse-geocoding";
@@ -6923,6 +6954,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serv" = dontDistribute super."serv";
"servant" = doDistribute super."servant_0_2_2";
"servant-JuicyPixels" = dontDistribute super."servant-JuicyPixels";
"servant-blaze" = dontDistribute super."servant-blaze";
@@ -7146,6 +7178,7 @@ self: super: {
"snaplet-coffee" = dontDistribute super."snaplet-coffee";
"snaplet-css-min" = dontDistribute super."snaplet-css-min";
"snaplet-environments" = dontDistribute super."snaplet-environments";
+ "snaplet-fay" = doDistribute super."snaplet-fay_0_3_3_12";
"snaplet-ghcjs" = dontDistribute super."snaplet-ghcjs";
"snaplet-hasql" = dontDistribute super."snaplet-hasql";
"snaplet-haxl" = dontDistribute super."snaplet-haxl";
@@ -7909,6 +7942,7 @@ self: super: {
"typehash" = dontDistribute super."typehash";
"typelevel" = dontDistribute super."typelevel";
"typelevel-tensor" = dontDistribute super."typelevel-tensor";
+ "typelits-witnesses" = dontDistribute super."typelits-witnesses";
"typeof" = dontDistribute super."typeof";
"typeparams" = dontDistribute super."typeparams";
"types-compat" = dontDistribute super."types-compat";
@@ -8150,6 +8184,7 @@ self: super: {
"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" = dontDistribute super."vty";
diff --git a/pkgs/development/haskell-modules/configuration-lts-2.21.nix b/pkgs/development/haskell-modules/configuration-lts-2.21.nix
index 12f836e2f9a..3304e26b9e5 100644
--- a/pkgs/development/haskell-modules/configuration-lts-2.21.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-2.21.nix
@@ -330,6 +330,7 @@ self: super: {
"FormalGrammars" = dontDistribute super."FormalGrammars";
"Foster" = dontDistribute super."Foster";
"FpMLv53" = dontDistribute super."FpMLv53";
+ "FractalArt" = dontDistribute super."FractalArt";
"Fractaler" = dontDistribute super."Fractaler";
"Frames" = dontDistribute super."Frames";
"Frank" = dontDistribute super."Frank";
@@ -481,6 +482,7 @@ self: super: {
"HTTP-Simple" = dontDistribute super."HTTP-Simple";
"HTab" = dontDistribute super."HTab";
"HTicTacToe" = dontDistribute super."HTicTacToe";
+ "HUnit" = doDistribute super."HUnit_1_2_5_2";
"HUnit-Diff" = dontDistribute super."HUnit-Diff";
"HUnit-Plus" = dontDistribute super."HUnit-Plus";
"HUnit-approx" = dontDistribute super."HUnit-approx";
@@ -514,6 +516,7 @@ self: super: {
"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";
@@ -1437,6 +1440,7 @@ self: super: {
"authinfo-hs" = dontDistribute super."authinfo-hs";
"authoring" = dontDistribute super."authoring";
"auto" = dontDistribute super."auto";
+ "auto-update" = doDistribute super."auto-update_0_1_2_2";
"autonix-deps" = dontDistribute super."autonix-deps";
"autonix-deps-kf5" = dontDistribute super."autonix-deps-kf5";
"autoproc" = dontDistribute super."autoproc";
@@ -1503,6 +1507,7 @@ self: super: {
"base-io-access" = dontDistribute super."base-io-access";
"base-noprelude" = dontDistribute super."base-noprelude";
"base-orphans" = dontDistribute super."base-orphans";
+ "base-prelude" = doDistribute super."base-prelude_0_1_19";
"base32-bytestring" = dontDistribute super."base32-bytestring";
"base32string" = dontDistribute super."base32string";
"base58-bytestring" = dontDistribute super."base58-bytestring";
@@ -1724,6 +1729,7 @@ self: super: {
"bot" = dontDistribute super."bot";
"both" = dontDistribute super."both";
"botpp" = dontDistribute super."botpp";
+ "bound" = doDistribute super."bound_1_0_6";
"bound-gen" = dontDistribute super."bound-gen";
"bounded-tchan" = dontDistribute super."bounded-tchan";
"boundingboxes" = dontDistribute super."boundingboxes";
@@ -1922,6 +1928,7 @@ self: super: {
"cef" = dontDistribute super."cef";
"ceilometer-common" = dontDistribute super."ceilometer-common";
"cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo";
+ "cerberus" = dontDistribute super."cerberus";
"cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_3";
"cereal-derive" = dontDistribute super."cereal-derive";
"cereal-enumerator" = dontDistribute super."cereal-enumerator";
@@ -2130,6 +2137,7 @@ self: super: {
"concrete-typerep" = dontDistribute super."concrete-typerep";
"concurrent-barrier" = dontDistribute super."concurrent-barrier";
"concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache";
+ "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9";
"concurrent-machines" = dontDistribute super."concurrent-machines";
"concurrent-output" = dontDistribute super."concurrent-output";
"concurrent-sa" = dontDistribute super."concurrent-sa";
@@ -2559,6 +2567,7 @@ self: super: {
"diagrams-solve" = dontDistribute super."diagrams-solve";
"diagrams-svg" = doDistribute super."diagrams-svg_1_1_0_5";
"diagrams-tikz" = dontDistribute super."diagrams-tikz";
+ "dialog" = dontDistribute super."dialog";
"dice" = dontDistribute super."dice";
"dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit";
"dicom" = dontDistribute super."dicom";
@@ -2749,6 +2758,7 @@ self: super: {
"edenskel" = dontDistribute super."edenskel";
"edentv" = dontDistribute super."edentv";
"edge" = dontDistribute super."edge";
+ "edis" = dontDistribute super."edis";
"edit-distance-vector" = dontDistribute super."edit-distance-vector";
"edit-lenses" = dontDistribute super."edit-lenses";
"edit-lenses-demo" = dontDistribute super."edit-lenses-demo";
@@ -2941,6 +2951,7 @@ self: super: {
"failable-list" = dontDistribute super."failable-list";
"failure" = dontDistribute super."failure";
"fair-predicates" = dontDistribute super."fair-predicates";
+ "fake-type" = dontDistribute super."fake-type";
"faker" = dontDistribute super."faker";
"falling-turnip" = dontDistribute super."falling-turnip";
"fallingblocks" = dontDistribute super."fallingblocks";
@@ -3156,6 +3167,7 @@ self: super: {
"friday-juicypixels" = dontDistribute super."friday-juicypixels";
"friday-scale-dct" = dontDistribute super."friday-scale-dct";
"friendly-time" = dontDistribute super."friendly-time";
+ "frontmatter" = dontDistribute super."frontmatter";
"frp-arduino" = dontDistribute super."frp-arduino";
"frpnow" = dontDistribute super."frpnow";
"frpnow-gloss" = dontDistribute super."frpnow-gloss";
@@ -3372,6 +3384,7 @@ self: super: {
"gitlib-test" = doDistribute super."gitlib-test_3_1_0_2";
"gitlib-utils" = dontDistribute super."gitlib-utils";
"gitrev" = doDistribute super."gitrev_1_0_0";
+ "gitter" = dontDistribute super."gitter";
"gl-capture" = dontDistribute super."gl-capture";
"glade" = dontDistribute super."glade";
"gladexml-accessor" = dontDistribute super."gladexml-accessor";
@@ -3583,6 +3596,7 @@ self: super: {
"gstreamer" = dontDistribute super."gstreamer";
"gt-tools" = dontDistribute super."gt-tools";
"gtfs" = dontDistribute super."gtfs";
+ "gtk" = doDistribute super."gtk_0_13_9";
"gtk-helpers" = dontDistribute super."gtk-helpers";
"gtk-jsinput" = dontDistribute super."gtk-jsinput";
"gtk-largeTreeStore" = dontDistribute super."gtk-largeTreeStore";
@@ -3675,6 +3689,7 @@ self: super: {
"hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP";
"hackage-server" = dontDistribute super."hackage-server";
"hackage-sparks" = dontDistribute super."hackage-sparks";
+ "hackage-whatsnew" = dontDistribute super."hackage-whatsnew";
"hackage2hwn" = dontDistribute super."hackage2hwn";
"hackage2twitter" = dontDistribute super."hackage2twitter";
"hackager" = dontDistribute super."hackager";
@@ -3832,6 +3847,7 @@ self: super: {
"haskell-in-space" = dontDistribute super."haskell-in-space";
"haskell-modbus" = dontDistribute super."haskell-modbus";
"haskell-mpi" = dontDistribute super."haskell-mpi";
+ "haskell-names" = doDistribute super."haskell-names_0_5_3";
"haskell-neo4j-client" = dontDistribute super."haskell-neo4j-client";
"haskell-openflow" = dontDistribute super."haskell-openflow";
"haskell-packages" = doDistribute super."haskell-packages_0_2_4_4";
@@ -4130,6 +4146,7 @@ self: super: {
"hlibBladeRF" = dontDistribute super."hlibBladeRF";
"hlibev" = dontDistribute super."hlibev";
"hlibfam" = dontDistribute super."hlibfam";
+ "hlibgit2" = doDistribute super."hlibgit2_0_18_0_14";
"hlibsass" = dontDistribute super."hlibsass";
"hlint" = doDistribute super."hlint_1_9_21";
"hlogger" = dontDistribute super."hlogger";
@@ -4400,6 +4417,7 @@ self: super: {
"hspec-meta" = doDistribute super."hspec-meta_2_1_7";
"hspec-monad-control" = dontDistribute super."hspec-monad-control";
"hspec-server" = dontDistribute super."hspec-server";
+ "hspec-setup" = dontDistribute super."hspec-setup";
"hspec-shouldbe" = dontDistribute super."hspec-shouldbe";
"hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0";
"hspec-snap" = dontDistribute super."hspec-snap";
@@ -4498,6 +4516,7 @@ self: super: {
"http-shed" = dontDistribute super."http-shed";
"http-streams" = dontDistribute super."http-streams";
"http-test" = dontDistribute super."http-test";
+ "http-types" = doDistribute super."http-types_0_8_6";
"http-wget" = dontDistribute super."http-wget";
"http2" = dontDistribute super."http2";
"httpd-shed" = dontDistribute super."httpd-shed";
@@ -4636,6 +4655,7 @@ self: super: {
"imgurder" = dontDistribute super."imgurder";
"imm" = dontDistribute super."imm";
"imparse" = dontDistribute super."imparse";
+ "imperative-edsl" = dontDistribute super."imperative-edsl";
"imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl";
"implicit" = dontDistribute super."implicit";
"implicit-params" = dontDistribute super."implicit-params";
@@ -4777,6 +4797,7 @@ self: super: {
"ix-shapable" = dontDistribute super."ix-shapable";
"ixdopp" = dontDistribute super."ixdopp";
"ixmonad" = dontDistribute super."ixmonad";
+ "ixset" = doDistribute super."ixset_1_0_6";
"ixset-typed" = dontDistribute super."ixset-typed";
"iyql" = dontDistribute super."iyql";
"j2hs" = dontDistribute super."j2hs";
@@ -4817,6 +4838,7 @@ self: super: {
"json-autotype" = doDistribute super."json-autotype_0_2_5_13";
"json-b" = dontDistribute super."json-b";
"json-builder" = dontDistribute super."json-builder";
+ "json-encoder" = dontDistribute super."json-encoder";
"json-enumerator" = dontDistribute super."json-enumerator";
"json-extra" = dontDistribute super."json-extra";
"json-fu" = dontDistribute super."json-fu";
@@ -4954,6 +4976,7 @@ self: super: {
"lambdacube-examples" = dontDistribute super."lambdacube-examples";
"lambdacube-gl" = dontDistribute super."lambdacube-gl";
"lambdacube-samples" = dontDistribute super."lambdacube-samples";
+ "lambdatex" = dontDistribute super."lambdatex";
"lambdatwit" = dontDistribute super."lambdatwit";
"lambdiff" = dontDistribute super."lambdiff";
"lame-tester" = dontDistribute super."lame-tester";
@@ -5156,6 +5179,7 @@ self: super: {
"list-fusion-probe" = dontDistribute super."list-fusion-probe";
"list-grouping" = dontDistribute super."list-grouping";
"list-mux" = dontDistribute super."list-mux";
+ "list-prompt" = dontDistribute super."list-prompt";
"list-remote-forwards" = dontDistribute super."list-remote-forwards";
"list-t-attoparsec" = dontDistribute super."list-t-attoparsec";
"list-t-html-parser" = dontDistribute super."list-t-html-parser";
@@ -5199,6 +5223,7 @@ self: super: {
"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-domain" = doDistribute super."log-domain_0_10_2";
@@ -5844,6 +5869,7 @@ self: super: {
"omnifmt" = dontDistribute super."omnifmt";
"on-a-horse" = dontDistribute super."on-a-horse";
"on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel";
+ "once" = dontDistribute super."once";
"one-liner" = dontDistribute super."one-liner";
"one-time-password" = dontDistribute super."one-time-password";
"oneOfN" = dontDistribute super."oneOfN";
@@ -5901,6 +5927,7 @@ self: super: {
"optional" = dontDistribute super."optional";
"optional-args" = dontDistribute super."optional-args";
"options-time" = dontDistribute super."options-time";
+ "optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"orc" = dontDistribute super."orc";
"orchestrate" = dontDistribute super."orchestrate";
@@ -6097,6 +6124,7 @@ self: super: {
"phasechange" = dontDistribute super."phasechange";
"phash" = dontDistribute super."phash";
"phizzle" = dontDistribute super."phizzle";
+ "phoityne" = dontDistribute super."phoityne";
"phone-numbers" = dontDistribute super."phone-numbers";
"phone-push" = dontDistribute super."phone-push";
"phonetic-code" = dontDistribute super."phonetic-code";
@@ -6129,6 +6157,7 @@ self: super: {
"pipes-cereal" = dontDistribute super."pipes-cereal";
"pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus";
"pipes-cliff" = dontDistribute super."pipes-cliff";
+ "pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_3";
"pipes-conduit" = dontDistribute super."pipes-conduit";
"pipes-core" = dontDistribute super."pipes-core";
"pipes-courier" = dontDistribute super."pipes-courier";
@@ -6244,6 +6273,7 @@ self: super: {
"possible" = dontDistribute super."possible";
"post-mess-age" = doDistribute super."post-mess-age_0_1_0_0";
"postcodes" = dontDistribute super."postcodes";
+ "postgresql-binary" = doDistribute super."postgresql-binary_0_5_2_1";
"postgresql-config" = dontDistribute super."postgresql-config";
"postgresql-connector" = dontDistribute super."postgresql-connector";
"postgresql-copy-escape" = dontDistribute super."postgresql-copy-escape";
@@ -6687,6 +6717,7 @@ self: super: {
"rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster";
"retry" = doDistribute super."retry_0_6";
"retryer" = dontDistribute super."retryer";
+ "rev-state" = doDistribute super."rev-state_0_1";
"revdectime" = dontDistribute super."revdectime";
"reverse-apply" = dontDistribute super."reverse-apply";
"reverse-geocoding" = dontDistribute super."reverse-geocoding";
@@ -6921,6 +6952,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serv" = dontDistribute super."serv";
"servant" = doDistribute super."servant_0_2_2";
"servant-JuicyPixels" = dontDistribute super."servant-JuicyPixels";
"servant-blaze" = dontDistribute super."servant-blaze";
@@ -7144,6 +7176,7 @@ self: super: {
"snaplet-coffee" = dontDistribute super."snaplet-coffee";
"snaplet-css-min" = dontDistribute super."snaplet-css-min";
"snaplet-environments" = dontDistribute super."snaplet-environments";
+ "snaplet-fay" = doDistribute super."snaplet-fay_0_3_3_12";
"snaplet-ghcjs" = dontDistribute super."snaplet-ghcjs";
"snaplet-hasql" = dontDistribute super."snaplet-hasql";
"snaplet-haxl" = dontDistribute super."snaplet-haxl";
@@ -7907,6 +7940,7 @@ self: super: {
"typehash" = dontDistribute super."typehash";
"typelevel" = dontDistribute super."typelevel";
"typelevel-tensor" = dontDistribute super."typelevel-tensor";
+ "typelits-witnesses" = dontDistribute super."typelits-witnesses";
"typeof" = dontDistribute super."typeof";
"typeparams" = dontDistribute super."typeparams";
"types-compat" = dontDistribute super."types-compat";
@@ -8146,6 +8180,7 @@ self: super: {
"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" = dontDistribute super."vty";
diff --git a/pkgs/development/haskell-modules/configuration-lts-2.22.nix b/pkgs/development/haskell-modules/configuration-lts-2.22.nix
index a1f3a7d8573..4a2314c6157 100644
--- a/pkgs/development/haskell-modules/configuration-lts-2.22.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-2.22.nix
@@ -330,6 +330,7 @@ self: super: {
"FormalGrammars" = dontDistribute super."FormalGrammars";
"Foster" = dontDistribute super."Foster";
"FpMLv53" = dontDistribute super."FpMLv53";
+ "FractalArt" = dontDistribute super."FractalArt";
"Fractaler" = dontDistribute super."Fractaler";
"Frames" = dontDistribute super."Frames";
"Frank" = dontDistribute super."Frank";
@@ -481,6 +482,7 @@ self: super: {
"HTTP-Simple" = dontDistribute super."HTTP-Simple";
"HTab" = dontDistribute super."HTab";
"HTicTacToe" = dontDistribute super."HTicTacToe";
+ "HUnit" = doDistribute super."HUnit_1_2_5_2";
"HUnit-Diff" = dontDistribute super."HUnit-Diff";
"HUnit-Plus" = dontDistribute super."HUnit-Plus";
"HUnit-approx" = dontDistribute super."HUnit-approx";
@@ -514,6 +516,7 @@ self: super: {
"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";
@@ -1436,6 +1439,7 @@ self: super: {
"authinfo-hs" = dontDistribute super."authinfo-hs";
"authoring" = dontDistribute super."authoring";
"auto" = dontDistribute super."auto";
+ "auto-update" = doDistribute super."auto-update_0_1_2_2";
"autonix-deps" = dontDistribute super."autonix-deps";
"autonix-deps-kf5" = dontDistribute super."autonix-deps-kf5";
"autoproc" = dontDistribute super."autoproc";
@@ -1502,6 +1506,7 @@ self: super: {
"base-io-access" = dontDistribute super."base-io-access";
"base-noprelude" = dontDistribute super."base-noprelude";
"base-orphans" = dontDistribute super."base-orphans";
+ "base-prelude" = doDistribute super."base-prelude_0_1_19";
"base32-bytestring" = dontDistribute super."base32-bytestring";
"base32string" = dontDistribute super."base32string";
"base58-bytestring" = dontDistribute super."base58-bytestring";
@@ -1723,6 +1728,7 @@ self: super: {
"bot" = dontDistribute super."bot";
"both" = dontDistribute super."both";
"botpp" = dontDistribute super."botpp";
+ "bound" = doDistribute super."bound_1_0_6";
"bound-gen" = dontDistribute super."bound-gen";
"bounded-tchan" = dontDistribute super."bounded-tchan";
"boundingboxes" = dontDistribute super."boundingboxes";
@@ -1921,6 +1927,7 @@ self: super: {
"cef" = dontDistribute super."cef";
"ceilometer-common" = dontDistribute super."ceilometer-common";
"cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo";
+ "cerberus" = dontDistribute super."cerberus";
"cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_3";
"cereal-derive" = dontDistribute super."cereal-derive";
"cereal-enumerator" = dontDistribute super."cereal-enumerator";
@@ -2129,6 +2136,7 @@ self: super: {
"concrete-typerep" = dontDistribute super."concrete-typerep";
"concurrent-barrier" = dontDistribute super."concurrent-barrier";
"concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache";
+ "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9";
"concurrent-machines" = dontDistribute super."concurrent-machines";
"concurrent-output" = dontDistribute super."concurrent-output";
"concurrent-sa" = dontDistribute super."concurrent-sa";
@@ -2558,6 +2566,7 @@ self: super: {
"diagrams-solve" = dontDistribute super."diagrams-solve";
"diagrams-svg" = doDistribute super."diagrams-svg_1_1_0_5";
"diagrams-tikz" = dontDistribute super."diagrams-tikz";
+ "dialog" = dontDistribute super."dialog";
"dice" = dontDistribute super."dice";
"dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit";
"dicom" = dontDistribute super."dicom";
@@ -2748,6 +2757,7 @@ self: super: {
"edenskel" = dontDistribute super."edenskel";
"edentv" = dontDistribute super."edentv";
"edge" = dontDistribute super."edge";
+ "edis" = dontDistribute super."edis";
"edit-distance-vector" = dontDistribute super."edit-distance-vector";
"edit-lenses" = dontDistribute super."edit-lenses";
"edit-lenses-demo" = dontDistribute super."edit-lenses-demo";
@@ -2940,6 +2950,7 @@ self: super: {
"failable-list" = dontDistribute super."failable-list";
"failure" = dontDistribute super."failure";
"fair-predicates" = dontDistribute super."fair-predicates";
+ "fake-type" = dontDistribute super."fake-type";
"faker" = dontDistribute super."faker";
"falling-turnip" = dontDistribute super."falling-turnip";
"fallingblocks" = dontDistribute super."fallingblocks";
@@ -3155,6 +3166,7 @@ self: super: {
"friday-juicypixels" = dontDistribute super."friday-juicypixels";
"friday-scale-dct" = dontDistribute super."friday-scale-dct";
"friendly-time" = dontDistribute super."friendly-time";
+ "frontmatter" = dontDistribute super."frontmatter";
"frp-arduino" = dontDistribute super."frp-arduino";
"frpnow" = dontDistribute super."frpnow";
"frpnow-gloss" = dontDistribute super."frpnow-gloss";
@@ -3371,6 +3383,7 @@ self: super: {
"gitlib-test" = doDistribute super."gitlib-test_3_1_0_2";
"gitlib-utils" = dontDistribute super."gitlib-utils";
"gitrev" = doDistribute super."gitrev_1_0_0";
+ "gitter" = dontDistribute super."gitter";
"gl-capture" = dontDistribute super."gl-capture";
"glade" = dontDistribute super."glade";
"gladexml-accessor" = dontDistribute super."gladexml-accessor";
@@ -3582,6 +3595,7 @@ self: super: {
"gstreamer" = dontDistribute super."gstreamer";
"gt-tools" = dontDistribute super."gt-tools";
"gtfs" = dontDistribute super."gtfs";
+ "gtk" = doDistribute super."gtk_0_13_9";
"gtk-helpers" = dontDistribute super."gtk-helpers";
"gtk-jsinput" = dontDistribute super."gtk-jsinput";
"gtk-largeTreeStore" = dontDistribute super."gtk-largeTreeStore";
@@ -3674,6 +3688,7 @@ self: super: {
"hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP";
"hackage-server" = dontDistribute super."hackage-server";
"hackage-sparks" = dontDistribute super."hackage-sparks";
+ "hackage-whatsnew" = dontDistribute super."hackage-whatsnew";
"hackage2hwn" = dontDistribute super."hackage2hwn";
"hackage2twitter" = dontDistribute super."hackage2twitter";
"hackager" = dontDistribute super."hackager";
@@ -3831,6 +3846,7 @@ self: super: {
"haskell-in-space" = dontDistribute super."haskell-in-space";
"haskell-modbus" = dontDistribute super."haskell-modbus";
"haskell-mpi" = dontDistribute super."haskell-mpi";
+ "haskell-names" = doDistribute super."haskell-names_0_5_3";
"haskell-neo4j-client" = dontDistribute super."haskell-neo4j-client";
"haskell-openflow" = dontDistribute super."haskell-openflow";
"haskell-packages" = doDistribute super."haskell-packages_0_2_4_4";
@@ -4128,6 +4144,7 @@ self: super: {
"hlibBladeRF" = dontDistribute super."hlibBladeRF";
"hlibev" = dontDistribute super."hlibev";
"hlibfam" = dontDistribute super."hlibfam";
+ "hlibgit2" = doDistribute super."hlibgit2_0_18_0_14";
"hlibsass" = dontDistribute super."hlibsass";
"hlint" = doDistribute super."hlint_1_9_21";
"hlogger" = dontDistribute super."hlogger";
@@ -4398,6 +4415,7 @@ self: super: {
"hspec-meta" = doDistribute super."hspec-meta_2_1_7";
"hspec-monad-control" = dontDistribute super."hspec-monad-control";
"hspec-server" = dontDistribute super."hspec-server";
+ "hspec-setup" = dontDistribute super."hspec-setup";
"hspec-shouldbe" = dontDistribute super."hspec-shouldbe";
"hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0";
"hspec-snap" = dontDistribute super."hspec-snap";
@@ -4496,6 +4514,7 @@ self: super: {
"http-shed" = dontDistribute super."http-shed";
"http-streams" = dontDistribute super."http-streams";
"http-test" = dontDistribute super."http-test";
+ "http-types" = doDistribute super."http-types_0_8_6";
"http-wget" = dontDistribute super."http-wget";
"http2" = dontDistribute super."http2";
"httpd-shed" = dontDistribute super."httpd-shed";
@@ -4634,6 +4653,7 @@ self: super: {
"imgurder" = dontDistribute super."imgurder";
"imm" = dontDistribute super."imm";
"imparse" = dontDistribute super."imparse";
+ "imperative-edsl" = dontDistribute super."imperative-edsl";
"imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl";
"implicit" = dontDistribute super."implicit";
"implicit-params" = dontDistribute super."implicit-params";
@@ -4775,6 +4795,7 @@ self: super: {
"ix-shapable" = dontDistribute super."ix-shapable";
"ixdopp" = dontDistribute super."ixdopp";
"ixmonad" = dontDistribute super."ixmonad";
+ "ixset" = doDistribute super."ixset_1_0_6";
"ixset-typed" = dontDistribute super."ixset-typed";
"iyql" = dontDistribute super."iyql";
"j2hs" = dontDistribute super."j2hs";
@@ -4815,6 +4836,7 @@ self: super: {
"json-autotype" = doDistribute super."json-autotype_0_2_5_13";
"json-b" = dontDistribute super."json-b";
"json-builder" = dontDistribute super."json-builder";
+ "json-encoder" = dontDistribute super."json-encoder";
"json-enumerator" = dontDistribute super."json-enumerator";
"json-extra" = dontDistribute super."json-extra";
"json-fu" = dontDistribute super."json-fu";
@@ -4824,6 +4846,7 @@ self: super: {
"json-rpc" = dontDistribute super."json-rpc";
"json-rpc-client" = dontDistribute super."json-rpc-client";
"json-rpc-server" = dontDistribute super."json-rpc-server";
+ "json-schema" = doDistribute super."json-schema_0_7_4_0";
"json-sop" = dontDistribute super."json-sop";
"json-state" = dontDistribute super."json-state";
"json-stream" = dontDistribute super."json-stream";
@@ -4951,6 +4974,7 @@ self: super: {
"lambdacube-examples" = dontDistribute super."lambdacube-examples";
"lambdacube-gl" = dontDistribute super."lambdacube-gl";
"lambdacube-samples" = dontDistribute super."lambdacube-samples";
+ "lambdatex" = dontDistribute super."lambdatex";
"lambdatwit" = dontDistribute super."lambdatwit";
"lambdiff" = dontDistribute super."lambdiff";
"lame-tester" = dontDistribute super."lame-tester";
@@ -5153,6 +5177,7 @@ self: super: {
"list-fusion-probe" = dontDistribute super."list-fusion-probe";
"list-grouping" = dontDistribute super."list-grouping";
"list-mux" = dontDistribute super."list-mux";
+ "list-prompt" = dontDistribute super."list-prompt";
"list-remote-forwards" = dontDistribute super."list-remote-forwards";
"list-t-attoparsec" = dontDistribute super."list-t-attoparsec";
"list-t-html-parser" = dontDistribute super."list-t-html-parser";
@@ -5196,6 +5221,7 @@ self: super: {
"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-domain" = doDistribute super."log-domain_0_10_2";
@@ -5840,6 +5866,7 @@ self: super: {
"omnifmt" = dontDistribute super."omnifmt";
"on-a-horse" = dontDistribute super."on-a-horse";
"on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel";
+ "once" = dontDistribute super."once";
"one-liner" = dontDistribute super."one-liner";
"one-time-password" = dontDistribute super."one-time-password";
"oneOfN" = dontDistribute super."oneOfN";
@@ -5897,6 +5924,7 @@ self: super: {
"optional" = dontDistribute super."optional";
"optional-args" = dontDistribute super."optional-args";
"options-time" = dontDistribute super."options-time";
+ "optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"orc" = dontDistribute super."orc";
"orchestrate" = dontDistribute super."orchestrate";
@@ -6093,6 +6121,7 @@ self: super: {
"phasechange" = dontDistribute super."phasechange";
"phash" = dontDistribute super."phash";
"phizzle" = dontDistribute super."phizzle";
+ "phoityne" = dontDistribute super."phoityne";
"phone-numbers" = dontDistribute super."phone-numbers";
"phone-push" = dontDistribute super."phone-push";
"phonetic-code" = dontDistribute super."phonetic-code";
@@ -6125,6 +6154,7 @@ self: super: {
"pipes-cereal" = dontDistribute super."pipes-cereal";
"pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus";
"pipes-cliff" = dontDistribute super."pipes-cliff";
+ "pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_3";
"pipes-conduit" = dontDistribute super."pipes-conduit";
"pipes-core" = dontDistribute super."pipes-core";
"pipes-courier" = dontDistribute super."pipes-courier";
@@ -6240,6 +6270,7 @@ self: super: {
"possible" = dontDistribute super."possible";
"post-mess-age" = doDistribute super."post-mess-age_0_1_0_0";
"postcodes" = dontDistribute super."postcodes";
+ "postgresql-binary" = doDistribute super."postgresql-binary_0_5_2_1";
"postgresql-config" = dontDistribute super."postgresql-config";
"postgresql-connector" = dontDistribute super."postgresql-connector";
"postgresql-copy-escape" = dontDistribute super."postgresql-copy-escape";
@@ -6683,6 +6714,7 @@ self: super: {
"rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster";
"retry" = doDistribute super."retry_0_6";
"retryer" = dontDistribute super."retryer";
+ "rev-state" = doDistribute super."rev-state_0_1";
"revdectime" = dontDistribute super."revdectime";
"reverse-apply" = dontDistribute super."reverse-apply";
"reverse-geocoding" = dontDistribute super."reverse-geocoding";
@@ -6917,6 +6949,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serv" = dontDistribute super."serv";
"servant" = doDistribute super."servant_0_2_2";
"servant-JuicyPixels" = dontDistribute super."servant-JuicyPixels";
"servant-blaze" = dontDistribute super."servant-blaze";
@@ -7140,6 +7173,7 @@ self: super: {
"snaplet-coffee" = dontDistribute super."snaplet-coffee";
"snaplet-css-min" = dontDistribute super."snaplet-css-min";
"snaplet-environments" = dontDistribute super."snaplet-environments";
+ "snaplet-fay" = doDistribute super."snaplet-fay_0_3_3_12";
"snaplet-ghcjs" = dontDistribute super."snaplet-ghcjs";
"snaplet-hasql" = dontDistribute super."snaplet-hasql";
"snaplet-haxl" = dontDistribute super."snaplet-haxl";
@@ -7903,6 +7937,7 @@ self: super: {
"typehash" = dontDistribute super."typehash";
"typelevel" = dontDistribute super."typelevel";
"typelevel-tensor" = dontDistribute super."typelevel-tensor";
+ "typelits-witnesses" = dontDistribute super."typelits-witnesses";
"typeof" = dontDistribute super."typeof";
"typeparams" = dontDistribute super."typeparams";
"types-compat" = dontDistribute super."types-compat";
@@ -8142,6 +8177,7 @@ self: super: {
"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" = dontDistribute super."vty";
diff --git a/pkgs/development/haskell-modules/configuration-lts-2.3.nix b/pkgs/development/haskell-modules/configuration-lts-2.3.nix
index 090646697dc..484e836b508 100644
--- a/pkgs/development/haskell-modules/configuration-lts-2.3.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-2.3.nix
@@ -332,6 +332,7 @@ self: super: {
"FormalGrammars" = dontDistribute super."FormalGrammars";
"Foster" = dontDistribute super."Foster";
"FpMLv53" = dontDistribute super."FpMLv53";
+ "FractalArt" = dontDistribute super."FractalArt";
"Fractaler" = dontDistribute super."Fractaler";
"Frames" = dontDistribute super."Frames";
"Frank" = dontDistribute super."Frank";
@@ -483,6 +484,7 @@ self: super: {
"HTTP-Simple" = dontDistribute super."HTTP-Simple";
"HTab" = dontDistribute super."HTab";
"HTicTacToe" = dontDistribute super."HTicTacToe";
+ "HUnit" = doDistribute super."HUnit_1_2_5_2";
"HUnit-Diff" = dontDistribute super."HUnit-Diff";
"HUnit-Plus" = dontDistribute super."HUnit-Plus";
"HUnit-approx" = dontDistribute super."HUnit-approx";
@@ -516,6 +518,7 @@ self: super: {
"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";
@@ -1515,6 +1518,7 @@ self: super: {
"base-io-access" = dontDistribute super."base-io-access";
"base-noprelude" = dontDistribute super."base-noprelude";
"base-orphans" = dontDistribute super."base-orphans";
+ "base-prelude" = doDistribute super."base-prelude_0_1_19";
"base32-bytestring" = dontDistribute super."base32-bytestring";
"base32string" = dontDistribute super."base32string";
"base58-bytestring" = dontDistribute super."base58-bytestring";
@@ -1939,6 +1943,7 @@ self: super: {
"cef" = dontDistribute super."cef";
"ceilometer-common" = dontDistribute super."ceilometer-common";
"cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo";
+ "cerberus" = dontDistribute super."cerberus";
"cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_3";
"cereal-derive" = dontDistribute super."cereal-derive";
"cereal-enumerator" = dontDistribute super."cereal-enumerator";
@@ -2150,6 +2155,7 @@ self: super: {
"concrete-typerep" = dontDistribute super."concrete-typerep";
"concurrent-barrier" = dontDistribute super."concurrent-barrier";
"concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache";
+ "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9";
"concurrent-machines" = dontDistribute super."concurrent-machines";
"concurrent-output" = dontDistribute super."concurrent-output";
"concurrent-sa" = dontDistribute super."concurrent-sa";
@@ -2583,6 +2589,7 @@ self: super: {
"diagrams-solve" = dontDistribute super."diagrams-solve";
"diagrams-svg" = doDistribute super."diagrams-svg_1_1_0_5";
"diagrams-tikz" = dontDistribute super."diagrams-tikz";
+ "dialog" = dontDistribute super."dialog";
"dice" = dontDistribute super."dice";
"dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit";
"dicom" = dontDistribute super."dicom";
@@ -2774,6 +2781,7 @@ self: super: {
"edenskel" = dontDistribute super."edenskel";
"edentv" = dontDistribute super."edentv";
"edge" = dontDistribute super."edge";
+ "edis" = dontDistribute super."edis";
"edit-distance" = doDistribute super."edit-distance_0_2_1_2";
"edit-distance-vector" = dontDistribute super."edit-distance-vector";
"edit-lenses" = dontDistribute super."edit-lenses";
@@ -2970,6 +2978,7 @@ self: super: {
"failable-list" = dontDistribute super."failable-list";
"failure" = dontDistribute super."failure";
"fair-predicates" = dontDistribute super."fair-predicates";
+ "fake-type" = dontDistribute super."fake-type";
"faker" = dontDistribute super."faker";
"falling-turnip" = dontDistribute super."falling-turnip";
"fallingblocks" = dontDistribute super."fallingblocks";
@@ -3191,6 +3200,7 @@ self: super: {
"friday-juicypixels" = dontDistribute super."friday-juicypixels";
"friday-scale-dct" = dontDistribute super."friday-scale-dct";
"friendly-time" = dontDistribute super."friendly-time";
+ "frontmatter" = dontDistribute super."frontmatter";
"frp-arduino" = dontDistribute super."frp-arduino";
"frpnow" = dontDistribute super."frpnow";
"frpnow-gloss" = dontDistribute super."frpnow-gloss";
@@ -3409,6 +3419,7 @@ self: super: {
"gitlib-test" = doDistribute super."gitlib-test_3_1_0_2";
"gitlib-utils" = dontDistribute super."gitlib-utils";
"gitrev" = doDistribute super."gitrev_1_0_0";
+ "gitter" = dontDistribute super."gitter";
"gl" = doDistribute super."gl_0_7_5";
"gl-capture" = dontDistribute super."gl-capture";
"glade" = dontDistribute super."glade";
@@ -3717,6 +3728,7 @@ self: super: {
"hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP";
"hackage-server" = dontDistribute super."hackage-server";
"hackage-sparks" = dontDistribute super."hackage-sparks";
+ "hackage-whatsnew" = dontDistribute super."hackage-whatsnew";
"hackage2hwn" = dontDistribute super."hackage2hwn";
"hackage2twitter" = dontDistribute super."hackage2twitter";
"hackager" = dontDistribute super."hackager";
@@ -4178,6 +4190,7 @@ self: super: {
"hlibBladeRF" = dontDistribute super."hlibBladeRF";
"hlibev" = dontDistribute super."hlibev";
"hlibfam" = dontDistribute super."hlibfam";
+ "hlibgit2" = doDistribute super."hlibgit2_0_18_0_14";
"hlibsass" = dontDistribute super."hlibsass";
"hlint" = doDistribute super."hlint_1_9_19";
"hlogger" = dontDistribute super."hlogger";
@@ -4450,6 +4463,7 @@ self: super: {
"hspec-meta" = doDistribute super."hspec-meta_2_1_5";
"hspec-monad-control" = dontDistribute super."hspec-monad-control";
"hspec-server" = dontDistribute super."hspec-server";
+ "hspec-setup" = dontDistribute super."hspec-setup";
"hspec-shouldbe" = dontDistribute super."hspec-shouldbe";
"hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0";
"hspec-snap" = dontDistribute super."hspec-snap";
@@ -4551,6 +4565,7 @@ self: super: {
"http-shed" = dontDistribute super."http-shed";
"http-streams" = dontDistribute super."http-streams";
"http-test" = dontDistribute super."http-test";
+ "http-types" = doDistribute super."http-types_0_8_6";
"http-wget" = dontDistribute super."http-wget";
"http2" = dontDistribute super."http2";
"httpd-shed" = dontDistribute super."httpd-shed";
@@ -4690,6 +4705,7 @@ self: super: {
"imgurder" = dontDistribute super."imgurder";
"imm" = dontDistribute super."imm";
"imparse" = dontDistribute super."imparse";
+ "imperative-edsl" = dontDistribute super."imperative-edsl";
"imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl";
"implicit" = dontDistribute super."implicit";
"implicit-params" = dontDistribute super."implicit-params";
@@ -4831,6 +4847,7 @@ self: super: {
"ix-shapable" = dontDistribute super."ix-shapable";
"ixdopp" = dontDistribute super."ixdopp";
"ixmonad" = dontDistribute super."ixmonad";
+ "ixset" = doDistribute super."ixset_1_0_6";
"ixset-typed" = dontDistribute super."ixset-typed";
"iyql" = dontDistribute super."iyql";
"j2hs" = dontDistribute super."j2hs";
@@ -4875,6 +4892,7 @@ self: super: {
"json-autotype" = doDistribute super."json-autotype_0_2_5_13";
"json-b" = dontDistribute super."json-b";
"json-builder" = dontDistribute super."json-builder";
+ "json-encoder" = dontDistribute super."json-encoder";
"json-enumerator" = dontDistribute super."json-enumerator";
"json-extra" = dontDistribute super."json-extra";
"json-fu" = dontDistribute super."json-fu";
@@ -5013,6 +5031,7 @@ self: super: {
"lambdacube-examples" = dontDistribute super."lambdacube-examples";
"lambdacube-gl" = dontDistribute super."lambdacube-gl";
"lambdacube-samples" = dontDistribute super."lambdacube-samples";
+ "lambdatex" = dontDistribute super."lambdatex";
"lambdatwit" = dontDistribute super."lambdatwit";
"lambdiff" = dontDistribute super."lambdiff";
"lame-tester" = dontDistribute super."lame-tester";
@@ -5218,6 +5237,7 @@ self: super: {
"list-fusion-probe" = dontDistribute super."list-fusion-probe";
"list-grouping" = dontDistribute super."list-grouping";
"list-mux" = dontDistribute super."list-mux";
+ "list-prompt" = dontDistribute super."list-prompt";
"list-remote-forwards" = dontDistribute super."list-remote-forwards";
"list-t" = doDistribute super."list-t_0_4_3";
"list-t-attoparsec" = dontDistribute super."list-t-attoparsec";
@@ -5262,6 +5282,7 @@ self: super: {
"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-domain" = doDistribute super."log-domain_0_10_0_1";
@@ -5922,6 +5943,7 @@ self: super: {
"omnifmt" = dontDistribute super."omnifmt";
"on-a-horse" = dontDistribute super."on-a-horse";
"on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel";
+ "once" = dontDistribute super."once";
"one-liner" = dontDistribute super."one-liner";
"one-time-password" = dontDistribute super."one-time-password";
"oneOfN" = dontDistribute super."oneOfN";
@@ -5979,6 +6001,7 @@ self: super: {
"optional" = dontDistribute super."optional";
"optional-args" = dontDistribute super."optional-args";
"options-time" = dontDistribute super."options-time";
+ "optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"optparse-simple" = dontDistribute super."optparse-simple";
"orc" = dontDistribute super."orc";
@@ -6178,6 +6201,7 @@ self: super: {
"phasechange" = dontDistribute super."phasechange";
"phash" = dontDistribute super."phash";
"phizzle" = dontDistribute super."phizzle";
+ "phoityne" = dontDistribute super."phoityne";
"phone-numbers" = dontDistribute super."phone-numbers";
"phone-push" = dontDistribute super."phone-push";
"phonetic-code" = dontDistribute super."phonetic-code";
@@ -6211,6 +6235,7 @@ self: super: {
"pipes-cereal" = dontDistribute super."pipes-cereal";
"pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus";
"pipes-cliff" = dontDistribute super."pipes-cliff";
+ "pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_3";
"pipes-conduit" = dontDistribute super."pipes-conduit";
"pipes-core" = dontDistribute super."pipes-core";
"pipes-courier" = dontDistribute super."pipes-courier";
@@ -6779,6 +6804,7 @@ self: super: {
"rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster";
"retry" = doDistribute super."retry_0_6";
"retryer" = dontDistribute super."retryer";
+ "rev-state" = doDistribute super."rev-state_0_1";
"revdectime" = dontDistribute super."revdectime";
"reverse-apply" = dontDistribute super."reverse-apply";
"reverse-geocoding" = dontDistribute super."reverse-geocoding";
@@ -7015,6 +7041,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serv" = dontDistribute super."serv";
"servant" = doDistribute super."servant_0_2_2";
"servant-JuicyPixels" = dontDistribute super."servant-JuicyPixels";
"servant-blaze" = dontDistribute super."servant-blaze";
@@ -8021,6 +8048,7 @@ self: super: {
"typehash" = dontDistribute super."typehash";
"typelevel" = dontDistribute super."typelevel";
"typelevel-tensor" = dontDistribute super."typelevel-tensor";
+ "typelits-witnesses" = dontDistribute super."typelits-witnesses";
"typeof" = dontDistribute super."typeof";
"typeparams" = dontDistribute super."typeparams";
"types-compat" = dontDistribute super."types-compat";
@@ -8262,6 +8290,7 @@ self: super: {
"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" = dontDistribute super."vty";
diff --git a/pkgs/development/haskell-modules/configuration-lts-2.4.nix b/pkgs/development/haskell-modules/configuration-lts-2.4.nix
index 727580bbaf5..b5cef3ba643 100644
--- a/pkgs/development/haskell-modules/configuration-lts-2.4.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-2.4.nix
@@ -332,6 +332,7 @@ self: super: {
"FormalGrammars" = dontDistribute super."FormalGrammars";
"Foster" = dontDistribute super."Foster";
"FpMLv53" = dontDistribute super."FpMLv53";
+ "FractalArt" = dontDistribute super."FractalArt";
"Fractaler" = dontDistribute super."Fractaler";
"Frames" = dontDistribute super."Frames";
"Frank" = dontDistribute super."Frank";
@@ -483,6 +484,7 @@ self: super: {
"HTTP-Simple" = dontDistribute super."HTTP-Simple";
"HTab" = dontDistribute super."HTab";
"HTicTacToe" = dontDistribute super."HTicTacToe";
+ "HUnit" = doDistribute super."HUnit_1_2_5_2";
"HUnit-Diff" = dontDistribute super."HUnit-Diff";
"HUnit-Plus" = dontDistribute super."HUnit-Plus";
"HUnit-approx" = dontDistribute super."HUnit-approx";
@@ -516,6 +518,7 @@ self: super: {
"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";
@@ -1515,6 +1518,7 @@ self: super: {
"base-io-access" = dontDistribute super."base-io-access";
"base-noprelude" = dontDistribute super."base-noprelude";
"base-orphans" = dontDistribute super."base-orphans";
+ "base-prelude" = doDistribute super."base-prelude_0_1_19";
"base32-bytestring" = dontDistribute super."base32-bytestring";
"base32string" = dontDistribute super."base32string";
"base58-bytestring" = dontDistribute super."base58-bytestring";
@@ -1938,6 +1942,7 @@ self: super: {
"cef" = dontDistribute super."cef";
"ceilometer-common" = dontDistribute super."ceilometer-common";
"cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo";
+ "cerberus" = dontDistribute super."cerberus";
"cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_3";
"cereal-derive" = dontDistribute super."cereal-derive";
"cereal-enumerator" = dontDistribute super."cereal-enumerator";
@@ -2149,6 +2154,7 @@ self: super: {
"concrete-typerep" = dontDistribute super."concrete-typerep";
"concurrent-barrier" = dontDistribute super."concurrent-barrier";
"concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache";
+ "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9";
"concurrent-machines" = dontDistribute super."concurrent-machines";
"concurrent-output" = dontDistribute super."concurrent-output";
"concurrent-sa" = dontDistribute super."concurrent-sa";
@@ -2582,6 +2588,7 @@ self: super: {
"diagrams-solve" = dontDistribute super."diagrams-solve";
"diagrams-svg" = doDistribute super."diagrams-svg_1_1_0_5";
"diagrams-tikz" = dontDistribute super."diagrams-tikz";
+ "dialog" = dontDistribute super."dialog";
"dice" = dontDistribute super."dice";
"dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit";
"dicom" = dontDistribute super."dicom";
@@ -2773,6 +2780,7 @@ self: super: {
"edenskel" = dontDistribute super."edenskel";
"edentv" = dontDistribute super."edentv";
"edge" = dontDistribute super."edge";
+ "edis" = dontDistribute super."edis";
"edit-distance" = doDistribute super."edit-distance_0_2_1_2";
"edit-distance-vector" = dontDistribute super."edit-distance-vector";
"edit-lenses" = dontDistribute super."edit-lenses";
@@ -2969,6 +2977,7 @@ self: super: {
"failable-list" = dontDistribute super."failable-list";
"failure" = dontDistribute super."failure";
"fair-predicates" = dontDistribute super."fair-predicates";
+ "fake-type" = dontDistribute super."fake-type";
"faker" = dontDistribute super."faker";
"falling-turnip" = dontDistribute super."falling-turnip";
"fallingblocks" = dontDistribute super."fallingblocks";
@@ -3190,6 +3199,7 @@ self: super: {
"friday-juicypixels" = dontDistribute super."friday-juicypixels";
"friday-scale-dct" = dontDistribute super."friday-scale-dct";
"friendly-time" = dontDistribute super."friendly-time";
+ "frontmatter" = dontDistribute super."frontmatter";
"frp-arduino" = dontDistribute super."frp-arduino";
"frpnow" = dontDistribute super."frpnow";
"frpnow-gloss" = dontDistribute super."frpnow-gloss";
@@ -3408,6 +3418,7 @@ self: super: {
"gitlib-test" = doDistribute super."gitlib-test_3_1_0_2";
"gitlib-utils" = dontDistribute super."gitlib-utils";
"gitrev" = doDistribute super."gitrev_1_0_0";
+ "gitter" = dontDistribute super."gitter";
"gl" = doDistribute super."gl_0_7_5";
"gl-capture" = dontDistribute super."gl-capture";
"glade" = dontDistribute super."glade";
@@ -3716,6 +3727,7 @@ self: super: {
"hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP";
"hackage-server" = dontDistribute super."hackage-server";
"hackage-sparks" = dontDistribute super."hackage-sparks";
+ "hackage-whatsnew" = dontDistribute super."hackage-whatsnew";
"hackage2hwn" = dontDistribute super."hackage2hwn";
"hackage2twitter" = dontDistribute super."hackage2twitter";
"hackager" = dontDistribute super."hackager";
@@ -4177,6 +4189,7 @@ self: super: {
"hlibBladeRF" = dontDistribute super."hlibBladeRF";
"hlibev" = dontDistribute super."hlibev";
"hlibfam" = dontDistribute super."hlibfam";
+ "hlibgit2" = doDistribute super."hlibgit2_0_18_0_14";
"hlibsass" = dontDistribute super."hlibsass";
"hlint" = doDistribute super."hlint_1_9_19";
"hlogger" = dontDistribute super."hlogger";
@@ -4449,6 +4462,7 @@ self: super: {
"hspec-meta" = doDistribute super."hspec-meta_2_1_5";
"hspec-monad-control" = dontDistribute super."hspec-monad-control";
"hspec-server" = dontDistribute super."hspec-server";
+ "hspec-setup" = dontDistribute super."hspec-setup";
"hspec-shouldbe" = dontDistribute super."hspec-shouldbe";
"hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0";
"hspec-snap" = dontDistribute super."hspec-snap";
@@ -4550,6 +4564,7 @@ self: super: {
"http-shed" = dontDistribute super."http-shed";
"http-streams" = dontDistribute super."http-streams";
"http-test" = dontDistribute super."http-test";
+ "http-types" = doDistribute super."http-types_0_8_6";
"http-wget" = dontDistribute super."http-wget";
"http2" = dontDistribute super."http2";
"httpd-shed" = dontDistribute super."httpd-shed";
@@ -4689,6 +4704,7 @@ self: super: {
"imgurder" = dontDistribute super."imgurder";
"imm" = dontDistribute super."imm";
"imparse" = dontDistribute super."imparse";
+ "imperative-edsl" = dontDistribute super."imperative-edsl";
"imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl";
"implicit" = dontDistribute super."implicit";
"implicit-params" = dontDistribute super."implicit-params";
@@ -4830,6 +4846,7 @@ self: super: {
"ix-shapable" = dontDistribute super."ix-shapable";
"ixdopp" = dontDistribute super."ixdopp";
"ixmonad" = dontDistribute super."ixmonad";
+ "ixset" = doDistribute super."ixset_1_0_6";
"ixset-typed" = dontDistribute super."ixset-typed";
"iyql" = dontDistribute super."iyql";
"j2hs" = dontDistribute super."j2hs";
@@ -4874,6 +4891,7 @@ self: super: {
"json-autotype" = doDistribute super."json-autotype_0_2_5_13";
"json-b" = dontDistribute super."json-b";
"json-builder" = dontDistribute super."json-builder";
+ "json-encoder" = dontDistribute super."json-encoder";
"json-enumerator" = dontDistribute super."json-enumerator";
"json-extra" = dontDistribute super."json-extra";
"json-fu" = dontDistribute super."json-fu";
@@ -5012,6 +5030,7 @@ self: super: {
"lambdacube-examples" = dontDistribute super."lambdacube-examples";
"lambdacube-gl" = dontDistribute super."lambdacube-gl";
"lambdacube-samples" = dontDistribute super."lambdacube-samples";
+ "lambdatex" = dontDistribute super."lambdatex";
"lambdatwit" = dontDistribute super."lambdatwit";
"lambdiff" = dontDistribute super."lambdiff";
"lame-tester" = dontDistribute super."lame-tester";
@@ -5217,6 +5236,7 @@ self: super: {
"list-fusion-probe" = dontDistribute super."list-fusion-probe";
"list-grouping" = dontDistribute super."list-grouping";
"list-mux" = dontDistribute super."list-mux";
+ "list-prompt" = dontDistribute super."list-prompt";
"list-remote-forwards" = dontDistribute super."list-remote-forwards";
"list-t" = doDistribute super."list-t_0_4_4";
"list-t-attoparsec" = dontDistribute super."list-t-attoparsec";
@@ -5261,6 +5281,7 @@ self: super: {
"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-domain" = doDistribute super."log-domain_0_10_0_1";
@@ -5920,6 +5941,7 @@ self: super: {
"omnifmt" = dontDistribute super."omnifmt";
"on-a-horse" = dontDistribute super."on-a-horse";
"on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel";
+ "once" = dontDistribute super."once";
"one-liner" = dontDistribute super."one-liner";
"one-time-password" = dontDistribute super."one-time-password";
"oneOfN" = dontDistribute super."oneOfN";
@@ -5977,6 +5999,7 @@ self: super: {
"optional" = dontDistribute super."optional";
"optional-args" = dontDistribute super."optional-args";
"options-time" = dontDistribute super."options-time";
+ "optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"optparse-simple" = dontDistribute super."optparse-simple";
"orc" = dontDistribute super."orc";
@@ -6174,6 +6197,7 @@ self: super: {
"phasechange" = dontDistribute super."phasechange";
"phash" = dontDistribute super."phash";
"phizzle" = dontDistribute super."phizzle";
+ "phoityne" = dontDistribute super."phoityne";
"phone-numbers" = dontDistribute super."phone-numbers";
"phone-push" = dontDistribute super."phone-push";
"phonetic-code" = dontDistribute super."phonetic-code";
@@ -6207,6 +6231,7 @@ self: super: {
"pipes-cereal" = dontDistribute super."pipes-cereal";
"pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus";
"pipes-cliff" = dontDistribute super."pipes-cliff";
+ "pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_3";
"pipes-conduit" = dontDistribute super."pipes-conduit";
"pipes-core" = dontDistribute super."pipes-core";
"pipes-courier" = dontDistribute super."pipes-courier";
@@ -6774,6 +6799,7 @@ self: super: {
"rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster";
"retry" = doDistribute super."retry_0_6";
"retryer" = dontDistribute super."retryer";
+ "rev-state" = doDistribute super."rev-state_0_1";
"revdectime" = dontDistribute super."revdectime";
"reverse-apply" = dontDistribute super."reverse-apply";
"reverse-geocoding" = dontDistribute super."reverse-geocoding";
@@ -7010,6 +7036,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serv" = dontDistribute super."serv";
"servant" = doDistribute super."servant_0_2_2";
"servant-JuicyPixels" = dontDistribute super."servant-JuicyPixels";
"servant-blaze" = dontDistribute super."servant-blaze";
@@ -8016,6 +8043,7 @@ self: super: {
"typehash" = dontDistribute super."typehash";
"typelevel" = dontDistribute super."typelevel";
"typelevel-tensor" = dontDistribute super."typelevel-tensor";
+ "typelits-witnesses" = dontDistribute super."typelits-witnesses";
"typeof" = dontDistribute super."typeof";
"typeparams" = dontDistribute super."typeparams";
"types-compat" = dontDistribute super."types-compat";
@@ -8257,6 +8285,7 @@ self: super: {
"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" = dontDistribute super."vty";
diff --git a/pkgs/development/haskell-modules/configuration-lts-2.5.nix b/pkgs/development/haskell-modules/configuration-lts-2.5.nix
index ed098498a05..d3360cbfc4f 100644
--- a/pkgs/development/haskell-modules/configuration-lts-2.5.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-2.5.nix
@@ -332,6 +332,7 @@ self: super: {
"FormalGrammars" = dontDistribute super."FormalGrammars";
"Foster" = dontDistribute super."Foster";
"FpMLv53" = dontDistribute super."FpMLv53";
+ "FractalArt" = dontDistribute super."FractalArt";
"Fractaler" = dontDistribute super."Fractaler";
"Frames" = dontDistribute super."Frames";
"Frank" = dontDistribute super."Frank";
@@ -483,6 +484,7 @@ self: super: {
"HTTP-Simple" = dontDistribute super."HTTP-Simple";
"HTab" = dontDistribute super."HTab";
"HTicTacToe" = dontDistribute super."HTicTacToe";
+ "HUnit" = doDistribute super."HUnit_1_2_5_2";
"HUnit-Diff" = dontDistribute super."HUnit-Diff";
"HUnit-Plus" = dontDistribute super."HUnit-Plus";
"HUnit-approx" = dontDistribute super."HUnit-approx";
@@ -516,6 +518,7 @@ self: super: {
"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";
@@ -1515,6 +1518,7 @@ self: super: {
"base-io-access" = dontDistribute super."base-io-access";
"base-noprelude" = dontDistribute super."base-noprelude";
"base-orphans" = dontDistribute super."base-orphans";
+ "base-prelude" = doDistribute super."base-prelude_0_1_19";
"base32-bytestring" = dontDistribute super."base32-bytestring";
"base32string" = dontDistribute super."base32string";
"base58-bytestring" = dontDistribute super."base58-bytestring";
@@ -1938,6 +1942,7 @@ self: super: {
"cef" = dontDistribute super."cef";
"ceilometer-common" = dontDistribute super."ceilometer-common";
"cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo";
+ "cerberus" = dontDistribute super."cerberus";
"cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_3";
"cereal-derive" = dontDistribute super."cereal-derive";
"cereal-enumerator" = dontDistribute super."cereal-enumerator";
@@ -2149,6 +2154,7 @@ self: super: {
"concrete-typerep" = dontDistribute super."concrete-typerep";
"concurrent-barrier" = dontDistribute super."concurrent-barrier";
"concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache";
+ "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9";
"concurrent-machines" = dontDistribute super."concurrent-machines";
"concurrent-output" = dontDistribute super."concurrent-output";
"concurrent-sa" = dontDistribute super."concurrent-sa";
@@ -2581,6 +2587,7 @@ self: super: {
"diagrams-solve" = dontDistribute super."diagrams-solve";
"diagrams-svg" = doDistribute super."diagrams-svg_1_1_0_5";
"diagrams-tikz" = dontDistribute super."diagrams-tikz";
+ "dialog" = dontDistribute super."dialog";
"dice" = dontDistribute super."dice";
"dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit";
"dicom" = dontDistribute super."dicom";
@@ -2772,6 +2779,7 @@ self: super: {
"edenskel" = dontDistribute super."edenskel";
"edentv" = dontDistribute super."edentv";
"edge" = dontDistribute super."edge";
+ "edis" = dontDistribute super."edis";
"edit-distance" = doDistribute super."edit-distance_0_2_1_2";
"edit-distance-vector" = dontDistribute super."edit-distance-vector";
"edit-lenses" = dontDistribute super."edit-lenses";
@@ -2968,6 +2976,7 @@ self: super: {
"failable-list" = dontDistribute super."failable-list";
"failure" = dontDistribute super."failure";
"fair-predicates" = dontDistribute super."fair-predicates";
+ "fake-type" = dontDistribute super."fake-type";
"faker" = dontDistribute super."faker";
"falling-turnip" = dontDistribute super."falling-turnip";
"fallingblocks" = dontDistribute super."fallingblocks";
@@ -3189,6 +3198,7 @@ self: super: {
"friday-juicypixels" = dontDistribute super."friday-juicypixels";
"friday-scale-dct" = dontDistribute super."friday-scale-dct";
"friendly-time" = dontDistribute super."friendly-time";
+ "frontmatter" = dontDistribute super."frontmatter";
"frp-arduino" = dontDistribute super."frp-arduino";
"frpnow" = dontDistribute super."frpnow";
"frpnow-gloss" = dontDistribute super."frpnow-gloss";
@@ -3407,6 +3417,7 @@ self: super: {
"gitlib-test" = doDistribute super."gitlib-test_3_1_0_2";
"gitlib-utils" = dontDistribute super."gitlib-utils";
"gitrev" = doDistribute super."gitrev_1_0_0";
+ "gitter" = dontDistribute super."gitter";
"gl" = doDistribute super."gl_0_7_5";
"gl-capture" = dontDistribute super."gl-capture";
"glade" = dontDistribute super."glade";
@@ -3715,6 +3726,7 @@ self: super: {
"hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP";
"hackage-server" = dontDistribute super."hackage-server";
"hackage-sparks" = dontDistribute super."hackage-sparks";
+ "hackage-whatsnew" = dontDistribute super."hackage-whatsnew";
"hackage2hwn" = dontDistribute super."hackage2hwn";
"hackage2twitter" = dontDistribute super."hackage2twitter";
"hackager" = dontDistribute super."hackager";
@@ -4176,6 +4188,7 @@ self: super: {
"hlibBladeRF" = dontDistribute super."hlibBladeRF";
"hlibev" = dontDistribute super."hlibev";
"hlibfam" = dontDistribute super."hlibfam";
+ "hlibgit2" = doDistribute super."hlibgit2_0_18_0_14";
"hlibsass" = dontDistribute super."hlibsass";
"hlint" = doDistribute super."hlint_1_9_20";
"hlogger" = dontDistribute super."hlogger";
@@ -4448,6 +4461,7 @@ self: super: {
"hspec-meta" = doDistribute super."hspec-meta_2_1_5";
"hspec-monad-control" = dontDistribute super."hspec-monad-control";
"hspec-server" = dontDistribute super."hspec-server";
+ "hspec-setup" = dontDistribute super."hspec-setup";
"hspec-shouldbe" = dontDistribute super."hspec-shouldbe";
"hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0";
"hspec-snap" = dontDistribute super."hspec-snap";
@@ -4549,6 +4563,7 @@ self: super: {
"http-shed" = dontDistribute super."http-shed";
"http-streams" = dontDistribute super."http-streams";
"http-test" = dontDistribute super."http-test";
+ "http-types" = doDistribute super."http-types_0_8_6";
"http-wget" = dontDistribute super."http-wget";
"http2" = dontDistribute super."http2";
"httpd-shed" = dontDistribute super."httpd-shed";
@@ -4688,6 +4703,7 @@ self: super: {
"imgurder" = dontDistribute super."imgurder";
"imm" = dontDistribute super."imm";
"imparse" = dontDistribute super."imparse";
+ "imperative-edsl" = dontDistribute super."imperative-edsl";
"imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl";
"implicit" = dontDistribute super."implicit";
"implicit-params" = dontDistribute super."implicit-params";
@@ -4829,6 +4845,7 @@ self: super: {
"ix-shapable" = dontDistribute super."ix-shapable";
"ixdopp" = dontDistribute super."ixdopp";
"ixmonad" = dontDistribute super."ixmonad";
+ "ixset" = doDistribute super."ixset_1_0_6";
"ixset-typed" = dontDistribute super."ixset-typed";
"iyql" = dontDistribute super."iyql";
"j2hs" = dontDistribute super."j2hs";
@@ -4873,6 +4890,7 @@ self: super: {
"json-autotype" = doDistribute super."json-autotype_0_2_5_13";
"json-b" = dontDistribute super."json-b";
"json-builder" = dontDistribute super."json-builder";
+ "json-encoder" = dontDistribute super."json-encoder";
"json-enumerator" = dontDistribute super."json-enumerator";
"json-extra" = dontDistribute super."json-extra";
"json-fu" = dontDistribute super."json-fu";
@@ -5011,6 +5029,7 @@ self: super: {
"lambdacube-examples" = dontDistribute super."lambdacube-examples";
"lambdacube-gl" = dontDistribute super."lambdacube-gl";
"lambdacube-samples" = dontDistribute super."lambdacube-samples";
+ "lambdatex" = dontDistribute super."lambdatex";
"lambdatwit" = dontDistribute super."lambdatwit";
"lambdiff" = dontDistribute super."lambdiff";
"lame-tester" = dontDistribute super."lame-tester";
@@ -5216,6 +5235,7 @@ self: super: {
"list-fusion-probe" = dontDistribute super."list-fusion-probe";
"list-grouping" = dontDistribute super."list-grouping";
"list-mux" = dontDistribute super."list-mux";
+ "list-prompt" = dontDistribute super."list-prompt";
"list-remote-forwards" = dontDistribute super."list-remote-forwards";
"list-t-attoparsec" = dontDistribute super."list-t-attoparsec";
"list-t-html-parser" = dontDistribute super."list-t-html-parser";
@@ -5259,6 +5279,7 @@ self: super: {
"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-domain" = doDistribute super."log-domain_0_10_0_1";
@@ -5918,6 +5939,7 @@ self: super: {
"omnifmt" = dontDistribute super."omnifmt";
"on-a-horse" = dontDistribute super."on-a-horse";
"on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel";
+ "once" = dontDistribute super."once";
"one-liner" = dontDistribute super."one-liner";
"one-time-password" = dontDistribute super."one-time-password";
"oneOfN" = dontDistribute super."oneOfN";
@@ -5975,6 +5997,7 @@ self: super: {
"optional" = dontDistribute super."optional";
"optional-args" = dontDistribute super."optional-args";
"options-time" = dontDistribute super."options-time";
+ "optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"optparse-simple" = dontDistribute super."optparse-simple";
"orc" = dontDistribute super."orc";
@@ -6172,6 +6195,7 @@ self: super: {
"phasechange" = dontDistribute super."phasechange";
"phash" = dontDistribute super."phash";
"phizzle" = dontDistribute super."phizzle";
+ "phoityne" = dontDistribute super."phoityne";
"phone-numbers" = dontDistribute super."phone-numbers";
"phone-push" = dontDistribute super."phone-push";
"phonetic-code" = dontDistribute super."phonetic-code";
@@ -6205,6 +6229,7 @@ self: super: {
"pipes-cereal" = dontDistribute super."pipes-cereal";
"pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus";
"pipes-cliff" = dontDistribute super."pipes-cliff";
+ "pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_3";
"pipes-conduit" = dontDistribute super."pipes-conduit";
"pipes-core" = dontDistribute super."pipes-core";
"pipes-courier" = dontDistribute super."pipes-courier";
@@ -6772,6 +6797,7 @@ self: super: {
"rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster";
"retry" = doDistribute super."retry_0_6";
"retryer" = dontDistribute super."retryer";
+ "rev-state" = doDistribute super."rev-state_0_1";
"revdectime" = dontDistribute super."revdectime";
"reverse-apply" = dontDistribute super."reverse-apply";
"reverse-geocoding" = dontDistribute super."reverse-geocoding";
@@ -7008,6 +7034,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serv" = dontDistribute super."serv";
"servant" = doDistribute super."servant_0_2_2";
"servant-JuicyPixels" = dontDistribute super."servant-JuicyPixels";
"servant-blaze" = dontDistribute super."servant-blaze";
@@ -8013,6 +8040,7 @@ self: super: {
"typehash" = dontDistribute super."typehash";
"typelevel" = dontDistribute super."typelevel";
"typelevel-tensor" = dontDistribute super."typelevel-tensor";
+ "typelits-witnesses" = dontDistribute super."typelits-witnesses";
"typeof" = dontDistribute super."typeof";
"typeparams" = dontDistribute super."typeparams";
"types-compat" = dontDistribute super."types-compat";
@@ -8254,6 +8282,7 @@ self: super: {
"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" = dontDistribute super."vty";
diff --git a/pkgs/development/haskell-modules/configuration-lts-2.6.nix b/pkgs/development/haskell-modules/configuration-lts-2.6.nix
index 6c1e7ef0a44..335af123c93 100644
--- a/pkgs/development/haskell-modules/configuration-lts-2.6.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-2.6.nix
@@ -332,6 +332,7 @@ self: super: {
"FormalGrammars" = dontDistribute super."FormalGrammars";
"Foster" = dontDistribute super."Foster";
"FpMLv53" = dontDistribute super."FpMLv53";
+ "FractalArt" = dontDistribute super."FractalArt";
"Fractaler" = dontDistribute super."Fractaler";
"Frames" = dontDistribute super."Frames";
"Frank" = dontDistribute super."Frank";
@@ -483,6 +484,7 @@ self: super: {
"HTTP-Simple" = dontDistribute super."HTTP-Simple";
"HTab" = dontDistribute super."HTab";
"HTicTacToe" = dontDistribute super."HTicTacToe";
+ "HUnit" = doDistribute super."HUnit_1_2_5_2";
"HUnit-Diff" = dontDistribute super."HUnit-Diff";
"HUnit-Plus" = dontDistribute super."HUnit-Plus";
"HUnit-approx" = dontDistribute super."HUnit-approx";
@@ -516,6 +518,7 @@ self: super: {
"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";
@@ -1512,6 +1515,7 @@ self: super: {
"base-io-access" = dontDistribute super."base-io-access";
"base-noprelude" = dontDistribute super."base-noprelude";
"base-orphans" = dontDistribute super."base-orphans";
+ "base-prelude" = doDistribute super."base-prelude_0_1_19";
"base32-bytestring" = dontDistribute super."base32-bytestring";
"base32string" = dontDistribute super."base32string";
"base58-bytestring" = dontDistribute super."base58-bytestring";
@@ -1935,6 +1939,7 @@ self: super: {
"cef" = dontDistribute super."cef";
"ceilometer-common" = dontDistribute super."ceilometer-common";
"cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo";
+ "cerberus" = dontDistribute super."cerberus";
"cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_3";
"cereal-derive" = dontDistribute super."cereal-derive";
"cereal-enumerator" = dontDistribute super."cereal-enumerator";
@@ -2146,6 +2151,7 @@ self: super: {
"concrete-typerep" = dontDistribute super."concrete-typerep";
"concurrent-barrier" = dontDistribute super."concurrent-barrier";
"concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache";
+ "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9";
"concurrent-machines" = dontDistribute super."concurrent-machines";
"concurrent-output" = dontDistribute super."concurrent-output";
"concurrent-sa" = dontDistribute super."concurrent-sa";
@@ -2578,6 +2584,7 @@ self: super: {
"diagrams-solve" = dontDistribute super."diagrams-solve";
"diagrams-svg" = doDistribute super."diagrams-svg_1_1_0_5";
"diagrams-tikz" = dontDistribute super."diagrams-tikz";
+ "dialog" = dontDistribute super."dialog";
"dice" = dontDistribute super."dice";
"dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit";
"dicom" = dontDistribute super."dicom";
@@ -2769,6 +2776,7 @@ self: super: {
"edenskel" = dontDistribute super."edenskel";
"edentv" = dontDistribute super."edentv";
"edge" = dontDistribute super."edge";
+ "edis" = dontDistribute super."edis";
"edit-distance" = doDistribute super."edit-distance_0_2_1_2";
"edit-distance-vector" = dontDistribute super."edit-distance-vector";
"edit-lenses" = dontDistribute super."edit-lenses";
@@ -2965,6 +2973,7 @@ self: super: {
"failable-list" = dontDistribute super."failable-list";
"failure" = dontDistribute super."failure";
"fair-predicates" = dontDistribute super."fair-predicates";
+ "fake-type" = dontDistribute super."fake-type";
"faker" = dontDistribute super."faker";
"falling-turnip" = dontDistribute super."falling-turnip";
"fallingblocks" = dontDistribute super."fallingblocks";
@@ -3186,6 +3195,7 @@ self: super: {
"friday-juicypixels" = dontDistribute super."friday-juicypixels";
"friday-scale-dct" = dontDistribute super."friday-scale-dct";
"friendly-time" = dontDistribute super."friendly-time";
+ "frontmatter" = dontDistribute super."frontmatter";
"frp-arduino" = dontDistribute super."frp-arduino";
"frpnow" = dontDistribute super."frpnow";
"frpnow-gloss" = dontDistribute super."frpnow-gloss";
@@ -3404,6 +3414,7 @@ self: super: {
"gitlib-test" = doDistribute super."gitlib-test_3_1_0_2";
"gitlib-utils" = dontDistribute super."gitlib-utils";
"gitrev" = doDistribute super."gitrev_1_0_0";
+ "gitter" = dontDistribute super."gitter";
"gl" = doDistribute super."gl_0_7_6";
"gl-capture" = dontDistribute super."gl-capture";
"glade" = dontDistribute super."glade";
@@ -3710,6 +3721,7 @@ self: super: {
"hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP";
"hackage-server" = dontDistribute super."hackage-server";
"hackage-sparks" = dontDistribute super."hackage-sparks";
+ "hackage-whatsnew" = dontDistribute super."hackage-whatsnew";
"hackage2hwn" = dontDistribute super."hackage2hwn";
"hackage2twitter" = dontDistribute super."hackage2twitter";
"hackager" = dontDistribute super."hackager";
@@ -4171,6 +4183,7 @@ self: super: {
"hlibBladeRF" = dontDistribute super."hlibBladeRF";
"hlibev" = dontDistribute super."hlibev";
"hlibfam" = dontDistribute super."hlibfam";
+ "hlibgit2" = doDistribute super."hlibgit2_0_18_0_14";
"hlibsass" = dontDistribute super."hlibsass";
"hlint" = doDistribute super."hlint_1_9_20";
"hlogger" = dontDistribute super."hlogger";
@@ -4443,6 +4456,7 @@ self: super: {
"hspec-meta" = doDistribute super."hspec-meta_2_1_7";
"hspec-monad-control" = dontDistribute super."hspec-monad-control";
"hspec-server" = dontDistribute super."hspec-server";
+ "hspec-setup" = dontDistribute super."hspec-setup";
"hspec-shouldbe" = dontDistribute super."hspec-shouldbe";
"hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0";
"hspec-snap" = dontDistribute super."hspec-snap";
@@ -4544,6 +4558,7 @@ self: super: {
"http-shed" = dontDistribute super."http-shed";
"http-streams" = dontDistribute super."http-streams";
"http-test" = dontDistribute super."http-test";
+ "http-types" = doDistribute super."http-types_0_8_6";
"http-wget" = dontDistribute super."http-wget";
"http2" = dontDistribute super."http2";
"httpd-shed" = dontDistribute super."httpd-shed";
@@ -4683,6 +4698,7 @@ self: super: {
"imgurder" = dontDistribute super."imgurder";
"imm" = dontDistribute super."imm";
"imparse" = dontDistribute super."imparse";
+ "imperative-edsl" = dontDistribute super."imperative-edsl";
"imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl";
"implicit" = dontDistribute super."implicit";
"implicit-params" = dontDistribute super."implicit-params";
@@ -4824,6 +4840,7 @@ self: super: {
"ix-shapable" = dontDistribute super."ix-shapable";
"ixdopp" = dontDistribute super."ixdopp";
"ixmonad" = dontDistribute super."ixmonad";
+ "ixset" = doDistribute super."ixset_1_0_6";
"ixset-typed" = dontDistribute super."ixset-typed";
"iyql" = dontDistribute super."iyql";
"j2hs" = dontDistribute super."j2hs";
@@ -4868,6 +4885,7 @@ self: super: {
"json-autotype" = doDistribute super."json-autotype_0_2_5_13";
"json-b" = dontDistribute super."json-b";
"json-builder" = dontDistribute super."json-builder";
+ "json-encoder" = dontDistribute super."json-encoder";
"json-enumerator" = dontDistribute super."json-enumerator";
"json-extra" = dontDistribute super."json-extra";
"json-fu" = dontDistribute super."json-fu";
@@ -5006,6 +5024,7 @@ self: super: {
"lambdacube-examples" = dontDistribute super."lambdacube-examples";
"lambdacube-gl" = dontDistribute super."lambdacube-gl";
"lambdacube-samples" = dontDistribute super."lambdacube-samples";
+ "lambdatex" = dontDistribute super."lambdatex";
"lambdatwit" = dontDistribute super."lambdatwit";
"lambdiff" = dontDistribute super."lambdiff";
"lame-tester" = dontDistribute super."lame-tester";
@@ -5211,6 +5230,7 @@ self: super: {
"list-fusion-probe" = dontDistribute super."list-fusion-probe";
"list-grouping" = dontDistribute super."list-grouping";
"list-mux" = dontDistribute super."list-mux";
+ "list-prompt" = dontDistribute super."list-prompt";
"list-remote-forwards" = dontDistribute super."list-remote-forwards";
"list-t-attoparsec" = dontDistribute super."list-t-attoparsec";
"list-t-html-parser" = dontDistribute super."list-t-html-parser";
@@ -5254,6 +5274,7 @@ self: super: {
"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-domain" = doDistribute super."log-domain_0_10_0_1";
@@ -5912,6 +5933,7 @@ self: super: {
"omnifmt" = dontDistribute super."omnifmt";
"on-a-horse" = dontDistribute super."on-a-horse";
"on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel";
+ "once" = dontDistribute super."once";
"one-liner" = dontDistribute super."one-liner";
"one-time-password" = dontDistribute super."one-time-password";
"oneOfN" = dontDistribute super."oneOfN";
@@ -5969,6 +5991,7 @@ self: super: {
"optional" = dontDistribute super."optional";
"optional-args" = dontDistribute super."optional-args";
"options-time" = dontDistribute super."options-time";
+ "optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"optparse-simple" = dontDistribute super."optparse-simple";
"orc" = dontDistribute super."orc";
@@ -6166,6 +6189,7 @@ self: super: {
"phasechange" = dontDistribute super."phasechange";
"phash" = dontDistribute super."phash";
"phizzle" = dontDistribute super."phizzle";
+ "phoityne" = dontDistribute super."phoityne";
"phone-numbers" = dontDistribute super."phone-numbers";
"phone-push" = dontDistribute super."phone-push";
"phonetic-code" = dontDistribute super."phonetic-code";
@@ -6199,6 +6223,7 @@ self: super: {
"pipes-cereal" = dontDistribute super."pipes-cereal";
"pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus";
"pipes-cliff" = dontDistribute super."pipes-cliff";
+ "pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_3";
"pipes-conduit" = dontDistribute super."pipes-conduit";
"pipes-core" = dontDistribute super."pipes-core";
"pipes-courier" = dontDistribute super."pipes-courier";
@@ -6766,6 +6791,7 @@ self: super: {
"rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster";
"retry" = doDistribute super."retry_0_6";
"retryer" = dontDistribute super."retryer";
+ "rev-state" = doDistribute super."rev-state_0_1";
"revdectime" = dontDistribute super."revdectime";
"reverse-apply" = dontDistribute super."reverse-apply";
"reverse-geocoding" = dontDistribute super."reverse-geocoding";
@@ -7002,6 +7028,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serv" = dontDistribute super."serv";
"servant" = doDistribute super."servant_0_2_2";
"servant-JuicyPixels" = dontDistribute super."servant-JuicyPixels";
"servant-blaze" = dontDistribute super."servant-blaze";
@@ -8005,6 +8032,7 @@ self: super: {
"typehash" = dontDistribute super."typehash";
"typelevel" = dontDistribute super."typelevel";
"typelevel-tensor" = dontDistribute super."typelevel-tensor";
+ "typelits-witnesses" = dontDistribute super."typelits-witnesses";
"typeof" = dontDistribute super."typeof";
"typeparams" = dontDistribute super."typeparams";
"types-compat" = dontDistribute super."types-compat";
@@ -8246,6 +8274,7 @@ self: super: {
"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" = dontDistribute super."vty";
diff --git a/pkgs/development/haskell-modules/configuration-lts-2.7.nix b/pkgs/development/haskell-modules/configuration-lts-2.7.nix
index 68d05b0fae3..c8cb9b91e07 100644
--- a/pkgs/development/haskell-modules/configuration-lts-2.7.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-2.7.nix
@@ -331,6 +331,7 @@ self: super: {
"FormalGrammars" = dontDistribute super."FormalGrammars";
"Foster" = dontDistribute super."Foster";
"FpMLv53" = dontDistribute super."FpMLv53";
+ "FractalArt" = dontDistribute super."FractalArt";
"Fractaler" = dontDistribute super."Fractaler";
"Frames" = dontDistribute super."Frames";
"Frank" = dontDistribute super."Frank";
@@ -482,6 +483,7 @@ self: super: {
"HTTP-Simple" = dontDistribute super."HTTP-Simple";
"HTab" = dontDistribute super."HTab";
"HTicTacToe" = dontDistribute super."HTicTacToe";
+ "HUnit" = doDistribute super."HUnit_1_2_5_2";
"HUnit-Diff" = dontDistribute super."HUnit-Diff";
"HUnit-Plus" = dontDistribute super."HUnit-Plus";
"HUnit-approx" = dontDistribute super."HUnit-approx";
@@ -515,6 +517,7 @@ self: super: {
"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";
@@ -1511,6 +1514,7 @@ self: super: {
"base-io-access" = dontDistribute super."base-io-access";
"base-noprelude" = dontDistribute super."base-noprelude";
"base-orphans" = dontDistribute super."base-orphans";
+ "base-prelude" = doDistribute super."base-prelude_0_1_19";
"base32-bytestring" = dontDistribute super."base32-bytestring";
"base32string" = dontDistribute super."base32string";
"base58-bytestring" = dontDistribute super."base58-bytestring";
@@ -1934,6 +1938,7 @@ self: super: {
"cef" = dontDistribute super."cef";
"ceilometer-common" = dontDistribute super."ceilometer-common";
"cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo";
+ "cerberus" = dontDistribute super."cerberus";
"cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_3";
"cereal-derive" = dontDistribute super."cereal-derive";
"cereal-enumerator" = dontDistribute super."cereal-enumerator";
@@ -2145,6 +2150,7 @@ self: super: {
"concrete-typerep" = dontDistribute super."concrete-typerep";
"concurrent-barrier" = dontDistribute super."concurrent-barrier";
"concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache";
+ "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9";
"concurrent-machines" = dontDistribute super."concurrent-machines";
"concurrent-output" = dontDistribute super."concurrent-output";
"concurrent-sa" = dontDistribute super."concurrent-sa";
@@ -2577,6 +2583,7 @@ self: super: {
"diagrams-solve" = dontDistribute super."diagrams-solve";
"diagrams-svg" = doDistribute super."diagrams-svg_1_1_0_5";
"diagrams-tikz" = dontDistribute super."diagrams-tikz";
+ "dialog" = dontDistribute super."dialog";
"dice" = dontDistribute super."dice";
"dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit";
"dicom" = dontDistribute super."dicom";
@@ -2768,6 +2775,7 @@ self: super: {
"edenskel" = dontDistribute super."edenskel";
"edentv" = dontDistribute super."edentv";
"edge" = dontDistribute super."edge";
+ "edis" = dontDistribute super."edis";
"edit-distance" = doDistribute super."edit-distance_0_2_1_2";
"edit-distance-vector" = dontDistribute super."edit-distance-vector";
"edit-lenses" = dontDistribute super."edit-lenses";
@@ -2964,6 +2972,7 @@ self: super: {
"failable-list" = dontDistribute super."failable-list";
"failure" = dontDistribute super."failure";
"fair-predicates" = dontDistribute super."fair-predicates";
+ "fake-type" = dontDistribute super."fake-type";
"faker" = dontDistribute super."faker";
"falling-turnip" = dontDistribute super."falling-turnip";
"fallingblocks" = dontDistribute super."fallingblocks";
@@ -3185,6 +3194,7 @@ self: super: {
"friday-juicypixels" = dontDistribute super."friday-juicypixels";
"friday-scale-dct" = dontDistribute super."friday-scale-dct";
"friendly-time" = dontDistribute super."friendly-time";
+ "frontmatter" = dontDistribute super."frontmatter";
"frp-arduino" = dontDistribute super."frp-arduino";
"frpnow" = dontDistribute super."frpnow";
"frpnow-gloss" = dontDistribute super."frpnow-gloss";
@@ -3403,6 +3413,7 @@ self: super: {
"gitlib-test" = doDistribute super."gitlib-test_3_1_0_2";
"gitlib-utils" = dontDistribute super."gitlib-utils";
"gitrev" = doDistribute super."gitrev_1_0_0";
+ "gitter" = dontDistribute super."gitter";
"gl" = doDistribute super."gl_0_7_6";
"gl-capture" = dontDistribute super."gl-capture";
"glade" = dontDistribute super."glade";
@@ -3709,6 +3720,7 @@ self: super: {
"hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP";
"hackage-server" = dontDistribute super."hackage-server";
"hackage-sparks" = dontDistribute super."hackage-sparks";
+ "hackage-whatsnew" = dontDistribute super."hackage-whatsnew";
"hackage2hwn" = dontDistribute super."hackage2hwn";
"hackage2twitter" = dontDistribute super."hackage2twitter";
"hackager" = dontDistribute super."hackager";
@@ -4170,6 +4182,7 @@ self: super: {
"hlibBladeRF" = dontDistribute super."hlibBladeRF";
"hlibev" = dontDistribute super."hlibev";
"hlibfam" = dontDistribute super."hlibfam";
+ "hlibgit2" = doDistribute super."hlibgit2_0_18_0_14";
"hlibsass" = dontDistribute super."hlibsass";
"hlint" = doDistribute super."hlint_1_9_20";
"hlogger" = dontDistribute super."hlogger";
@@ -4442,6 +4455,7 @@ self: super: {
"hspec-meta" = doDistribute super."hspec-meta_2_1_7";
"hspec-monad-control" = dontDistribute super."hspec-monad-control";
"hspec-server" = dontDistribute super."hspec-server";
+ "hspec-setup" = dontDistribute super."hspec-setup";
"hspec-shouldbe" = dontDistribute super."hspec-shouldbe";
"hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0";
"hspec-snap" = dontDistribute super."hspec-snap";
@@ -4543,6 +4557,7 @@ self: super: {
"http-shed" = dontDistribute super."http-shed";
"http-streams" = dontDistribute super."http-streams";
"http-test" = dontDistribute super."http-test";
+ "http-types" = doDistribute super."http-types_0_8_6";
"http-wget" = dontDistribute super."http-wget";
"http2" = dontDistribute super."http2";
"httpd-shed" = dontDistribute super."httpd-shed";
@@ -4682,6 +4697,7 @@ self: super: {
"imgurder" = dontDistribute super."imgurder";
"imm" = dontDistribute super."imm";
"imparse" = dontDistribute super."imparse";
+ "imperative-edsl" = dontDistribute super."imperative-edsl";
"imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl";
"implicit" = dontDistribute super."implicit";
"implicit-params" = dontDistribute super."implicit-params";
@@ -4823,6 +4839,7 @@ self: super: {
"ix-shapable" = dontDistribute super."ix-shapable";
"ixdopp" = dontDistribute super."ixdopp";
"ixmonad" = dontDistribute super."ixmonad";
+ "ixset" = doDistribute super."ixset_1_0_6";
"ixset-typed" = dontDistribute super."ixset-typed";
"iyql" = dontDistribute super."iyql";
"j2hs" = dontDistribute super."j2hs";
@@ -4867,6 +4884,7 @@ self: super: {
"json-autotype" = doDistribute super."json-autotype_0_2_5_13";
"json-b" = dontDistribute super."json-b";
"json-builder" = dontDistribute super."json-builder";
+ "json-encoder" = dontDistribute super."json-encoder";
"json-enumerator" = dontDistribute super."json-enumerator";
"json-extra" = dontDistribute super."json-extra";
"json-fu" = dontDistribute super."json-fu";
@@ -5005,6 +5023,7 @@ self: super: {
"lambdacube-examples" = dontDistribute super."lambdacube-examples";
"lambdacube-gl" = dontDistribute super."lambdacube-gl";
"lambdacube-samples" = dontDistribute super."lambdacube-samples";
+ "lambdatex" = dontDistribute super."lambdatex";
"lambdatwit" = dontDistribute super."lambdatwit";
"lambdiff" = dontDistribute super."lambdiff";
"lame-tester" = dontDistribute super."lame-tester";
@@ -5210,6 +5229,7 @@ self: super: {
"list-fusion-probe" = dontDistribute super."list-fusion-probe";
"list-grouping" = dontDistribute super."list-grouping";
"list-mux" = dontDistribute super."list-mux";
+ "list-prompt" = dontDistribute super."list-prompt";
"list-remote-forwards" = dontDistribute super."list-remote-forwards";
"list-t-attoparsec" = dontDistribute super."list-t-attoparsec";
"list-t-html-parser" = dontDistribute super."list-t-html-parser";
@@ -5253,6 +5273,7 @@ self: super: {
"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-domain" = doDistribute super."log-domain_0_10_0_1";
@@ -5911,6 +5932,7 @@ self: super: {
"omnifmt" = dontDistribute super."omnifmt";
"on-a-horse" = dontDistribute super."on-a-horse";
"on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel";
+ "once" = dontDistribute super."once";
"one-liner" = dontDistribute super."one-liner";
"one-time-password" = dontDistribute super."one-time-password";
"oneOfN" = dontDistribute super."oneOfN";
@@ -5968,6 +5990,7 @@ self: super: {
"optional" = dontDistribute super."optional";
"optional-args" = dontDistribute super."optional-args";
"options-time" = dontDistribute super."options-time";
+ "optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"optparse-simple" = dontDistribute super."optparse-simple";
"orc" = dontDistribute super."orc";
@@ -6165,6 +6188,7 @@ self: super: {
"phasechange" = dontDistribute super."phasechange";
"phash" = dontDistribute super."phash";
"phizzle" = dontDistribute super."phizzle";
+ "phoityne" = dontDistribute super."phoityne";
"phone-numbers" = dontDistribute super."phone-numbers";
"phone-push" = dontDistribute super."phone-push";
"phonetic-code" = dontDistribute super."phonetic-code";
@@ -6198,6 +6222,7 @@ self: super: {
"pipes-cereal" = dontDistribute super."pipes-cereal";
"pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus";
"pipes-cliff" = dontDistribute super."pipes-cliff";
+ "pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_3";
"pipes-conduit" = dontDistribute super."pipes-conduit";
"pipes-core" = dontDistribute super."pipes-core";
"pipes-courier" = dontDistribute super."pipes-courier";
@@ -6765,6 +6790,7 @@ self: super: {
"rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster";
"retry" = doDistribute super."retry_0_6";
"retryer" = dontDistribute super."retryer";
+ "rev-state" = doDistribute super."rev-state_0_1";
"revdectime" = dontDistribute super."revdectime";
"reverse-apply" = dontDistribute super."reverse-apply";
"reverse-geocoding" = dontDistribute super."reverse-geocoding";
@@ -7001,6 +7027,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serv" = dontDistribute super."serv";
"servant" = doDistribute super."servant_0_2_2";
"servant-JuicyPixels" = dontDistribute super."servant-JuicyPixels";
"servant-blaze" = dontDistribute super."servant-blaze";
@@ -8004,6 +8031,7 @@ self: super: {
"typehash" = dontDistribute super."typehash";
"typelevel" = dontDistribute super."typelevel";
"typelevel-tensor" = dontDistribute super."typelevel-tensor";
+ "typelits-witnesses" = dontDistribute super."typelits-witnesses";
"typeof" = dontDistribute super."typeof";
"typeparams" = dontDistribute super."typeparams";
"types-compat" = dontDistribute super."types-compat";
@@ -8245,6 +8273,7 @@ self: super: {
"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" = dontDistribute super."vty";
diff --git a/pkgs/development/haskell-modules/configuration-lts-2.8.nix b/pkgs/development/haskell-modules/configuration-lts-2.8.nix
index 15402d99af2..0683bd2553a 100644
--- a/pkgs/development/haskell-modules/configuration-lts-2.8.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-2.8.nix
@@ -331,6 +331,7 @@ self: super: {
"FormalGrammars" = dontDistribute super."FormalGrammars";
"Foster" = dontDistribute super."Foster";
"FpMLv53" = dontDistribute super."FpMLv53";
+ "FractalArt" = dontDistribute super."FractalArt";
"Fractaler" = dontDistribute super."Fractaler";
"Frames" = dontDistribute super."Frames";
"Frank" = dontDistribute super."Frank";
@@ -482,6 +483,7 @@ self: super: {
"HTTP-Simple" = dontDistribute super."HTTP-Simple";
"HTab" = dontDistribute super."HTab";
"HTicTacToe" = dontDistribute super."HTicTacToe";
+ "HUnit" = doDistribute super."HUnit_1_2_5_2";
"HUnit-Diff" = dontDistribute super."HUnit-Diff";
"HUnit-Plus" = dontDistribute super."HUnit-Plus";
"HUnit-approx" = dontDistribute super."HUnit-approx";
@@ -515,6 +517,7 @@ self: super: {
"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";
@@ -1510,6 +1513,7 @@ self: super: {
"base-io-access" = dontDistribute super."base-io-access";
"base-noprelude" = dontDistribute super."base-noprelude";
"base-orphans" = dontDistribute super."base-orphans";
+ "base-prelude" = doDistribute super."base-prelude_0_1_19";
"base32-bytestring" = dontDistribute super."base32-bytestring";
"base32string" = dontDistribute super."base32string";
"base58-bytestring" = dontDistribute super."base58-bytestring";
@@ -1933,6 +1937,7 @@ self: super: {
"cef" = dontDistribute super."cef";
"ceilometer-common" = dontDistribute super."ceilometer-common";
"cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo";
+ "cerberus" = dontDistribute super."cerberus";
"cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_3";
"cereal-derive" = dontDistribute super."cereal-derive";
"cereal-enumerator" = dontDistribute super."cereal-enumerator";
@@ -2144,6 +2149,7 @@ self: super: {
"concrete-typerep" = dontDistribute super."concrete-typerep";
"concurrent-barrier" = dontDistribute super."concurrent-barrier";
"concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache";
+ "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9";
"concurrent-machines" = dontDistribute super."concurrent-machines";
"concurrent-output" = dontDistribute super."concurrent-output";
"concurrent-sa" = dontDistribute super."concurrent-sa";
@@ -2576,6 +2582,7 @@ self: super: {
"diagrams-solve" = dontDistribute super."diagrams-solve";
"diagrams-svg" = doDistribute super."diagrams-svg_1_1_0_5";
"diagrams-tikz" = dontDistribute super."diagrams-tikz";
+ "dialog" = dontDistribute super."dialog";
"dice" = dontDistribute super."dice";
"dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit";
"dicom" = dontDistribute super."dicom";
@@ -2767,6 +2774,7 @@ self: super: {
"edenskel" = dontDistribute super."edenskel";
"edentv" = dontDistribute super."edentv";
"edge" = dontDistribute super."edge";
+ "edis" = dontDistribute super."edis";
"edit-distance" = doDistribute super."edit-distance_0_2_1_3";
"edit-distance-vector" = dontDistribute super."edit-distance-vector";
"edit-lenses" = dontDistribute super."edit-lenses";
@@ -2963,6 +2971,7 @@ self: super: {
"failable-list" = dontDistribute super."failable-list";
"failure" = dontDistribute super."failure";
"fair-predicates" = dontDistribute super."fair-predicates";
+ "fake-type" = dontDistribute super."fake-type";
"faker" = dontDistribute super."faker";
"falling-turnip" = dontDistribute super."falling-turnip";
"fallingblocks" = dontDistribute super."fallingblocks";
@@ -3183,6 +3192,7 @@ self: super: {
"friday-juicypixels" = dontDistribute super."friday-juicypixels";
"friday-scale-dct" = dontDistribute super."friday-scale-dct";
"friendly-time" = dontDistribute super."friendly-time";
+ "frontmatter" = dontDistribute super."frontmatter";
"frp-arduino" = dontDistribute super."frp-arduino";
"frpnow" = dontDistribute super."frpnow";
"frpnow-gloss" = dontDistribute super."frpnow-gloss";
@@ -3401,6 +3411,7 @@ self: super: {
"gitlib-test" = doDistribute super."gitlib-test_3_1_0_2";
"gitlib-utils" = dontDistribute super."gitlib-utils";
"gitrev" = doDistribute super."gitrev_1_0_0";
+ "gitter" = dontDistribute super."gitter";
"gl" = doDistribute super."gl_0_7_6";
"gl-capture" = dontDistribute super."gl-capture";
"glade" = dontDistribute super."glade";
@@ -3707,6 +3718,7 @@ self: super: {
"hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP";
"hackage-server" = dontDistribute super."hackage-server";
"hackage-sparks" = dontDistribute super."hackage-sparks";
+ "hackage-whatsnew" = dontDistribute super."hackage-whatsnew";
"hackage2hwn" = dontDistribute super."hackage2hwn";
"hackage2twitter" = dontDistribute super."hackage2twitter";
"hackager" = dontDistribute super."hackager";
@@ -4168,6 +4180,7 @@ self: super: {
"hlibBladeRF" = dontDistribute super."hlibBladeRF";
"hlibev" = dontDistribute super."hlibev";
"hlibfam" = dontDistribute super."hlibfam";
+ "hlibgit2" = doDistribute super."hlibgit2_0_18_0_14";
"hlibsass" = dontDistribute super."hlibsass";
"hlint" = doDistribute super."hlint_1_9_20";
"hlogger" = dontDistribute super."hlogger";
@@ -4440,6 +4453,7 @@ self: super: {
"hspec-meta" = doDistribute super."hspec-meta_2_1_7";
"hspec-monad-control" = dontDistribute super."hspec-monad-control";
"hspec-server" = dontDistribute super."hspec-server";
+ "hspec-setup" = dontDistribute super."hspec-setup";
"hspec-shouldbe" = dontDistribute super."hspec-shouldbe";
"hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0";
"hspec-snap" = dontDistribute super."hspec-snap";
@@ -4540,6 +4554,7 @@ self: super: {
"http-shed" = dontDistribute super."http-shed";
"http-streams" = dontDistribute super."http-streams";
"http-test" = dontDistribute super."http-test";
+ "http-types" = doDistribute super."http-types_0_8_6";
"http-wget" = dontDistribute super."http-wget";
"http2" = dontDistribute super."http2";
"httpd-shed" = dontDistribute super."httpd-shed";
@@ -4679,6 +4694,7 @@ self: super: {
"imgurder" = dontDistribute super."imgurder";
"imm" = dontDistribute super."imm";
"imparse" = dontDistribute super."imparse";
+ "imperative-edsl" = dontDistribute super."imperative-edsl";
"imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl";
"implicit" = dontDistribute super."implicit";
"implicit-params" = dontDistribute super."implicit-params";
@@ -4820,6 +4836,7 @@ self: super: {
"ix-shapable" = dontDistribute super."ix-shapable";
"ixdopp" = dontDistribute super."ixdopp";
"ixmonad" = dontDistribute super."ixmonad";
+ "ixset" = doDistribute super."ixset_1_0_6";
"ixset-typed" = dontDistribute super."ixset-typed";
"iyql" = dontDistribute super."iyql";
"j2hs" = dontDistribute super."j2hs";
@@ -4863,6 +4880,7 @@ self: super: {
"json-autotype" = doDistribute super."json-autotype_0_2_5_13";
"json-b" = dontDistribute super."json-b";
"json-builder" = dontDistribute super."json-builder";
+ "json-encoder" = dontDistribute super."json-encoder";
"json-enumerator" = dontDistribute super."json-enumerator";
"json-extra" = dontDistribute super."json-extra";
"json-fu" = dontDistribute super."json-fu";
@@ -5001,6 +5019,7 @@ self: super: {
"lambdacube-examples" = dontDistribute super."lambdacube-examples";
"lambdacube-gl" = dontDistribute super."lambdacube-gl";
"lambdacube-samples" = dontDistribute super."lambdacube-samples";
+ "lambdatex" = dontDistribute super."lambdatex";
"lambdatwit" = dontDistribute super."lambdatwit";
"lambdiff" = dontDistribute super."lambdiff";
"lame-tester" = dontDistribute super."lame-tester";
@@ -5206,6 +5225,7 @@ self: super: {
"list-fusion-probe" = dontDistribute super."list-fusion-probe";
"list-grouping" = dontDistribute super."list-grouping";
"list-mux" = dontDistribute super."list-mux";
+ "list-prompt" = dontDistribute super."list-prompt";
"list-remote-forwards" = dontDistribute super."list-remote-forwards";
"list-t-attoparsec" = dontDistribute super."list-t-attoparsec";
"list-t-html-parser" = dontDistribute super."list-t-html-parser";
@@ -5249,6 +5269,7 @@ self: super: {
"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-domain" = doDistribute super."log-domain_0_10_0_1";
@@ -5907,6 +5928,7 @@ self: super: {
"omnifmt" = dontDistribute super."omnifmt";
"on-a-horse" = dontDistribute super."on-a-horse";
"on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel";
+ "once" = dontDistribute super."once";
"one-liner" = dontDistribute super."one-liner";
"one-time-password" = dontDistribute super."one-time-password";
"oneOfN" = dontDistribute super."oneOfN";
@@ -5964,6 +5986,7 @@ self: super: {
"optional" = dontDistribute super."optional";
"optional-args" = dontDistribute super."optional-args";
"options-time" = dontDistribute super."options-time";
+ "optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"optparse-simple" = doDistribute super."optparse-simple_0_0_2";
"orc" = dontDistribute super."orc";
@@ -6161,6 +6184,7 @@ self: super: {
"phasechange" = dontDistribute super."phasechange";
"phash" = dontDistribute super."phash";
"phizzle" = dontDistribute super."phizzle";
+ "phoityne" = dontDistribute super."phoityne";
"phone-numbers" = dontDistribute super."phone-numbers";
"phone-push" = dontDistribute super."phone-push";
"phonetic-code" = dontDistribute super."phonetic-code";
@@ -6194,6 +6218,7 @@ self: super: {
"pipes-cereal" = dontDistribute super."pipes-cereal";
"pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus";
"pipes-cliff" = dontDistribute super."pipes-cliff";
+ "pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_3";
"pipes-conduit" = dontDistribute super."pipes-conduit";
"pipes-core" = dontDistribute super."pipes-core";
"pipes-courier" = dontDistribute super."pipes-courier";
@@ -6761,6 +6786,7 @@ self: super: {
"rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster";
"retry" = doDistribute super."retry_0_6";
"retryer" = dontDistribute super."retryer";
+ "rev-state" = doDistribute super."rev-state_0_1";
"revdectime" = dontDistribute super."revdectime";
"reverse-apply" = dontDistribute super."reverse-apply";
"reverse-geocoding" = dontDistribute super."reverse-geocoding";
@@ -6996,6 +7022,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serv" = dontDistribute super."serv";
"servant" = doDistribute super."servant_0_2_2";
"servant-JuicyPixels" = dontDistribute super."servant-JuicyPixels";
"servant-blaze" = dontDistribute super."servant-blaze";
@@ -7996,6 +8023,7 @@ self: super: {
"typehash" = dontDistribute super."typehash";
"typelevel" = dontDistribute super."typelevel";
"typelevel-tensor" = dontDistribute super."typelevel-tensor";
+ "typelits-witnesses" = dontDistribute super."typelits-witnesses";
"typeof" = dontDistribute super."typeof";
"typeparams" = dontDistribute super."typeparams";
"types-compat" = dontDistribute super."types-compat";
@@ -8237,6 +8265,7 @@ self: super: {
"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" = dontDistribute super."vty";
diff --git a/pkgs/development/haskell-modules/configuration-lts-2.9.nix b/pkgs/development/haskell-modules/configuration-lts-2.9.nix
index c6a043b4b59..11080ff4358 100644
--- a/pkgs/development/haskell-modules/configuration-lts-2.9.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-2.9.nix
@@ -331,6 +331,7 @@ self: super: {
"FormalGrammars" = dontDistribute super."FormalGrammars";
"Foster" = dontDistribute super."Foster";
"FpMLv53" = dontDistribute super."FpMLv53";
+ "FractalArt" = dontDistribute super."FractalArt";
"Fractaler" = dontDistribute super."Fractaler";
"Frames" = dontDistribute super."Frames";
"Frank" = dontDistribute super."Frank";
@@ -482,6 +483,7 @@ self: super: {
"HTTP-Simple" = dontDistribute super."HTTP-Simple";
"HTab" = dontDistribute super."HTab";
"HTicTacToe" = dontDistribute super."HTicTacToe";
+ "HUnit" = doDistribute super."HUnit_1_2_5_2";
"HUnit-Diff" = dontDistribute super."HUnit-Diff";
"HUnit-Plus" = dontDistribute super."HUnit-Plus";
"HUnit-approx" = dontDistribute super."HUnit-approx";
@@ -515,6 +517,7 @@ self: super: {
"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";
@@ -1508,6 +1511,7 @@ self: super: {
"base-io-access" = dontDistribute super."base-io-access";
"base-noprelude" = dontDistribute super."base-noprelude";
"base-orphans" = dontDistribute super."base-orphans";
+ "base-prelude" = doDistribute super."base-prelude_0_1_19";
"base32-bytestring" = dontDistribute super."base32-bytestring";
"base32string" = dontDistribute super."base32string";
"base58-bytestring" = dontDistribute super."base58-bytestring";
@@ -1930,6 +1934,7 @@ self: super: {
"cef" = dontDistribute super."cef";
"ceilometer-common" = dontDistribute super."ceilometer-common";
"cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo";
+ "cerberus" = dontDistribute super."cerberus";
"cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_3";
"cereal-derive" = dontDistribute super."cereal-derive";
"cereal-enumerator" = dontDistribute super."cereal-enumerator";
@@ -2141,6 +2146,7 @@ self: super: {
"concrete-typerep" = dontDistribute super."concrete-typerep";
"concurrent-barrier" = dontDistribute super."concurrent-barrier";
"concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache";
+ "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9";
"concurrent-machines" = dontDistribute super."concurrent-machines";
"concurrent-output" = dontDistribute super."concurrent-output";
"concurrent-sa" = dontDistribute super."concurrent-sa";
@@ -2573,6 +2579,7 @@ self: super: {
"diagrams-solve" = dontDistribute super."diagrams-solve";
"diagrams-svg" = doDistribute super."diagrams-svg_1_1_0_5";
"diagrams-tikz" = dontDistribute super."diagrams-tikz";
+ "dialog" = dontDistribute super."dialog";
"dice" = dontDistribute super."dice";
"dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit";
"dicom" = dontDistribute super."dicom";
@@ -2763,6 +2770,7 @@ self: super: {
"edenskel" = dontDistribute super."edenskel";
"edentv" = dontDistribute super."edentv";
"edge" = dontDistribute super."edge";
+ "edis" = dontDistribute super."edis";
"edit-distance" = doDistribute super."edit-distance_0_2_1_3";
"edit-distance-vector" = dontDistribute super."edit-distance-vector";
"edit-lenses" = dontDistribute super."edit-lenses";
@@ -2958,6 +2966,7 @@ self: super: {
"failable-list" = dontDistribute super."failable-list";
"failure" = dontDistribute super."failure";
"fair-predicates" = dontDistribute super."fair-predicates";
+ "fake-type" = dontDistribute super."fake-type";
"faker" = dontDistribute super."faker";
"falling-turnip" = dontDistribute super."falling-turnip";
"fallingblocks" = dontDistribute super."fallingblocks";
@@ -3178,6 +3187,7 @@ self: super: {
"friday-juicypixels" = dontDistribute super."friday-juicypixels";
"friday-scale-dct" = dontDistribute super."friday-scale-dct";
"friendly-time" = dontDistribute super."friendly-time";
+ "frontmatter" = dontDistribute super."frontmatter";
"frp-arduino" = dontDistribute super."frp-arduino";
"frpnow" = dontDistribute super."frpnow";
"frpnow-gloss" = dontDistribute super."frpnow-gloss";
@@ -3396,6 +3406,7 @@ self: super: {
"gitlib-test" = doDistribute super."gitlib-test_3_1_0_2";
"gitlib-utils" = dontDistribute super."gitlib-utils";
"gitrev" = doDistribute super."gitrev_1_0_0";
+ "gitter" = dontDistribute super."gitter";
"gl-capture" = dontDistribute super."gl-capture";
"glade" = dontDistribute super."glade";
"gladexml-accessor" = dontDistribute super."gladexml-accessor";
@@ -3701,6 +3712,7 @@ self: super: {
"hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP";
"hackage-server" = dontDistribute super."hackage-server";
"hackage-sparks" = dontDistribute super."hackage-sparks";
+ "hackage-whatsnew" = dontDistribute super."hackage-whatsnew";
"hackage2hwn" = dontDistribute super."hackage2hwn";
"hackage2twitter" = dontDistribute super."hackage2twitter";
"hackager" = dontDistribute super."hackager";
@@ -4162,6 +4174,7 @@ self: super: {
"hlibBladeRF" = dontDistribute super."hlibBladeRF";
"hlibev" = dontDistribute super."hlibev";
"hlibfam" = dontDistribute super."hlibfam";
+ "hlibgit2" = doDistribute super."hlibgit2_0_18_0_14";
"hlibsass" = dontDistribute super."hlibsass";
"hlint" = doDistribute super."hlint_1_9_20";
"hlogger" = dontDistribute super."hlogger";
@@ -4433,6 +4446,7 @@ self: super: {
"hspec-meta" = doDistribute super."hspec-meta_2_1_7";
"hspec-monad-control" = dontDistribute super."hspec-monad-control";
"hspec-server" = dontDistribute super."hspec-server";
+ "hspec-setup" = dontDistribute super."hspec-setup";
"hspec-shouldbe" = dontDistribute super."hspec-shouldbe";
"hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0";
"hspec-snap" = dontDistribute super."hspec-snap";
@@ -4532,6 +4546,7 @@ self: super: {
"http-shed" = dontDistribute super."http-shed";
"http-streams" = dontDistribute super."http-streams";
"http-test" = dontDistribute super."http-test";
+ "http-types" = doDistribute super."http-types_0_8_6";
"http-wget" = dontDistribute super."http-wget";
"http2" = dontDistribute super."http2";
"httpd-shed" = dontDistribute super."httpd-shed";
@@ -4671,6 +4686,7 @@ self: super: {
"imgurder" = dontDistribute super."imgurder";
"imm" = dontDistribute super."imm";
"imparse" = dontDistribute super."imparse";
+ "imperative-edsl" = dontDistribute super."imperative-edsl";
"imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl";
"implicit" = dontDistribute super."implicit";
"implicit-params" = dontDistribute super."implicit-params";
@@ -4812,6 +4828,7 @@ self: super: {
"ix-shapable" = dontDistribute super."ix-shapable";
"ixdopp" = dontDistribute super."ixdopp";
"ixmonad" = dontDistribute super."ixmonad";
+ "ixset" = doDistribute super."ixset_1_0_6";
"ixset-typed" = dontDistribute super."ixset-typed";
"iyql" = dontDistribute super."iyql";
"j2hs" = dontDistribute super."j2hs";
@@ -4855,6 +4872,7 @@ self: super: {
"json-autotype" = doDistribute super."json-autotype_0_2_5_13";
"json-b" = dontDistribute super."json-b";
"json-builder" = dontDistribute super."json-builder";
+ "json-encoder" = dontDistribute super."json-encoder";
"json-enumerator" = dontDistribute super."json-enumerator";
"json-extra" = dontDistribute super."json-extra";
"json-fu" = dontDistribute super."json-fu";
@@ -4993,6 +5011,7 @@ self: super: {
"lambdacube-examples" = dontDistribute super."lambdacube-examples";
"lambdacube-gl" = dontDistribute super."lambdacube-gl";
"lambdacube-samples" = dontDistribute super."lambdacube-samples";
+ "lambdatex" = dontDistribute super."lambdatex";
"lambdatwit" = dontDistribute super."lambdatwit";
"lambdiff" = dontDistribute super."lambdiff";
"lame-tester" = dontDistribute super."lame-tester";
@@ -5197,6 +5216,7 @@ self: super: {
"list-fusion-probe" = dontDistribute super."list-fusion-probe";
"list-grouping" = dontDistribute super."list-grouping";
"list-mux" = dontDistribute super."list-mux";
+ "list-prompt" = dontDistribute super."list-prompt";
"list-remote-forwards" = dontDistribute super."list-remote-forwards";
"list-t-attoparsec" = dontDistribute super."list-t-attoparsec";
"list-t-html-parser" = dontDistribute super."list-t-html-parser";
@@ -5240,6 +5260,7 @@ self: super: {
"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-domain" = doDistribute super."log-domain_0_10_0_1";
@@ -5897,6 +5918,7 @@ self: super: {
"omnifmt" = dontDistribute super."omnifmt";
"on-a-horse" = dontDistribute super."on-a-horse";
"on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel";
+ "once" = dontDistribute super."once";
"one-liner" = dontDistribute super."one-liner";
"one-time-password" = dontDistribute super."one-time-password";
"oneOfN" = dontDistribute super."oneOfN";
@@ -5954,6 +5976,7 @@ self: super: {
"optional" = dontDistribute super."optional";
"optional-args" = dontDistribute super."optional-args";
"options-time" = dontDistribute super."options-time";
+ "optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"optparse-simple" = doDistribute super."optparse-simple_0_0_2";
"orc" = dontDistribute super."orc";
@@ -6151,6 +6174,7 @@ self: super: {
"phasechange" = dontDistribute super."phasechange";
"phash" = dontDistribute super."phash";
"phizzle" = dontDistribute super."phizzle";
+ "phoityne" = dontDistribute super."phoityne";
"phone-numbers" = dontDistribute super."phone-numbers";
"phone-push" = dontDistribute super."phone-push";
"phonetic-code" = dontDistribute super."phonetic-code";
@@ -6183,6 +6207,7 @@ self: super: {
"pipes-cereal" = dontDistribute super."pipes-cereal";
"pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus";
"pipes-cliff" = dontDistribute super."pipes-cliff";
+ "pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_3";
"pipes-conduit" = dontDistribute super."pipes-conduit";
"pipes-core" = dontDistribute super."pipes-core";
"pipes-courier" = dontDistribute super."pipes-courier";
@@ -6301,6 +6326,7 @@ self: super: {
"possible" = dontDistribute super."possible";
"post-mess-age" = doDistribute super."post-mess-age_0_1_0_0";
"postcodes" = dontDistribute super."postcodes";
+ "postgresql-binary" = doDistribute super."postgresql-binary_0_5_2_1";
"postgresql-config" = dontDistribute super."postgresql-config";
"postgresql-connector" = dontDistribute super."postgresql-connector";
"postgresql-copy-escape" = dontDistribute super."postgresql-copy-escape";
@@ -6749,6 +6775,7 @@ self: super: {
"rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster";
"retry" = doDistribute super."retry_0_6";
"retryer" = dontDistribute super."retryer";
+ "rev-state" = doDistribute super."rev-state_0_1";
"revdectime" = dontDistribute super."revdectime";
"reverse-apply" = dontDistribute super."reverse-apply";
"reverse-geocoding" = dontDistribute super."reverse-geocoding";
@@ -6984,6 +7011,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serv" = dontDistribute super."serv";
"servant" = doDistribute super."servant_0_2_2";
"servant-JuicyPixels" = dontDistribute super."servant-JuicyPixels";
"servant-blaze" = dontDistribute super."servant-blaze";
@@ -7980,6 +8008,7 @@ self: super: {
"typehash" = dontDistribute super."typehash";
"typelevel" = dontDistribute super."typelevel";
"typelevel-tensor" = dontDistribute super."typelevel-tensor";
+ "typelits-witnesses" = dontDistribute super."typelits-witnesses";
"typeof" = dontDistribute super."typeof";
"typeparams" = dontDistribute super."typeparams";
"types-compat" = dontDistribute super."types-compat";
@@ -8221,6 +8250,7 @@ self: super: {
"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" = dontDistribute super."vty";
diff --git a/pkgs/development/haskell-modules/configuration-lts-3.0.nix b/pkgs/development/haskell-modules/configuration-lts-3.0.nix
index 18efcac44b5..b60af8284b0 100644
--- a/pkgs/development/haskell-modules/configuration-lts-3.0.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-3.0.nix
@@ -320,6 +320,7 @@ self: super: {
"FormalGrammars" = dontDistribute super."FormalGrammars";
"Foster" = dontDistribute super."Foster";
"FpMLv53" = dontDistribute super."FpMLv53";
+ "FractalArt" = dontDistribute super."FractalArt";
"Fractaler" = dontDistribute super."Fractaler";
"Frames" = dontDistribute super."Frames";
"Frank" = dontDistribute super."Frank";
@@ -470,6 +471,7 @@ self: super: {
"HTTP-Simple" = dontDistribute super."HTTP-Simple";
"HTab" = dontDistribute super."HTab";
"HTicTacToe" = dontDistribute super."HTicTacToe";
+ "HUnit" = doDistribute super."HUnit_1_2_5_2";
"HUnit-Diff" = dontDistribute super."HUnit-Diff";
"HUnit-Plus" = dontDistribute super."HUnit-Plus";
"HUnit-approx" = dontDistribute super."HUnit-approx";
@@ -502,6 +504,7 @@ self: super: {
"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";
@@ -1394,6 +1397,7 @@ self: super: {
"authenticate-ldap" = dontDistribute super."authenticate-ldap";
"authinfo-hs" = dontDistribute super."authinfo-hs";
"authoring" = dontDistribute super."authoring";
+ "auto-update" = doDistribute super."auto-update_0_1_2_2";
"autonix-deps" = dontDistribute super."autonix-deps";
"autonix-deps-kf5" = dontDistribute super."autonix-deps-kf5";
"autoproc" = dontDistribute super."autoproc";
@@ -1458,6 +1462,7 @@ self: super: {
"base-io-access" = dontDistribute super."base-io-access";
"base-noprelude" = dontDistribute super."base-noprelude";
"base-orphans" = doDistribute super."base-orphans_0_4_3";
+ "base-prelude" = doDistribute super."base-prelude_0_1_19";
"base32-bytestring" = dontDistribute super."base32-bytestring";
"base58-bytestring" = dontDistribute super."base58-bytestring";
"base58address" = dontDistribute super."base58address";
@@ -1501,6 +1506,7 @@ self: super: {
"bidirectionalization-combined" = dontDistribute super."bidirectionalization-combined";
"bidispec" = dontDistribute super."bidispec";
"bidispec-extras" = dontDistribute super."bidispec-extras";
+ "bifunctors" = doDistribute super."bifunctors_5";
"billboard-parser" = dontDistribute super."billboard-parser";
"billeksah-forms" = dontDistribute super."billeksah-forms";
"billeksah-main" = dontDistribute super."billeksah-main";
@@ -1666,6 +1672,7 @@ self: super: {
"bot" = dontDistribute super."bot";
"both" = dontDistribute super."both";
"botpp" = dontDistribute super."botpp";
+ "bound" = doDistribute super."bound_1_0_6";
"bound-gen" = dontDistribute super."bound-gen";
"bounded-tchan" = dontDistribute super."bounded-tchan";
"boundingboxes" = dontDistribute super."boundingboxes";
@@ -1689,6 +1696,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_0";
"buffer-builder-aeson" = dontDistribute super."buffer-builder-aeson";
"buffon" = dontDistribute super."buffon";
"bugzilla" = dontDistribute super."bugzilla";
@@ -1854,6 +1862,7 @@ self: super: {
"cef" = dontDistribute super."cef";
"ceilometer-common" = dontDistribute super."ceilometer-common";
"cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo";
+ "cerberus" = dontDistribute super."cerberus";
"cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_3";
"cereal-derive" = dontDistribute super."cereal-derive";
"cereal-enumerator" = dontDistribute super."cereal-enumerator";
@@ -1957,6 +1966,7 @@ self: super: {
"clipper" = dontDistribute super."clipper";
"clippings" = dontDistribute super."clippings";
"clist" = dontDistribute super."clist";
+ "clock" = doDistribute super."clock_0_5_1";
"clocked" = dontDistribute super."clocked";
"clogparse" = dontDistribute super."clogparse";
"clone-all" = dontDistribute super."clone-all";
@@ -2056,6 +2066,7 @@ self: super: {
"concrete-typerep" = dontDistribute super."concrete-typerep";
"concurrent-barrier" = dontDistribute super."concurrent-barrier";
"concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache";
+ "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9";
"concurrent-machines" = dontDistribute super."concurrent-machines";
"concurrent-output" = dontDistribute super."concurrent-output";
"concurrent-sa" = dontDistribute super."concurrent-sa";
@@ -2425,6 +2436,8 @@ self: super: {
"delta-h" = dontDistribute super."delta-h";
"demarcate" = dontDistribute super."demarcate";
"denominate" = dontDistribute super."denominate";
+ "dependent-map" = doDistribute super."dependent-map_0_1_1_3";
+ "dependent-sum" = doDistribute super."dependent-sum_0_2_1_0";
"depends" = dontDistribute super."depends";
"dephd" = dontDistribute super."dephd";
"dequeue" = dontDistribute super."dequeue";
@@ -2472,6 +2485,7 @@ self: super: {
"diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube";
"diagrams-svg" = doDistribute super."diagrams-svg_1_3_1_4";
"diagrams-tikz" = dontDistribute super."diagrams-tikz";
+ "dialog" = dontDistribute super."dialog";
"dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit";
"dicom" = dontDistribute super."dicom";
"dictparser" = dontDistribute super."dictparser";
@@ -2655,6 +2669,7 @@ self: super: {
"edenskel" = dontDistribute super."edenskel";
"edentv" = dontDistribute super."edentv";
"edge" = dontDistribute super."edge";
+ "edis" = dontDistribute super."edis";
"edit-distance-vector" = dontDistribute super."edit-distance-vector";
"edit-lenses" = dontDistribute super."edit-lenses";
"edit-lenses-demo" = dontDistribute super."edit-lenses-demo";
@@ -2838,6 +2853,7 @@ self: super: {
"failable-list" = dontDistribute super."failable-list";
"failure" = dontDistribute super."failure";
"fair-predicates" = dontDistribute super."fair-predicates";
+ "fake-type" = dontDistribute super."fake-type";
"faker" = dontDistribute super."faker";
"falling-turnip" = dontDistribute super."falling-turnip";
"fallingblocks" = dontDistribute super."fallingblocks";
@@ -3045,6 +3061,7 @@ self: super: {
"friday-juicypixels" = dontDistribute super."friday-juicypixels";
"friday-scale-dct" = dontDistribute super."friday-scale-dct";
"friendly-time" = dontDistribute super."friendly-time";
+ "frontmatter" = dontDistribute super."frontmatter";
"frp-arduino" = dontDistribute super."frp-arduino";
"frpnow" = dontDistribute super."frpnow";
"frpnow-gloss" = dontDistribute super."frpnow-gloss";
@@ -3256,6 +3273,7 @@ self: super: {
"gitlib-s3" = dontDistribute super."gitlib-s3";
"gitlib-sample" = dontDistribute super."gitlib-sample";
"gitlib-utils" = dontDistribute super."gitlib-utils";
+ "gitter" = dontDistribute super."gitter";
"gl-capture" = dontDistribute super."gl-capture";
"glade" = dontDistribute super."glade";
"gladexml-accessor" = dontDistribute super."gladexml-accessor";
@@ -3463,6 +3481,7 @@ self: super: {
"gstreamer" = dontDistribute super."gstreamer";
"gt-tools" = dontDistribute super."gt-tools";
"gtfs" = dontDistribute super."gtfs";
+ "gtk" = doDistribute super."gtk_0_13_9";
"gtk-helpers" = dontDistribute super."gtk-helpers";
"gtk-jsinput" = dontDistribute super."gtk-jsinput";
"gtk-largeTreeStore" = dontDistribute super."gtk-largeTreeStore";
@@ -3555,6 +3574,7 @@ self: super: {
"hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP";
"hackage-server" = dontDistribute super."hackage-server";
"hackage-sparks" = dontDistribute super."hackage-sparks";
+ "hackage-whatsnew" = dontDistribute super."hackage-whatsnew";
"hackage2hwn" = dontDistribute super."hackage2hwn";
"hackage2twitter" = dontDistribute super."hackage2twitter";
"hackager" = dontDistribute super."hackager";
@@ -3710,6 +3730,7 @@ self: super: {
"haskell-in-space" = dontDistribute super."haskell-in-space";
"haskell-modbus" = dontDistribute super."haskell-modbus";
"haskell-mpi" = dontDistribute super."haskell-mpi";
+ "haskell-names" = doDistribute super."haskell-names_0_5_3";
"haskell-neo4j-client" = doDistribute super."haskell-neo4j-client_0_3_1_4";
"haskell-openflow" = dontDistribute super."haskell-openflow";
"haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter";
@@ -3784,6 +3805,7 @@ self: super: {
"hasloGUI" = dontDistribute super."hasloGUI";
"hasparql-client" = dontDistribute super."hasparql-client";
"haspell" = dontDistribute super."haspell";
+ "hasql" = doDistribute super."hasql_0_7_4";
"hasql-pool" = dontDistribute super."hasql-pool";
"hasql-postgres" = doDistribute super."hasql-postgres_0_10_5";
"hasql-postgres-options" = dontDistribute super."hasql-postgres-options";
@@ -3999,6 +4021,8 @@ self: super: {
"hlibBladeRF" = dontDistribute super."hlibBladeRF";
"hlibev" = dontDistribute super."hlibev";
"hlibfam" = dontDistribute super."hlibfam";
+ "hlibgit2" = doDistribute super."hlibgit2_0_18_0_14";
+ "hlibsass" = doDistribute super."hlibsass_0_1_4_0";
"hlint" = doDistribute super."hlint_1_9_21";
"hlogger" = dontDistribute super."hlogger";
"hlongurl" = dontDistribute super."hlongurl";
@@ -4165,6 +4189,7 @@ self: super: {
"hsConfigure" = dontDistribute super."hsConfigure";
"hsSqlite3" = dontDistribute super."hsSqlite3";
"hsXenCtrl" = dontDistribute super."hsXenCtrl";
+ "hsass" = doDistribute super."hsass_0_3_0";
"hsay" = dontDistribute super."hsay";
"hsb2hs" = dontDistribute super."hsb2hs";
"hsbackup" = dontDistribute super."hsbackup";
@@ -4205,6 +4230,7 @@ self: super: {
"hsdip" = dontDistribute super."hsdip";
"hsdns" = dontDistribute super."hsdns";
"hsdns-cache" = dontDistribute super."hsdns-cache";
+ "hsebaysdk" = doDistribute super."hsebaysdk_0_3_0_0";
"hsemail-ns" = dontDistribute super."hsemail-ns";
"hsenv" = dontDistribute super."hsenv";
"hserv" = dontDistribute super."hserv";
@@ -4262,6 +4288,7 @@ self: super: {
"hspec-meta" = doDistribute super."hspec-meta_2_1_7";
"hspec-monad-control" = dontDistribute super."hspec-monad-control";
"hspec-server" = dontDistribute super."hspec-server";
+ "hspec-setup" = dontDistribute super."hspec-setup";
"hspec-shouldbe" = dontDistribute super."hspec-shouldbe";
"hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0";
"hspec-snap" = doDistribute super."hspec-snap_0_3_3_0";
@@ -4357,6 +4384,7 @@ self: super: {
"http-server" = dontDistribute super."http-server";
"http-shed" = dontDistribute super."http-shed";
"http-test" = dontDistribute super."http-test";
+ "http-types" = doDistribute super."http-types_0_8_6";
"http-wget" = dontDistribute super."http-wget";
"http2" = doDistribute super."http2_1_0_4";
"httpd-shed" = dontDistribute super."httpd-shed";
@@ -4485,6 +4513,7 @@ self: super: {
"imgurder" = dontDistribute super."imgurder";
"imm" = dontDistribute super."imm";
"imparse" = dontDistribute super."imparse";
+ "imperative-edsl" = dontDistribute super."imperative-edsl";
"imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl";
"implicit" = dontDistribute super."implicit";
"implicit-params" = dontDistribute super."implicit-params";
@@ -4660,6 +4689,7 @@ self: super: {
"json-assertions" = dontDistribute super."json-assertions";
"json-autotype" = doDistribute super."json-autotype_1_0_7";
"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";
@@ -4669,6 +4699,7 @@ self: super: {
"json-rpc" = dontDistribute super."json-rpc";
"json-rpc-client" = dontDistribute super."json-rpc-client";
"json-rpc-server" = dontDistribute super."json-rpc-server";
+ "json-schema" = doDistribute super."json-schema_0_7_4_0";
"json-sop" = dontDistribute super."json-sop";
"json-state" = dontDistribute super."json-state";
"json-stream" = dontDistribute super."json-stream";
@@ -4784,6 +4815,7 @@ self: super: {
"lambdacube-examples" = dontDistribute super."lambdacube-examples";
"lambdacube-gl" = dontDistribute super."lambdacube-gl";
"lambdacube-samples" = dontDistribute super."lambdacube-samples";
+ "lambdatex" = dontDistribute super."lambdatex";
"lambdatwit" = dontDistribute super."lambdatwit";
"lambdiff" = dontDistribute super."lambdiff";
"lame-tester" = dontDistribute super."lame-tester";
@@ -4825,6 +4857,7 @@ self: super: {
"language-thrift" = dontDistribute super."language-thrift";
"language-typescript" = dontDistribute super."language-typescript";
"language-vhdl" = dontDistribute super."language-vhdl";
+ "largeword" = doDistribute super."largeword_1_2_3";
"lat" = dontDistribute super."lat";
"latest-npm-version" = dontDistribute super."latest-npm-version";
"latex" = dontDistribute super."latex";
@@ -4976,6 +5009,7 @@ self: super: {
"list-fusion-probe" = doDistribute super."list-fusion-probe_0_1_0_3";
"list-grouping" = dontDistribute super."list-grouping";
"list-mux" = dontDistribute super."list-mux";
+ "list-prompt" = dontDistribute super."list-prompt";
"list-remote-forwards" = dontDistribute super."list-remote-forwards";
"list-t-attoparsec" = dontDistribute super."list-t-attoparsec";
"list-t-html-parser" = dontDistribute super."list-t-html-parser";
@@ -5019,6 +5053,7 @@ self: super: {
"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-domain" = doDistribute super."log-domain_0_10_2";
@@ -5063,6 +5098,7 @@ self: super: {
"lub" = dontDistribute super."lub";
"lucid" = doDistribute super."lucid_2_9_2";
"lucid-foundation" = dontDistribute super."lucid-foundation";
+ "lucid-svg" = doDistribute super."lucid-svg_0_5_0_0";
"lucienne" = dontDistribute super."lucienne";
"luhn" = dontDistribute super."luhn";
"lui" = dontDistribute super."lui";
@@ -5465,6 +5501,7 @@ self: super: {
"nbt" = dontDistribute super."nbt";
"nc-indicators" = dontDistribute super."nc-indicators";
"ncurses" = dontDistribute super."ncurses";
+ "ndjson-conduit" = doDistribute super."ndjson-conduit_0_1_0_2";
"neat" = dontDistribute super."neat";
"neat-interpolation" = doDistribute super."neat-interpolation_0_2_2_1";
"needle" = dontDistribute super."needle";
@@ -5638,6 +5675,7 @@ self: super: {
"omnifmt" = dontDistribute super."omnifmt";
"on-a-horse" = dontDistribute super."on-a-horse";
"on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel";
+ "once" = dontDistribute super."once";
"one-liner" = dontDistribute super."one-liner";
"one-time-password" = dontDistribute super."one-time-password";
"oneOfN" = dontDistribute super."oneOfN";
@@ -5692,6 +5730,7 @@ self: super: {
"optimusprime" = dontDistribute super."optimusprime";
"optional" = dontDistribute super."optional";
"options-time" = dontDistribute super."options-time";
+ "optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"orc" = dontDistribute super."orc";
"orchestrate" = dontDistribute super."orchestrate";
@@ -5882,6 +5921,7 @@ self: super: {
"pgstream" = dontDistribute super."pgstream";
"phasechange" = dontDistribute super."phasechange";
"phizzle" = dontDistribute super."phizzle";
+ "phoityne" = dontDistribute super."phoityne";
"phone-numbers" = dontDistribute super."phone-numbers";
"phone-push" = dontDistribute super."phone-push";
"phonetic-code" = dontDistribute super."phonetic-code";
@@ -5903,6 +5943,7 @@ self: super: {
"pipe-enumerator" = dontDistribute super."pipe-enumerator";
"pipeclip" = dontDistribute super."pipeclip";
"pipes" = doDistribute super."pipes_4_1_6";
+ "pipes-aeson" = doDistribute super."pipes-aeson_0_4_1_4";
"pipes-async" = dontDistribute super."pipes-async";
"pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming";
"pipes-binary" = doDistribute super."pipes-binary_0_4_0_4";
@@ -5911,6 +5952,7 @@ self: super: {
"pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv";
"pipes-cereal" = dontDistribute super."pipes-cereal";
"pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus";
+ "pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_3";
"pipes-conduit" = dontDistribute super."pipes-conduit";
"pipes-core" = dontDistribute super."pipes-core";
"pipes-courier" = dontDistribute super."pipes-courier";
@@ -6022,6 +6064,7 @@ self: super: {
"possible" = dontDistribute super."possible";
"post-mess-age" = doDistribute super."post-mess-age_0_1_0_0";
"postcodes" = dontDistribute super."postcodes";
+ "postgresql-binary" = doDistribute super."postgresql-binary_0_5_2_1";
"postgresql-config" = dontDistribute super."postgresql-config";
"postgresql-connector" = dontDistribute super."postgresql-connector";
"postgresql-copy-escape" = dontDistribute super."postgresql-copy-escape";
@@ -6461,6 +6504,7 @@ self: super: {
"rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster";
"retry" = doDistribute super."retry_0_6";
"retryer" = dontDistribute super."retryer";
+ "rev-state" = doDistribute super."rev-state_0_1";
"revdectime" = dontDistribute super."revdectime";
"reverse-apply" = dontDistribute super."reverse-apply";
"reverse-geocoding" = dontDistribute super."reverse-geocoding";
@@ -6690,6 +6734,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serv" = dontDistribute super."serv";
"servant" = doDistribute super."servant_0_4_4";
"servant-JuicyPixels" = doDistribute super."servant-JuicyPixels_0_1_0_0";
"servant-blaze" = dontDistribute super."servant-blaze";
@@ -6902,6 +6947,7 @@ self: super: {
"snaplet-coffee" = dontDistribute super."snaplet-coffee";
"snaplet-css-min" = dontDistribute super."snaplet-css-min";
"snaplet-environments" = dontDistribute super."snaplet-environments";
+ "snaplet-fay" = doDistribute super."snaplet-fay_0_3_3_12";
"snaplet-ghcjs" = dontDistribute super."snaplet-ghcjs";
"snaplet-hasql" = dontDistribute super."snaplet-hasql";
"snaplet-haxl" = dontDistribute super."snaplet-haxl";
@@ -7192,6 +7238,7 @@ self: super: {
"swift-lda" = dontDistribute super."swift-lda";
"swish" = dontDistribute super."swish";
"sws" = dontDistribute super."sws";
+ "syb" = doDistribute super."syb_0_5_1";
"syb-extras" = dontDistribute super."syb-extras";
"syb-with-class" = dontDistribute super."syb-with-class";
"syb-with-class-instances-text" = dontDistribute super."syb-with-class-instances-text";
@@ -7642,6 +7689,7 @@ self: super: {
"typehash" = dontDistribute super."typehash";
"typelevel" = dontDistribute super."typelevel";
"typelevel-tensor" = dontDistribute super."typelevel-tensor";
+ "typelits-witnesses" = dontDistribute super."typelits-witnesses";
"typeof" = dontDistribute super."typeof";
"typeparams" = dontDistribute super."typeparams";
"typesafe-endian" = dontDistribute super."typesafe-endian";
@@ -7870,6 +7918,7 @@ self: super: {
"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" = dontDistribute super."vty";
diff --git a/pkgs/development/haskell-modules/configuration-lts-3.1.nix b/pkgs/development/haskell-modules/configuration-lts-3.1.nix
index 5f272356846..d238767cf9a 100644
--- a/pkgs/development/haskell-modules/configuration-lts-3.1.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-3.1.nix
@@ -320,6 +320,7 @@ self: super: {
"FormalGrammars" = dontDistribute super."FormalGrammars";
"Foster" = dontDistribute super."Foster";
"FpMLv53" = dontDistribute super."FpMLv53";
+ "FractalArt" = dontDistribute super."FractalArt";
"Fractaler" = dontDistribute super."Fractaler";
"Frames" = dontDistribute super."Frames";
"Frank" = dontDistribute super."Frank";
@@ -470,6 +471,7 @@ self: super: {
"HTTP-Simple" = dontDistribute super."HTTP-Simple";
"HTab" = dontDistribute super."HTab";
"HTicTacToe" = dontDistribute super."HTicTacToe";
+ "HUnit" = doDistribute super."HUnit_1_2_5_2";
"HUnit-Diff" = dontDistribute super."HUnit-Diff";
"HUnit-Plus" = dontDistribute super."HUnit-Plus";
"HUnit-approx" = dontDistribute super."HUnit-approx";
@@ -502,6 +504,7 @@ self: super: {
"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";
@@ -1393,6 +1396,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_2_2";
"autonix-deps" = dontDistribute super."autonix-deps";
"autonix-deps-kf5" = dontDistribute super."autonix-deps-kf5";
"autoproc" = dontDistribute super."autoproc";
@@ -1456,6 +1460,8 @@ self: super: {
"base-generics" = dontDistribute super."base-generics";
"base-io-access" = dontDistribute super."base-io-access";
"base-noprelude" = dontDistribute super."base-noprelude";
+ "base-orphans" = doDistribute super."base-orphans_0_4_4";
+ "base-prelude" = doDistribute super."base-prelude_0_1_19";
"base32-bytestring" = dontDistribute super."base32-bytestring";
"base58-bytestring" = dontDistribute super."base58-bytestring";
"base58address" = dontDistribute super."base58address";
@@ -1499,6 +1505,7 @@ self: super: {
"bidirectionalization-combined" = dontDistribute super."bidirectionalization-combined";
"bidispec" = dontDistribute super."bidispec";
"bidispec-extras" = dontDistribute super."bidispec-extras";
+ "bifunctors" = doDistribute super."bifunctors_5";
"billboard-parser" = dontDistribute super."billboard-parser";
"billeksah-forms" = dontDistribute super."billeksah-forms";
"billeksah-main" = dontDistribute super."billeksah-main";
@@ -1664,6 +1671,7 @@ self: super: {
"bot" = dontDistribute super."bot";
"both" = dontDistribute super."both";
"botpp" = dontDistribute super."botpp";
+ "bound" = doDistribute super."bound_1_0_6";
"bound-gen" = dontDistribute super."bound-gen";
"bounded-tchan" = dontDistribute super."bounded-tchan";
"boundingboxes" = dontDistribute super."boundingboxes";
@@ -1687,6 +1695,7 @@ self: super: {
"bspack" = dontDistribute super."bspack";
"bsparse" = dontDistribute super."bsparse";
"btree-concurrent" = dontDistribute super."btree-concurrent";
+ "buffer-builder" = doDistribute super."buffer-builder_0_2_4_0";
"buffer-builder-aeson" = dontDistribute super."buffer-builder-aeson";
"buffon" = dontDistribute super."buffon";
"bugzilla" = dontDistribute super."bugzilla";
@@ -1852,6 +1861,7 @@ self: super: {
"cef" = dontDistribute super."cef";
"ceilometer-common" = dontDistribute super."ceilometer-common";
"cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo";
+ "cerberus" = dontDistribute super."cerberus";
"cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_3";
"cereal-derive" = dontDistribute super."cereal-derive";
"cereal-enumerator" = dontDistribute super."cereal-enumerator";
@@ -1955,6 +1965,7 @@ self: super: {
"clipper" = dontDistribute super."clipper";
"clippings" = dontDistribute super."clippings";
"clist" = dontDistribute super."clist";
+ "clock" = doDistribute super."clock_0_5_1";
"clocked" = dontDistribute super."clocked";
"clogparse" = dontDistribute super."clogparse";
"clone-all" = dontDistribute super."clone-all";
@@ -2054,6 +2065,7 @@ self: super: {
"concrete-typerep" = dontDistribute super."concrete-typerep";
"concurrent-barrier" = dontDistribute super."concurrent-barrier";
"concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache";
+ "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9";
"concurrent-machines" = dontDistribute super."concurrent-machines";
"concurrent-output" = dontDistribute super."concurrent-output";
"concurrent-sa" = dontDistribute super."concurrent-sa";
@@ -2423,6 +2435,8 @@ self: super: {
"delta-h" = dontDistribute super."delta-h";
"demarcate" = dontDistribute super."demarcate";
"denominate" = dontDistribute super."denominate";
+ "dependent-map" = doDistribute super."dependent-map_0_1_1_3";
+ "dependent-sum" = doDistribute super."dependent-sum_0_2_1_0";
"depends" = dontDistribute super."depends";
"dephd" = dontDistribute super."dephd";
"dequeue" = dontDistribute super."dequeue";
@@ -2470,6 +2484,7 @@ self: super: {
"diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube";
"diagrams-svg" = doDistribute super."diagrams-svg_1_3_1_4";
"diagrams-tikz" = dontDistribute super."diagrams-tikz";
+ "dialog" = dontDistribute super."dialog";
"dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit";
"dicom" = dontDistribute super."dicom";
"dictparser" = dontDistribute super."dictparser";
@@ -2653,6 +2668,7 @@ self: super: {
"edenskel" = dontDistribute super."edenskel";
"edentv" = dontDistribute super."edentv";
"edge" = dontDistribute super."edge";
+ "edis" = dontDistribute super."edis";
"edit-distance-vector" = dontDistribute super."edit-distance-vector";
"edit-lenses" = dontDistribute super."edit-lenses";
"edit-lenses-demo" = dontDistribute super."edit-lenses-demo";
@@ -2836,6 +2852,7 @@ self: super: {
"failable-list" = dontDistribute super."failable-list";
"failure" = dontDistribute super."failure";
"fair-predicates" = dontDistribute super."fair-predicates";
+ "fake-type" = dontDistribute super."fake-type";
"faker" = dontDistribute super."faker";
"falling-turnip" = dontDistribute super."falling-turnip";
"fallingblocks" = dontDistribute super."fallingblocks";
@@ -3040,6 +3057,7 @@ self: super: {
"friday-juicypixels" = dontDistribute super."friday-juicypixels";
"friday-scale-dct" = dontDistribute super."friday-scale-dct";
"friendly-time" = dontDistribute super."friendly-time";
+ "frontmatter" = dontDistribute super."frontmatter";
"frp-arduino" = dontDistribute super."frp-arduino";
"frpnow" = dontDistribute super."frpnow";
"frpnow-gloss" = dontDistribute super."frpnow-gloss";
@@ -3251,6 +3269,7 @@ self: super: {
"gitlib-s3" = dontDistribute super."gitlib-s3";
"gitlib-sample" = dontDistribute super."gitlib-sample";
"gitlib-utils" = dontDistribute super."gitlib-utils";
+ "gitter" = dontDistribute super."gitter";
"gl-capture" = dontDistribute super."gl-capture";
"glade" = dontDistribute super."glade";
"gladexml-accessor" = dontDistribute super."gladexml-accessor";
@@ -3458,6 +3477,7 @@ self: super: {
"gstreamer" = dontDistribute super."gstreamer";
"gt-tools" = dontDistribute super."gt-tools";
"gtfs" = dontDistribute super."gtfs";
+ "gtk" = doDistribute super."gtk_0_13_9";
"gtk-helpers" = dontDistribute super."gtk-helpers";
"gtk-jsinput" = dontDistribute super."gtk-jsinput";
"gtk-largeTreeStore" = dontDistribute super."gtk-largeTreeStore";
@@ -3550,6 +3570,7 @@ self: super: {
"hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP";
"hackage-server" = dontDistribute super."hackage-server";
"hackage-sparks" = dontDistribute super."hackage-sparks";
+ "hackage-whatsnew" = dontDistribute super."hackage-whatsnew";
"hackage2hwn" = dontDistribute super."hackage2hwn";
"hackage2twitter" = dontDistribute super."hackage2twitter";
"hackager" = dontDistribute super."hackager";
@@ -3705,6 +3726,7 @@ self: super: {
"haskell-in-space" = dontDistribute super."haskell-in-space";
"haskell-modbus" = dontDistribute super."haskell-modbus";
"haskell-mpi" = dontDistribute super."haskell-mpi";
+ "haskell-names" = doDistribute super."haskell-names_0_5_3";
"haskell-neo4j-client" = doDistribute super."haskell-neo4j-client_0_3_1_4";
"haskell-openflow" = dontDistribute super."haskell-openflow";
"haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter";
@@ -3779,6 +3801,7 @@ self: super: {
"hasloGUI" = dontDistribute super."hasloGUI";
"hasparql-client" = dontDistribute super."hasparql-client";
"haspell" = dontDistribute super."haspell";
+ "hasql" = doDistribute super."hasql_0_7_4";
"hasql-pool" = dontDistribute super."hasql-pool";
"hasql-postgres" = doDistribute super."hasql-postgres_0_10_5";
"hasql-postgres-options" = dontDistribute super."hasql-postgres-options";
@@ -3993,6 +4016,8 @@ self: super: {
"hlibBladeRF" = dontDistribute super."hlibBladeRF";
"hlibev" = dontDistribute super."hlibev";
"hlibfam" = dontDistribute super."hlibfam";
+ "hlibgit2" = doDistribute super."hlibgit2_0_18_0_14";
+ "hlibsass" = doDistribute super."hlibsass_0_1_4_0";
"hlint" = doDistribute super."hlint_1_9_21";
"hlogger" = dontDistribute super."hlogger";
"hlongurl" = dontDistribute super."hlongurl";
@@ -4159,6 +4184,7 @@ self: super: {
"hsConfigure" = dontDistribute super."hsConfigure";
"hsSqlite3" = dontDistribute super."hsSqlite3";
"hsXenCtrl" = dontDistribute super."hsXenCtrl";
+ "hsass" = doDistribute super."hsass_0_3_0";
"hsay" = dontDistribute super."hsay";
"hsb2hs" = dontDistribute super."hsb2hs";
"hsbackup" = dontDistribute super."hsbackup";
@@ -4199,6 +4225,7 @@ self: super: {
"hsdip" = dontDistribute super."hsdip";
"hsdns" = dontDistribute super."hsdns";
"hsdns-cache" = dontDistribute super."hsdns-cache";
+ "hsebaysdk" = doDistribute super."hsebaysdk_0_3_0_0";
"hsemail-ns" = dontDistribute super."hsemail-ns";
"hsenv" = dontDistribute super."hsenv";
"hserv" = dontDistribute super."hserv";
@@ -4256,6 +4283,7 @@ self: super: {
"hspec-meta" = doDistribute super."hspec-meta_2_1_7";
"hspec-monad-control" = dontDistribute super."hspec-monad-control";
"hspec-server" = dontDistribute super."hspec-server";
+ "hspec-setup" = dontDistribute super."hspec-setup";
"hspec-shouldbe" = dontDistribute super."hspec-shouldbe";
"hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0";
"hspec-snap" = doDistribute super."hspec-snap_0_3_3_0";
@@ -4351,6 +4379,7 @@ self: super: {
"http-server" = dontDistribute super."http-server";
"http-shed" = dontDistribute super."http-shed";
"http-test" = dontDistribute super."http-test";
+ "http-types" = doDistribute super."http-types_0_8_6";
"http-wget" = dontDistribute super."http-wget";
"http2" = doDistribute super."http2_1_0_4";
"httpd-shed" = dontDistribute super."httpd-shed";
@@ -4479,6 +4508,7 @@ self: super: {
"imgurder" = dontDistribute super."imgurder";
"imm" = dontDistribute super."imm";
"imparse" = dontDistribute super."imparse";
+ "imperative-edsl" = dontDistribute super."imperative-edsl";
"imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl";
"implicit" = dontDistribute super."implicit";
"implicit-params" = dontDistribute super."implicit-params";
@@ -4654,6 +4684,7 @@ self: super: {
"json-assertions" = dontDistribute super."json-assertions";
"json-autotype" = doDistribute super."json-autotype_1_0_7";
"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";
@@ -4663,6 +4694,7 @@ self: super: {
"json-rpc" = dontDistribute super."json-rpc";
"json-rpc-client" = dontDistribute super."json-rpc-client";
"json-rpc-server" = dontDistribute super."json-rpc-server";
+ "json-schema" = doDistribute super."json-schema_0_7_4_0";
"json-sop" = dontDistribute super."json-sop";
"json-state" = dontDistribute super."json-state";
"json-stream" = dontDistribute super."json-stream";
@@ -4778,6 +4810,7 @@ self: super: {
"lambdacube-examples" = dontDistribute super."lambdacube-examples";
"lambdacube-gl" = dontDistribute super."lambdacube-gl";
"lambdacube-samples" = dontDistribute super."lambdacube-samples";
+ "lambdatex" = dontDistribute super."lambdatex";
"lambdatwit" = dontDistribute super."lambdatwit";
"lambdiff" = dontDistribute super."lambdiff";
"lame-tester" = dontDistribute super."lame-tester";
@@ -4819,6 +4852,7 @@ self: super: {
"language-thrift" = dontDistribute super."language-thrift";
"language-typescript" = dontDistribute super."language-typescript";
"language-vhdl" = dontDistribute super."language-vhdl";
+ "largeword" = doDistribute super."largeword_1_2_3";
"lat" = dontDistribute super."lat";
"latest-npm-version" = dontDistribute super."latest-npm-version";
"latex" = dontDistribute super."latex";
@@ -4970,6 +5004,7 @@ self: super: {
"list-fusion-probe" = doDistribute super."list-fusion-probe_0_1_0_3";
"list-grouping" = dontDistribute super."list-grouping";
"list-mux" = dontDistribute super."list-mux";
+ "list-prompt" = dontDistribute super."list-prompt";
"list-remote-forwards" = dontDistribute super."list-remote-forwards";
"list-t-attoparsec" = dontDistribute super."list-t-attoparsec";
"list-t-html-parser" = dontDistribute super."list-t-html-parser";
@@ -5013,6 +5048,7 @@ self: super: {
"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-domain" = doDistribute super."log-domain_0_10_2";
@@ -5057,6 +5093,7 @@ self: super: {
"lub" = dontDistribute super."lub";
"lucid" = doDistribute super."lucid_2_9_2";
"lucid-foundation" = dontDistribute super."lucid-foundation";
+ "lucid-svg" = doDistribute super."lucid-svg_0_5_0_0";
"lucienne" = dontDistribute super."lucienne";
"luhn" = dontDistribute super."luhn";
"lui" = dontDistribute super."lui";
@@ -5457,6 +5494,7 @@ self: super: {
"nbt" = dontDistribute super."nbt";
"nc-indicators" = dontDistribute super."nc-indicators";
"ncurses" = dontDistribute super."ncurses";
+ "ndjson-conduit" = doDistribute super."ndjson-conduit_0_1_0_2";
"neat" = dontDistribute super."neat";
"neat-interpolation" = doDistribute super."neat-interpolation_0_2_2_1";
"needle" = dontDistribute super."needle";
@@ -5630,6 +5668,7 @@ self: super: {
"omnifmt" = dontDistribute super."omnifmt";
"on-a-horse" = dontDistribute super."on-a-horse";
"on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel";
+ "once" = dontDistribute super."once";
"one-liner" = dontDistribute super."one-liner";
"one-time-password" = dontDistribute super."one-time-password";
"oneOfN" = dontDistribute super."oneOfN";
@@ -5684,6 +5723,7 @@ self: super: {
"optimusprime" = dontDistribute super."optimusprime";
"optional" = dontDistribute super."optional";
"options-time" = dontDistribute super."options-time";
+ "optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"orc" = dontDistribute super."orc";
"orchestrate" = dontDistribute super."orchestrate";
@@ -5874,6 +5914,7 @@ self: super: {
"pgstream" = dontDistribute super."pgstream";
"phasechange" = dontDistribute super."phasechange";
"phizzle" = dontDistribute super."phizzle";
+ "phoityne" = dontDistribute super."phoityne";
"phone-numbers" = dontDistribute super."phone-numbers";
"phone-push" = dontDistribute super."phone-push";
"phonetic-code" = dontDistribute super."phonetic-code";
@@ -5894,6 +5935,7 @@ self: super: {
"pipe-enumerator" = dontDistribute super."pipe-enumerator";
"pipeclip" = dontDistribute super."pipeclip";
"pipes" = doDistribute super."pipes_4_1_6";
+ "pipes-aeson" = doDistribute super."pipes-aeson_0_4_1_4";
"pipes-async" = dontDistribute super."pipes-async";
"pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming";
"pipes-binary" = doDistribute super."pipes-binary_0_4_0_4";
@@ -5902,6 +5944,7 @@ self: super: {
"pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv";
"pipes-cereal" = dontDistribute super."pipes-cereal";
"pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus";
+ "pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_3";
"pipes-conduit" = dontDistribute super."pipes-conduit";
"pipes-core" = dontDistribute super."pipes-core";
"pipes-courier" = dontDistribute super."pipes-courier";
@@ -6013,6 +6056,7 @@ self: super: {
"possible" = dontDistribute super."possible";
"post-mess-age" = doDistribute super."post-mess-age_0_1_0_0";
"postcodes" = dontDistribute super."postcodes";
+ "postgresql-binary" = doDistribute super."postgresql-binary_0_5_2_1";
"postgresql-config" = dontDistribute super."postgresql-config";
"postgresql-connector" = dontDistribute super."postgresql-connector";
"postgresql-copy-escape" = dontDistribute super."postgresql-copy-escape";
@@ -6451,6 +6495,7 @@ self: super: {
"rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster";
"retry" = doDistribute super."retry_0_6";
"retryer" = dontDistribute super."retryer";
+ "rev-state" = doDistribute super."rev-state_0_1";
"revdectime" = dontDistribute super."revdectime";
"reverse-apply" = dontDistribute super."reverse-apply";
"reverse-geocoding" = dontDistribute super."reverse-geocoding";
@@ -6680,6 +6725,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serv" = dontDistribute super."serv";
"servant" = doDistribute super."servant_0_4_4";
"servant-JuicyPixels" = doDistribute super."servant-JuicyPixels_0_1_0_0";
"servant-blaze" = dontDistribute super."servant-blaze";
@@ -6892,6 +6938,7 @@ self: super: {
"snaplet-coffee" = dontDistribute super."snaplet-coffee";
"snaplet-css-min" = dontDistribute super."snaplet-css-min";
"snaplet-environments" = dontDistribute super."snaplet-environments";
+ "snaplet-fay" = doDistribute super."snaplet-fay_0_3_3_12";
"snaplet-ghcjs" = dontDistribute super."snaplet-ghcjs";
"snaplet-hasql" = dontDistribute super."snaplet-hasql";
"snaplet-haxl" = dontDistribute super."snaplet-haxl";
@@ -7182,6 +7229,7 @@ self: super: {
"swift-lda" = dontDistribute super."swift-lda";
"swish" = dontDistribute super."swish";
"sws" = dontDistribute super."sws";
+ "syb" = doDistribute super."syb_0_5_1";
"syb-extras" = dontDistribute super."syb-extras";
"syb-with-class" = dontDistribute super."syb-with-class";
"syb-with-class-instances-text" = dontDistribute super."syb-with-class-instances-text";
@@ -7632,6 +7680,7 @@ self: super: {
"typehash" = dontDistribute super."typehash";
"typelevel" = dontDistribute super."typelevel";
"typelevel-tensor" = dontDistribute super."typelevel-tensor";
+ "typelits-witnesses" = dontDistribute super."typelits-witnesses";
"typeof" = dontDistribute super."typeof";
"typeparams" = dontDistribute super."typeparams";
"typesafe-endian" = dontDistribute super."typesafe-endian";
@@ -7859,6 +7908,7 @@ self: super: {
"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" = dontDistribute super."vty";
diff --git a/pkgs/development/haskell-modules/configuration-lts-3.10.nix b/pkgs/development/haskell-modules/configuration-lts-3.10.nix
index a41aa1b749b..75e701cd9a0 100644
--- a/pkgs/development/haskell-modules/configuration-lts-3.10.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-3.10.nix
@@ -71,6 +71,7 @@ self: super: {
"Advgame" = dontDistribute super."Advgame";
"AesonBson" = dontDistribute super."AesonBson";
"Agata" = dontDistribute super."Agata";
+ "Agda" = doDistribute super."Agda_2_4_2_4";
"Agda-executable" = dontDistribute super."Agda-executable";
"AhoCorasick" = dontDistribute super."AhoCorasick";
"AlgorithmW" = dontDistribute super."AlgorithmW";
@@ -315,6 +316,7 @@ self: super: {
"FormalGrammars" = dontDistribute super."FormalGrammars";
"Foster" = dontDistribute super."Foster";
"FpMLv53" = dontDistribute super."FpMLv53";
+ "FractalArt" = dontDistribute super."FractalArt";
"Fractaler" = dontDistribute super."Fractaler";
"Frames" = dontDistribute super."Frames";
"Frank" = dontDistribute super."Frank";
@@ -464,6 +466,7 @@ self: super: {
"HTTP-Simple" = dontDistribute super."HTTP-Simple";
"HTab" = dontDistribute super."HTab";
"HTicTacToe" = dontDistribute super."HTicTacToe";
+ "HUnit" = doDistribute super."HUnit_1_2_5_2";
"HUnit-Diff" = dontDistribute super."HUnit-Diff";
"HUnit-Plus" = dontDistribute super."HUnit-Plus";
"HUnit-approx" = dontDistribute super."HUnit-approx";
@@ -495,6 +498,7 @@ self: super: {
"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";
@@ -1322,6 +1326,7 @@ self: super: {
"asic" = dontDistribute super."asic";
"asil" = dontDistribute super."asil";
"asn1-data" = dontDistribute super."asn1-data";
+ "asn1-types" = doDistribute super."asn1-types_0_3_1";
"asn1dump" = dontDistribute super."asn1dump";
"assembler" = dontDistribute super."assembler";
"assert" = dontDistribute super."assert";
@@ -1376,6 +1381,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_2_2";
"autonix-deps" = dontDistribute super."autonix-deps";
"autonix-deps-kf5" = dontDistribute super."autonix-deps-kf5";
"autoproc" = dontDistribute super."autoproc";
@@ -1439,6 +1445,8 @@ self: super: {
"base-generics" = dontDistribute super."base-generics";
"base-io-access" = dontDistribute super."base-io-access";
"base-noprelude" = dontDistribute super."base-noprelude";
+ "base-orphans" = doDistribute super."base-orphans_0_4_4";
+ "base-prelude" = doDistribute super."base-prelude_0_1_19";
"base32-bytestring" = dontDistribute super."base32-bytestring";
"base58-bytestring" = dontDistribute super."base58-bytestring";
"base58address" = dontDistribute super."base58address";
@@ -1482,6 +1490,7 @@ self: super: {
"bidirectionalization-combined" = dontDistribute super."bidirectionalization-combined";
"bidispec" = dontDistribute super."bidispec";
"bidispec-extras" = dontDistribute super."bidispec-extras";
+ "bifunctors" = doDistribute super."bifunctors_5";
"billboard-parser" = dontDistribute super."billboard-parser";
"billeksah-forms" = dontDistribute super."billeksah-forms";
"billeksah-main" = dontDistribute super."billeksah-main";
@@ -1643,6 +1652,7 @@ self: super: {
"bot" = dontDistribute super."bot";
"both" = dontDistribute super."both";
"botpp" = dontDistribute super."botpp";
+ "bound" = doDistribute super."bound_1_0_6";
"bound-gen" = dontDistribute super."bound-gen";
"bounded-tchan" = dontDistribute super."bounded-tchan";
"boundingboxes" = dontDistribute super."boundingboxes";
@@ -1666,6 +1676,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_0";
"buffer-builder-aeson" = dontDistribute super."buffer-builder-aeson";
"buffon" = dontDistribute super."buffon";
"bugzilla" = dontDistribute super."bugzilla";
@@ -1826,6 +1837,7 @@ self: super: {
"cef" = dontDistribute super."cef";
"ceilometer-common" = dontDistribute super."ceilometer-common";
"cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo";
+ "cerberus" = dontDistribute super."cerberus";
"cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_3";
"cereal-derive" = dontDistribute super."cereal-derive";
"cereal-enumerator" = dontDistribute super."cereal-enumerator";
@@ -1929,6 +1941,7 @@ self: super: {
"clipper" = dontDistribute super."clipper";
"clippings" = dontDistribute super."clippings";
"clist" = dontDistribute super."clist";
+ "clock" = doDistribute super."clock_0_5_1";
"clocked" = dontDistribute super."clocked";
"clogparse" = dontDistribute super."clogparse";
"clone-all" = dontDistribute super."clone-all";
@@ -2026,6 +2039,7 @@ self: super: {
"concrete-typerep" = dontDistribute super."concrete-typerep";
"concurrent-barrier" = dontDistribute super."concurrent-barrier";
"concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache";
+ "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9";
"concurrent-machines" = dontDistribute super."concurrent-machines";
"concurrent-output" = dontDistribute super."concurrent-output";
"concurrent-sa" = dontDistribute super."concurrent-sa";
@@ -2389,6 +2403,8 @@ self: super: {
"delta-h" = dontDistribute super."delta-h";
"demarcate" = dontDistribute super."demarcate";
"denominate" = dontDistribute super."denominate";
+ "dependent-map" = doDistribute super."dependent-map_0_1_1_3";
+ "dependent-sum" = doDistribute super."dependent-sum_0_2_1_0";
"depends" = dontDistribute super."depends";
"dephd" = dontDistribute super."dephd";
"dequeue" = dontDistribute super."dequeue";
@@ -2433,6 +2449,7 @@ self: super: {
"diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube";
"diagrams-svg" = doDistribute super."diagrams-svg_1_3_1_6";
"diagrams-tikz" = dontDistribute super."diagrams-tikz";
+ "dialog" = dontDistribute super."dialog";
"dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit";
"dicom" = dontDistribute super."dicom";
"dictparser" = dontDistribute super."dictparser";
@@ -2610,6 +2627,7 @@ self: super: {
"edenskel" = dontDistribute super."edenskel";
"edentv" = dontDistribute super."edentv";
"edge" = dontDistribute super."edge";
+ "edis" = dontDistribute super."edis";
"edit-distance-vector" = dontDistribute super."edit-distance-vector";
"edit-lenses" = dontDistribute super."edit-lenses";
"edit-lenses-demo" = dontDistribute super."edit-lenses-demo";
@@ -2788,6 +2806,7 @@ self: super: {
"failable-list" = dontDistribute super."failable-list";
"failure" = dontDistribute super."failure";
"fair-predicates" = dontDistribute super."fair-predicates";
+ "fake-type" = dontDistribute super."fake-type";
"faker" = dontDistribute super."faker";
"falling-turnip" = dontDistribute super."falling-turnip";
"fallingblocks" = dontDistribute super."fallingblocks";
@@ -2984,6 +3003,7 @@ self: super: {
"friday-juicypixels" = dontDistribute super."friday-juicypixels";
"friday-scale-dct" = dontDistribute super."friday-scale-dct";
"friendly-time" = dontDistribute super."friendly-time";
+ "frontmatter" = dontDistribute super."frontmatter";
"frp-arduino" = dontDistribute super."frp-arduino";
"frpnow" = dontDistribute super."frpnow";
"frpnow-gloss" = dontDistribute super."frpnow-gloss";
@@ -3192,6 +3212,7 @@ self: super: {
"gitlib-s3" = dontDistribute super."gitlib-s3";
"gitlib-sample" = dontDistribute super."gitlib-sample";
"gitlib-utils" = dontDistribute super."gitlib-utils";
+ "gitter" = dontDistribute super."gitter";
"gl-capture" = dontDistribute super."gl-capture";
"glade" = dontDistribute super."glade";
"gladexml-accessor" = dontDistribute super."gladexml-accessor";
@@ -3399,6 +3420,7 @@ self: super: {
"gstreamer" = dontDistribute super."gstreamer";
"gt-tools" = dontDistribute super."gt-tools";
"gtfs" = dontDistribute super."gtfs";
+ "gtk" = doDistribute super."gtk_0_13_9";
"gtk-helpers" = dontDistribute super."gtk-helpers";
"gtk-jsinput" = dontDistribute super."gtk-jsinput";
"gtk-largeTreeStore" = dontDistribute super."gtk-largeTreeStore";
@@ -3491,6 +3513,7 @@ self: super: {
"hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP";
"hackage-server" = dontDistribute super."hackage-server";
"hackage-sparks" = dontDistribute super."hackage-sparks";
+ "hackage-whatsnew" = dontDistribute super."hackage-whatsnew";
"hackage2hwn" = dontDistribute super."hackage2hwn";
"hackage2twitter" = dontDistribute super."hackage2twitter";
"hackager" = dontDistribute super."hackager";
@@ -3645,6 +3668,7 @@ self: super: {
"haskell-in-space" = dontDistribute super."haskell-in-space";
"haskell-modbus" = dontDistribute super."haskell-modbus";
"haskell-mpi" = dontDistribute super."haskell-mpi";
+ "haskell-names" = doDistribute super."haskell-names_0_5_3";
"haskell-openflow" = dontDistribute super."haskell-openflow";
"haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter";
"haskell-platform-test" = dontDistribute super."haskell-platform-test";
@@ -3718,6 +3742,7 @@ self: super: {
"hasloGUI" = dontDistribute super."hasloGUI";
"hasparql-client" = dontDistribute super."hasparql-client";
"haspell" = dontDistribute super."haspell";
+ "hasql" = doDistribute super."hasql_0_7_4";
"hasql-pool" = dontDistribute super."hasql-pool";
"hasql-postgres-options" = dontDistribute super."hasql-postgres-options";
"hasql-th" = dontDistribute super."hasql-th";
@@ -3928,6 +3953,8 @@ self: super: {
"hlibBladeRF" = dontDistribute super."hlibBladeRF";
"hlibev" = dontDistribute super."hlibev";
"hlibfam" = dontDistribute super."hlibfam";
+ "hlibgit2" = doDistribute super."hlibgit2_0_18_0_14";
+ "hlibsass" = doDistribute super."hlibsass_0_1_4_0";
"hlint" = doDistribute super."hlint_1_9_21";
"hlogger" = dontDistribute super."hlogger";
"hlongurl" = dontDistribute super."hlongurl";
@@ -4093,6 +4120,7 @@ self: super: {
"hsConfigure" = dontDistribute super."hsConfigure";
"hsSqlite3" = dontDistribute super."hsSqlite3";
"hsXenCtrl" = dontDistribute super."hsXenCtrl";
+ "hsass" = doDistribute super."hsass_0_3_0";
"hsay" = dontDistribute super."hsay";
"hsb2hs" = dontDistribute super."hsb2hs";
"hsbackup" = dontDistribute super."hsbackup";
@@ -4133,6 +4161,7 @@ self: super: {
"hsdip" = dontDistribute super."hsdip";
"hsdns" = dontDistribute super."hsdns";
"hsdns-cache" = dontDistribute super."hsdns-cache";
+ "hsebaysdk" = doDistribute super."hsebaysdk_0_3_0_0";
"hsemail-ns" = dontDistribute super."hsemail-ns";
"hsenv" = dontDistribute super."hsenv";
"hserv" = dontDistribute super."hserv";
@@ -4189,6 +4218,7 @@ self: super: {
"hspec-meta" = doDistribute super."hspec-meta_2_1_7";
"hspec-monad-control" = dontDistribute super."hspec-monad-control";
"hspec-server" = dontDistribute super."hspec-server";
+ "hspec-setup" = dontDistribute super."hspec-setup";
"hspec-shouldbe" = dontDistribute super."hspec-shouldbe";
"hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0";
"hspec-snap" = doDistribute super."hspec-snap_0_3_3_0";
@@ -4284,6 +4314,7 @@ self: super: {
"http-server" = dontDistribute super."http-server";
"http-shed" = dontDistribute super."http-shed";
"http-test" = dontDistribute super."http-test";
+ "http-types" = doDistribute super."http-types_0_8_6";
"http-wget" = dontDistribute super."http-wget";
"http2" = doDistribute super."http2_1_0_4";
"httpd-shed" = dontDistribute super."httpd-shed";
@@ -4409,6 +4440,7 @@ self: super: {
"imgurder" = dontDistribute super."imgurder";
"imm" = dontDistribute super."imm";
"imparse" = dontDistribute super."imparse";
+ "imperative-edsl" = dontDistribute super."imperative-edsl";
"imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl";
"implicit" = dontDistribute super."implicit";
"implicit-params" = dontDistribute super."implicit-params";
@@ -4581,6 +4613,7 @@ self: super: {
"jsmw" = dontDistribute super."jsmw";
"json-assertions" = dontDistribute super."json-assertions";
"json-b" = dontDistribute super."json-b";
+ "json-encoder" = dontDistribute super."json-encoder";
"json-enumerator" = dontDistribute super."json-enumerator";
"json-extra" = dontDistribute super."json-extra";
"json-fu" = dontDistribute super."json-fu";
@@ -4590,6 +4623,7 @@ self: super: {
"json-rpc" = dontDistribute super."json-rpc";
"json-rpc-client" = dontDistribute super."json-rpc-client";
"json-rpc-server" = dontDistribute super."json-rpc-server";
+ "json-schema" = doDistribute super."json-schema_0_7_4_0";
"json-sop" = dontDistribute super."json-sop";
"json-state" = dontDistribute super."json-state";
"json-stream" = dontDistribute super."json-stream";
@@ -4702,6 +4736,7 @@ self: super: {
"lambdacube-examples" = dontDistribute super."lambdacube-examples";
"lambdacube-gl" = dontDistribute super."lambdacube-gl";
"lambdacube-samples" = dontDistribute super."lambdacube-samples";
+ "lambdatex" = dontDistribute super."lambdatex";
"lambdatwit" = dontDistribute super."lambdatwit";
"lambdiff" = dontDistribute super."lambdiff";
"lame-tester" = dontDistribute super."lame-tester";
@@ -4742,6 +4777,7 @@ self: super: {
"language-thrift" = dontDistribute super."language-thrift";
"language-typescript" = dontDistribute super."language-typescript";
"language-vhdl" = dontDistribute super."language-vhdl";
+ "largeword" = doDistribute super."largeword_1_2_3";
"lat" = dontDistribute super."lat";
"latest-npm-version" = dontDistribute super."latest-npm-version";
"latex" = dontDistribute super."latex";
@@ -4888,8 +4924,10 @@ self: super: {
"liquidhaskell" = dontDistribute super."liquidhaskell";
"lispparser" = dontDistribute super."lispparser";
"list-extras" = dontDistribute super."list-extras";
+ "list-fusion-probe" = doDistribute super."list-fusion-probe_0_1_0_4";
"list-grouping" = dontDistribute super."list-grouping";
"list-mux" = dontDistribute super."list-mux";
+ "list-prompt" = dontDistribute super."list-prompt";
"list-remote-forwards" = dontDistribute super."list-remote-forwards";
"list-t-attoparsec" = dontDistribute super."list-t-attoparsec";
"list-t-html-parser" = dontDistribute super."list-t-html-parser";
@@ -4933,6 +4971,7 @@ self: super: {
"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-domain" = doDistribute super."log-domain_0_10_3";
@@ -4977,6 +5016,7 @@ self: super: {
"lub" = dontDistribute super."lub";
"lucid" = doDistribute super."lucid_2_9_2";
"lucid-foundation" = dontDistribute super."lucid-foundation";
+ "lucid-svg" = doDistribute super."lucid-svg_0_5_0_0";
"lucienne" = dontDistribute super."lucienne";
"luhn" = dontDistribute super."luhn";
"lui" = dontDistribute super."lui";
@@ -5370,6 +5410,7 @@ self: super: {
"nbt" = dontDistribute super."nbt";
"nc-indicators" = dontDistribute super."nc-indicators";
"ncurses" = dontDistribute super."ncurses";
+ "ndjson-conduit" = doDistribute super."ndjson-conduit_0_1_0_2";
"neat" = dontDistribute super."neat";
"neat-interpolation" = doDistribute super."neat-interpolation_0_2_3";
"needle" = dontDistribute super."needle";
@@ -5541,6 +5582,7 @@ self: super: {
"omnifmt" = dontDistribute super."omnifmt";
"on-a-horse" = dontDistribute super."on-a-horse";
"on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel";
+ "once" = dontDistribute super."once";
"one-liner" = dontDistribute super."one-liner";
"one-time-password" = dontDistribute super."one-time-password";
"oneOfN" = dontDistribute super."oneOfN";
@@ -5594,6 +5636,7 @@ self: super: {
"optimusprime" = dontDistribute super."optimusprime";
"optional" = dontDistribute super."optional";
"options-time" = dontDistribute super."options-time";
+ "optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"orc" = dontDistribute super."orc";
"orchestrate" = dontDistribute super."orchestrate";
@@ -5782,6 +5825,7 @@ self: super: {
"pgstream" = dontDistribute super."pgstream";
"phasechange" = dontDistribute super."phasechange";
"phizzle" = dontDistribute super."phizzle";
+ "phoityne" = dontDistribute super."phoityne";
"phone-numbers" = dontDistribute super."phone-numbers";
"phone-push" = dontDistribute super."phone-push";
"phonetic-code" = dontDistribute super."phonetic-code";
@@ -5802,6 +5846,7 @@ self: super: {
"pipe-enumerator" = dontDistribute super."pipe-enumerator";
"pipeclip" = dontDistribute super."pipeclip";
"pipes" = doDistribute super."pipes_4_1_6";
+ "pipes-aeson" = doDistribute super."pipes-aeson_0_4_1_4";
"pipes-async" = dontDistribute super."pipes-async";
"pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming";
"pipes-cacophony" = dontDistribute super."pipes-cacophony";
@@ -5809,6 +5854,7 @@ self: super: {
"pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv";
"pipes-cereal" = dontDistribute super."pipes-cereal";
"pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus";
+ "pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_3";
"pipes-conduit" = dontDistribute super."pipes-conduit";
"pipes-core" = dontDistribute super."pipes-core";
"pipes-courier" = dontDistribute super."pipes-courier";
@@ -5917,6 +5963,7 @@ self: super: {
"possible" = dontDistribute super."possible";
"post-mess-age" = doDistribute super."post-mess-age_0_1_0_0";
"postcodes" = dontDistribute super."postcodes";
+ "postgresql-binary" = doDistribute super."postgresql-binary_0_5_2_1";
"postgresql-config" = dontDistribute super."postgresql-config";
"postgresql-connector" = dontDistribute super."postgresql-connector";
"postgresql-copy-escape" = dontDistribute super."postgresql-copy-escape";
@@ -6343,6 +6390,7 @@ self: super: {
"rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster";
"retry" = doDistribute super."retry_0_6";
"retryer" = dontDistribute super."retryer";
+ "rev-state" = doDistribute super."rev-state_0_1";
"revdectime" = dontDistribute super."revdectime";
"reverse-apply" = dontDistribute super."reverse-apply";
"reverse-geocoding" = dontDistribute super."reverse-geocoding";
@@ -6570,6 +6618,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serv" = dontDistribute super."serv";
"servant-JuicyPixels" = doDistribute super."servant-JuicyPixels_0_1_0_0";
"servant-blaze" = dontDistribute super."servant-blaze";
"servant-cassava" = dontDistribute super."servant-cassava";
@@ -6772,6 +6821,7 @@ self: super: {
"snaplet-coffee" = dontDistribute super."snaplet-coffee";
"snaplet-css-min" = dontDistribute super."snaplet-css-min";
"snaplet-environments" = dontDistribute super."snaplet-environments";
+ "snaplet-fay" = doDistribute super."snaplet-fay_0_3_3_12";
"snaplet-ghcjs" = dontDistribute super."snaplet-ghcjs";
"snaplet-hasql" = dontDistribute super."snaplet-hasql";
"snaplet-haxl" = dontDistribute super."snaplet-haxl";
@@ -7057,6 +7107,7 @@ self: super: {
"swift-lda" = dontDistribute super."swift-lda";
"swish" = dontDistribute super."swish";
"sws" = dontDistribute super."sws";
+ "syb" = doDistribute super."syb_0_5_1";
"syb-extras" = dontDistribute super."syb-extras";
"syb-with-class" = dontDistribute super."syb-with-class";
"syb-with-class-instances-text" = dontDistribute super."syb-with-class-instances-text";
@@ -7500,6 +7551,7 @@ self: super: {
"typehash" = dontDistribute super."typehash";
"typelevel" = dontDistribute super."typelevel";
"typelevel-tensor" = dontDistribute super."typelevel-tensor";
+ "typelits-witnesses" = dontDistribute super."typelits-witnesses";
"typeof" = dontDistribute super."typeof";
"typeparams" = dontDistribute super."typeparams";
"typesafe-endian" = dontDistribute super."typesafe-endian";
@@ -7723,6 +7775,7 @@ self: super: {
"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" = dontDistribute super."vty";
@@ -7906,6 +7959,7 @@ self: super: {
"x-dsp" = dontDistribute super."x-dsp";
"x11-xim" = dontDistribute super."x11-xim";
"x11-xinput" = dontDistribute super."x11-xinput";
+ "x509-system" = doDistribute super."x509-system_1_6_1";
"x509-util" = dontDistribute super."x509-util";
"xattr" = dontDistribute super."xattr";
"xbattbar" = dontDistribute super."xbattbar";
@@ -7933,6 +7987,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_2";
"xml-conduit-parse" = dontDistribute super."xml-conduit-parse";
"xml-conduit-writer" = dontDistribute super."xml-conduit-writer";
"xml-enumerator" = dontDistribute super."xml-enumerator";
diff --git a/pkgs/development/haskell-modules/configuration-lts-3.11.nix b/pkgs/development/haskell-modules/configuration-lts-3.11.nix
index 847d00dd79b..4440a97361f 100644
--- a/pkgs/development/haskell-modules/configuration-lts-3.11.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-3.11.nix
@@ -71,6 +71,7 @@ self: super: {
"Advgame" = dontDistribute super."Advgame";
"AesonBson" = dontDistribute super."AesonBson";
"Agata" = dontDistribute super."Agata";
+ "Agda" = doDistribute super."Agda_2_4_2_4";
"Agda-executable" = dontDistribute super."Agda-executable";
"AhoCorasick" = dontDistribute super."AhoCorasick";
"AlgorithmW" = dontDistribute super."AlgorithmW";
@@ -315,6 +316,7 @@ self: super: {
"FormalGrammars" = dontDistribute super."FormalGrammars";
"Foster" = dontDistribute super."Foster";
"FpMLv53" = dontDistribute super."FpMLv53";
+ "FractalArt" = dontDistribute super."FractalArt";
"Fractaler" = dontDistribute super."Fractaler";
"Frames" = dontDistribute super."Frames";
"Frank" = dontDistribute super."Frank";
@@ -464,6 +466,7 @@ self: super: {
"HTTP-Simple" = dontDistribute super."HTTP-Simple";
"HTab" = dontDistribute super."HTab";
"HTicTacToe" = dontDistribute super."HTicTacToe";
+ "HUnit" = doDistribute super."HUnit_1_2_5_2";
"HUnit-Diff" = dontDistribute super."HUnit-Diff";
"HUnit-Plus" = dontDistribute super."HUnit-Plus";
"HUnit-approx" = dontDistribute super."HUnit-approx";
@@ -495,6 +498,7 @@ self: super: {
"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";
@@ -1322,6 +1326,7 @@ self: super: {
"asic" = dontDistribute super."asic";
"asil" = dontDistribute super."asil";
"asn1-data" = dontDistribute super."asn1-data";
+ "asn1-types" = doDistribute super."asn1-types_0_3_1";
"asn1dump" = dontDistribute super."asn1dump";
"assembler" = dontDistribute super."assembler";
"assert" = dontDistribute super."assert";
@@ -1376,6 +1381,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_2_2";
"autonix-deps" = dontDistribute super."autonix-deps";
"autonix-deps-kf5" = dontDistribute super."autonix-deps-kf5";
"autoproc" = dontDistribute super."autoproc";
@@ -1439,6 +1445,8 @@ self: super: {
"base-generics" = dontDistribute super."base-generics";
"base-io-access" = dontDistribute super."base-io-access";
"base-noprelude" = dontDistribute super."base-noprelude";
+ "base-orphans" = doDistribute super."base-orphans_0_4_4";
+ "base-prelude" = doDistribute super."base-prelude_0_1_19";
"base32-bytestring" = dontDistribute super."base32-bytestring";
"base58-bytestring" = dontDistribute super."base58-bytestring";
"base58address" = dontDistribute super."base58address";
@@ -1482,6 +1490,7 @@ self: super: {
"bidirectionalization-combined" = dontDistribute super."bidirectionalization-combined";
"bidispec" = dontDistribute super."bidispec";
"bidispec-extras" = dontDistribute super."bidispec-extras";
+ "bifunctors" = doDistribute super."bifunctors_5";
"billboard-parser" = dontDistribute super."billboard-parser";
"billeksah-forms" = dontDistribute super."billeksah-forms";
"billeksah-main" = dontDistribute super."billeksah-main";
@@ -1642,6 +1651,7 @@ self: super: {
"bot" = dontDistribute super."bot";
"both" = dontDistribute super."both";
"botpp" = dontDistribute super."botpp";
+ "bound" = doDistribute super."bound_1_0_6";
"bound-gen" = dontDistribute super."bound-gen";
"bounded-tchan" = dontDistribute super."bounded-tchan";
"boundingboxes" = dontDistribute super."boundingboxes";
@@ -1665,6 +1675,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_0";
"buffer-builder-aeson" = dontDistribute super."buffer-builder-aeson";
"buffon" = dontDistribute super."buffon";
"bugzilla" = dontDistribute super."bugzilla";
@@ -1824,6 +1835,7 @@ self: super: {
"cef" = dontDistribute super."cef";
"ceilometer-common" = dontDistribute super."ceilometer-common";
"cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo";
+ "cerberus" = dontDistribute super."cerberus";
"cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_3";
"cereal-derive" = dontDistribute super."cereal-derive";
"cereal-enumerator" = dontDistribute super."cereal-enumerator";
@@ -1927,6 +1939,7 @@ self: super: {
"clipper" = dontDistribute super."clipper";
"clippings" = dontDistribute super."clippings";
"clist" = dontDistribute super."clist";
+ "clock" = doDistribute super."clock_0_5_1";
"clocked" = dontDistribute super."clocked";
"clogparse" = dontDistribute super."clogparse";
"clone-all" = dontDistribute super."clone-all";
@@ -2024,6 +2037,7 @@ self: super: {
"concrete-typerep" = dontDistribute super."concrete-typerep";
"concurrent-barrier" = dontDistribute super."concurrent-barrier";
"concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache";
+ "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9";
"concurrent-machines" = dontDistribute super."concurrent-machines";
"concurrent-output" = dontDistribute super."concurrent-output";
"concurrent-sa" = dontDistribute super."concurrent-sa";
@@ -2387,6 +2401,8 @@ self: super: {
"delta-h" = dontDistribute super."delta-h";
"demarcate" = dontDistribute super."demarcate";
"denominate" = dontDistribute super."denominate";
+ "dependent-map" = doDistribute super."dependent-map_0_1_1_3";
+ "dependent-sum" = doDistribute super."dependent-sum_0_2_1_0";
"depends" = dontDistribute super."depends";
"dephd" = dontDistribute super."dephd";
"dequeue" = dontDistribute super."dequeue";
@@ -2431,6 +2447,7 @@ self: super: {
"diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube";
"diagrams-svg" = doDistribute super."diagrams-svg_1_3_1_6";
"diagrams-tikz" = dontDistribute super."diagrams-tikz";
+ "dialog" = dontDistribute super."dialog";
"dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit";
"dicom" = dontDistribute super."dicom";
"dictparser" = dontDistribute super."dictparser";
@@ -2608,6 +2625,7 @@ self: super: {
"edenskel" = dontDistribute super."edenskel";
"edentv" = dontDistribute super."edentv";
"edge" = dontDistribute super."edge";
+ "edis" = dontDistribute super."edis";
"edit-distance-vector" = dontDistribute super."edit-distance-vector";
"edit-lenses" = dontDistribute super."edit-lenses";
"edit-lenses-demo" = dontDistribute super."edit-lenses-demo";
@@ -2785,6 +2803,7 @@ self: super: {
"failable-list" = dontDistribute super."failable-list";
"failure" = dontDistribute super."failure";
"fair-predicates" = dontDistribute super."fair-predicates";
+ "fake-type" = dontDistribute super."fake-type";
"faker" = dontDistribute super."faker";
"falling-turnip" = dontDistribute super."falling-turnip";
"fallingblocks" = dontDistribute super."fallingblocks";
@@ -2981,6 +3000,7 @@ self: super: {
"friday-juicypixels" = dontDistribute super."friday-juicypixels";
"friday-scale-dct" = dontDistribute super."friday-scale-dct";
"friendly-time" = dontDistribute super."friendly-time";
+ "frontmatter" = dontDistribute super."frontmatter";
"frp-arduino" = dontDistribute super."frp-arduino";
"frpnow" = dontDistribute super."frpnow";
"frpnow-gloss" = dontDistribute super."frpnow-gloss";
@@ -3188,6 +3208,7 @@ self: super: {
"gitlib-s3" = dontDistribute super."gitlib-s3";
"gitlib-sample" = dontDistribute super."gitlib-sample";
"gitlib-utils" = dontDistribute super."gitlib-utils";
+ "gitter" = dontDistribute super."gitter";
"gl-capture" = dontDistribute super."gl-capture";
"glade" = dontDistribute super."glade";
"gladexml-accessor" = dontDistribute super."gladexml-accessor";
@@ -3395,6 +3416,7 @@ self: super: {
"gstreamer" = dontDistribute super."gstreamer";
"gt-tools" = dontDistribute super."gt-tools";
"gtfs" = dontDistribute super."gtfs";
+ "gtk" = doDistribute super."gtk_0_13_9";
"gtk-helpers" = dontDistribute super."gtk-helpers";
"gtk-jsinput" = dontDistribute super."gtk-jsinput";
"gtk-largeTreeStore" = dontDistribute super."gtk-largeTreeStore";
@@ -3487,6 +3509,7 @@ self: super: {
"hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP";
"hackage-server" = dontDistribute super."hackage-server";
"hackage-sparks" = dontDistribute super."hackage-sparks";
+ "hackage-whatsnew" = dontDistribute super."hackage-whatsnew";
"hackage2hwn" = dontDistribute super."hackage2hwn";
"hackage2twitter" = dontDistribute super."hackage2twitter";
"hackager" = dontDistribute super."hackager";
@@ -3514,6 +3537,7 @@ self: super: {
"hake" = dontDistribute super."hake";
"hakismet" = dontDistribute super."hakismet";
"hako" = dontDistribute super."hako";
+ "hakyll" = doDistribute super."hakyll_4_7_4_0";
"hakyll-R" = dontDistribute super."hakyll-R";
"hakyll-agda" = dontDistribute super."hakyll-agda";
"hakyll-blaze-templates" = dontDistribute super."hakyll-blaze-templates";
@@ -3640,6 +3664,7 @@ self: super: {
"haskell-in-space" = dontDistribute super."haskell-in-space";
"haskell-modbus" = dontDistribute super."haskell-modbus";
"haskell-mpi" = dontDistribute super."haskell-mpi";
+ "haskell-names" = doDistribute super."haskell-names_0_5_3";
"haskell-openflow" = dontDistribute super."haskell-openflow";
"haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter";
"haskell-platform-test" = dontDistribute super."haskell-platform-test";
@@ -3713,6 +3738,7 @@ self: super: {
"hasloGUI" = dontDistribute super."hasloGUI";
"hasparql-client" = dontDistribute super."hasparql-client";
"haspell" = dontDistribute super."haspell";
+ "hasql" = doDistribute super."hasql_0_7_4";
"hasql-pool" = dontDistribute super."hasql-pool";
"hasql-postgres-options" = dontDistribute super."hasql-postgres-options";
"hasql-th" = dontDistribute super."hasql-th";
@@ -3923,6 +3949,8 @@ self: super: {
"hlibBladeRF" = dontDistribute super."hlibBladeRF";
"hlibev" = dontDistribute super."hlibev";
"hlibfam" = dontDistribute super."hlibfam";
+ "hlibgit2" = doDistribute super."hlibgit2_0_18_0_14";
+ "hlibsass" = doDistribute super."hlibsass_0_1_4_0";
"hlint" = doDistribute super."hlint_1_9_21";
"hlogger" = dontDistribute super."hlogger";
"hlongurl" = dontDistribute super."hlongurl";
@@ -4088,6 +4116,7 @@ self: super: {
"hsConfigure" = dontDistribute super."hsConfigure";
"hsSqlite3" = dontDistribute super."hsSqlite3";
"hsXenCtrl" = dontDistribute super."hsXenCtrl";
+ "hsass" = doDistribute super."hsass_0_3_0";
"hsay" = dontDistribute super."hsay";
"hsb2hs" = dontDistribute super."hsb2hs";
"hsbackup" = dontDistribute super."hsbackup";
@@ -4128,6 +4157,7 @@ self: super: {
"hsdip" = dontDistribute super."hsdip";
"hsdns" = dontDistribute super."hsdns";
"hsdns-cache" = dontDistribute super."hsdns-cache";
+ "hsebaysdk" = doDistribute super."hsebaysdk_0_3_0_0";
"hsemail-ns" = dontDistribute super."hsemail-ns";
"hsenv" = dontDistribute super."hsenv";
"hserv" = dontDistribute super."hserv";
@@ -4184,6 +4214,7 @@ self: super: {
"hspec-meta" = doDistribute super."hspec-meta_2_1_7";
"hspec-monad-control" = dontDistribute super."hspec-monad-control";
"hspec-server" = dontDistribute super."hspec-server";
+ "hspec-setup" = dontDistribute super."hspec-setup";
"hspec-shouldbe" = dontDistribute super."hspec-shouldbe";
"hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0";
"hspec-snap" = doDistribute super."hspec-snap_0_3_3_0";
@@ -4279,6 +4310,7 @@ self: super: {
"http-server" = dontDistribute super."http-server";
"http-shed" = dontDistribute super."http-shed";
"http-test" = dontDistribute super."http-test";
+ "http-types" = doDistribute super."http-types_0_8_6";
"http-wget" = dontDistribute super."http-wget";
"http2" = doDistribute super."http2_1_0_4";
"httpd-shed" = dontDistribute super."httpd-shed";
@@ -4404,6 +4436,7 @@ self: super: {
"imgurder" = dontDistribute super."imgurder";
"imm" = dontDistribute super."imm";
"imparse" = dontDistribute super."imparse";
+ "imperative-edsl" = dontDistribute super."imperative-edsl";
"imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl";
"implicit" = dontDistribute super."implicit";
"implicit-params" = dontDistribute super."implicit-params";
@@ -4576,6 +4609,7 @@ self: super: {
"jsmw" = dontDistribute super."jsmw";
"json-assertions" = dontDistribute super."json-assertions";
"json-b" = dontDistribute super."json-b";
+ "json-encoder" = dontDistribute super."json-encoder";
"json-enumerator" = dontDistribute super."json-enumerator";
"json-extra" = dontDistribute super."json-extra";
"json-fu" = dontDistribute super."json-fu";
@@ -4585,6 +4619,7 @@ self: super: {
"json-rpc" = dontDistribute super."json-rpc";
"json-rpc-client" = dontDistribute super."json-rpc-client";
"json-rpc-server" = dontDistribute super."json-rpc-server";
+ "json-schema" = doDistribute super."json-schema_0_7_4_0";
"json-sop" = dontDistribute super."json-sop";
"json-state" = dontDistribute super."json-state";
"json-stream" = dontDistribute super."json-stream";
@@ -4697,6 +4732,7 @@ self: super: {
"lambdacube-examples" = dontDistribute super."lambdacube-examples";
"lambdacube-gl" = dontDistribute super."lambdacube-gl";
"lambdacube-samples" = dontDistribute super."lambdacube-samples";
+ "lambdatex" = dontDistribute super."lambdatex";
"lambdatwit" = dontDistribute super."lambdatwit";
"lambdiff" = dontDistribute super."lambdiff";
"lame-tester" = dontDistribute super."lame-tester";
@@ -4737,6 +4773,7 @@ self: super: {
"language-thrift" = dontDistribute super."language-thrift";
"language-typescript" = dontDistribute super."language-typescript";
"language-vhdl" = dontDistribute super."language-vhdl";
+ "largeword" = doDistribute super."largeword_1_2_3";
"lat" = dontDistribute super."lat";
"latest-npm-version" = dontDistribute super."latest-npm-version";
"latex" = dontDistribute super."latex";
@@ -4883,8 +4920,10 @@ self: super: {
"liquidhaskell" = dontDistribute super."liquidhaskell";
"lispparser" = dontDistribute super."lispparser";
"list-extras" = dontDistribute super."list-extras";
+ "list-fusion-probe" = doDistribute super."list-fusion-probe_0_1_0_4";
"list-grouping" = dontDistribute super."list-grouping";
"list-mux" = dontDistribute super."list-mux";
+ "list-prompt" = dontDistribute super."list-prompt";
"list-remote-forwards" = dontDistribute super."list-remote-forwards";
"list-t-attoparsec" = dontDistribute super."list-t-attoparsec";
"list-t-html-parser" = dontDistribute super."list-t-html-parser";
@@ -4928,6 +4967,7 @@ self: super: {
"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-domain" = doDistribute super."log-domain_0_10_3";
@@ -4972,6 +5012,7 @@ self: super: {
"lub" = dontDistribute super."lub";
"lucid" = doDistribute super."lucid_2_9_2";
"lucid-foundation" = dontDistribute super."lucid-foundation";
+ "lucid-svg" = doDistribute super."lucid-svg_0_5_0_0";
"lucienne" = dontDistribute super."lucienne";
"luhn" = dontDistribute super."luhn";
"lui" = dontDistribute super."lui";
@@ -5365,6 +5406,7 @@ self: super: {
"nbt" = dontDistribute super."nbt";
"nc-indicators" = dontDistribute super."nc-indicators";
"ncurses" = dontDistribute super."ncurses";
+ "ndjson-conduit" = doDistribute super."ndjson-conduit_0_1_0_2";
"neat" = dontDistribute super."neat";
"neat-interpolation" = doDistribute super."neat-interpolation_0_2_3";
"needle" = dontDistribute super."needle";
@@ -5536,6 +5578,7 @@ self: super: {
"omnifmt" = dontDistribute super."omnifmt";
"on-a-horse" = dontDistribute super."on-a-horse";
"on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel";
+ "once" = dontDistribute super."once";
"one-liner" = dontDistribute super."one-liner";
"one-time-password" = dontDistribute super."one-time-password";
"oneOfN" = dontDistribute super."oneOfN";
@@ -5589,6 +5632,7 @@ self: super: {
"optimusprime" = dontDistribute super."optimusprime";
"optional" = dontDistribute super."optional";
"options-time" = dontDistribute super."options-time";
+ "optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"orc" = dontDistribute super."orc";
"orchestrate" = dontDistribute super."orchestrate";
@@ -5775,6 +5819,7 @@ self: super: {
"pgstream" = dontDistribute super."pgstream";
"phasechange" = dontDistribute super."phasechange";
"phizzle" = dontDistribute super."phizzle";
+ "phoityne" = dontDistribute super."phoityne";
"phone-numbers" = dontDistribute super."phone-numbers";
"phone-push" = dontDistribute super."phone-push";
"phonetic-code" = dontDistribute super."phonetic-code";
@@ -5795,6 +5840,7 @@ self: super: {
"pipe-enumerator" = dontDistribute super."pipe-enumerator";
"pipeclip" = dontDistribute super."pipeclip";
"pipes" = doDistribute super."pipes_4_1_6";
+ "pipes-aeson" = doDistribute super."pipes-aeson_0_4_1_4";
"pipes-async" = dontDistribute super."pipes-async";
"pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming";
"pipes-cacophony" = dontDistribute super."pipes-cacophony";
@@ -5802,6 +5848,7 @@ self: super: {
"pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv";
"pipes-cereal" = dontDistribute super."pipes-cereal";
"pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus";
+ "pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_3";
"pipes-conduit" = dontDistribute super."pipes-conduit";
"pipes-core" = dontDistribute super."pipes-core";
"pipes-courier" = dontDistribute super."pipes-courier";
@@ -5910,6 +5957,7 @@ self: super: {
"possible" = dontDistribute super."possible";
"post-mess-age" = doDistribute super."post-mess-age_0_1_0_0";
"postcodes" = dontDistribute super."postcodes";
+ "postgresql-binary" = doDistribute super."postgresql-binary_0_5_2_1";
"postgresql-config" = dontDistribute super."postgresql-config";
"postgresql-connector" = dontDistribute super."postgresql-connector";
"postgresql-copy-escape" = dontDistribute super."postgresql-copy-escape";
@@ -6336,6 +6384,7 @@ self: super: {
"rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster";
"retry" = doDistribute super."retry_0_6";
"retryer" = dontDistribute super."retryer";
+ "rev-state" = doDistribute super."rev-state_0_1";
"revdectime" = dontDistribute super."revdectime";
"reverse-apply" = dontDistribute super."reverse-apply";
"reverse-geocoding" = dontDistribute super."reverse-geocoding";
@@ -6562,6 +6611,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serv" = dontDistribute super."serv";
"servant-JuicyPixels" = doDistribute super."servant-JuicyPixels_0_1_0_0";
"servant-blaze" = dontDistribute super."servant-blaze";
"servant-cassava" = dontDistribute super."servant-cassava";
@@ -6763,6 +6813,7 @@ self: super: {
"snaplet-coffee" = dontDistribute super."snaplet-coffee";
"snaplet-css-min" = dontDistribute super."snaplet-css-min";
"snaplet-environments" = dontDistribute super."snaplet-environments";
+ "snaplet-fay" = doDistribute super."snaplet-fay_0_3_3_12";
"snaplet-ghcjs" = dontDistribute super."snaplet-ghcjs";
"snaplet-hasql" = dontDistribute super."snaplet-hasql";
"snaplet-haxl" = dontDistribute super."snaplet-haxl";
@@ -7048,6 +7099,7 @@ self: super: {
"swift-lda" = dontDistribute super."swift-lda";
"swish" = dontDistribute super."swish";
"sws" = dontDistribute super."sws";
+ "syb" = doDistribute super."syb_0_5_1";
"syb-extras" = dontDistribute super."syb-extras";
"syb-with-class" = dontDistribute super."syb-with-class";
"syb-with-class-instances-text" = dontDistribute super."syb-with-class-instances-text";
@@ -7490,6 +7542,7 @@ self: super: {
"typehash" = dontDistribute super."typehash";
"typelevel" = dontDistribute super."typelevel";
"typelevel-tensor" = dontDistribute super."typelevel-tensor";
+ "typelits-witnesses" = dontDistribute super."typelits-witnesses";
"typeof" = dontDistribute super."typeof";
"typeparams" = dontDistribute super."typeparams";
"typesafe-endian" = dontDistribute super."typesafe-endian";
@@ -7713,6 +7766,7 @@ self: super: {
"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" = dontDistribute super."vty";
@@ -7896,6 +7950,7 @@ self: super: {
"x-dsp" = dontDistribute super."x-dsp";
"x11-xim" = dontDistribute super."x11-xim";
"x11-xinput" = dontDistribute super."x11-xinput";
+ "x509-system" = doDistribute super."x509-system_1_6_1";
"x509-util" = dontDistribute super."x509-util";
"xattr" = dontDistribute super."xattr";
"xbattbar" = dontDistribute super."xbattbar";
@@ -7923,6 +7978,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_2";
"xml-conduit-parse" = dontDistribute super."xml-conduit-parse";
"xml-conduit-writer" = dontDistribute super."xml-conduit-writer";
"xml-enumerator" = dontDistribute super."xml-enumerator";
diff --git a/pkgs/development/haskell-modules/configuration-lts-3.12.nix b/pkgs/development/haskell-modules/configuration-lts-3.12.nix
index ca3ed4a6fdb..563ad632c51 100644
--- a/pkgs/development/haskell-modules/configuration-lts-3.12.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-3.12.nix
@@ -71,6 +71,7 @@ self: super: {
"Advgame" = dontDistribute super."Advgame";
"AesonBson" = dontDistribute super."AesonBson";
"Agata" = dontDistribute super."Agata";
+ "Agda" = doDistribute super."Agda_2_4_2_4";
"Agda-executable" = dontDistribute super."Agda-executable";
"AhoCorasick" = dontDistribute super."AhoCorasick";
"AlgorithmW" = dontDistribute super."AlgorithmW";
@@ -314,6 +315,7 @@ self: super: {
"FormalGrammars" = dontDistribute super."FormalGrammars";
"Foster" = dontDistribute super."Foster";
"FpMLv53" = dontDistribute super."FpMLv53";
+ "FractalArt" = dontDistribute super."FractalArt";
"Fractaler" = dontDistribute super."Fractaler";
"Frames" = dontDistribute super."Frames";
"Frank" = dontDistribute super."Frank";
@@ -463,6 +465,7 @@ self: super: {
"HTTP-Simple" = dontDistribute super."HTTP-Simple";
"HTab" = dontDistribute super."HTab";
"HTicTacToe" = dontDistribute super."HTicTacToe";
+ "HUnit" = doDistribute super."HUnit_1_2_5_2";
"HUnit-Diff" = dontDistribute super."HUnit-Diff";
"HUnit-Plus" = dontDistribute super."HUnit-Plus";
"HUnit-approx" = dontDistribute super."HUnit-approx";
@@ -494,6 +497,7 @@ self: super: {
"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";
@@ -1321,6 +1325,7 @@ self: super: {
"asic" = dontDistribute super."asic";
"asil" = dontDistribute super."asil";
"asn1-data" = dontDistribute super."asn1-data";
+ "asn1-types" = doDistribute super."asn1-types_0_3_1";
"asn1dump" = dontDistribute super."asn1dump";
"assembler" = dontDistribute super."assembler";
"assert" = dontDistribute super."assert";
@@ -1375,6 +1380,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_2_2";
"autonix-deps" = dontDistribute super."autonix-deps";
"autonix-deps-kf5" = dontDistribute super."autonix-deps-kf5";
"autoproc" = dontDistribute super."autoproc";
@@ -1438,6 +1444,8 @@ self: super: {
"base-generics" = dontDistribute super."base-generics";
"base-io-access" = dontDistribute super."base-io-access";
"base-noprelude" = dontDistribute super."base-noprelude";
+ "base-orphans" = doDistribute super."base-orphans_0_4_4";
+ "base-prelude" = doDistribute super."base-prelude_0_1_19";
"base32-bytestring" = dontDistribute super."base32-bytestring";
"base58-bytestring" = dontDistribute super."base58-bytestring";
"base58address" = dontDistribute super."base58address";
@@ -1481,6 +1489,7 @@ self: super: {
"bidirectionalization-combined" = dontDistribute super."bidirectionalization-combined";
"bidispec" = dontDistribute super."bidispec";
"bidispec-extras" = dontDistribute super."bidispec-extras";
+ "bifunctors" = doDistribute super."bifunctors_5";
"billboard-parser" = dontDistribute super."billboard-parser";
"billeksah-forms" = dontDistribute super."billeksah-forms";
"billeksah-main" = dontDistribute super."billeksah-main";
@@ -1641,6 +1650,7 @@ self: super: {
"bot" = dontDistribute super."bot";
"both" = dontDistribute super."both";
"botpp" = dontDistribute super."botpp";
+ "bound" = doDistribute super."bound_1_0_6";
"bound-gen" = dontDistribute super."bound-gen";
"bounded-tchan" = dontDistribute super."bounded-tchan";
"boundingboxes" = dontDistribute super."boundingboxes";
@@ -1664,6 +1674,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_0";
"buffer-builder-aeson" = dontDistribute super."buffer-builder-aeson";
"buffon" = dontDistribute super."buffon";
"bugzilla" = dontDistribute super."bugzilla";
@@ -1823,6 +1834,7 @@ self: super: {
"cef" = dontDistribute super."cef";
"ceilometer-common" = dontDistribute super."ceilometer-common";
"cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo";
+ "cerberus" = dontDistribute super."cerberus";
"cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_3";
"cereal-derive" = dontDistribute super."cereal-derive";
"cereal-enumerator" = dontDistribute super."cereal-enumerator";
@@ -1922,6 +1934,7 @@ self: super: {
"clipper" = dontDistribute super."clipper";
"clippings" = dontDistribute super."clippings";
"clist" = dontDistribute super."clist";
+ "clock" = doDistribute super."clock_0_5_1";
"clocked" = dontDistribute super."clocked";
"clogparse" = dontDistribute super."clogparse";
"clone-all" = dontDistribute super."clone-all";
@@ -2019,6 +2032,7 @@ self: super: {
"concrete-typerep" = dontDistribute super."concrete-typerep";
"concurrent-barrier" = dontDistribute super."concurrent-barrier";
"concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache";
+ "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9";
"concurrent-machines" = dontDistribute super."concurrent-machines";
"concurrent-output" = dontDistribute super."concurrent-output";
"concurrent-sa" = dontDistribute super."concurrent-sa";
@@ -2382,6 +2396,8 @@ self: super: {
"delta-h" = dontDistribute super."delta-h";
"demarcate" = dontDistribute super."demarcate";
"denominate" = dontDistribute super."denominate";
+ "dependent-map" = doDistribute super."dependent-map_0_1_1_3";
+ "dependent-sum" = doDistribute super."dependent-sum_0_2_1_0";
"depends" = dontDistribute super."depends";
"dephd" = dontDistribute super."dephd";
"dequeue" = dontDistribute super."dequeue";
@@ -2426,6 +2442,7 @@ self: super: {
"diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube";
"diagrams-svg" = doDistribute super."diagrams-svg_1_3_1_6";
"diagrams-tikz" = dontDistribute super."diagrams-tikz";
+ "dialog" = dontDistribute super."dialog";
"dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit";
"dicom" = dontDistribute super."dicom";
"dictparser" = dontDistribute super."dictparser";
@@ -2603,6 +2620,7 @@ self: super: {
"edenskel" = dontDistribute super."edenskel";
"edentv" = dontDistribute super."edentv";
"edge" = dontDistribute super."edge";
+ "edis" = dontDistribute super."edis";
"edit-distance-vector" = dontDistribute super."edit-distance-vector";
"edit-lenses" = dontDistribute super."edit-lenses";
"edit-lenses-demo" = dontDistribute super."edit-lenses-demo";
@@ -2780,6 +2798,7 @@ self: super: {
"failable-list" = dontDistribute super."failable-list";
"failure" = dontDistribute super."failure";
"fair-predicates" = dontDistribute super."fair-predicates";
+ "fake-type" = dontDistribute super."fake-type";
"faker" = dontDistribute super."faker";
"falling-turnip" = dontDistribute super."falling-turnip";
"fallingblocks" = dontDistribute super."fallingblocks";
@@ -2976,6 +2995,7 @@ self: super: {
"friday-juicypixels" = dontDistribute super."friday-juicypixels";
"friday-scale-dct" = dontDistribute super."friday-scale-dct";
"friendly-time" = dontDistribute super."friendly-time";
+ "frontmatter" = dontDistribute super."frontmatter";
"frp-arduino" = dontDistribute super."frp-arduino";
"frpnow" = dontDistribute super."frpnow";
"frpnow-gloss" = dontDistribute super."frpnow-gloss";
@@ -3183,6 +3203,7 @@ self: super: {
"gitlib-s3" = dontDistribute super."gitlib-s3";
"gitlib-sample" = dontDistribute super."gitlib-sample";
"gitlib-utils" = dontDistribute super."gitlib-utils";
+ "gitter" = dontDistribute super."gitter";
"gl-capture" = dontDistribute super."gl-capture";
"glade" = dontDistribute super."glade";
"gladexml-accessor" = dontDistribute super."gladexml-accessor";
@@ -3389,6 +3410,7 @@ self: super: {
"gstreamer" = dontDistribute super."gstreamer";
"gt-tools" = dontDistribute super."gt-tools";
"gtfs" = dontDistribute super."gtfs";
+ "gtk" = doDistribute super."gtk_0_13_9";
"gtk-helpers" = dontDistribute super."gtk-helpers";
"gtk-jsinput" = dontDistribute super."gtk-jsinput";
"gtk-largeTreeStore" = dontDistribute super."gtk-largeTreeStore";
@@ -3481,6 +3503,7 @@ self: super: {
"hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP";
"hackage-server" = dontDistribute super."hackage-server";
"hackage-sparks" = dontDistribute super."hackage-sparks";
+ "hackage-whatsnew" = dontDistribute super."hackage-whatsnew";
"hackage2hwn" = dontDistribute super."hackage2hwn";
"hackage2twitter" = dontDistribute super."hackage2twitter";
"hackager" = dontDistribute super."hackager";
@@ -3508,6 +3531,7 @@ self: super: {
"hake" = dontDistribute super."hake";
"hakismet" = dontDistribute super."hakismet";
"hako" = dontDistribute super."hako";
+ "hakyll" = doDistribute super."hakyll_4_7_4_0";
"hakyll-R" = dontDistribute super."hakyll-R";
"hakyll-agda" = dontDistribute super."hakyll-agda";
"hakyll-blaze-templates" = dontDistribute super."hakyll-blaze-templates";
@@ -3634,6 +3658,7 @@ self: super: {
"haskell-in-space" = dontDistribute super."haskell-in-space";
"haskell-modbus" = dontDistribute super."haskell-modbus";
"haskell-mpi" = dontDistribute super."haskell-mpi";
+ "haskell-names" = doDistribute super."haskell-names_0_5_3";
"haskell-openflow" = dontDistribute super."haskell-openflow";
"haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter";
"haskell-platform-test" = dontDistribute super."haskell-platform-test";
@@ -3707,6 +3732,7 @@ self: super: {
"hasloGUI" = dontDistribute super."hasloGUI";
"hasparql-client" = dontDistribute super."hasparql-client";
"haspell" = dontDistribute super."haspell";
+ "hasql" = doDistribute super."hasql_0_7_4";
"hasql-pool" = dontDistribute super."hasql-pool";
"hasql-postgres-options" = dontDistribute super."hasql-postgres-options";
"hasql-th" = dontDistribute super."hasql-th";
@@ -3917,6 +3943,8 @@ self: super: {
"hlibBladeRF" = dontDistribute super."hlibBladeRF";
"hlibev" = dontDistribute super."hlibev";
"hlibfam" = dontDistribute super."hlibfam";
+ "hlibgit2" = doDistribute super."hlibgit2_0_18_0_14";
+ "hlibsass" = doDistribute super."hlibsass_0_1_4_0";
"hlint" = doDistribute super."hlint_1_9_22";
"hlogger" = dontDistribute super."hlogger";
"hlongurl" = dontDistribute super."hlongurl";
@@ -4082,6 +4110,7 @@ self: super: {
"hsConfigure" = dontDistribute super."hsConfigure";
"hsSqlite3" = dontDistribute super."hsSqlite3";
"hsXenCtrl" = dontDistribute super."hsXenCtrl";
+ "hsass" = doDistribute super."hsass_0_3_0";
"hsay" = dontDistribute super."hsay";
"hsb2hs" = dontDistribute super."hsb2hs";
"hsbackup" = dontDistribute super."hsbackup";
@@ -4122,6 +4151,7 @@ self: super: {
"hsdip" = dontDistribute super."hsdip";
"hsdns" = dontDistribute super."hsdns";
"hsdns-cache" = dontDistribute super."hsdns-cache";
+ "hsebaysdk" = doDistribute super."hsebaysdk_0_3_0_0";
"hsemail-ns" = dontDistribute super."hsemail-ns";
"hsenv" = dontDistribute super."hsenv";
"hserv" = dontDistribute super."hserv";
@@ -4178,6 +4208,7 @@ self: super: {
"hspec-meta" = doDistribute super."hspec-meta_2_1_7";
"hspec-monad-control" = dontDistribute super."hspec-monad-control";
"hspec-server" = dontDistribute super."hspec-server";
+ "hspec-setup" = dontDistribute super."hspec-setup";
"hspec-shouldbe" = dontDistribute super."hspec-shouldbe";
"hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0";
"hspec-snap" = doDistribute super."hspec-snap_0_3_3_0";
@@ -4273,6 +4304,7 @@ self: super: {
"http-server" = dontDistribute super."http-server";
"http-shed" = dontDistribute super."http-shed";
"http-test" = dontDistribute super."http-test";
+ "http-types" = doDistribute super."http-types_0_8_6";
"http-wget" = dontDistribute super."http-wget";
"http2" = doDistribute super."http2_1_0_4";
"httpd-shed" = dontDistribute super."httpd-shed";
@@ -4398,6 +4430,7 @@ self: super: {
"imgurder" = dontDistribute super."imgurder";
"imm" = dontDistribute super."imm";
"imparse" = dontDistribute super."imparse";
+ "imperative-edsl" = dontDistribute super."imperative-edsl";
"imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl";
"implicit" = dontDistribute super."implicit";
"implicit-params" = dontDistribute super."implicit-params";
@@ -4570,6 +4603,7 @@ self: super: {
"jsmw" = dontDistribute super."jsmw";
"json-assertions" = dontDistribute super."json-assertions";
"json-b" = dontDistribute super."json-b";
+ "json-encoder" = dontDistribute super."json-encoder";
"json-enumerator" = dontDistribute super."json-enumerator";
"json-extra" = dontDistribute super."json-extra";
"json-fu" = dontDistribute super."json-fu";
@@ -4579,6 +4613,7 @@ self: super: {
"json-rpc" = dontDistribute super."json-rpc";
"json-rpc-client" = dontDistribute super."json-rpc-client";
"json-rpc-server" = dontDistribute super."json-rpc-server";
+ "json-schema" = doDistribute super."json-schema_0_7_4_0";
"json-sop" = dontDistribute super."json-sop";
"json-state" = dontDistribute super."json-state";
"json-stream" = dontDistribute super."json-stream";
@@ -4691,6 +4726,7 @@ self: super: {
"lambdacube-examples" = dontDistribute super."lambdacube-examples";
"lambdacube-gl" = dontDistribute super."lambdacube-gl";
"lambdacube-samples" = dontDistribute super."lambdacube-samples";
+ "lambdatex" = dontDistribute super."lambdatex";
"lambdatwit" = dontDistribute super."lambdatwit";
"lambdiff" = dontDistribute super."lambdiff";
"lame-tester" = dontDistribute super."lame-tester";
@@ -4731,6 +4767,7 @@ self: super: {
"language-thrift" = dontDistribute super."language-thrift";
"language-typescript" = dontDistribute super."language-typescript";
"language-vhdl" = dontDistribute super."language-vhdl";
+ "largeword" = doDistribute super."largeword_1_2_3";
"lat" = dontDistribute super."lat";
"latest-npm-version" = dontDistribute super."latest-npm-version";
"latex" = dontDistribute super."latex";
@@ -4877,8 +4914,10 @@ self: super: {
"liquidhaskell" = dontDistribute super."liquidhaskell";
"lispparser" = dontDistribute super."lispparser";
"list-extras" = dontDistribute super."list-extras";
+ "list-fusion-probe" = doDistribute super."list-fusion-probe_0_1_0_4";
"list-grouping" = dontDistribute super."list-grouping";
"list-mux" = dontDistribute super."list-mux";
+ "list-prompt" = dontDistribute super."list-prompt";
"list-remote-forwards" = dontDistribute super."list-remote-forwards";
"list-t-attoparsec" = dontDistribute super."list-t-attoparsec";
"list-t-html-parser" = dontDistribute super."list-t-html-parser";
@@ -4922,6 +4961,7 @@ self: super: {
"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-domain" = doDistribute super."log-domain_0_10_3";
@@ -4966,6 +5006,7 @@ self: super: {
"lub" = dontDistribute super."lub";
"lucid" = doDistribute super."lucid_2_9_2";
"lucid-foundation" = dontDistribute super."lucid-foundation";
+ "lucid-svg" = doDistribute super."lucid-svg_0_5_0_0";
"lucienne" = dontDistribute super."lucienne";
"luhn" = dontDistribute super."luhn";
"lui" = dontDistribute super."lui";
@@ -5359,6 +5400,7 @@ self: super: {
"nbt" = dontDistribute super."nbt";
"nc-indicators" = dontDistribute super."nc-indicators";
"ncurses" = dontDistribute super."ncurses";
+ "ndjson-conduit" = doDistribute super."ndjson-conduit_0_1_0_2";
"neat" = dontDistribute super."neat";
"neat-interpolation" = doDistribute super."neat-interpolation_0_2_3";
"needle" = dontDistribute super."needle";
@@ -5530,6 +5572,7 @@ self: super: {
"omnifmt" = dontDistribute super."omnifmt";
"on-a-horse" = dontDistribute super."on-a-horse";
"on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel";
+ "once" = dontDistribute super."once";
"one-liner" = dontDistribute super."one-liner";
"one-time-password" = dontDistribute super."one-time-password";
"oneOfN" = dontDistribute super."oneOfN";
@@ -5583,6 +5626,7 @@ self: super: {
"optimusprime" = dontDistribute super."optimusprime";
"optional" = dontDistribute super."optional";
"options-time" = dontDistribute super."options-time";
+ "optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"orc" = dontDistribute super."orc";
"orchestrate" = dontDistribute super."orchestrate";
@@ -5768,6 +5812,7 @@ self: super: {
"pgstream" = dontDistribute super."pgstream";
"phasechange" = dontDistribute super."phasechange";
"phizzle" = dontDistribute super."phizzle";
+ "phoityne" = dontDistribute super."phoityne";
"phone-numbers" = dontDistribute super."phone-numbers";
"phone-push" = dontDistribute super."phone-push";
"phonetic-code" = dontDistribute super."phonetic-code";
@@ -5788,6 +5833,7 @@ self: super: {
"pipe-enumerator" = dontDistribute super."pipe-enumerator";
"pipeclip" = dontDistribute super."pipeclip";
"pipes" = doDistribute super."pipes_4_1_6";
+ "pipes-aeson" = doDistribute super."pipes-aeson_0_4_1_4";
"pipes-async" = dontDistribute super."pipes-async";
"pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming";
"pipes-cacophony" = dontDistribute super."pipes-cacophony";
@@ -5795,6 +5841,7 @@ self: super: {
"pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv";
"pipes-cereal" = dontDistribute super."pipes-cereal";
"pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus";
+ "pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_3";
"pipes-conduit" = dontDistribute super."pipes-conduit";
"pipes-core" = dontDistribute super."pipes-core";
"pipes-courier" = dontDistribute super."pipes-courier";
@@ -5903,6 +5950,7 @@ self: super: {
"possible" = dontDistribute super."possible";
"post-mess-age" = doDistribute super."post-mess-age_0_1_0_0";
"postcodes" = dontDistribute super."postcodes";
+ "postgresql-binary" = doDistribute super."postgresql-binary_0_5_2_1";
"postgresql-config" = dontDistribute super."postgresql-config";
"postgresql-connector" = dontDistribute super."postgresql-connector";
"postgresql-copy-escape" = dontDistribute super."postgresql-copy-escape";
@@ -6329,6 +6377,7 @@ self: super: {
"rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster";
"retry" = doDistribute super."retry_0_6";
"retryer" = dontDistribute super."retryer";
+ "rev-state" = doDistribute super."rev-state_0_1";
"revdectime" = dontDistribute super."revdectime";
"reverse-apply" = dontDistribute super."reverse-apply";
"reverse-geocoding" = dontDistribute super."reverse-geocoding";
@@ -6555,6 +6604,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serv" = dontDistribute super."serv";
"servant-JuicyPixels" = doDistribute super."servant-JuicyPixels_0_1_0_0";
"servant-blaze" = dontDistribute super."servant-blaze";
"servant-cassava" = dontDistribute super."servant-cassava";
@@ -6756,6 +6806,7 @@ self: super: {
"snaplet-coffee" = dontDistribute super."snaplet-coffee";
"snaplet-css-min" = dontDistribute super."snaplet-css-min";
"snaplet-environments" = dontDistribute super."snaplet-environments";
+ "snaplet-fay" = doDistribute super."snaplet-fay_0_3_3_12";
"snaplet-ghcjs" = dontDistribute super."snaplet-ghcjs";
"snaplet-hasql" = dontDistribute super."snaplet-hasql";
"snaplet-haxl" = dontDistribute super."snaplet-haxl";
@@ -7041,6 +7092,7 @@ self: super: {
"swift-lda" = dontDistribute super."swift-lda";
"swish" = dontDistribute super."swish";
"sws" = dontDistribute super."sws";
+ "syb" = doDistribute super."syb_0_5_1";
"syb-extras" = dontDistribute super."syb-extras";
"syb-with-class" = dontDistribute super."syb-with-class";
"syb-with-class-instances-text" = dontDistribute super."syb-with-class-instances-text";
@@ -7480,6 +7532,7 @@ self: super: {
"typehash" = dontDistribute super."typehash";
"typelevel" = dontDistribute super."typelevel";
"typelevel-tensor" = dontDistribute super."typelevel-tensor";
+ "typelits-witnesses" = dontDistribute super."typelits-witnesses";
"typeof" = dontDistribute super."typeof";
"typeparams" = dontDistribute super."typeparams";
"typesafe-endian" = dontDistribute super."typesafe-endian";
@@ -7703,6 +7756,7 @@ self: super: {
"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" = dontDistribute super."vty";
@@ -7886,6 +7940,7 @@ self: super: {
"x-dsp" = dontDistribute super."x-dsp";
"x11-xim" = dontDistribute super."x11-xim";
"x11-xinput" = dontDistribute super."x11-xinput";
+ "x509-system" = doDistribute super."x509-system_1_6_1";
"x509-util" = dontDistribute super."x509-util";
"xattr" = dontDistribute super."xattr";
"xbattbar" = dontDistribute super."xbattbar";
@@ -7913,6 +7968,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_2";
"xml-conduit-parse" = dontDistribute super."xml-conduit-parse";
"xml-conduit-writer" = dontDistribute super."xml-conduit-writer";
"xml-enumerator" = dontDistribute super."xml-enumerator";
diff --git a/pkgs/development/haskell-modules/configuration-lts-3.13.nix b/pkgs/development/haskell-modules/configuration-lts-3.13.nix
index a12b0ab22f4..bfd7fcfa430 100644
--- a/pkgs/development/haskell-modules/configuration-lts-3.13.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-3.13.nix
@@ -71,6 +71,7 @@ self: super: {
"Advgame" = dontDistribute super."Advgame";
"AesonBson" = dontDistribute super."AesonBson";
"Agata" = dontDistribute super."Agata";
+ "Agda" = doDistribute super."Agda_2_4_2_4";
"Agda-executable" = dontDistribute super."Agda-executable";
"AhoCorasick" = dontDistribute super."AhoCorasick";
"AlgorithmW" = dontDistribute super."AlgorithmW";
@@ -314,6 +315,7 @@ self: super: {
"FormalGrammars" = dontDistribute super."FormalGrammars";
"Foster" = dontDistribute super."Foster";
"FpMLv53" = dontDistribute super."FpMLv53";
+ "FractalArt" = dontDistribute super."FractalArt";
"Fractaler" = dontDistribute super."Fractaler";
"Frames" = dontDistribute super."Frames";
"Frank" = dontDistribute super."Frank";
@@ -463,6 +465,7 @@ self: super: {
"HTTP-Simple" = dontDistribute super."HTTP-Simple";
"HTab" = dontDistribute super."HTab";
"HTicTacToe" = dontDistribute super."HTicTacToe";
+ "HUnit" = doDistribute super."HUnit_1_2_5_2";
"HUnit-Diff" = dontDistribute super."HUnit-Diff";
"HUnit-Plus" = dontDistribute super."HUnit-Plus";
"HUnit-approx" = dontDistribute super."HUnit-approx";
@@ -494,6 +497,7 @@ self: super: {
"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";
@@ -1321,6 +1325,7 @@ self: super: {
"asic" = dontDistribute super."asic";
"asil" = dontDistribute super."asil";
"asn1-data" = dontDistribute super."asn1-data";
+ "asn1-types" = doDistribute super."asn1-types_0_3_1";
"asn1dump" = dontDistribute super."asn1dump";
"assembler" = dontDistribute super."assembler";
"assert" = dontDistribute super."assert";
@@ -1375,6 +1380,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_2_2";
"autonix-deps" = dontDistribute super."autonix-deps";
"autonix-deps-kf5" = dontDistribute super."autonix-deps-kf5";
"autoproc" = dontDistribute super."autoproc";
@@ -1438,6 +1444,8 @@ self: super: {
"base-generics" = dontDistribute super."base-generics";
"base-io-access" = dontDistribute super."base-io-access";
"base-noprelude" = dontDistribute super."base-noprelude";
+ "base-orphans" = doDistribute super."base-orphans_0_4_4";
+ "base-prelude" = doDistribute super."base-prelude_0_1_19";
"base32-bytestring" = dontDistribute super."base32-bytestring";
"base58-bytestring" = dontDistribute super."base58-bytestring";
"base58address" = dontDistribute super."base58address";
@@ -1481,6 +1489,7 @@ self: super: {
"bidirectionalization-combined" = dontDistribute super."bidirectionalization-combined";
"bidispec" = dontDistribute super."bidispec";
"bidispec-extras" = dontDistribute super."bidispec-extras";
+ "bifunctors" = doDistribute super."bifunctors_5";
"billboard-parser" = dontDistribute super."billboard-parser";
"billeksah-forms" = dontDistribute super."billeksah-forms";
"billeksah-main" = dontDistribute super."billeksah-main";
@@ -1641,6 +1650,7 @@ self: super: {
"bot" = dontDistribute super."bot";
"both" = dontDistribute super."both";
"botpp" = dontDistribute super."botpp";
+ "bound" = doDistribute super."bound_1_0_6";
"bound-gen" = dontDistribute super."bound-gen";
"bounded-tchan" = dontDistribute super."bounded-tchan";
"boundingboxes" = dontDistribute super."boundingboxes";
@@ -1664,6 +1674,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_0";
"buffer-builder-aeson" = dontDistribute super."buffer-builder-aeson";
"buffon" = dontDistribute super."buffon";
"bugzilla" = dontDistribute super."bugzilla";
@@ -1823,6 +1834,7 @@ self: super: {
"cef" = dontDistribute super."cef";
"ceilometer-common" = dontDistribute super."ceilometer-common";
"cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo";
+ "cerberus" = dontDistribute super."cerberus";
"cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_3";
"cereal-derive" = dontDistribute super."cereal-derive";
"cereal-enumerator" = dontDistribute super."cereal-enumerator";
@@ -1922,6 +1934,7 @@ self: super: {
"clipper" = dontDistribute super."clipper";
"clippings" = dontDistribute super."clippings";
"clist" = dontDistribute super."clist";
+ "clock" = doDistribute super."clock_0_5_1";
"clocked" = dontDistribute super."clocked";
"clogparse" = dontDistribute super."clogparse";
"clone-all" = dontDistribute super."clone-all";
@@ -2019,6 +2032,7 @@ self: super: {
"concrete-typerep" = dontDistribute super."concrete-typerep";
"concurrent-barrier" = dontDistribute super."concurrent-barrier";
"concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache";
+ "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9";
"concurrent-machines" = dontDistribute super."concurrent-machines";
"concurrent-output" = dontDistribute super."concurrent-output";
"concurrent-sa" = dontDistribute super."concurrent-sa";
@@ -2382,6 +2396,8 @@ self: super: {
"delta-h" = dontDistribute super."delta-h";
"demarcate" = dontDistribute super."demarcate";
"denominate" = dontDistribute super."denominate";
+ "dependent-map" = doDistribute super."dependent-map_0_1_1_3";
+ "dependent-sum" = doDistribute super."dependent-sum_0_2_1_0";
"depends" = dontDistribute super."depends";
"dephd" = dontDistribute super."dephd";
"dequeue" = dontDistribute super."dequeue";
@@ -2426,6 +2442,7 @@ self: super: {
"diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube";
"diagrams-svg" = doDistribute super."diagrams-svg_1_3_1_6";
"diagrams-tikz" = dontDistribute super."diagrams-tikz";
+ "dialog" = dontDistribute super."dialog";
"dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit";
"dicom" = dontDistribute super."dicom";
"dictparser" = dontDistribute super."dictparser";
@@ -2603,6 +2620,7 @@ self: super: {
"edenskel" = dontDistribute super."edenskel";
"edentv" = dontDistribute super."edentv";
"edge" = dontDistribute super."edge";
+ "edis" = dontDistribute super."edis";
"edit-distance-vector" = dontDistribute super."edit-distance-vector";
"edit-lenses" = dontDistribute super."edit-lenses";
"edit-lenses-demo" = dontDistribute super."edit-lenses-demo";
@@ -2780,6 +2798,7 @@ self: super: {
"failable-list" = dontDistribute super."failable-list";
"failure" = dontDistribute super."failure";
"fair-predicates" = dontDistribute super."fair-predicates";
+ "fake-type" = dontDistribute super."fake-type";
"faker" = dontDistribute super."faker";
"falling-turnip" = dontDistribute super."falling-turnip";
"fallingblocks" = dontDistribute super."fallingblocks";
@@ -2976,6 +2995,7 @@ self: super: {
"friday-juicypixels" = dontDistribute super."friday-juicypixels";
"friday-scale-dct" = dontDistribute super."friday-scale-dct";
"friendly-time" = dontDistribute super."friendly-time";
+ "frontmatter" = dontDistribute super."frontmatter";
"frp-arduino" = dontDistribute super."frp-arduino";
"frpnow" = dontDistribute super."frpnow";
"frpnow-gloss" = dontDistribute super."frpnow-gloss";
@@ -3183,6 +3203,7 @@ self: super: {
"gitlib-s3" = dontDistribute super."gitlib-s3";
"gitlib-sample" = dontDistribute super."gitlib-sample";
"gitlib-utils" = dontDistribute super."gitlib-utils";
+ "gitter" = dontDistribute super."gitter";
"gl-capture" = dontDistribute super."gl-capture";
"glade" = dontDistribute super."glade";
"gladexml-accessor" = dontDistribute super."gladexml-accessor";
@@ -3389,6 +3410,7 @@ self: super: {
"gstreamer" = dontDistribute super."gstreamer";
"gt-tools" = dontDistribute super."gt-tools";
"gtfs" = dontDistribute super."gtfs";
+ "gtk" = doDistribute super."gtk_0_13_9";
"gtk-helpers" = dontDistribute super."gtk-helpers";
"gtk-jsinput" = dontDistribute super."gtk-jsinput";
"gtk-largeTreeStore" = dontDistribute super."gtk-largeTreeStore";
@@ -3481,6 +3503,7 @@ self: super: {
"hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP";
"hackage-server" = dontDistribute super."hackage-server";
"hackage-sparks" = dontDistribute super."hackage-sparks";
+ "hackage-whatsnew" = dontDistribute super."hackage-whatsnew";
"hackage2hwn" = dontDistribute super."hackage2hwn";
"hackage2twitter" = dontDistribute super."hackage2twitter";
"hackager" = dontDistribute super."hackager";
@@ -3508,6 +3531,7 @@ self: super: {
"hake" = dontDistribute super."hake";
"hakismet" = dontDistribute super."hakismet";
"hako" = dontDistribute super."hako";
+ "hakyll" = doDistribute super."hakyll_4_7_4_0";
"hakyll-R" = dontDistribute super."hakyll-R";
"hakyll-agda" = dontDistribute super."hakyll-agda";
"hakyll-blaze-templates" = dontDistribute super."hakyll-blaze-templates";
@@ -3634,6 +3658,7 @@ self: super: {
"haskell-in-space" = dontDistribute super."haskell-in-space";
"haskell-modbus" = dontDistribute super."haskell-modbus";
"haskell-mpi" = dontDistribute super."haskell-mpi";
+ "haskell-names" = doDistribute super."haskell-names_0_5_3";
"haskell-openflow" = dontDistribute super."haskell-openflow";
"haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter";
"haskell-platform-test" = dontDistribute super."haskell-platform-test";
@@ -3707,6 +3732,7 @@ self: super: {
"hasloGUI" = dontDistribute super."hasloGUI";
"hasparql-client" = dontDistribute super."hasparql-client";
"haspell" = dontDistribute super."haspell";
+ "hasql" = doDistribute super."hasql_0_7_4";
"hasql-pool" = dontDistribute super."hasql-pool";
"hasql-postgres-options" = dontDistribute super."hasql-postgres-options";
"hasql-th" = dontDistribute super."hasql-th";
@@ -3916,6 +3942,8 @@ self: super: {
"hlibBladeRF" = dontDistribute super."hlibBladeRF";
"hlibev" = dontDistribute super."hlibev";
"hlibfam" = dontDistribute super."hlibfam";
+ "hlibgit2" = doDistribute super."hlibgit2_0_18_0_14";
+ "hlibsass" = doDistribute super."hlibsass_0_1_4_0";
"hlint" = doDistribute super."hlint_1_9_22";
"hlogger" = dontDistribute super."hlogger";
"hlongurl" = dontDistribute super."hlongurl";
@@ -4081,6 +4109,7 @@ self: super: {
"hsConfigure" = dontDistribute super."hsConfigure";
"hsSqlite3" = dontDistribute super."hsSqlite3";
"hsXenCtrl" = dontDistribute super."hsXenCtrl";
+ "hsass" = doDistribute super."hsass_0_3_0";
"hsay" = dontDistribute super."hsay";
"hsb2hs" = dontDistribute super."hsb2hs";
"hsbackup" = dontDistribute super."hsbackup";
@@ -4121,6 +4150,7 @@ self: super: {
"hsdip" = dontDistribute super."hsdip";
"hsdns" = dontDistribute super."hsdns";
"hsdns-cache" = dontDistribute super."hsdns-cache";
+ "hsebaysdk" = doDistribute super."hsebaysdk_0_3_0_0";
"hsemail-ns" = dontDistribute super."hsemail-ns";
"hsenv" = dontDistribute super."hsenv";
"hserv" = dontDistribute super."hserv";
@@ -4177,6 +4207,7 @@ self: super: {
"hspec-meta" = doDistribute super."hspec-meta_2_1_7";
"hspec-monad-control" = dontDistribute super."hspec-monad-control";
"hspec-server" = dontDistribute super."hspec-server";
+ "hspec-setup" = dontDistribute super."hspec-setup";
"hspec-shouldbe" = dontDistribute super."hspec-shouldbe";
"hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0";
"hspec-snap" = doDistribute super."hspec-snap_0_3_3_0";
@@ -4272,6 +4303,7 @@ self: super: {
"http-server" = dontDistribute super."http-server";
"http-shed" = dontDistribute super."http-shed";
"http-test" = dontDistribute super."http-test";
+ "http-types" = doDistribute super."http-types_0_8_6";
"http-wget" = dontDistribute super."http-wget";
"http2" = doDistribute super."http2_1_0_4";
"httpd-shed" = dontDistribute super."httpd-shed";
@@ -4397,6 +4429,7 @@ self: super: {
"imgurder" = dontDistribute super."imgurder";
"imm" = dontDistribute super."imm";
"imparse" = dontDistribute super."imparse";
+ "imperative-edsl" = dontDistribute super."imperative-edsl";
"imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl";
"implicit" = dontDistribute super."implicit";
"implicit-params" = dontDistribute super."implicit-params";
@@ -4569,6 +4602,7 @@ self: super: {
"jsmw" = dontDistribute super."jsmw";
"json-assertions" = dontDistribute super."json-assertions";
"json-b" = dontDistribute super."json-b";
+ "json-encoder" = dontDistribute super."json-encoder";
"json-enumerator" = dontDistribute super."json-enumerator";
"json-extra" = dontDistribute super."json-extra";
"json-fu" = dontDistribute super."json-fu";
@@ -4578,6 +4612,7 @@ self: super: {
"json-rpc" = dontDistribute super."json-rpc";
"json-rpc-client" = dontDistribute super."json-rpc-client";
"json-rpc-server" = dontDistribute super."json-rpc-server";
+ "json-schema" = doDistribute super."json-schema_0_7_4_0";
"json-sop" = dontDistribute super."json-sop";
"json-state" = dontDistribute super."json-state";
"json-stream" = dontDistribute super."json-stream";
@@ -4690,6 +4725,7 @@ self: super: {
"lambdacube-examples" = dontDistribute super."lambdacube-examples";
"lambdacube-gl" = dontDistribute super."lambdacube-gl";
"lambdacube-samples" = dontDistribute super."lambdacube-samples";
+ "lambdatex" = dontDistribute super."lambdatex";
"lambdatwit" = dontDistribute super."lambdatwit";
"lambdiff" = dontDistribute super."lambdiff";
"lame-tester" = dontDistribute super."lame-tester";
@@ -4730,6 +4766,7 @@ self: super: {
"language-thrift" = dontDistribute super."language-thrift";
"language-typescript" = dontDistribute super."language-typescript";
"language-vhdl" = dontDistribute super."language-vhdl";
+ "largeword" = doDistribute super."largeword_1_2_3";
"lat" = dontDistribute super."lat";
"latest-npm-version" = dontDistribute super."latest-npm-version";
"latex" = dontDistribute super."latex";
@@ -4875,8 +4912,10 @@ self: super: {
"liquidhaskell" = dontDistribute super."liquidhaskell";
"lispparser" = dontDistribute super."lispparser";
"list-extras" = dontDistribute super."list-extras";
+ "list-fusion-probe" = doDistribute super."list-fusion-probe_0_1_0_4";
"list-grouping" = dontDistribute super."list-grouping";
"list-mux" = dontDistribute super."list-mux";
+ "list-prompt" = dontDistribute super."list-prompt";
"list-remote-forwards" = dontDistribute super."list-remote-forwards";
"list-t-attoparsec" = dontDistribute super."list-t-attoparsec";
"list-t-html-parser" = dontDistribute super."list-t-html-parser";
@@ -4920,6 +4959,7 @@ self: super: {
"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-domain" = doDistribute super."log-domain_0_10_3";
@@ -4964,6 +5004,7 @@ self: super: {
"lub" = dontDistribute super."lub";
"lucid" = doDistribute super."lucid_2_9_3";
"lucid-foundation" = dontDistribute super."lucid-foundation";
+ "lucid-svg" = doDistribute super."lucid-svg_0_5_0_0";
"lucienne" = dontDistribute super."lucienne";
"luhn" = dontDistribute super."luhn";
"lui" = dontDistribute super."lui";
@@ -5356,6 +5397,7 @@ self: super: {
"nbt" = dontDistribute super."nbt";
"nc-indicators" = dontDistribute super."nc-indicators";
"ncurses" = dontDistribute super."ncurses";
+ "ndjson-conduit" = doDistribute super."ndjson-conduit_0_1_0_2";
"neat" = dontDistribute super."neat";
"neat-interpolation" = doDistribute super."neat-interpolation_0_2_3";
"needle" = dontDistribute super."needle";
@@ -5527,6 +5569,7 @@ self: super: {
"omnifmt" = dontDistribute super."omnifmt";
"on-a-horse" = dontDistribute super."on-a-horse";
"on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel";
+ "once" = dontDistribute super."once";
"one-liner" = dontDistribute super."one-liner";
"one-time-password" = dontDistribute super."one-time-password";
"oneOfN" = dontDistribute super."oneOfN";
@@ -5580,6 +5623,7 @@ self: super: {
"optimusprime" = dontDistribute super."optimusprime";
"optional" = dontDistribute super."optional";
"options-time" = dontDistribute super."options-time";
+ "optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"orc" = dontDistribute super."orc";
"orchestrate" = dontDistribute super."orchestrate";
@@ -5764,6 +5808,7 @@ self: super: {
"pgstream" = dontDistribute super."pgstream";
"phasechange" = dontDistribute super."phasechange";
"phizzle" = dontDistribute super."phizzle";
+ "phoityne" = dontDistribute super."phoityne";
"phone-numbers" = dontDistribute super."phone-numbers";
"phone-push" = dontDistribute super."phone-push";
"phonetic-code" = dontDistribute super."phonetic-code";
@@ -5784,6 +5829,7 @@ self: super: {
"pipe-enumerator" = dontDistribute super."pipe-enumerator";
"pipeclip" = dontDistribute super."pipeclip";
"pipes" = doDistribute super."pipes_4_1_6";
+ "pipes-aeson" = doDistribute super."pipes-aeson_0_4_1_4";
"pipes-async" = dontDistribute super."pipes-async";
"pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming";
"pipes-cacophony" = dontDistribute super."pipes-cacophony";
@@ -5791,6 +5837,7 @@ self: super: {
"pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv";
"pipes-cereal" = dontDistribute super."pipes-cereal";
"pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus";
+ "pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_3";
"pipes-conduit" = dontDistribute super."pipes-conduit";
"pipes-core" = dontDistribute super."pipes-core";
"pipes-courier" = dontDistribute super."pipes-courier";
@@ -5899,6 +5946,7 @@ self: super: {
"possible" = dontDistribute super."possible";
"post-mess-age" = doDistribute super."post-mess-age_0_1_0_0";
"postcodes" = dontDistribute super."postcodes";
+ "postgresql-binary" = doDistribute super."postgresql-binary_0_5_2_1";
"postgresql-config" = dontDistribute super."postgresql-config";
"postgresql-connector" = dontDistribute super."postgresql-connector";
"postgresql-copy-escape" = dontDistribute super."postgresql-copy-escape";
@@ -6325,6 +6373,7 @@ self: super: {
"rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster";
"retry" = doDistribute super."retry_0_6";
"retryer" = dontDistribute super."retryer";
+ "rev-state" = doDistribute super."rev-state_0_1";
"revdectime" = dontDistribute super."revdectime";
"reverse-apply" = dontDistribute super."reverse-apply";
"reverse-geocoding" = dontDistribute super."reverse-geocoding";
@@ -6551,6 +6600,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serv" = dontDistribute super."serv";
"servant-JuicyPixels" = doDistribute super."servant-JuicyPixels_0_1_0_0";
"servant-blaze" = dontDistribute super."servant-blaze";
"servant-cassava" = dontDistribute super."servant-cassava";
@@ -6752,6 +6802,7 @@ self: super: {
"snaplet-coffee" = dontDistribute super."snaplet-coffee";
"snaplet-css-min" = dontDistribute super."snaplet-css-min";
"snaplet-environments" = dontDistribute super."snaplet-environments";
+ "snaplet-fay" = doDistribute super."snaplet-fay_0_3_3_12";
"snaplet-ghcjs" = dontDistribute super."snaplet-ghcjs";
"snaplet-hasql" = dontDistribute super."snaplet-hasql";
"snaplet-haxl" = dontDistribute super."snaplet-haxl";
@@ -7037,6 +7088,7 @@ self: super: {
"swift-lda" = dontDistribute super."swift-lda";
"swish" = dontDistribute super."swish";
"sws" = dontDistribute super."sws";
+ "syb" = doDistribute super."syb_0_5_1";
"syb-extras" = dontDistribute super."syb-extras";
"syb-with-class" = dontDistribute super."syb-with-class";
"syb-with-class-instances-text" = dontDistribute super."syb-with-class-instances-text";
@@ -7475,6 +7527,7 @@ self: super: {
"typehash" = dontDistribute super."typehash";
"typelevel" = dontDistribute super."typelevel";
"typelevel-tensor" = dontDistribute super."typelevel-tensor";
+ "typelits-witnesses" = dontDistribute super."typelits-witnesses";
"typeof" = dontDistribute super."typeof";
"typeparams" = dontDistribute super."typeparams";
"typesafe-endian" = dontDistribute super."typesafe-endian";
@@ -7698,6 +7751,7 @@ self: super: {
"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" = dontDistribute super."vty";
@@ -7880,6 +7934,7 @@ self: super: {
"x-dsp" = dontDistribute super."x-dsp";
"x11-xim" = dontDistribute super."x11-xim";
"x11-xinput" = dontDistribute super."x11-xinput";
+ "x509-system" = doDistribute super."x509-system_1_6_1";
"x509-util" = dontDistribute super."x509-util";
"xattr" = dontDistribute super."xattr";
"xbattbar" = dontDistribute super."xbattbar";
@@ -7907,6 +7962,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_2";
"xml-conduit-parse" = dontDistribute super."xml-conduit-parse";
"xml-conduit-writer" = dontDistribute super."xml-conduit-writer";
"xml-enumerator" = dontDistribute super."xml-enumerator";
diff --git a/pkgs/development/haskell-modules/configuration-lts-3.14.nix b/pkgs/development/haskell-modules/configuration-lts-3.14.nix
index 30316276737..3c09a095fa5 100644
--- a/pkgs/development/haskell-modules/configuration-lts-3.14.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-3.14.nix
@@ -71,6 +71,7 @@ self: super: {
"Advgame" = dontDistribute super."Advgame";
"AesonBson" = dontDistribute super."AesonBson";
"Agata" = dontDistribute super."Agata";
+ "Agda" = doDistribute super."Agda_2_4_2_4";
"Agda-executable" = dontDistribute super."Agda-executable";
"AhoCorasick" = dontDistribute super."AhoCorasick";
"AlgorithmW" = dontDistribute super."AlgorithmW";
@@ -314,6 +315,7 @@ self: super: {
"FormalGrammars" = dontDistribute super."FormalGrammars";
"Foster" = dontDistribute super."Foster";
"FpMLv53" = dontDistribute super."FpMLv53";
+ "FractalArt" = dontDistribute super."FractalArt";
"Fractaler" = dontDistribute super."Fractaler";
"Frames" = dontDistribute super."Frames";
"Frank" = dontDistribute super."Frank";
@@ -463,6 +465,7 @@ self: super: {
"HTTP-Simple" = dontDistribute super."HTTP-Simple";
"HTab" = dontDistribute super."HTab";
"HTicTacToe" = dontDistribute super."HTicTacToe";
+ "HUnit" = doDistribute super."HUnit_1_2_5_2";
"HUnit-Diff" = dontDistribute super."HUnit-Diff";
"HUnit-Plus" = dontDistribute super."HUnit-Plus";
"HUnit-approx" = dontDistribute super."HUnit-approx";
@@ -494,6 +497,7 @@ self: super: {
"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";
@@ -1319,6 +1323,7 @@ self: super: {
"asic" = dontDistribute super."asic";
"asil" = dontDistribute super."asil";
"asn1-data" = dontDistribute super."asn1-data";
+ "asn1-types" = doDistribute super."asn1-types_0_3_1";
"asn1dump" = dontDistribute super."asn1dump";
"assembler" = dontDistribute super."assembler";
"assert" = dontDistribute super."assert";
@@ -1373,6 +1378,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_2_2";
"autonix-deps" = dontDistribute super."autonix-deps";
"autonix-deps-kf5" = dontDistribute super."autonix-deps-kf5";
"autoproc" = dontDistribute super."autoproc";
@@ -1436,6 +1442,8 @@ self: super: {
"base-generics" = dontDistribute super."base-generics";
"base-io-access" = dontDistribute super."base-io-access";
"base-noprelude" = dontDistribute super."base-noprelude";
+ "base-orphans" = doDistribute super."base-orphans_0_4_4";
+ "base-prelude" = doDistribute super."base-prelude_0_1_19";
"base32-bytestring" = dontDistribute super."base32-bytestring";
"base58-bytestring" = dontDistribute super."base58-bytestring";
"base58address" = dontDistribute super."base58address";
@@ -1479,6 +1487,7 @@ self: super: {
"bidirectionalization-combined" = dontDistribute super."bidirectionalization-combined";
"bidispec" = dontDistribute super."bidispec";
"bidispec-extras" = dontDistribute super."bidispec-extras";
+ "bifunctors" = doDistribute super."bifunctors_5";
"billboard-parser" = dontDistribute super."billboard-parser";
"billeksah-forms" = dontDistribute super."billeksah-forms";
"billeksah-main" = dontDistribute super."billeksah-main";
@@ -1639,6 +1648,7 @@ self: super: {
"bot" = dontDistribute super."bot";
"both" = dontDistribute super."both";
"botpp" = dontDistribute super."botpp";
+ "bound" = doDistribute super."bound_1_0_6";
"bound-gen" = dontDistribute super."bound-gen";
"bounded-tchan" = dontDistribute super."bounded-tchan";
"boundingboxes" = dontDistribute super."boundingboxes";
@@ -1661,6 +1671,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_0";
"buffer-builder-aeson" = dontDistribute super."buffer-builder-aeson";
"buffon" = dontDistribute super."buffon";
"bugzilla" = dontDistribute super."bugzilla";
@@ -1820,6 +1831,7 @@ self: super: {
"cef" = dontDistribute super."cef";
"ceilometer-common" = dontDistribute super."ceilometer-common";
"cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo";
+ "cerberus" = dontDistribute super."cerberus";
"cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_3";
"cereal-derive" = dontDistribute super."cereal-derive";
"cereal-enumerator" = dontDistribute super."cereal-enumerator";
@@ -1919,6 +1931,7 @@ self: super: {
"clipper" = dontDistribute super."clipper";
"clippings" = dontDistribute super."clippings";
"clist" = dontDistribute super."clist";
+ "clock" = doDistribute super."clock_0_5_1";
"clocked" = dontDistribute super."clocked";
"clogparse" = dontDistribute super."clogparse";
"clone-all" = dontDistribute super."clone-all";
@@ -2016,6 +2029,7 @@ self: super: {
"concrete-typerep" = dontDistribute super."concrete-typerep";
"concurrent-barrier" = dontDistribute super."concurrent-barrier";
"concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache";
+ "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9";
"concurrent-machines" = dontDistribute super."concurrent-machines";
"concurrent-output" = dontDistribute super."concurrent-output";
"concurrent-sa" = dontDistribute super."concurrent-sa";
@@ -2378,6 +2392,8 @@ self: super: {
"delta-h" = dontDistribute super."delta-h";
"demarcate" = dontDistribute super."demarcate";
"denominate" = dontDistribute super."denominate";
+ "dependent-map" = doDistribute super."dependent-map_0_1_1_3";
+ "dependent-sum" = doDistribute super."dependent-sum_0_2_1_0";
"depends" = dontDistribute super."depends";
"dephd" = dontDistribute super."dephd";
"dequeue" = dontDistribute super."dequeue";
@@ -2417,7 +2433,9 @@ self: super: {
"diagrams-pgf" = dontDistribute super."diagrams-pgf";
"diagrams-qrcode" = dontDistribute super."diagrams-qrcode";
"diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube";
+ "diagrams-svg" = doDistribute super."diagrams-svg_1_3_1_7";
"diagrams-tikz" = dontDistribute super."diagrams-tikz";
+ "dialog" = dontDistribute super."dialog";
"dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit";
"dicom" = dontDistribute super."dicom";
"dictparser" = dontDistribute super."dictparser";
@@ -2594,6 +2612,7 @@ self: super: {
"edenskel" = dontDistribute super."edenskel";
"edentv" = dontDistribute super."edentv";
"edge" = dontDistribute super."edge";
+ "edis" = dontDistribute super."edis";
"edit-distance-vector" = dontDistribute super."edit-distance-vector";
"edit-lenses" = dontDistribute super."edit-lenses";
"edit-lenses-demo" = dontDistribute super."edit-lenses-demo";
@@ -2771,6 +2790,7 @@ self: super: {
"failable-list" = dontDistribute super."failable-list";
"failure" = dontDistribute super."failure";
"fair-predicates" = dontDistribute super."fair-predicates";
+ "fake-type" = dontDistribute super."fake-type";
"faker" = dontDistribute super."faker";
"falling-turnip" = dontDistribute super."falling-turnip";
"fallingblocks" = dontDistribute super."fallingblocks";
@@ -2967,6 +2987,7 @@ self: super: {
"friday-juicypixels" = dontDistribute super."friday-juicypixels";
"friday-scale-dct" = dontDistribute super."friday-scale-dct";
"friendly-time" = dontDistribute super."friendly-time";
+ "frontmatter" = dontDistribute super."frontmatter";
"frp-arduino" = dontDistribute super."frp-arduino";
"frpnow" = dontDistribute super."frpnow";
"frpnow-gloss" = dontDistribute super."frpnow-gloss";
@@ -3174,6 +3195,7 @@ self: super: {
"gitlib-s3" = dontDistribute super."gitlib-s3";
"gitlib-sample" = dontDistribute super."gitlib-sample";
"gitlib-utils" = dontDistribute super."gitlib-utils";
+ "gitter" = dontDistribute super."gitter";
"gl-capture" = dontDistribute super."gl-capture";
"glade" = dontDistribute super."glade";
"gladexml-accessor" = dontDistribute super."gladexml-accessor";
@@ -3380,6 +3402,7 @@ self: super: {
"gstreamer" = dontDistribute super."gstreamer";
"gt-tools" = dontDistribute super."gt-tools";
"gtfs" = dontDistribute super."gtfs";
+ "gtk" = doDistribute super."gtk_0_13_9";
"gtk-helpers" = dontDistribute super."gtk-helpers";
"gtk-jsinput" = dontDistribute super."gtk-jsinput";
"gtk-largeTreeStore" = dontDistribute super."gtk-largeTreeStore";
@@ -3472,6 +3495,7 @@ self: super: {
"hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP";
"hackage-server" = dontDistribute super."hackage-server";
"hackage-sparks" = dontDistribute super."hackage-sparks";
+ "hackage-whatsnew" = dontDistribute super."hackage-whatsnew";
"hackage2hwn" = dontDistribute super."hackage2hwn";
"hackage2twitter" = dontDistribute super."hackage2twitter";
"hackager" = dontDistribute super."hackager";
@@ -3499,6 +3523,7 @@ self: super: {
"hake" = dontDistribute super."hake";
"hakismet" = dontDistribute super."hakismet";
"hako" = dontDistribute super."hako";
+ "hakyll" = doDistribute super."hakyll_4_7_4_0";
"hakyll-R" = dontDistribute super."hakyll-R";
"hakyll-agda" = dontDistribute super."hakyll-agda";
"hakyll-blaze-templates" = dontDistribute super."hakyll-blaze-templates";
@@ -3625,6 +3650,7 @@ self: super: {
"haskell-in-space" = dontDistribute super."haskell-in-space";
"haskell-modbus" = dontDistribute super."haskell-modbus";
"haskell-mpi" = dontDistribute super."haskell-mpi";
+ "haskell-names" = doDistribute super."haskell-names_0_5_3";
"haskell-openflow" = dontDistribute super."haskell-openflow";
"haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter";
"haskell-platform-test" = dontDistribute super."haskell-platform-test";
@@ -3698,6 +3724,7 @@ self: super: {
"hasloGUI" = dontDistribute super."hasloGUI";
"hasparql-client" = dontDistribute super."hasparql-client";
"haspell" = dontDistribute super."haspell";
+ "hasql" = doDistribute super."hasql_0_7_4";
"hasql-pool" = dontDistribute super."hasql-pool";
"hasql-postgres-options" = dontDistribute super."hasql-postgres-options";
"hasql-th" = dontDistribute super."hasql-th";
@@ -3907,6 +3934,8 @@ self: super: {
"hlibBladeRF" = dontDistribute super."hlibBladeRF";
"hlibev" = dontDistribute super."hlibev";
"hlibfam" = dontDistribute super."hlibfam";
+ "hlibgit2" = doDistribute super."hlibgit2_0_18_0_14";
+ "hlibsass" = doDistribute super."hlibsass_0_1_4_0";
"hlint" = doDistribute super."hlint_1_9_22";
"hlogger" = dontDistribute super."hlogger";
"hlongurl" = dontDistribute super."hlongurl";
@@ -4072,6 +4101,7 @@ self: super: {
"hsConfigure" = dontDistribute super."hsConfigure";
"hsSqlite3" = dontDistribute super."hsSqlite3";
"hsXenCtrl" = dontDistribute super."hsXenCtrl";
+ "hsass" = doDistribute super."hsass_0_3_0";
"hsay" = dontDistribute super."hsay";
"hsb2hs" = dontDistribute super."hsb2hs";
"hsbackup" = dontDistribute super."hsbackup";
@@ -4112,6 +4142,7 @@ self: super: {
"hsdip" = dontDistribute super."hsdip";
"hsdns" = dontDistribute super."hsdns";
"hsdns-cache" = dontDistribute super."hsdns-cache";
+ "hsebaysdk" = doDistribute super."hsebaysdk_0_3_0_0";
"hsemail-ns" = dontDistribute super."hsemail-ns";
"hsenv" = dontDistribute super."hsenv";
"hserv" = dontDistribute super."hserv";
@@ -4168,6 +4199,7 @@ self: super: {
"hspec-meta" = doDistribute super."hspec-meta_2_1_7";
"hspec-monad-control" = dontDistribute super."hspec-monad-control";
"hspec-server" = dontDistribute super."hspec-server";
+ "hspec-setup" = dontDistribute super."hspec-setup";
"hspec-shouldbe" = dontDistribute super."hspec-shouldbe";
"hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0";
"hspec-snap" = doDistribute super."hspec-snap_0_3_3_0";
@@ -4262,6 +4294,7 @@ self: super: {
"http-server" = dontDistribute super."http-server";
"http-shed" = dontDistribute super."http-shed";
"http-test" = dontDistribute super."http-test";
+ "http-types" = doDistribute super."http-types_0_8_6";
"http-wget" = dontDistribute super."http-wget";
"http2" = doDistribute super."http2_1_0_4";
"httpd-shed" = dontDistribute super."httpd-shed";
@@ -4387,6 +4420,7 @@ self: super: {
"imgurder" = dontDistribute super."imgurder";
"imm" = dontDistribute super."imm";
"imparse" = dontDistribute super."imparse";
+ "imperative-edsl" = dontDistribute super."imperative-edsl";
"imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl";
"implicit" = dontDistribute super."implicit";
"implicit-params" = dontDistribute super."implicit-params";
@@ -4559,6 +4593,7 @@ self: super: {
"jsmw" = dontDistribute super."jsmw";
"json-assertions" = dontDistribute super."json-assertions";
"json-b" = dontDistribute super."json-b";
+ "json-encoder" = dontDistribute super."json-encoder";
"json-enumerator" = dontDistribute super."json-enumerator";
"json-extra" = dontDistribute super."json-extra";
"json-fu" = dontDistribute super."json-fu";
@@ -4568,6 +4603,7 @@ self: super: {
"json-rpc" = dontDistribute super."json-rpc";
"json-rpc-client" = dontDistribute super."json-rpc-client";
"json-rpc-server" = dontDistribute super."json-rpc-server";
+ "json-schema" = doDistribute super."json-schema_0_7_4_0";
"json-sop" = dontDistribute super."json-sop";
"json-state" = dontDistribute super."json-state";
"json-stream" = dontDistribute super."json-stream";
@@ -4680,6 +4716,7 @@ self: super: {
"lambdacube-examples" = dontDistribute super."lambdacube-examples";
"lambdacube-gl" = dontDistribute super."lambdacube-gl";
"lambdacube-samples" = dontDistribute super."lambdacube-samples";
+ "lambdatex" = dontDistribute super."lambdatex";
"lambdatwit" = dontDistribute super."lambdatwit";
"lambdiff" = dontDistribute super."lambdiff";
"lame-tester" = dontDistribute super."lame-tester";
@@ -4720,6 +4757,7 @@ self: super: {
"language-thrift" = dontDistribute super."language-thrift";
"language-typescript" = dontDistribute super."language-typescript";
"language-vhdl" = dontDistribute super."language-vhdl";
+ "largeword" = doDistribute super."largeword_1_2_3";
"lat" = dontDistribute super."lat";
"latest-npm-version" = dontDistribute super."latest-npm-version";
"latex" = dontDistribute super."latex";
@@ -4865,8 +4903,10 @@ self: super: {
"liquidhaskell" = dontDistribute super."liquidhaskell";
"lispparser" = dontDistribute super."lispparser";
"list-extras" = dontDistribute super."list-extras";
+ "list-fusion-probe" = doDistribute super."list-fusion-probe_0_1_0_4";
"list-grouping" = dontDistribute super."list-grouping";
"list-mux" = dontDistribute super."list-mux";
+ "list-prompt" = dontDistribute super."list-prompt";
"list-remote-forwards" = dontDistribute super."list-remote-forwards";
"list-t-attoparsec" = dontDistribute super."list-t-attoparsec";
"list-t-html-parser" = dontDistribute super."list-t-html-parser";
@@ -4910,6 +4950,7 @@ self: super: {
"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-domain" = doDistribute super."log-domain_0_10_3";
@@ -4953,6 +4994,7 @@ self: super: {
"luautils" = dontDistribute super."luautils";
"lub" = dontDistribute super."lub";
"lucid-foundation" = dontDistribute super."lucid-foundation";
+ "lucid-svg" = doDistribute super."lucid-svg_0_5_0_0";
"lucienne" = dontDistribute super."lucienne";
"luhn" = dontDistribute super."luhn";
"lui" = dontDistribute super."lui";
@@ -5344,6 +5386,7 @@ self: super: {
"nbt" = dontDistribute super."nbt";
"nc-indicators" = dontDistribute super."nc-indicators";
"ncurses" = dontDistribute super."ncurses";
+ "ndjson-conduit" = doDistribute super."ndjson-conduit_0_1_0_2";
"neat" = dontDistribute super."neat";
"neat-interpolation" = doDistribute super."neat-interpolation_0_2_3";
"needle" = dontDistribute super."needle";
@@ -5515,6 +5558,7 @@ self: super: {
"omnifmt" = dontDistribute super."omnifmt";
"on-a-horse" = dontDistribute super."on-a-horse";
"on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel";
+ "once" = dontDistribute super."once";
"one-liner" = dontDistribute super."one-liner";
"one-time-password" = dontDistribute super."one-time-password";
"oneOfN" = dontDistribute super."oneOfN";
@@ -5568,6 +5612,7 @@ self: super: {
"optimusprime" = dontDistribute super."optimusprime";
"optional" = dontDistribute super."optional";
"options-time" = dontDistribute super."options-time";
+ "optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"orc" = dontDistribute super."orc";
"orchestrate" = dontDistribute super."orchestrate";
@@ -5752,6 +5797,7 @@ self: super: {
"pgstream" = dontDistribute super."pgstream";
"phasechange" = dontDistribute super."phasechange";
"phizzle" = dontDistribute super."phizzle";
+ "phoityne" = dontDistribute super."phoityne";
"phone-numbers" = dontDistribute super."phone-numbers";
"phone-push" = dontDistribute super."phone-push";
"phonetic-code" = dontDistribute super."phonetic-code";
@@ -5771,6 +5817,7 @@ self: super: {
"pinchot" = dontDistribute super."pinchot";
"pipe-enumerator" = dontDistribute super."pipe-enumerator";
"pipeclip" = dontDistribute super."pipeclip";
+ "pipes-aeson" = doDistribute super."pipes-aeson_0_4_1_4";
"pipes-async" = dontDistribute super."pipes-async";
"pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming";
"pipes-cacophony" = dontDistribute super."pipes-cacophony";
@@ -5778,6 +5825,7 @@ self: super: {
"pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv";
"pipes-cereal" = dontDistribute super."pipes-cereal";
"pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus";
+ "pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_3";
"pipes-conduit" = dontDistribute super."pipes-conduit";
"pipes-core" = dontDistribute super."pipes-core";
"pipes-courier" = dontDistribute super."pipes-courier";
@@ -5886,6 +5934,7 @@ self: super: {
"possible" = dontDistribute super."possible";
"post-mess-age" = doDistribute super."post-mess-age_0_1_0_0";
"postcodes" = dontDistribute super."postcodes";
+ "postgresql-binary" = doDistribute super."postgresql-binary_0_5_2_1";
"postgresql-config" = dontDistribute super."postgresql-config";
"postgresql-connector" = dontDistribute super."postgresql-connector";
"postgresql-copy-escape" = dontDistribute super."postgresql-copy-escape";
@@ -6312,6 +6361,7 @@ self: super: {
"rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster";
"retry" = doDistribute super."retry_0_6";
"retryer" = dontDistribute super."retryer";
+ "rev-state" = doDistribute super."rev-state_0_1";
"revdectime" = dontDistribute super."revdectime";
"reverse-apply" = dontDistribute super."reverse-apply";
"reverse-geocoding" = dontDistribute super."reverse-geocoding";
@@ -6538,6 +6588,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serv" = dontDistribute super."serv";
"servant-JuicyPixels" = doDistribute super."servant-JuicyPixels_0_1_0_0";
"servant-blaze" = dontDistribute super."servant-blaze";
"servant-cassava" = dontDistribute super."servant-cassava";
@@ -6739,6 +6790,7 @@ self: super: {
"snaplet-coffee" = dontDistribute super."snaplet-coffee";
"snaplet-css-min" = dontDistribute super."snaplet-css-min";
"snaplet-environments" = dontDistribute super."snaplet-environments";
+ "snaplet-fay" = doDistribute super."snaplet-fay_0_3_3_12";
"snaplet-ghcjs" = dontDistribute super."snaplet-ghcjs";
"snaplet-hasql" = dontDistribute super."snaplet-hasql";
"snaplet-haxl" = dontDistribute super."snaplet-haxl";
@@ -7024,6 +7076,7 @@ self: super: {
"swift-lda" = dontDistribute super."swift-lda";
"swish" = dontDistribute super."swish";
"sws" = dontDistribute super."sws";
+ "syb" = doDistribute super."syb_0_5_1";
"syb-extras" = dontDistribute super."syb-extras";
"syb-with-class" = dontDistribute super."syb-with-class";
"syb-with-class-instances-text" = dontDistribute super."syb-with-class-instances-text";
@@ -7393,6 +7446,7 @@ self: super: {
"turing-music" = dontDistribute super."turing-music";
"turkish-deasciifier" = dontDistribute super."turkish-deasciifier";
"turni" = dontDistribute super."turni";
+ "turtle" = doDistribute super."turtle_1_2_3";
"tweak" = dontDistribute super."tweak";
"twentefp" = dontDistribute super."twentefp";
"twentefp-eventloop-graphics" = dontDistribute super."twentefp-eventloop-graphics";
@@ -7460,6 +7514,7 @@ self: super: {
"typehash" = dontDistribute super."typehash";
"typelevel" = dontDistribute super."typelevel";
"typelevel-tensor" = dontDistribute super."typelevel-tensor";
+ "typelits-witnesses" = dontDistribute super."typelits-witnesses";
"typeof" = dontDistribute super."typeof";
"typeparams" = dontDistribute super."typeparams";
"typesafe-endian" = dontDistribute super."typesafe-endian";
@@ -7683,6 +7738,7 @@ self: super: {
"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" = dontDistribute super."vty";
@@ -7863,6 +7919,7 @@ self: super: {
"x-dsp" = dontDistribute super."x-dsp";
"x11-xim" = dontDistribute super."x11-xim";
"x11-xinput" = dontDistribute super."x11-xinput";
+ "x509-system" = doDistribute super."x509-system_1_6_1";
"x509-util" = dontDistribute super."x509-util";
"xattr" = dontDistribute super."xattr";
"xbattbar" = dontDistribute super."xbattbar";
@@ -7890,6 +7947,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_2";
"xml-conduit-parse" = dontDistribute super."xml-conduit-parse";
"xml-conduit-writer" = dontDistribute super."xml-conduit-writer";
"xml-enumerator" = dontDistribute super."xml-enumerator";
diff --git a/pkgs/development/haskell-modules/configuration-lts-3.15.nix b/pkgs/development/haskell-modules/configuration-lts-3.15.nix
index af656608acf..95baf86efab 100644
--- a/pkgs/development/haskell-modules/configuration-lts-3.15.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-3.15.nix
@@ -71,6 +71,7 @@ self: super: {
"Advgame" = dontDistribute super."Advgame";
"AesonBson" = dontDistribute super."AesonBson";
"Agata" = dontDistribute super."Agata";
+ "Agda" = doDistribute super."Agda_2_4_2_4";
"Agda-executable" = dontDistribute super."Agda-executable";
"AhoCorasick" = dontDistribute super."AhoCorasick";
"AlgorithmW" = dontDistribute super."AlgorithmW";
@@ -314,6 +315,7 @@ self: super: {
"FormalGrammars" = dontDistribute super."FormalGrammars";
"Foster" = dontDistribute super."Foster";
"FpMLv53" = dontDistribute super."FpMLv53";
+ "FractalArt" = dontDistribute super."FractalArt";
"Fractaler" = dontDistribute super."Fractaler";
"Frames" = dontDistribute super."Frames";
"Frank" = dontDistribute super."Frank";
@@ -463,6 +465,7 @@ self: super: {
"HTTP-Simple" = dontDistribute super."HTTP-Simple";
"HTab" = dontDistribute super."HTab";
"HTicTacToe" = dontDistribute super."HTicTacToe";
+ "HUnit" = doDistribute super."HUnit_1_2_5_2";
"HUnit-Diff" = dontDistribute super."HUnit-Diff";
"HUnit-Plus" = dontDistribute super."HUnit-Plus";
"HUnit-approx" = dontDistribute super."HUnit-approx";
@@ -494,6 +497,7 @@ self: super: {
"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";
@@ -1318,6 +1322,7 @@ self: super: {
"asic" = dontDistribute super."asic";
"asil" = dontDistribute super."asil";
"asn1-data" = dontDistribute super."asn1-data";
+ "asn1-types" = doDistribute super."asn1-types_0_3_1";
"asn1dump" = dontDistribute super."asn1dump";
"assembler" = dontDistribute super."assembler";
"assert" = dontDistribute super."assert";
@@ -1372,6 +1377,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_2_2";
"autonix-deps" = dontDistribute super."autonix-deps";
"autonix-deps-kf5" = dontDistribute super."autonix-deps-kf5";
"autoproc" = dontDistribute super."autoproc";
@@ -1435,6 +1441,8 @@ self: super: {
"base-generics" = dontDistribute super."base-generics";
"base-io-access" = dontDistribute super."base-io-access";
"base-noprelude" = dontDistribute super."base-noprelude";
+ "base-orphans" = doDistribute super."base-orphans_0_4_4";
+ "base-prelude" = doDistribute super."base-prelude_0_1_19";
"base32-bytestring" = dontDistribute super."base32-bytestring";
"base58-bytestring" = dontDistribute super."base58-bytestring";
"base58address" = dontDistribute super."base58address";
@@ -1478,6 +1486,7 @@ self: super: {
"bidirectionalization-combined" = dontDistribute super."bidirectionalization-combined";
"bidispec" = dontDistribute super."bidispec";
"bidispec-extras" = dontDistribute super."bidispec-extras";
+ "bifunctors" = doDistribute super."bifunctors_5";
"billboard-parser" = dontDistribute super."billboard-parser";
"billeksah-forms" = dontDistribute super."billeksah-forms";
"billeksah-main" = dontDistribute super."billeksah-main";
@@ -1638,6 +1647,7 @@ self: super: {
"bot" = dontDistribute super."bot";
"both" = dontDistribute super."both";
"botpp" = dontDistribute super."botpp";
+ "bound" = doDistribute super."bound_1_0_6";
"bound-gen" = dontDistribute super."bound-gen";
"bounded-tchan" = dontDistribute super."bounded-tchan";
"boundingboxes" = dontDistribute super."boundingboxes";
@@ -1660,6 +1670,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_0";
"buffer-builder-aeson" = dontDistribute super."buffer-builder-aeson";
"buffon" = dontDistribute super."buffon";
"bugzilla" = dontDistribute super."bugzilla";
@@ -1819,6 +1830,7 @@ self: super: {
"cef" = dontDistribute super."cef";
"ceilometer-common" = dontDistribute super."ceilometer-common";
"cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo";
+ "cerberus" = dontDistribute super."cerberus";
"cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_3";
"cereal-derive" = dontDistribute super."cereal-derive";
"cereal-enumerator" = dontDistribute super."cereal-enumerator";
@@ -1918,6 +1930,7 @@ self: super: {
"clipper" = dontDistribute super."clipper";
"clippings" = dontDistribute super."clippings";
"clist" = dontDistribute super."clist";
+ "clock" = doDistribute super."clock_0_5_1";
"clocked" = dontDistribute super."clocked";
"clogparse" = dontDistribute super."clogparse";
"clone-all" = dontDistribute super."clone-all";
@@ -2015,6 +2028,7 @@ self: super: {
"concrete-typerep" = dontDistribute super."concrete-typerep";
"concurrent-barrier" = dontDistribute super."concurrent-barrier";
"concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache";
+ "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9";
"concurrent-machines" = dontDistribute super."concurrent-machines";
"concurrent-output" = dontDistribute super."concurrent-output";
"concurrent-sa" = dontDistribute super."concurrent-sa";
@@ -2377,6 +2391,8 @@ self: super: {
"delta-h" = dontDistribute super."delta-h";
"demarcate" = dontDistribute super."demarcate";
"denominate" = dontDistribute super."denominate";
+ "dependent-map" = doDistribute super."dependent-map_0_1_1_3";
+ "dependent-sum" = doDistribute super."dependent-sum_0_2_1_0";
"depends" = dontDistribute super."depends";
"dephd" = dontDistribute super."dephd";
"dequeue" = dontDistribute super."dequeue";
@@ -2416,7 +2432,9 @@ self: super: {
"diagrams-pgf" = dontDistribute super."diagrams-pgf";
"diagrams-qrcode" = dontDistribute super."diagrams-qrcode";
"diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube";
+ "diagrams-svg" = doDistribute super."diagrams-svg_1_3_1_7";
"diagrams-tikz" = dontDistribute super."diagrams-tikz";
+ "dialog" = dontDistribute super."dialog";
"dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit";
"dicom" = dontDistribute super."dicom";
"dictparser" = dontDistribute super."dictparser";
@@ -2593,6 +2611,7 @@ self: super: {
"edenskel" = dontDistribute super."edenskel";
"edentv" = dontDistribute super."edentv";
"edge" = dontDistribute super."edge";
+ "edis" = dontDistribute super."edis";
"edit-distance-vector" = dontDistribute super."edit-distance-vector";
"edit-lenses" = dontDistribute super."edit-lenses";
"edit-lenses-demo" = dontDistribute super."edit-lenses-demo";
@@ -2770,6 +2789,7 @@ self: super: {
"failable-list" = dontDistribute super."failable-list";
"failure" = dontDistribute super."failure";
"fair-predicates" = dontDistribute super."fair-predicates";
+ "fake-type" = dontDistribute super."fake-type";
"faker" = dontDistribute super."faker";
"falling-turnip" = dontDistribute super."falling-turnip";
"fallingblocks" = dontDistribute super."fallingblocks";
@@ -2966,6 +2986,7 @@ self: super: {
"friday-juicypixels" = dontDistribute super."friday-juicypixels";
"friday-scale-dct" = dontDistribute super."friday-scale-dct";
"friendly-time" = dontDistribute super."friendly-time";
+ "frontmatter" = dontDistribute super."frontmatter";
"frp-arduino" = dontDistribute super."frp-arduino";
"frpnow" = dontDistribute super."frpnow";
"frpnow-gloss" = dontDistribute super."frpnow-gloss";
@@ -3172,6 +3193,7 @@ self: super: {
"gitlib-s3" = dontDistribute super."gitlib-s3";
"gitlib-sample" = dontDistribute super."gitlib-sample";
"gitlib-utils" = dontDistribute super."gitlib-utils";
+ "gitter" = dontDistribute super."gitter";
"gl-capture" = dontDistribute super."gl-capture";
"glade" = dontDistribute super."glade";
"gladexml-accessor" = dontDistribute super."gladexml-accessor";
@@ -3378,6 +3400,7 @@ self: super: {
"gstreamer" = dontDistribute super."gstreamer";
"gt-tools" = dontDistribute super."gt-tools";
"gtfs" = dontDistribute super."gtfs";
+ "gtk" = doDistribute super."gtk_0_13_9";
"gtk-helpers" = dontDistribute super."gtk-helpers";
"gtk-jsinput" = dontDistribute super."gtk-jsinput";
"gtk-largeTreeStore" = dontDistribute super."gtk-largeTreeStore";
@@ -3470,6 +3493,7 @@ self: super: {
"hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP";
"hackage-server" = dontDistribute super."hackage-server";
"hackage-sparks" = dontDistribute super."hackage-sparks";
+ "hackage-whatsnew" = dontDistribute super."hackage-whatsnew";
"hackage2hwn" = dontDistribute super."hackage2hwn";
"hackage2twitter" = dontDistribute super."hackage2twitter";
"hackager" = dontDistribute super."hackager";
@@ -3497,6 +3521,7 @@ self: super: {
"hake" = dontDistribute super."hake";
"hakismet" = dontDistribute super."hakismet";
"hako" = dontDistribute super."hako";
+ "hakyll" = doDistribute super."hakyll_4_7_4_0";
"hakyll-R" = dontDistribute super."hakyll-R";
"hakyll-agda" = dontDistribute super."hakyll-agda";
"hakyll-blaze-templates" = dontDistribute super."hakyll-blaze-templates";
@@ -3622,6 +3647,7 @@ self: super: {
"haskell-in-space" = dontDistribute super."haskell-in-space";
"haskell-modbus" = dontDistribute super."haskell-modbus";
"haskell-mpi" = dontDistribute super."haskell-mpi";
+ "haskell-names" = doDistribute super."haskell-names_0_5_3";
"haskell-openflow" = dontDistribute super."haskell-openflow";
"haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter";
"haskell-platform-test" = dontDistribute super."haskell-platform-test";
@@ -3695,6 +3721,7 @@ self: super: {
"hasloGUI" = dontDistribute super."hasloGUI";
"hasparql-client" = dontDistribute super."hasparql-client";
"haspell" = dontDistribute super."haspell";
+ "hasql" = doDistribute super."hasql_0_7_4";
"hasql-pool" = dontDistribute super."hasql-pool";
"hasql-postgres-options" = dontDistribute super."hasql-postgres-options";
"hasql-th" = dontDistribute super."hasql-th";
@@ -3904,6 +3931,8 @@ self: super: {
"hlibBladeRF" = dontDistribute super."hlibBladeRF";
"hlibev" = dontDistribute super."hlibev";
"hlibfam" = dontDistribute super."hlibfam";
+ "hlibgit2" = doDistribute super."hlibgit2_0_18_0_14";
+ "hlibsass" = doDistribute super."hlibsass_0_1_4_0";
"hlint" = doDistribute super."hlint_1_9_22";
"hlogger" = dontDistribute super."hlogger";
"hlongurl" = dontDistribute super."hlongurl";
@@ -4068,6 +4097,7 @@ self: super: {
"hsConfigure" = dontDistribute super."hsConfigure";
"hsSqlite3" = dontDistribute super."hsSqlite3";
"hsXenCtrl" = dontDistribute super."hsXenCtrl";
+ "hsass" = doDistribute super."hsass_0_3_0";
"hsay" = dontDistribute super."hsay";
"hsb2hs" = dontDistribute super."hsb2hs";
"hsbackup" = dontDistribute super."hsbackup";
@@ -4108,6 +4138,7 @@ self: super: {
"hsdip" = dontDistribute super."hsdip";
"hsdns" = dontDistribute super."hsdns";
"hsdns-cache" = dontDistribute super."hsdns-cache";
+ "hsebaysdk" = doDistribute super."hsebaysdk_0_3_0_0";
"hsemail-ns" = dontDistribute super."hsemail-ns";
"hsenv" = dontDistribute super."hsenv";
"hserv" = dontDistribute super."hserv";
@@ -4164,6 +4195,7 @@ self: super: {
"hspec-meta" = doDistribute super."hspec-meta_2_1_7";
"hspec-monad-control" = dontDistribute super."hspec-monad-control";
"hspec-server" = dontDistribute super."hspec-server";
+ "hspec-setup" = dontDistribute super."hspec-setup";
"hspec-shouldbe" = dontDistribute super."hspec-shouldbe";
"hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0";
"hspec-snap" = doDistribute super."hspec-snap_0_3_3_0";
@@ -4257,6 +4289,7 @@ self: super: {
"http-server" = dontDistribute super."http-server";
"http-shed" = dontDistribute super."http-shed";
"http-test" = dontDistribute super."http-test";
+ "http-types" = doDistribute super."http-types_0_8_6";
"http-wget" = dontDistribute super."http-wget";
"http2" = doDistribute super."http2_1_0_4";
"httpd-shed" = dontDistribute super."httpd-shed";
@@ -4382,6 +4415,7 @@ self: super: {
"imgurder" = dontDistribute super."imgurder";
"imm" = dontDistribute super."imm";
"imparse" = dontDistribute super."imparse";
+ "imperative-edsl" = dontDistribute super."imperative-edsl";
"imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl";
"implicit" = dontDistribute super."implicit";
"implicit-params" = dontDistribute super."implicit-params";
@@ -4554,6 +4588,7 @@ self: super: {
"jsmw" = dontDistribute super."jsmw";
"json-assertions" = dontDistribute super."json-assertions";
"json-b" = dontDistribute super."json-b";
+ "json-encoder" = dontDistribute super."json-encoder";
"json-enumerator" = dontDistribute super."json-enumerator";
"json-extra" = dontDistribute super."json-extra";
"json-fu" = dontDistribute super."json-fu";
@@ -4563,6 +4598,7 @@ self: super: {
"json-rpc" = dontDistribute super."json-rpc";
"json-rpc-client" = dontDistribute super."json-rpc-client";
"json-rpc-server" = dontDistribute super."json-rpc-server";
+ "json-schema" = doDistribute super."json-schema_0_7_4_0";
"json-sop" = dontDistribute super."json-sop";
"json-state" = dontDistribute super."json-state";
"json-stream" = dontDistribute super."json-stream";
@@ -4675,6 +4711,7 @@ self: super: {
"lambdacube-examples" = dontDistribute super."lambdacube-examples";
"lambdacube-gl" = dontDistribute super."lambdacube-gl";
"lambdacube-samples" = dontDistribute super."lambdacube-samples";
+ "lambdatex" = dontDistribute super."lambdatex";
"lambdatwit" = dontDistribute super."lambdatwit";
"lambdiff" = dontDistribute super."lambdiff";
"lame-tester" = dontDistribute super."lame-tester";
@@ -4715,6 +4752,7 @@ self: super: {
"language-thrift" = dontDistribute super."language-thrift";
"language-typescript" = dontDistribute super."language-typescript";
"language-vhdl" = dontDistribute super."language-vhdl";
+ "largeword" = doDistribute super."largeword_1_2_3";
"lat" = dontDistribute super."lat";
"latest-npm-version" = dontDistribute super."latest-npm-version";
"latex" = dontDistribute super."latex";
@@ -4860,8 +4898,10 @@ self: super: {
"liquidhaskell" = dontDistribute super."liquidhaskell";
"lispparser" = dontDistribute super."lispparser";
"list-extras" = dontDistribute super."list-extras";
+ "list-fusion-probe" = doDistribute super."list-fusion-probe_0_1_0_4";
"list-grouping" = dontDistribute super."list-grouping";
"list-mux" = dontDistribute super."list-mux";
+ "list-prompt" = dontDistribute super."list-prompt";
"list-remote-forwards" = dontDistribute super."list-remote-forwards";
"list-t-attoparsec" = dontDistribute super."list-t-attoparsec";
"list-t-html-parser" = dontDistribute super."list-t-html-parser";
@@ -4905,6 +4945,7 @@ self: super: {
"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-domain" = doDistribute super."log-domain_0_10_3";
@@ -4948,6 +4989,7 @@ self: super: {
"luautils" = dontDistribute super."luautils";
"lub" = dontDistribute super."lub";
"lucid-foundation" = dontDistribute super."lucid-foundation";
+ "lucid-svg" = doDistribute super."lucid-svg_0_5_0_0";
"lucienne" = dontDistribute super."lucienne";
"luhn" = dontDistribute super."luhn";
"lui" = dontDistribute super."lui";
@@ -5339,6 +5381,7 @@ self: super: {
"nbt" = dontDistribute super."nbt";
"nc-indicators" = dontDistribute super."nc-indicators";
"ncurses" = dontDistribute super."ncurses";
+ "ndjson-conduit" = doDistribute super."ndjson-conduit_0_1_0_2";
"neat" = dontDistribute super."neat";
"neat-interpolation" = doDistribute super."neat-interpolation_0_2_3";
"needle" = dontDistribute super."needle";
@@ -5510,6 +5553,7 @@ self: super: {
"omnifmt" = dontDistribute super."omnifmt";
"on-a-horse" = dontDistribute super."on-a-horse";
"on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel";
+ "once" = dontDistribute super."once";
"one-liner" = dontDistribute super."one-liner";
"one-time-password" = dontDistribute super."one-time-password";
"oneOfN" = dontDistribute super."oneOfN";
@@ -5563,6 +5607,7 @@ self: super: {
"optimusprime" = dontDistribute super."optimusprime";
"optional" = dontDistribute super."optional";
"options-time" = dontDistribute super."options-time";
+ "optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"orc" = dontDistribute super."orc";
"orchestrate" = dontDistribute super."orchestrate";
@@ -5746,6 +5791,7 @@ self: super: {
"pgstream" = dontDistribute super."pgstream";
"phasechange" = dontDistribute super."phasechange";
"phizzle" = dontDistribute super."phizzle";
+ "phoityne" = dontDistribute super."phoityne";
"phone-numbers" = dontDistribute super."phone-numbers";
"phone-push" = dontDistribute super."phone-push";
"phonetic-code" = dontDistribute super."phonetic-code";
@@ -5765,6 +5811,7 @@ self: super: {
"pinchot" = dontDistribute super."pinchot";
"pipe-enumerator" = dontDistribute super."pipe-enumerator";
"pipeclip" = dontDistribute super."pipeclip";
+ "pipes-aeson" = doDistribute super."pipes-aeson_0_4_1_4";
"pipes-async" = dontDistribute super."pipes-async";
"pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming";
"pipes-cacophony" = dontDistribute super."pipes-cacophony";
@@ -5772,6 +5819,7 @@ self: super: {
"pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv";
"pipes-cereal" = dontDistribute super."pipes-cereal";
"pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus";
+ "pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_3";
"pipes-conduit" = dontDistribute super."pipes-conduit";
"pipes-core" = dontDistribute super."pipes-core";
"pipes-courier" = dontDistribute super."pipes-courier";
@@ -5880,6 +5928,7 @@ self: super: {
"possible" = dontDistribute super."possible";
"post-mess-age" = doDistribute super."post-mess-age_0_1_0_0";
"postcodes" = dontDistribute super."postcodes";
+ "postgresql-binary" = doDistribute super."postgresql-binary_0_5_2_1";
"postgresql-config" = dontDistribute super."postgresql-config";
"postgresql-connector" = dontDistribute super."postgresql-connector";
"postgresql-copy-escape" = dontDistribute super."postgresql-copy-escape";
@@ -6305,6 +6354,7 @@ self: super: {
"rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster";
"retry" = doDistribute super."retry_0_6";
"retryer" = dontDistribute super."retryer";
+ "rev-state" = doDistribute super."rev-state_0_1";
"revdectime" = dontDistribute super."revdectime";
"reverse-apply" = dontDistribute super."reverse-apply";
"reverse-geocoding" = dontDistribute super."reverse-geocoding";
@@ -6531,6 +6581,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serv" = dontDistribute super."serv";
"servant-JuicyPixels" = doDistribute super."servant-JuicyPixels_0_1_0_0";
"servant-blaze" = dontDistribute super."servant-blaze";
"servant-cassava" = dontDistribute super."servant-cassava";
@@ -6731,6 +6782,7 @@ self: super: {
"snaplet-coffee" = dontDistribute super."snaplet-coffee";
"snaplet-css-min" = dontDistribute super."snaplet-css-min";
"snaplet-environments" = dontDistribute super."snaplet-environments";
+ "snaplet-fay" = doDistribute super."snaplet-fay_0_3_3_12";
"snaplet-ghcjs" = dontDistribute super."snaplet-ghcjs";
"snaplet-hasql" = dontDistribute super."snaplet-hasql";
"snaplet-haxl" = dontDistribute super."snaplet-haxl";
@@ -7016,6 +7068,7 @@ self: super: {
"swift-lda" = dontDistribute super."swift-lda";
"swish" = dontDistribute super."swish";
"sws" = dontDistribute super."sws";
+ "syb" = doDistribute super."syb_0_5_1";
"syb-extras" = dontDistribute super."syb-extras";
"syb-with-class" = dontDistribute super."syb-with-class";
"syb-with-class-instances-text" = dontDistribute super."syb-with-class-instances-text";
@@ -7384,6 +7437,7 @@ self: super: {
"turing-music" = dontDistribute super."turing-music";
"turkish-deasciifier" = dontDistribute super."turkish-deasciifier";
"turni" = dontDistribute super."turni";
+ "turtle" = doDistribute super."turtle_1_2_3";
"tweak" = dontDistribute super."tweak";
"twentefp" = dontDistribute super."twentefp";
"twentefp-eventloop-graphics" = dontDistribute super."twentefp-eventloop-graphics";
@@ -7451,6 +7505,7 @@ self: super: {
"typehash" = dontDistribute super."typehash";
"typelevel" = dontDistribute super."typelevel";
"typelevel-tensor" = dontDistribute super."typelevel-tensor";
+ "typelits-witnesses" = dontDistribute super."typelits-witnesses";
"typeof" = dontDistribute super."typeof";
"typeparams" = dontDistribute super."typeparams";
"typesafe-endian" = dontDistribute super."typesafe-endian";
@@ -7674,6 +7729,7 @@ self: super: {
"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" = dontDistribute super."vty";
@@ -7684,6 +7740,7 @@ self: super: {
"waddle" = dontDistribute super."waddle";
"wai" = doDistribute super."wai_3_0_4_0";
"wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi";
+ "wai-app-static" = doDistribute super."wai-app-static_3_1_3";
"wai-devel" = dontDistribute super."wai-devel";
"wai-digestive-functors" = dontDistribute super."wai-digestive-functors";
"wai-dispatch" = dontDistribute super."wai-dispatch";
@@ -7852,6 +7909,7 @@ self: super: {
"x-dsp" = dontDistribute super."x-dsp";
"x11-xim" = dontDistribute super."x11-xim";
"x11-xinput" = dontDistribute super."x11-xinput";
+ "x509-system" = doDistribute super."x509-system_1_6_1";
"x509-util" = dontDistribute super."x509-util";
"xattr" = dontDistribute super."xattr";
"xbattbar" = dontDistribute super."xbattbar";
@@ -7879,6 +7937,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_2";
"xml-conduit-parse" = dontDistribute super."xml-conduit-parse";
"xml-conduit-writer" = dontDistribute super."xml-conduit-writer";
"xml-enumerator" = dontDistribute super."xml-enumerator";
diff --git a/pkgs/development/haskell-modules/configuration-lts-3.16.nix b/pkgs/development/haskell-modules/configuration-lts-3.16.nix
index 2fa74f7262d..ec3c7dae2a8 100644
--- a/pkgs/development/haskell-modules/configuration-lts-3.16.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-3.16.nix
@@ -71,6 +71,7 @@ self: super: {
"Advgame" = dontDistribute super."Advgame";
"AesonBson" = dontDistribute super."AesonBson";
"Agata" = dontDistribute super."Agata";
+ "Agda" = doDistribute super."Agda_2_4_2_4";
"Agda-executable" = dontDistribute super."Agda-executable";
"AhoCorasick" = dontDistribute super."AhoCorasick";
"AlgorithmW" = dontDistribute super."AlgorithmW";
@@ -314,6 +315,7 @@ self: super: {
"FormalGrammars" = dontDistribute super."FormalGrammars";
"Foster" = dontDistribute super."Foster";
"FpMLv53" = dontDistribute super."FpMLv53";
+ "FractalArt" = dontDistribute super."FractalArt";
"Fractaler" = dontDistribute super."Fractaler";
"Frames" = dontDistribute super."Frames";
"Frank" = dontDistribute super."Frank";
@@ -463,6 +465,7 @@ self: super: {
"HTTP-Simple" = dontDistribute super."HTTP-Simple";
"HTab" = dontDistribute super."HTab";
"HTicTacToe" = dontDistribute super."HTicTacToe";
+ "HUnit" = doDistribute super."HUnit_1_2_5_2";
"HUnit-Diff" = dontDistribute super."HUnit-Diff";
"HUnit-Plus" = dontDistribute super."HUnit-Plus";
"HUnit-approx" = dontDistribute super."HUnit-approx";
@@ -494,6 +497,7 @@ self: super: {
"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";
@@ -1317,6 +1321,7 @@ self: super: {
"asic" = dontDistribute super."asic";
"asil" = dontDistribute super."asil";
"asn1-data" = dontDistribute super."asn1-data";
+ "asn1-types" = doDistribute super."asn1-types_0_3_1";
"asn1dump" = dontDistribute super."asn1dump";
"assembler" = dontDistribute super."assembler";
"assert" = dontDistribute super."assert";
@@ -1371,6 +1376,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_2_2";
"autonix-deps" = dontDistribute super."autonix-deps";
"autonix-deps-kf5" = dontDistribute super."autonix-deps-kf5";
"autoproc" = dontDistribute super."autoproc";
@@ -1433,6 +1439,8 @@ self: super: {
"base-generics" = dontDistribute super."base-generics";
"base-io-access" = dontDistribute super."base-io-access";
"base-noprelude" = dontDistribute super."base-noprelude";
+ "base-orphans" = doDistribute super."base-orphans_0_4_4";
+ "base-prelude" = doDistribute super."base-prelude_0_1_19";
"base32-bytestring" = dontDistribute super."base32-bytestring";
"base58-bytestring" = dontDistribute super."base58-bytestring";
"base58address" = dontDistribute super."base58address";
@@ -1476,6 +1484,7 @@ self: super: {
"bidirectionalization-combined" = dontDistribute super."bidirectionalization-combined";
"bidispec" = dontDistribute super."bidispec";
"bidispec-extras" = dontDistribute super."bidispec-extras";
+ "bifunctors" = doDistribute super."bifunctors_5";
"billboard-parser" = dontDistribute super."billboard-parser";
"billeksah-forms" = dontDistribute super."billeksah-forms";
"billeksah-main" = dontDistribute super."billeksah-main";
@@ -1636,6 +1645,7 @@ self: super: {
"bot" = dontDistribute super."bot";
"both" = dontDistribute super."both";
"botpp" = dontDistribute super."botpp";
+ "bound" = doDistribute super."bound_1_0_6";
"bound-gen" = dontDistribute super."bound-gen";
"bounded-tchan" = dontDistribute super."bounded-tchan";
"boundingboxes" = dontDistribute super."boundingboxes";
@@ -1658,6 +1668,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_0";
"buffer-builder-aeson" = dontDistribute super."buffer-builder-aeson";
"buffon" = dontDistribute super."buffon";
"bugzilla" = dontDistribute super."bugzilla";
@@ -1817,6 +1828,7 @@ self: super: {
"cef" = dontDistribute super."cef";
"ceilometer-common" = dontDistribute super."ceilometer-common";
"cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo";
+ "cerberus" = dontDistribute super."cerberus";
"cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_3";
"cereal-derive" = dontDistribute super."cereal-derive";
"cereal-enumerator" = dontDistribute super."cereal-enumerator";
@@ -1916,6 +1928,7 @@ self: super: {
"clipper" = dontDistribute super."clipper";
"clippings" = dontDistribute super."clippings";
"clist" = dontDistribute super."clist";
+ "clock" = doDistribute super."clock_0_5_1";
"clocked" = dontDistribute super."clocked";
"clogparse" = dontDistribute super."clogparse";
"clone-all" = dontDistribute super."clone-all";
@@ -2013,6 +2026,7 @@ self: super: {
"concrete-typerep" = dontDistribute super."concrete-typerep";
"concurrent-barrier" = dontDistribute super."concurrent-barrier";
"concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache";
+ "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9";
"concurrent-machines" = dontDistribute super."concurrent-machines";
"concurrent-output" = dontDistribute super."concurrent-output";
"concurrent-sa" = dontDistribute super."concurrent-sa";
@@ -2375,6 +2389,8 @@ self: super: {
"delta-h" = dontDistribute super."delta-h";
"demarcate" = dontDistribute super."demarcate";
"denominate" = dontDistribute super."denominate";
+ "dependent-map" = doDistribute super."dependent-map_0_1_1_3";
+ "dependent-sum" = doDistribute super."dependent-sum_0_2_1_0";
"depends" = dontDistribute super."depends";
"dephd" = dontDistribute super."dephd";
"dequeue" = dontDistribute super."dequeue";
@@ -2414,7 +2430,9 @@ self: super: {
"diagrams-pgf" = dontDistribute super."diagrams-pgf";
"diagrams-qrcode" = dontDistribute super."diagrams-qrcode";
"diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube";
+ "diagrams-svg" = doDistribute super."diagrams-svg_1_3_1_7";
"diagrams-tikz" = dontDistribute super."diagrams-tikz";
+ "dialog" = dontDistribute super."dialog";
"dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit";
"dicom" = dontDistribute super."dicom";
"dictparser" = dontDistribute super."dictparser";
@@ -2591,6 +2609,7 @@ self: super: {
"edenskel" = dontDistribute super."edenskel";
"edentv" = dontDistribute super."edentv";
"edge" = dontDistribute super."edge";
+ "edis" = dontDistribute super."edis";
"edit-distance-vector" = dontDistribute super."edit-distance-vector";
"edit-lenses" = dontDistribute super."edit-lenses";
"edit-lenses-demo" = dontDistribute super."edit-lenses-demo";
@@ -2767,6 +2786,7 @@ self: super: {
"failable-list" = dontDistribute super."failable-list";
"failure" = dontDistribute super."failure";
"fair-predicates" = dontDistribute super."fair-predicates";
+ "fake-type" = dontDistribute super."fake-type";
"faker" = dontDistribute super."faker";
"falling-turnip" = dontDistribute super."falling-turnip";
"fallingblocks" = dontDistribute super."fallingblocks";
@@ -2963,6 +2983,7 @@ self: super: {
"friday-juicypixels" = dontDistribute super."friday-juicypixels";
"friday-scale-dct" = dontDistribute super."friday-scale-dct";
"friendly-time" = dontDistribute super."friendly-time";
+ "frontmatter" = dontDistribute super."frontmatter";
"frp-arduino" = dontDistribute super."frp-arduino";
"frpnow" = dontDistribute super."frpnow";
"frpnow-gloss" = dontDistribute super."frpnow-gloss";
@@ -3169,6 +3190,7 @@ self: super: {
"gitlib-s3" = dontDistribute super."gitlib-s3";
"gitlib-sample" = dontDistribute super."gitlib-sample";
"gitlib-utils" = dontDistribute super."gitlib-utils";
+ "gitter" = dontDistribute super."gitter";
"gl-capture" = dontDistribute super."gl-capture";
"glade" = dontDistribute super."glade";
"gladexml-accessor" = dontDistribute super."gladexml-accessor";
@@ -3375,6 +3397,7 @@ self: super: {
"gstreamer" = dontDistribute super."gstreamer";
"gt-tools" = dontDistribute super."gt-tools";
"gtfs" = dontDistribute super."gtfs";
+ "gtk" = doDistribute super."gtk_0_13_9";
"gtk-helpers" = dontDistribute super."gtk-helpers";
"gtk-jsinput" = dontDistribute super."gtk-jsinput";
"gtk-largeTreeStore" = dontDistribute super."gtk-largeTreeStore";
@@ -3466,6 +3489,7 @@ self: super: {
"hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP";
"hackage-server" = dontDistribute super."hackage-server";
"hackage-sparks" = dontDistribute super."hackage-sparks";
+ "hackage-whatsnew" = dontDistribute super."hackage-whatsnew";
"hackage2hwn" = dontDistribute super."hackage2hwn";
"hackage2twitter" = dontDistribute super."hackage2twitter";
"hackager" = dontDistribute super."hackager";
@@ -3493,6 +3517,7 @@ self: super: {
"hake" = dontDistribute super."hake";
"hakismet" = dontDistribute super."hakismet";
"hako" = dontDistribute super."hako";
+ "hakyll" = doDistribute super."hakyll_4_7_4_0";
"hakyll-R" = dontDistribute super."hakyll-R";
"hakyll-agda" = dontDistribute super."hakyll-agda";
"hakyll-blaze-templates" = dontDistribute super."hakyll-blaze-templates";
@@ -3618,6 +3643,7 @@ self: super: {
"haskell-in-space" = dontDistribute super."haskell-in-space";
"haskell-modbus" = dontDistribute super."haskell-modbus";
"haskell-mpi" = dontDistribute super."haskell-mpi";
+ "haskell-names" = doDistribute super."haskell-names_0_5_3";
"haskell-openflow" = dontDistribute super."haskell-openflow";
"haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter";
"haskell-platform-test" = dontDistribute super."haskell-platform-test";
@@ -3691,6 +3717,7 @@ self: super: {
"hasloGUI" = dontDistribute super."hasloGUI";
"hasparql-client" = dontDistribute super."hasparql-client";
"haspell" = dontDistribute super."haspell";
+ "hasql" = doDistribute super."hasql_0_7_4";
"hasql-pool" = dontDistribute super."hasql-pool";
"hasql-postgres-options" = dontDistribute super."hasql-postgres-options";
"hasql-th" = dontDistribute super."hasql-th";
@@ -3900,6 +3927,8 @@ self: super: {
"hlibBladeRF" = dontDistribute super."hlibBladeRF";
"hlibev" = dontDistribute super."hlibev";
"hlibfam" = dontDistribute super."hlibfam";
+ "hlibgit2" = doDistribute super."hlibgit2_0_18_0_14";
+ "hlibsass" = doDistribute super."hlibsass_0_1_4_0";
"hlint" = doDistribute super."hlint_1_9_22";
"hlogger" = dontDistribute super."hlogger";
"hlongurl" = dontDistribute super."hlongurl";
@@ -4064,6 +4093,7 @@ self: super: {
"hsConfigure" = dontDistribute super."hsConfigure";
"hsSqlite3" = dontDistribute super."hsSqlite3";
"hsXenCtrl" = dontDistribute super."hsXenCtrl";
+ "hsass" = doDistribute super."hsass_0_3_0";
"hsay" = dontDistribute super."hsay";
"hsb2hs" = dontDistribute super."hsb2hs";
"hsbackup" = dontDistribute super."hsbackup";
@@ -4104,6 +4134,7 @@ self: super: {
"hsdip" = dontDistribute super."hsdip";
"hsdns" = dontDistribute super."hsdns";
"hsdns-cache" = dontDistribute super."hsdns-cache";
+ "hsebaysdk" = doDistribute super."hsebaysdk_0_3_0_0";
"hsemail-ns" = dontDistribute super."hsemail-ns";
"hsenv" = dontDistribute super."hsenv";
"hserv" = dontDistribute super."hserv";
@@ -4160,6 +4191,7 @@ self: super: {
"hspec-meta" = doDistribute super."hspec-meta_2_1_7";
"hspec-monad-control" = dontDistribute super."hspec-monad-control";
"hspec-server" = dontDistribute super."hspec-server";
+ "hspec-setup" = dontDistribute super."hspec-setup";
"hspec-shouldbe" = dontDistribute super."hspec-shouldbe";
"hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0";
"hspec-snap" = doDistribute super."hspec-snap_0_3_3_0";
@@ -4253,6 +4285,7 @@ self: super: {
"http-server" = dontDistribute super."http-server";
"http-shed" = dontDistribute super."http-shed";
"http-test" = dontDistribute super."http-test";
+ "http-types" = doDistribute super."http-types_0_8_6";
"http-wget" = dontDistribute super."http-wget";
"http2" = doDistribute super."http2_1_0_4";
"httpd-shed" = dontDistribute super."httpd-shed";
@@ -4378,6 +4411,7 @@ self: super: {
"imgurder" = dontDistribute super."imgurder";
"imm" = dontDistribute super."imm";
"imparse" = dontDistribute super."imparse";
+ "imperative-edsl" = dontDistribute super."imperative-edsl";
"imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl";
"implicit" = dontDistribute super."implicit";
"implicit-params" = dontDistribute super."implicit-params";
@@ -4550,6 +4584,7 @@ self: super: {
"jsmw" = dontDistribute super."jsmw";
"json-assertions" = dontDistribute super."json-assertions";
"json-b" = dontDistribute super."json-b";
+ "json-encoder" = dontDistribute super."json-encoder";
"json-enumerator" = dontDistribute super."json-enumerator";
"json-extra" = dontDistribute super."json-extra";
"json-fu" = dontDistribute super."json-fu";
@@ -4559,6 +4594,7 @@ self: super: {
"json-rpc" = dontDistribute super."json-rpc";
"json-rpc-client" = dontDistribute super."json-rpc-client";
"json-rpc-server" = dontDistribute super."json-rpc-server";
+ "json-schema" = doDistribute super."json-schema_0_7_4_0";
"json-sop" = dontDistribute super."json-sop";
"json-state" = dontDistribute super."json-state";
"json-stream" = dontDistribute super."json-stream";
@@ -4671,6 +4707,7 @@ self: super: {
"lambdacube-examples" = dontDistribute super."lambdacube-examples";
"lambdacube-gl" = dontDistribute super."lambdacube-gl";
"lambdacube-samples" = dontDistribute super."lambdacube-samples";
+ "lambdatex" = dontDistribute super."lambdatex";
"lambdatwit" = dontDistribute super."lambdatwit";
"lambdiff" = dontDistribute super."lambdiff";
"lame-tester" = dontDistribute super."lame-tester";
@@ -4710,6 +4747,7 @@ self: super: {
"language-thrift" = dontDistribute super."language-thrift";
"language-typescript" = dontDistribute super."language-typescript";
"language-vhdl" = dontDistribute super."language-vhdl";
+ "largeword" = doDistribute super."largeword_1_2_3";
"lat" = dontDistribute super."lat";
"latest-npm-version" = dontDistribute super."latest-npm-version";
"latex" = dontDistribute super."latex";
@@ -4854,8 +4892,10 @@ self: super: {
"liquidhaskell" = dontDistribute super."liquidhaskell";
"lispparser" = dontDistribute super."lispparser";
"list-extras" = dontDistribute super."list-extras";
+ "list-fusion-probe" = doDistribute super."list-fusion-probe_0_1_0_4";
"list-grouping" = dontDistribute super."list-grouping";
"list-mux" = dontDistribute super."list-mux";
+ "list-prompt" = dontDistribute super."list-prompt";
"list-remote-forwards" = dontDistribute super."list-remote-forwards";
"list-t-attoparsec" = dontDistribute super."list-t-attoparsec";
"list-t-html-parser" = dontDistribute super."list-t-html-parser";
@@ -4899,6 +4939,7 @@ self: super: {
"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-domain" = doDistribute super."log-domain_0_10_3";
@@ -4942,6 +4983,7 @@ self: super: {
"luautils" = dontDistribute super."luautils";
"lub" = dontDistribute super."lub";
"lucid-foundation" = dontDistribute super."lucid-foundation";
+ "lucid-svg" = doDistribute super."lucid-svg_0_5_0_0";
"lucienne" = dontDistribute super."lucienne";
"luhn" = dontDistribute super."luhn";
"lui" = dontDistribute super."lui";
@@ -5332,6 +5374,7 @@ self: super: {
"nbt" = dontDistribute super."nbt";
"nc-indicators" = dontDistribute super."nc-indicators";
"ncurses" = dontDistribute super."ncurses";
+ "ndjson-conduit" = doDistribute super."ndjson-conduit_0_1_0_2";
"neat" = dontDistribute super."neat";
"neat-interpolation" = doDistribute super."neat-interpolation_0_2_3";
"needle" = dontDistribute super."needle";
@@ -5503,6 +5546,7 @@ self: super: {
"omnifmt" = dontDistribute super."omnifmt";
"on-a-horse" = dontDistribute super."on-a-horse";
"on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel";
+ "once" = dontDistribute super."once";
"one-liner" = dontDistribute super."one-liner";
"one-time-password" = dontDistribute super."one-time-password";
"oneOfN" = dontDistribute super."oneOfN";
@@ -5556,6 +5600,7 @@ self: super: {
"optimusprime" = dontDistribute super."optimusprime";
"optional" = dontDistribute super."optional";
"options-time" = dontDistribute super."options-time";
+ "optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"orc" = dontDistribute super."orc";
"orchestrate" = dontDistribute super."orchestrate";
@@ -5738,6 +5783,7 @@ self: super: {
"pgstream" = dontDistribute super."pgstream";
"phasechange" = dontDistribute super."phasechange";
"phizzle" = dontDistribute super."phizzle";
+ "phoityne" = dontDistribute super."phoityne";
"phone-numbers" = dontDistribute super."phone-numbers";
"phone-push" = dontDistribute super."phone-push";
"phonetic-code" = dontDistribute super."phonetic-code";
@@ -5757,6 +5803,7 @@ self: super: {
"pinchot" = dontDistribute super."pinchot";
"pipe-enumerator" = dontDistribute super."pipe-enumerator";
"pipeclip" = dontDistribute super."pipeclip";
+ "pipes-aeson" = doDistribute super."pipes-aeson_0_4_1_4";
"pipes-async" = dontDistribute super."pipes-async";
"pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming";
"pipes-cacophony" = dontDistribute super."pipes-cacophony";
@@ -5764,6 +5811,7 @@ self: super: {
"pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv";
"pipes-cereal" = dontDistribute super."pipes-cereal";
"pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus";
+ "pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_3";
"pipes-conduit" = dontDistribute super."pipes-conduit";
"pipes-core" = dontDistribute super."pipes-core";
"pipes-courier" = dontDistribute super."pipes-courier";
@@ -5871,6 +5919,7 @@ self: super: {
"possible" = dontDistribute super."possible";
"post-mess-age" = doDistribute super."post-mess-age_0_1_0_0";
"postcodes" = dontDistribute super."postcodes";
+ "postgresql-binary" = doDistribute super."postgresql-binary_0_5_2_1";
"postgresql-config" = dontDistribute super."postgresql-config";
"postgresql-connector" = dontDistribute super."postgresql-connector";
"postgresql-copy-escape" = dontDistribute super."postgresql-copy-escape";
@@ -6294,6 +6343,7 @@ self: super: {
"rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster";
"retry" = doDistribute super."retry_0_6";
"retryer" = dontDistribute super."retryer";
+ "rev-state" = doDistribute super."rev-state_0_1";
"revdectime" = dontDistribute super."revdectime";
"reverse-apply" = dontDistribute super."reverse-apply";
"reverse-geocoding" = dontDistribute super."reverse-geocoding";
@@ -6519,6 +6569,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serv" = dontDistribute super."serv";
"servant-JuicyPixels" = doDistribute super."servant-JuicyPixels_0_1_0_0";
"servant-blaze" = dontDistribute super."servant-blaze";
"servant-cassava" = dontDistribute super."servant-cassava";
@@ -6719,6 +6770,7 @@ self: super: {
"snaplet-coffee" = dontDistribute super."snaplet-coffee";
"snaplet-css-min" = dontDistribute super."snaplet-css-min";
"snaplet-environments" = dontDistribute super."snaplet-environments";
+ "snaplet-fay" = doDistribute super."snaplet-fay_0_3_3_12";
"snaplet-ghcjs" = dontDistribute super."snaplet-ghcjs";
"snaplet-hasql" = dontDistribute super."snaplet-hasql";
"snaplet-haxl" = dontDistribute super."snaplet-haxl";
@@ -7003,6 +7055,7 @@ self: super: {
"swift-lda" = dontDistribute super."swift-lda";
"swish" = dontDistribute super."swish";
"sws" = dontDistribute super."sws";
+ "syb" = doDistribute super."syb_0_5_1";
"syb-extras" = dontDistribute super."syb-extras";
"syb-with-class" = dontDistribute super."syb-with-class";
"syb-with-class-instances-text" = dontDistribute super."syb-with-class-instances-text";
@@ -7368,6 +7421,7 @@ self: super: {
"turing-music" = dontDistribute super."turing-music";
"turkish-deasciifier" = dontDistribute super."turkish-deasciifier";
"turni" = dontDistribute super."turni";
+ "turtle" = doDistribute super."turtle_1_2_3";
"tweak" = dontDistribute super."tweak";
"twentefp" = dontDistribute super."twentefp";
"twentefp-eventloop-graphics" = dontDistribute super."twentefp-eventloop-graphics";
@@ -7435,6 +7489,7 @@ self: super: {
"typehash" = dontDistribute super."typehash";
"typelevel" = dontDistribute super."typelevel";
"typelevel-tensor" = dontDistribute super."typelevel-tensor";
+ "typelits-witnesses" = dontDistribute super."typelits-witnesses";
"typeof" = dontDistribute super."typeof";
"typeparams" = dontDistribute super."typeparams";
"typesafe-endian" = dontDistribute super."typesafe-endian";
@@ -7658,6 +7713,7 @@ self: super: {
"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" = dontDistribute super."vty";
@@ -7668,6 +7724,7 @@ self: super: {
"waddle" = dontDistribute super."waddle";
"wai" = doDistribute super."wai_3_0_4_0";
"wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi";
+ "wai-app-static" = doDistribute super."wai-app-static_3_1_3";
"wai-devel" = dontDistribute super."wai-devel";
"wai-digestive-functors" = dontDistribute super."wai-digestive-functors";
"wai-dispatch" = dontDistribute super."wai-dispatch";
@@ -7836,6 +7893,7 @@ self: super: {
"x-dsp" = dontDistribute super."x-dsp";
"x11-xim" = dontDistribute super."x11-xim";
"x11-xinput" = dontDistribute super."x11-xinput";
+ "x509-system" = doDistribute super."x509-system_1_6_1";
"x509-util" = dontDistribute super."x509-util";
"xattr" = dontDistribute super."xattr";
"xbattbar" = dontDistribute super."xbattbar";
@@ -7859,9 +7917,11 @@ self: super: {
"xinput-conduit" = dontDistribute super."xinput-conduit";
"xkbcommon" = dontDistribute super."xkbcommon";
"xkcd" = dontDistribute super."xkcd";
+ "xlsx" = doDistribute super."xlsx_0_1_2";
"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_2";
"xml-conduit-parse" = dontDistribute super."xml-conduit-parse";
"xml-conduit-writer" = dontDistribute super."xml-conduit-writer";
"xml-enumerator" = dontDistribute super."xml-enumerator";
diff --git a/pkgs/development/haskell-modules/configuration-lts-3.17.nix b/pkgs/development/haskell-modules/configuration-lts-3.17.nix
index 279cfaedde9..9c402b10e5b 100644
--- a/pkgs/development/haskell-modules/configuration-lts-3.17.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-3.17.nix
@@ -71,6 +71,7 @@ self: super: {
"Advgame" = dontDistribute super."Advgame";
"AesonBson" = dontDistribute super."AesonBson";
"Agata" = dontDistribute super."Agata";
+ "Agda" = doDistribute super."Agda_2_4_2_4";
"Agda-executable" = dontDistribute super."Agda-executable";
"AhoCorasick" = dontDistribute super."AhoCorasick";
"AlgorithmW" = dontDistribute super."AlgorithmW";
@@ -314,6 +315,7 @@ self: super: {
"FormalGrammars" = dontDistribute super."FormalGrammars";
"Foster" = dontDistribute super."Foster";
"FpMLv53" = dontDistribute super."FpMLv53";
+ "FractalArt" = dontDistribute super."FractalArt";
"Fractaler" = dontDistribute super."Fractaler";
"Frames" = dontDistribute super."Frames";
"Frank" = dontDistribute super."Frank";
@@ -462,6 +464,7 @@ self: super: {
"HTTP-Simple" = dontDistribute super."HTTP-Simple";
"HTab" = dontDistribute super."HTab";
"HTicTacToe" = dontDistribute super."HTicTacToe";
+ "HUnit" = doDistribute super."HUnit_1_2_5_2";
"HUnit-Diff" = dontDistribute super."HUnit-Diff";
"HUnit-Plus" = dontDistribute super."HUnit-Plus";
"HUnit-approx" = dontDistribute super."HUnit-approx";
@@ -493,6 +496,7 @@ self: super: {
"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";
@@ -1313,6 +1317,7 @@ self: super: {
"asic" = dontDistribute super."asic";
"asil" = dontDistribute super."asil";
"asn1-data" = dontDistribute super."asn1-data";
+ "asn1-types" = doDistribute super."asn1-types_0_3_1";
"asn1dump" = dontDistribute super."asn1dump";
"assembler" = dontDistribute super."assembler";
"assert" = dontDistribute super."assert";
@@ -1367,6 +1372,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_2_2";
"autonix-deps" = dontDistribute super."autonix-deps";
"autonix-deps-kf5" = dontDistribute super."autonix-deps-kf5";
"autoproc" = dontDistribute super."autoproc";
@@ -1429,6 +1435,8 @@ self: super: {
"base-generics" = dontDistribute super."base-generics";
"base-io-access" = dontDistribute super."base-io-access";
"base-noprelude" = dontDistribute super."base-noprelude";
+ "base-orphans" = doDistribute super."base-orphans_0_4_4";
+ "base-prelude" = doDistribute super."base-prelude_0_1_19";
"base32-bytestring" = dontDistribute super."base32-bytestring";
"base58-bytestring" = dontDistribute super."base58-bytestring";
"base58address" = dontDistribute super."base58address";
@@ -1472,6 +1480,7 @@ self: super: {
"bidirectionalization-combined" = dontDistribute super."bidirectionalization-combined";
"bidispec" = dontDistribute super."bidispec";
"bidispec-extras" = dontDistribute super."bidispec-extras";
+ "bifunctors" = doDistribute super."bifunctors_5";
"billboard-parser" = dontDistribute super."billboard-parser";
"billeksah-forms" = dontDistribute super."billeksah-forms";
"billeksah-main" = dontDistribute super."billeksah-main";
@@ -1632,6 +1641,7 @@ self: super: {
"bot" = dontDistribute super."bot";
"both" = dontDistribute super."both";
"botpp" = dontDistribute super."botpp";
+ "bound" = doDistribute super."bound_1_0_6";
"bound-gen" = dontDistribute super."bound-gen";
"bounded-tchan" = dontDistribute super."bounded-tchan";
"boundingboxes" = dontDistribute super."boundingboxes";
@@ -1654,6 +1664,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_0";
"buffer-builder-aeson" = dontDistribute super."buffer-builder-aeson";
"buffon" = dontDistribute super."buffon";
"bugzilla" = dontDistribute super."bugzilla";
@@ -1812,6 +1823,7 @@ self: super: {
"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";
@@ -1910,6 +1922,7 @@ self: super: {
"clipper" = dontDistribute super."clipper";
"clippings" = dontDistribute super."clippings";
"clist" = dontDistribute super."clist";
+ "clock" = doDistribute super."clock_0_5_1";
"clocked" = dontDistribute super."clocked";
"clogparse" = dontDistribute super."clogparse";
"clone-all" = dontDistribute super."clone-all";
@@ -2007,6 +2020,7 @@ self: super: {
"concrete-typerep" = dontDistribute super."concrete-typerep";
"concurrent-barrier" = dontDistribute super."concurrent-barrier";
"concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache";
+ "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9";
"concurrent-machines" = dontDistribute super."concurrent-machines";
"concurrent-output" = dontDistribute super."concurrent-output";
"concurrent-sa" = dontDistribute super."concurrent-sa";
@@ -2367,6 +2381,8 @@ self: super: {
"delta-h" = dontDistribute super."delta-h";
"demarcate" = dontDistribute super."demarcate";
"denominate" = dontDistribute super."denominate";
+ "dependent-map" = doDistribute super."dependent-map_0_1_1_3";
+ "dependent-sum" = doDistribute super."dependent-sum_0_2_1_0";
"depends" = dontDistribute super."depends";
"dephd" = dontDistribute super."dephd";
"dequeue" = dontDistribute super."dequeue";
@@ -2405,7 +2421,9 @@ self: super: {
"diagrams-pgf" = dontDistribute super."diagrams-pgf";
"diagrams-qrcode" = dontDistribute super."diagrams-qrcode";
"diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube";
+ "diagrams-svg" = doDistribute super."diagrams-svg_1_3_1_7";
"diagrams-tikz" = dontDistribute super."diagrams-tikz";
+ "dialog" = dontDistribute super."dialog";
"dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit";
"dicom" = dontDistribute super."dicom";
"dictparser" = dontDistribute super."dictparser";
@@ -2582,6 +2600,7 @@ self: super: {
"edenskel" = dontDistribute super."edenskel";
"edentv" = dontDistribute super."edentv";
"edge" = dontDistribute super."edge";
+ "edis" = dontDistribute super."edis";
"edit-distance-vector" = dontDistribute super."edit-distance-vector";
"edit-lenses" = dontDistribute super."edit-lenses";
"edit-lenses-demo" = dontDistribute super."edit-lenses-demo";
@@ -2758,6 +2777,7 @@ self: super: {
"failable-list" = dontDistribute super."failable-list";
"failure" = dontDistribute super."failure";
"fair-predicates" = dontDistribute super."fair-predicates";
+ "fake-type" = dontDistribute super."fake-type";
"faker" = dontDistribute super."faker";
"falling-turnip" = dontDistribute super."falling-turnip";
"fallingblocks" = dontDistribute super."fallingblocks";
@@ -2954,6 +2974,7 @@ self: super: {
"friday-juicypixels" = dontDistribute super."friday-juicypixels";
"friday-scale-dct" = dontDistribute super."friday-scale-dct";
"friendly-time" = dontDistribute super."friendly-time";
+ "frontmatter" = dontDistribute super."frontmatter";
"frp-arduino" = dontDistribute super."frp-arduino";
"frpnow" = dontDistribute super."frpnow";
"frpnow-gloss" = dontDistribute super."frpnow-gloss";
@@ -3160,6 +3181,7 @@ self: super: {
"gitlib-s3" = dontDistribute super."gitlib-s3";
"gitlib-sample" = dontDistribute super."gitlib-sample";
"gitlib-utils" = dontDistribute super."gitlib-utils";
+ "gitter" = dontDistribute super."gitter";
"gl-capture" = dontDistribute super."gl-capture";
"glade" = dontDistribute super."glade";
"gladexml-accessor" = dontDistribute super."gladexml-accessor";
@@ -3366,6 +3388,7 @@ self: super: {
"gstreamer" = dontDistribute super."gstreamer";
"gt-tools" = dontDistribute super."gt-tools";
"gtfs" = dontDistribute super."gtfs";
+ "gtk" = doDistribute super."gtk_0_13_9";
"gtk-helpers" = dontDistribute super."gtk-helpers";
"gtk-jsinput" = dontDistribute super."gtk-jsinput";
"gtk-largeTreeStore" = dontDistribute super."gtk-largeTreeStore";
@@ -3456,6 +3479,7 @@ self: super: {
"hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP";
"hackage-server" = dontDistribute super."hackage-server";
"hackage-sparks" = dontDistribute super."hackage-sparks";
+ "hackage-whatsnew" = dontDistribute super."hackage-whatsnew";
"hackage2hwn" = dontDistribute super."hackage2hwn";
"hackage2twitter" = dontDistribute super."hackage2twitter";
"hackager" = dontDistribute super."hackager";
@@ -3483,6 +3507,7 @@ self: super: {
"hake" = dontDistribute super."hake";
"hakismet" = dontDistribute super."hakismet";
"hako" = dontDistribute super."hako";
+ "hakyll" = doDistribute super."hakyll_4_7_4_0";
"hakyll-R" = dontDistribute super."hakyll-R";
"hakyll-agda" = dontDistribute super."hakyll-agda";
"hakyll-blaze-templates" = dontDistribute super."hakyll-blaze-templates";
@@ -3608,6 +3633,7 @@ self: super: {
"haskell-in-space" = dontDistribute super."haskell-in-space";
"haskell-modbus" = dontDistribute super."haskell-modbus";
"haskell-mpi" = dontDistribute super."haskell-mpi";
+ "haskell-names" = doDistribute super."haskell-names_0_5_3";
"haskell-openflow" = dontDistribute super."haskell-openflow";
"haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter";
"haskell-platform-test" = dontDistribute super."haskell-platform-test";
@@ -3681,6 +3707,7 @@ self: super: {
"hasloGUI" = dontDistribute super."hasloGUI";
"hasparql-client" = dontDistribute super."hasparql-client";
"haspell" = dontDistribute super."haspell";
+ "hasql" = doDistribute super."hasql_0_7_4";
"hasql-pool" = dontDistribute super."hasql-pool";
"hasql-postgres-options" = dontDistribute super."hasql-postgres-options";
"hasql-th" = dontDistribute super."hasql-th";
@@ -3890,6 +3917,8 @@ self: super: {
"hlibBladeRF" = dontDistribute super."hlibBladeRF";
"hlibev" = dontDistribute super."hlibev";
"hlibfam" = dontDistribute super."hlibfam";
+ "hlibgit2" = doDistribute super."hlibgit2_0_18_0_14";
+ "hlibsass" = doDistribute super."hlibsass_0_1_4_0";
"hlint" = doDistribute super."hlint_1_9_22";
"hlogger" = dontDistribute super."hlogger";
"hlongurl" = dontDistribute super."hlongurl";
@@ -4054,6 +4083,7 @@ self: super: {
"hsConfigure" = dontDistribute super."hsConfigure";
"hsSqlite3" = dontDistribute super."hsSqlite3";
"hsXenCtrl" = dontDistribute super."hsXenCtrl";
+ "hsass" = doDistribute super."hsass_0_3_0";
"hsay" = dontDistribute super."hsay";
"hsb2hs" = dontDistribute super."hsb2hs";
"hsbackup" = dontDistribute super."hsbackup";
@@ -4094,6 +4124,7 @@ self: super: {
"hsdip" = dontDistribute super."hsdip";
"hsdns" = dontDistribute super."hsdns";
"hsdns-cache" = dontDistribute super."hsdns-cache";
+ "hsebaysdk" = doDistribute super."hsebaysdk_0_3_0_0";
"hsemail-ns" = dontDistribute super."hsemail-ns";
"hsenv" = dontDistribute super."hsenv";
"hserv" = dontDistribute super."hserv";
@@ -4150,6 +4181,7 @@ self: super: {
"hspec-meta" = doDistribute super."hspec-meta_2_1_7";
"hspec-monad-control" = dontDistribute super."hspec-monad-control";
"hspec-server" = dontDistribute super."hspec-server";
+ "hspec-setup" = dontDistribute super."hspec-setup";
"hspec-shouldbe" = dontDistribute super."hspec-shouldbe";
"hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0";
"hspec-snap" = doDistribute super."hspec-snap_0_3_3_0";
@@ -4243,6 +4275,7 @@ self: super: {
"http-server" = dontDistribute super."http-server";
"http-shed" = dontDistribute super."http-shed";
"http-test" = dontDistribute super."http-test";
+ "http-types" = doDistribute super."http-types_0_8_6";
"http-wget" = dontDistribute super."http-wget";
"http2" = doDistribute super."http2_1_0_4";
"httpd-shed" = dontDistribute super."httpd-shed";
@@ -4368,6 +4401,7 @@ self: super: {
"imgurder" = dontDistribute super."imgurder";
"imm" = dontDistribute super."imm";
"imparse" = dontDistribute super."imparse";
+ "imperative-edsl" = dontDistribute super."imperative-edsl";
"imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl";
"implicit" = dontDistribute super."implicit";
"implicit-params" = dontDistribute super."implicit-params";
@@ -4538,6 +4572,7 @@ self: super: {
"jsmw" = dontDistribute super."jsmw";
"json-assertions" = dontDistribute super."json-assertions";
"json-b" = dontDistribute super."json-b";
+ "json-encoder" = dontDistribute super."json-encoder";
"json-enumerator" = dontDistribute super."json-enumerator";
"json-extra" = dontDistribute super."json-extra";
"json-fu" = dontDistribute super."json-fu";
@@ -4547,6 +4582,7 @@ self: super: {
"json-rpc" = dontDistribute super."json-rpc";
"json-rpc-client" = dontDistribute super."json-rpc-client";
"json-rpc-server" = dontDistribute super."json-rpc-server";
+ "json-schema" = doDistribute super."json-schema_0_7_4_0";
"json-sop" = dontDistribute super."json-sop";
"json-state" = dontDistribute super."json-state";
"json-stream" = dontDistribute super."json-stream";
@@ -4659,6 +4695,7 @@ self: super: {
"lambdacube-examples" = dontDistribute super."lambdacube-examples";
"lambdacube-gl" = dontDistribute super."lambdacube-gl";
"lambdacube-samples" = dontDistribute super."lambdacube-samples";
+ "lambdatex" = dontDistribute super."lambdatex";
"lambdatwit" = dontDistribute super."lambdatwit";
"lambdiff" = dontDistribute super."lambdiff";
"lame-tester" = dontDistribute super."lame-tester";
@@ -4698,6 +4735,7 @@ self: super: {
"language-thrift" = dontDistribute super."language-thrift";
"language-typescript" = dontDistribute super."language-typescript";
"language-vhdl" = dontDistribute super."language-vhdl";
+ "largeword" = doDistribute super."largeword_1_2_3";
"lat" = dontDistribute super."lat";
"latest-npm-version" = dontDistribute super."latest-npm-version";
"latex" = dontDistribute super."latex";
@@ -4842,8 +4880,10 @@ self: super: {
"liquidhaskell" = dontDistribute super."liquidhaskell";
"lispparser" = dontDistribute super."lispparser";
"list-extras" = dontDistribute super."list-extras";
+ "list-fusion-probe" = doDistribute super."list-fusion-probe_0_1_0_4";
"list-grouping" = dontDistribute super."list-grouping";
"list-mux" = dontDistribute super."list-mux";
+ "list-prompt" = dontDistribute super."list-prompt";
"list-remote-forwards" = dontDistribute super."list-remote-forwards";
"list-t-attoparsec" = dontDistribute super."list-t-attoparsec";
"list-t-html-parser" = dontDistribute super."list-t-html-parser";
@@ -4887,6 +4927,7 @@ self: super: {
"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";
@@ -4929,6 +4970,7 @@ self: super: {
"luautils" = dontDistribute super."luautils";
"lub" = dontDistribute super."lub";
"lucid-foundation" = dontDistribute super."lucid-foundation";
+ "lucid-svg" = doDistribute super."lucid-svg_0_5_0_0";
"lucienne" = dontDistribute super."lucienne";
"luhn" = dontDistribute super."luhn";
"lui" = dontDistribute super."lui";
@@ -5318,6 +5360,7 @@ self: super: {
"nbt" = dontDistribute super."nbt";
"nc-indicators" = dontDistribute super."nc-indicators";
"ncurses" = dontDistribute super."ncurses";
+ "ndjson-conduit" = doDistribute super."ndjson-conduit_0_1_0_2";
"neat" = dontDistribute super."neat";
"neat-interpolation" = doDistribute super."neat-interpolation_0_2_3";
"needle" = dontDistribute super."needle";
@@ -5489,6 +5532,7 @@ self: super: {
"omnifmt" = dontDistribute super."omnifmt";
"on-a-horse" = dontDistribute super."on-a-horse";
"on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel";
+ "once" = dontDistribute super."once";
"one-liner" = dontDistribute super."one-liner";
"one-time-password" = dontDistribute super."one-time-password";
"oneOfN" = dontDistribute super."oneOfN";
@@ -5542,6 +5586,7 @@ self: super: {
"optimusprime" = dontDistribute super."optimusprime";
"optional" = dontDistribute super."optional";
"options-time" = dontDistribute super."options-time";
+ "optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"orc" = dontDistribute super."orc";
"orchestrate" = dontDistribute super."orchestrate";
@@ -5693,6 +5738,7 @@ self: super: {
"persist2er" = dontDistribute super."persist2er";
"persistable-record" = dontDistribute super."persistable-record";
"persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg";
+ "persistent" = doDistribute super."persistent_2_2_3";
"persistent-cereal" = dontDistribute super."persistent-cereal";
"persistent-equivalence" = dontDistribute super."persistent-equivalence";
"persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp";
@@ -5722,6 +5768,7 @@ self: super: {
"pgstream" = dontDistribute super."pgstream";
"phasechange" = dontDistribute super."phasechange";
"phizzle" = dontDistribute super."phizzle";
+ "phoityne" = dontDistribute super."phoityne";
"phone-numbers" = dontDistribute super."phone-numbers";
"phone-push" = dontDistribute super."phone-push";
"phonetic-code" = dontDistribute super."phonetic-code";
@@ -5741,6 +5788,7 @@ self: super: {
"pinchot" = dontDistribute super."pinchot";
"pipe-enumerator" = dontDistribute super."pipe-enumerator";
"pipeclip" = dontDistribute super."pipeclip";
+ "pipes-aeson" = doDistribute super."pipes-aeson_0_4_1_4";
"pipes-async" = dontDistribute super."pipes-async";
"pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming";
"pipes-cacophony" = dontDistribute super."pipes-cacophony";
@@ -5748,6 +5796,7 @@ self: super: {
"pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv";
"pipes-cereal" = dontDistribute super."pipes-cereal";
"pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus";
+ "pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_3";
"pipes-conduit" = dontDistribute super."pipes-conduit";
"pipes-core" = dontDistribute super."pipes-core";
"pipes-courier" = dontDistribute super."pipes-courier";
@@ -5855,6 +5904,7 @@ self: super: {
"possible" = dontDistribute super."possible";
"post-mess-age" = doDistribute super."post-mess-age_0_1_0_0";
"postcodes" = dontDistribute super."postcodes";
+ "postgresql-binary" = doDistribute super."postgresql-binary_0_5_2_1";
"postgresql-config" = dontDistribute super."postgresql-config";
"postgresql-connector" = dontDistribute super."postgresql-connector";
"postgresql-copy-escape" = dontDistribute super."postgresql-copy-escape";
@@ -6276,6 +6326,7 @@ self: super: {
"rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster";
"retry" = doDistribute super."retry_0_6";
"retryer" = dontDistribute super."retryer";
+ "rev-state" = doDistribute super."rev-state_0_1";
"revdectime" = dontDistribute super."revdectime";
"reverse-apply" = dontDistribute super."reverse-apply";
"reverse-geocoding" = dontDistribute super."reverse-geocoding";
@@ -6501,6 +6552,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serv" = dontDistribute super."serv";
"servant-JuicyPixels" = doDistribute super."servant-JuicyPixels_0_1_0_0";
"servant-blaze" = dontDistribute super."servant-blaze";
"servant-cassava" = dontDistribute super."servant-cassava";
@@ -6701,6 +6753,7 @@ self: super: {
"snaplet-coffee" = dontDistribute super."snaplet-coffee";
"snaplet-css-min" = dontDistribute super."snaplet-css-min";
"snaplet-environments" = dontDistribute super."snaplet-environments";
+ "snaplet-fay" = doDistribute super."snaplet-fay_0_3_3_12";
"snaplet-ghcjs" = dontDistribute super."snaplet-ghcjs";
"snaplet-hasql" = dontDistribute super."snaplet-hasql";
"snaplet-haxl" = dontDistribute super."snaplet-haxl";
@@ -6985,6 +7038,7 @@ self: super: {
"swift-lda" = dontDistribute super."swift-lda";
"swish" = dontDistribute super."swish";
"sws" = dontDistribute super."sws";
+ "syb" = doDistribute super."syb_0_5_1";
"syb-extras" = dontDistribute super."syb-extras";
"syb-with-class" = dontDistribute super."syb-with-class";
"syb-with-class-instances-text" = dontDistribute super."syb-with-class-instances-text";
@@ -7350,6 +7404,7 @@ self: super: {
"turing-music" = dontDistribute super."turing-music";
"turkish-deasciifier" = dontDistribute super."turkish-deasciifier";
"turni" = dontDistribute super."turni";
+ "turtle" = doDistribute super."turtle_1_2_3";
"tweak" = dontDistribute super."tweak";
"twentefp" = dontDistribute super."twentefp";
"twentefp-eventloop-graphics" = dontDistribute super."twentefp-eventloop-graphics";
@@ -7417,6 +7472,7 @@ self: super: {
"typehash" = dontDistribute super."typehash";
"typelevel" = dontDistribute super."typelevel";
"typelevel-tensor" = dontDistribute super."typelevel-tensor";
+ "typelits-witnesses" = dontDistribute super."typelits-witnesses";
"typeof" = dontDistribute super."typeof";
"typeparams" = dontDistribute super."typeparams";
"typesafe-endian" = dontDistribute super."typesafe-endian";
@@ -7639,6 +7695,7 @@ self: super: {
"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" = dontDistribute super."vty";
@@ -7649,6 +7706,7 @@ self: super: {
"waddle" = dontDistribute super."waddle";
"wai" = doDistribute super."wai_3_0_4_0";
"wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi";
+ "wai-app-static" = doDistribute super."wai-app-static_3_1_3";
"wai-devel" = dontDistribute super."wai-devel";
"wai-digestive-functors" = dontDistribute super."wai-digestive-functors";
"wai-dispatch" = dontDistribute super."wai-dispatch";
@@ -7816,6 +7874,7 @@ self: super: {
"x-dsp" = dontDistribute super."x-dsp";
"x11-xim" = dontDistribute super."x11-xim";
"x11-xinput" = dontDistribute super."x11-xinput";
+ "x509-system" = doDistribute super."x509-system_1_6_1";
"x509-util" = dontDistribute super."x509-util";
"xattr" = dontDistribute super."xattr";
"xbattbar" = dontDistribute super."xbattbar";
@@ -7839,9 +7898,11 @@ self: super: {
"xinput-conduit" = dontDistribute super."xinput-conduit";
"xkbcommon" = dontDistribute super."xkbcommon";
"xkcd" = dontDistribute super."xkcd";
+ "xlsx" = doDistribute super."xlsx_0_1_2";
"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_2";
"xml-conduit-parse" = dontDistribute super."xml-conduit-parse";
"xml-conduit-writer" = dontDistribute super."xml-conduit-writer";
"xml-enumerator" = dontDistribute super."xml-enumerator";
@@ -7939,6 +8000,7 @@ self: super: {
"yesod-comments" = dontDistribute super."yesod-comments";
"yesod-content-pdf" = dontDistribute super."yesod-content-pdf";
"yesod-continuations" = dontDistribute super."yesod-continuations";
+ "yesod-core" = doDistribute super."yesod-core_1_4_17";
"yesod-crud" = dontDistribute super."yesod-crud";
"yesod-crud-persist" = dontDistribute super."yesod-crud-persist";
"yesod-csp" = dontDistribute super."yesod-csp";
diff --git a/pkgs/development/haskell-modules/configuration-lts-3.18.nix b/pkgs/development/haskell-modules/configuration-lts-3.18.nix
index d4b51cdc561..dca96a944ae 100644
--- a/pkgs/development/haskell-modules/configuration-lts-3.18.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-3.18.nix
@@ -71,6 +71,7 @@ self: super: {
"Advgame" = dontDistribute super."Advgame";
"AesonBson" = dontDistribute super."AesonBson";
"Agata" = dontDistribute super."Agata";
+ "Agda" = doDistribute super."Agda_2_4_2_4";
"Agda-executable" = dontDistribute super."Agda-executable";
"AhoCorasick" = dontDistribute super."AhoCorasick";
"AlgorithmW" = dontDistribute super."AlgorithmW";
@@ -314,6 +315,7 @@ self: super: {
"FormalGrammars" = dontDistribute super."FormalGrammars";
"Foster" = dontDistribute super."Foster";
"FpMLv53" = dontDistribute super."FpMLv53";
+ "FractalArt" = dontDistribute super."FractalArt";
"Fractaler" = dontDistribute super."Fractaler";
"Frames" = dontDistribute super."Frames";
"Frank" = dontDistribute super."Frank";
@@ -462,6 +464,7 @@ self: super: {
"HTTP-Simple" = dontDistribute super."HTTP-Simple";
"HTab" = dontDistribute super."HTab";
"HTicTacToe" = dontDistribute super."HTicTacToe";
+ "HUnit" = doDistribute super."HUnit_1_2_5_2";
"HUnit-Diff" = dontDistribute super."HUnit-Diff";
"HUnit-Plus" = dontDistribute super."HUnit-Plus";
"HUnit-approx" = dontDistribute super."HUnit-approx";
@@ -493,6 +496,7 @@ self: super: {
"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";
@@ -1313,6 +1317,7 @@ self: super: {
"asic" = dontDistribute super."asic";
"asil" = dontDistribute super."asil";
"asn1-data" = dontDistribute super."asn1-data";
+ "asn1-types" = doDistribute super."asn1-types_0_3_1";
"asn1dump" = dontDistribute super."asn1dump";
"assembler" = dontDistribute super."assembler";
"assert" = dontDistribute super."assert";
@@ -1367,6 +1372,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_2_2";
"autonix-deps" = dontDistribute super."autonix-deps";
"autonix-deps-kf5" = dontDistribute super."autonix-deps-kf5";
"autoproc" = dontDistribute super."autoproc";
@@ -1429,6 +1435,8 @@ self: super: {
"base-generics" = dontDistribute super."base-generics";
"base-io-access" = dontDistribute super."base-io-access";
"base-noprelude" = dontDistribute super."base-noprelude";
+ "base-orphans" = doDistribute super."base-orphans_0_4_4";
+ "base-prelude" = doDistribute super."base-prelude_0_1_19";
"base32-bytestring" = dontDistribute super."base32-bytestring";
"base58-bytestring" = dontDistribute super."base58-bytestring";
"base58address" = dontDistribute super."base58address";
@@ -1472,6 +1480,7 @@ self: super: {
"bidirectionalization-combined" = dontDistribute super."bidirectionalization-combined";
"bidispec" = dontDistribute super."bidispec";
"bidispec-extras" = dontDistribute super."bidispec-extras";
+ "bifunctors" = doDistribute super."bifunctors_5";
"billboard-parser" = dontDistribute super."billboard-parser";
"billeksah-forms" = dontDistribute super."billeksah-forms";
"billeksah-main" = dontDistribute super."billeksah-main";
@@ -1632,6 +1641,7 @@ self: super: {
"bot" = dontDistribute super."bot";
"both" = dontDistribute super."both";
"botpp" = dontDistribute super."botpp";
+ "bound" = doDistribute super."bound_1_0_6";
"bound-gen" = dontDistribute super."bound-gen";
"bounded-tchan" = dontDistribute super."bounded-tchan";
"boundingboxes" = dontDistribute super."boundingboxes";
@@ -1654,6 +1664,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_0";
"buffer-builder-aeson" = dontDistribute super."buffer-builder-aeson";
"buffon" = dontDistribute super."buffon";
"bugzilla" = dontDistribute super."bugzilla";
@@ -1811,6 +1822,7 @@ self: super: {
"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";
@@ -1909,6 +1921,7 @@ self: super: {
"clipper" = dontDistribute super."clipper";
"clippings" = dontDistribute super."clippings";
"clist" = dontDistribute super."clist";
+ "clock" = doDistribute super."clock_0_5_1";
"clocked" = dontDistribute super."clocked";
"clogparse" = dontDistribute super."clogparse";
"clone-all" = dontDistribute super."clone-all";
@@ -2006,6 +2019,7 @@ self: super: {
"concrete-typerep" = dontDistribute super."concrete-typerep";
"concurrent-barrier" = dontDistribute super."concurrent-barrier";
"concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache";
+ "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9";
"concurrent-machines" = dontDistribute super."concurrent-machines";
"concurrent-output" = dontDistribute super."concurrent-output";
"concurrent-sa" = dontDistribute super."concurrent-sa";
@@ -2366,6 +2380,8 @@ self: super: {
"delta-h" = dontDistribute super."delta-h";
"demarcate" = dontDistribute super."demarcate";
"denominate" = dontDistribute super."denominate";
+ "dependent-map" = doDistribute super."dependent-map_0_1_1_3";
+ "dependent-sum" = doDistribute super."dependent-sum_0_2_1_0";
"depends" = dontDistribute super."depends";
"dephd" = dontDistribute super."dephd";
"dequeue" = dontDistribute super."dequeue";
@@ -2404,7 +2420,9 @@ self: super: {
"diagrams-pgf" = dontDistribute super."diagrams-pgf";
"diagrams-qrcode" = dontDistribute super."diagrams-qrcode";
"diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube";
+ "diagrams-svg" = doDistribute super."diagrams-svg_1_3_1_7";
"diagrams-tikz" = dontDistribute super."diagrams-tikz";
+ "dialog" = dontDistribute super."dialog";
"dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit";
"dicom" = dontDistribute super."dicom";
"dictparser" = dontDistribute super."dictparser";
@@ -2581,6 +2599,7 @@ self: super: {
"edenskel" = dontDistribute super."edenskel";
"edentv" = dontDistribute super."edentv";
"edge" = dontDistribute super."edge";
+ "edis" = dontDistribute super."edis";
"edit-distance-vector" = dontDistribute super."edit-distance-vector";
"edit-lenses" = dontDistribute super."edit-lenses";
"edit-lenses-demo" = dontDistribute super."edit-lenses-demo";
@@ -2757,6 +2776,7 @@ self: super: {
"failable-list" = dontDistribute super."failable-list";
"failure" = dontDistribute super."failure";
"fair-predicates" = dontDistribute super."fair-predicates";
+ "fake-type" = dontDistribute super."fake-type";
"faker" = dontDistribute super."faker";
"falling-turnip" = dontDistribute super."falling-turnip";
"fallingblocks" = dontDistribute super."fallingblocks";
@@ -2953,6 +2973,7 @@ self: super: {
"friday-juicypixels" = dontDistribute super."friday-juicypixels";
"friday-scale-dct" = dontDistribute super."friday-scale-dct";
"friendly-time" = dontDistribute super."friendly-time";
+ "frontmatter" = dontDistribute super."frontmatter";
"frp-arduino" = dontDistribute super."frp-arduino";
"frpnow" = dontDistribute super."frpnow";
"frpnow-gloss" = dontDistribute super."frpnow-gloss";
@@ -3158,6 +3179,7 @@ self: super: {
"gitlib-s3" = dontDistribute super."gitlib-s3";
"gitlib-sample" = dontDistribute super."gitlib-sample";
"gitlib-utils" = dontDistribute super."gitlib-utils";
+ "gitter" = dontDistribute super."gitter";
"gl-capture" = dontDistribute super."gl-capture";
"glade" = dontDistribute super."glade";
"gladexml-accessor" = dontDistribute super."gladexml-accessor";
@@ -3363,6 +3385,7 @@ self: super: {
"gstreamer" = dontDistribute super."gstreamer";
"gt-tools" = dontDistribute super."gt-tools";
"gtfs" = dontDistribute super."gtfs";
+ "gtk" = doDistribute super."gtk_0_13_9";
"gtk-helpers" = dontDistribute super."gtk-helpers";
"gtk-jsinput" = dontDistribute super."gtk-jsinput";
"gtk-largeTreeStore" = dontDistribute super."gtk-largeTreeStore";
@@ -3452,6 +3475,7 @@ self: super: {
"hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP";
"hackage-server" = dontDistribute super."hackage-server";
"hackage-sparks" = dontDistribute super."hackage-sparks";
+ "hackage-whatsnew" = dontDistribute super."hackage-whatsnew";
"hackage2hwn" = dontDistribute super."hackage2hwn";
"hackage2twitter" = dontDistribute super."hackage2twitter";
"hackager" = dontDistribute super."hackager";
@@ -3479,6 +3503,7 @@ self: super: {
"hake" = dontDistribute super."hake";
"hakismet" = dontDistribute super."hakismet";
"hako" = dontDistribute super."hako";
+ "hakyll" = doDistribute super."hakyll_4_7_4_0";
"hakyll-R" = dontDistribute super."hakyll-R";
"hakyll-agda" = dontDistribute super."hakyll-agda";
"hakyll-blaze-templates" = dontDistribute super."hakyll-blaze-templates";
@@ -3603,6 +3628,7 @@ self: super: {
"haskell-in-space" = dontDistribute super."haskell-in-space";
"haskell-modbus" = dontDistribute super."haskell-modbus";
"haskell-mpi" = dontDistribute super."haskell-mpi";
+ "haskell-names" = doDistribute super."haskell-names_0_5_3";
"haskell-openflow" = dontDistribute super."haskell-openflow";
"haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter";
"haskell-platform-test" = dontDistribute super."haskell-platform-test";
@@ -3675,6 +3701,7 @@ self: super: {
"hasloGUI" = dontDistribute super."hasloGUI";
"hasparql-client" = dontDistribute super."hasparql-client";
"haspell" = dontDistribute super."haspell";
+ "hasql" = doDistribute super."hasql_0_7_4";
"hasql-pool" = dontDistribute super."hasql-pool";
"hasql-postgres-options" = dontDistribute super."hasql-postgres-options";
"hasql-th" = dontDistribute super."hasql-th";
@@ -3883,6 +3910,8 @@ self: super: {
"hlibBladeRF" = dontDistribute super."hlibBladeRF";
"hlibev" = dontDistribute super."hlibev";
"hlibfam" = dontDistribute super."hlibfam";
+ "hlibgit2" = doDistribute super."hlibgit2_0_18_0_14";
+ "hlibsass" = doDistribute super."hlibsass_0_1_4_0";
"hlint" = doDistribute super."hlint_1_9_22";
"hlogger" = dontDistribute super."hlogger";
"hlongurl" = dontDistribute super."hlongurl";
@@ -4046,6 +4075,7 @@ self: super: {
"hsConfigure" = dontDistribute super."hsConfigure";
"hsSqlite3" = dontDistribute super."hsSqlite3";
"hsXenCtrl" = dontDistribute super."hsXenCtrl";
+ "hsass" = doDistribute super."hsass_0_3_0";
"hsay" = dontDistribute super."hsay";
"hsb2hs" = dontDistribute super."hsb2hs";
"hsbackup" = dontDistribute super."hsbackup";
@@ -4086,6 +4116,7 @@ self: super: {
"hsdip" = dontDistribute super."hsdip";
"hsdns" = dontDistribute super."hsdns";
"hsdns-cache" = dontDistribute super."hsdns-cache";
+ "hsebaysdk" = doDistribute super."hsebaysdk_0_3_0_0";
"hsemail-ns" = dontDistribute super."hsemail-ns";
"hsenv" = dontDistribute super."hsenv";
"hserv" = dontDistribute super."hserv";
@@ -4142,6 +4173,7 @@ self: super: {
"hspec-meta" = doDistribute super."hspec-meta_2_1_7";
"hspec-monad-control" = dontDistribute super."hspec-monad-control";
"hspec-server" = dontDistribute super."hspec-server";
+ "hspec-setup" = dontDistribute super."hspec-setup";
"hspec-shouldbe" = dontDistribute super."hspec-shouldbe";
"hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0";
"hspec-snap" = doDistribute super."hspec-snap_0_3_3_0";
@@ -4212,6 +4244,7 @@ self: super: {
"htsn-import" = dontDistribute super."htsn-import";
"http-accept" = dontDistribute super."http-accept";
"http-attoparsec" = dontDistribute super."http-attoparsec";
+ "http-client" = doDistribute super."http-client_0_4_25";
"http-client-auth" = dontDistribute super."http-client-auth";
"http-client-conduit" = dontDistribute super."http-client-conduit";
"http-client-lens" = dontDistribute super."http-client-lens";
@@ -4232,6 +4265,7 @@ self: super: {
"http-server" = dontDistribute super."http-server";
"http-shed" = dontDistribute super."http-shed";
"http-test" = dontDistribute super."http-test";
+ "http-types" = doDistribute super."http-types_0_8_6";
"http-wget" = dontDistribute super."http-wget";
"http2" = doDistribute super."http2_1_0_4";
"httpd-shed" = dontDistribute super."httpd-shed";
@@ -4357,6 +4391,7 @@ self: super: {
"imgurder" = dontDistribute super."imgurder";
"imm" = dontDistribute super."imm";
"imparse" = dontDistribute super."imparse";
+ "imperative-edsl" = dontDistribute super."imperative-edsl";
"imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl";
"implicit" = dontDistribute super."implicit";
"implicit-params" = dontDistribute super."implicit-params";
@@ -4527,6 +4562,7 @@ self: super: {
"jsmw" = dontDistribute super."jsmw";
"json-assertions" = dontDistribute super."json-assertions";
"json-b" = dontDistribute super."json-b";
+ "json-encoder" = dontDistribute super."json-encoder";
"json-enumerator" = dontDistribute super."json-enumerator";
"json-extra" = dontDistribute super."json-extra";
"json-fu" = dontDistribute super."json-fu";
@@ -4536,6 +4572,7 @@ self: super: {
"json-rpc" = dontDistribute super."json-rpc";
"json-rpc-client" = dontDistribute super."json-rpc-client";
"json-rpc-server" = dontDistribute super."json-rpc-server";
+ "json-schema" = doDistribute super."json-schema_0_7_4_0";
"json-sop" = dontDistribute super."json-sop";
"json-state" = dontDistribute super."json-state";
"json-stream" = dontDistribute super."json-stream";
@@ -4648,6 +4685,7 @@ self: super: {
"lambdacube-examples" = dontDistribute super."lambdacube-examples";
"lambdacube-gl" = dontDistribute super."lambdacube-gl";
"lambdacube-samples" = dontDistribute super."lambdacube-samples";
+ "lambdatex" = dontDistribute super."lambdatex";
"lambdatwit" = dontDistribute super."lambdatwit";
"lambdiff" = dontDistribute super."lambdiff";
"lame-tester" = dontDistribute super."lame-tester";
@@ -4687,6 +4725,7 @@ self: super: {
"language-thrift" = dontDistribute super."language-thrift";
"language-typescript" = dontDistribute super."language-typescript";
"language-vhdl" = dontDistribute super."language-vhdl";
+ "largeword" = doDistribute super."largeword_1_2_3";
"lat" = dontDistribute super."lat";
"latest-npm-version" = dontDistribute super."latest-npm-version";
"latex" = dontDistribute super."latex";
@@ -4831,8 +4870,10 @@ self: super: {
"liquidhaskell" = dontDistribute super."liquidhaskell";
"lispparser" = dontDistribute super."lispparser";
"list-extras" = dontDistribute super."list-extras";
+ "list-fusion-probe" = doDistribute super."list-fusion-probe_0_1_0_4";
"list-grouping" = dontDistribute super."list-grouping";
"list-mux" = dontDistribute super."list-mux";
+ "list-prompt" = dontDistribute super."list-prompt";
"list-remote-forwards" = dontDistribute super."list-remote-forwards";
"list-t-attoparsec" = dontDistribute super."list-t-attoparsec";
"list-t-html-parser" = dontDistribute super."list-t-html-parser";
@@ -4876,6 +4917,7 @@ self: super: {
"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";
@@ -4918,6 +4960,7 @@ self: super: {
"luautils" = dontDistribute super."luautils";
"lub" = dontDistribute super."lub";
"lucid-foundation" = dontDistribute super."lucid-foundation";
+ "lucid-svg" = doDistribute super."lucid-svg_0_5_0_0";
"lucienne" = dontDistribute super."lucienne";
"luhn" = dontDistribute super."luhn";
"lui" = dontDistribute super."lui";
@@ -5306,6 +5349,7 @@ self: super: {
"nbt" = dontDistribute super."nbt";
"nc-indicators" = dontDistribute super."nc-indicators";
"ncurses" = dontDistribute super."ncurses";
+ "ndjson-conduit" = doDistribute super."ndjson-conduit_0_1_0_2";
"neat" = dontDistribute super."neat";
"neat-interpolation" = doDistribute super."neat-interpolation_0_2_3";
"needle" = dontDistribute super."needle";
@@ -5477,6 +5521,7 @@ self: super: {
"omnifmt" = dontDistribute super."omnifmt";
"on-a-horse" = dontDistribute super."on-a-horse";
"on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel";
+ "once" = dontDistribute super."once";
"one-liner" = dontDistribute super."one-liner";
"one-time-password" = dontDistribute super."one-time-password";
"oneOfN" = dontDistribute super."oneOfN";
@@ -5530,6 +5575,7 @@ self: super: {
"optimusprime" = dontDistribute super."optimusprime";
"optional" = dontDistribute super."optional";
"options-time" = dontDistribute super."options-time";
+ "optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"orc" = dontDistribute super."orc";
"orchestrate" = dontDistribute super."orchestrate";
@@ -5680,6 +5726,7 @@ self: super: {
"persist2er" = dontDistribute super."persist2er";
"persistable-record" = dontDistribute super."persistable-record";
"persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg";
+ "persistent" = doDistribute super."persistent_2_2_3";
"persistent-cereal" = dontDistribute super."persistent-cereal";
"persistent-equivalence" = dontDistribute super."persistent-equivalence";
"persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp";
@@ -5709,6 +5756,7 @@ self: super: {
"pgstream" = dontDistribute super."pgstream";
"phasechange" = dontDistribute super."phasechange";
"phizzle" = dontDistribute super."phizzle";
+ "phoityne" = dontDistribute super."phoityne";
"phone-numbers" = dontDistribute super."phone-numbers";
"phone-push" = dontDistribute super."phone-push";
"phonetic-code" = dontDistribute super."phonetic-code";
@@ -5728,6 +5776,7 @@ self: super: {
"pinchot" = dontDistribute super."pinchot";
"pipe-enumerator" = dontDistribute super."pipe-enumerator";
"pipeclip" = dontDistribute super."pipeclip";
+ "pipes-aeson" = doDistribute super."pipes-aeson_0_4_1_4";
"pipes-async" = dontDistribute super."pipes-async";
"pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming";
"pipes-cacophony" = dontDistribute super."pipes-cacophony";
@@ -5735,6 +5784,7 @@ self: super: {
"pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv";
"pipes-cereal" = dontDistribute super."pipes-cereal";
"pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus";
+ "pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_3";
"pipes-conduit" = dontDistribute super."pipes-conduit";
"pipes-core" = dontDistribute super."pipes-core";
"pipes-courier" = dontDistribute super."pipes-courier";
@@ -5842,6 +5892,7 @@ self: super: {
"possible" = dontDistribute super."possible";
"post-mess-age" = doDistribute super."post-mess-age_0_1_0_0";
"postcodes" = dontDistribute super."postcodes";
+ "postgresql-binary" = doDistribute super."postgresql-binary_0_5_2_1";
"postgresql-config" = dontDistribute super."postgresql-config";
"postgresql-connector" = dontDistribute super."postgresql-connector";
"postgresql-copy-escape" = dontDistribute super."postgresql-copy-escape";
@@ -6261,6 +6312,7 @@ self: super: {
"rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster";
"retry" = doDistribute super."retry_0_6";
"retryer" = dontDistribute super."retryer";
+ "rev-state" = doDistribute super."rev-state_0_1";
"revdectime" = dontDistribute super."revdectime";
"reverse-apply" = dontDistribute super."reverse-apply";
"reverse-geocoding" = dontDistribute super."reverse-geocoding";
@@ -6486,6 +6538,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serv" = dontDistribute super."serv";
"servant-JuicyPixels" = doDistribute super."servant-JuicyPixels_0_1_0_0";
"servant-blaze" = dontDistribute super."servant-blaze";
"servant-cassava" = dontDistribute super."servant-cassava";
@@ -6685,6 +6738,7 @@ self: super: {
"snaplet-coffee" = dontDistribute super."snaplet-coffee";
"snaplet-css-min" = dontDistribute super."snaplet-css-min";
"snaplet-environments" = dontDistribute super."snaplet-environments";
+ "snaplet-fay" = doDistribute super."snaplet-fay_0_3_3_12";
"snaplet-ghcjs" = dontDistribute super."snaplet-ghcjs";
"snaplet-hasql" = dontDistribute super."snaplet-hasql";
"snaplet-haxl" = dontDistribute super."snaplet-haxl";
@@ -6969,6 +7023,7 @@ self: super: {
"swift-lda" = dontDistribute super."swift-lda";
"swish" = dontDistribute super."swish";
"sws" = dontDistribute super."sws";
+ "syb" = doDistribute super."syb_0_5_1";
"syb-extras" = dontDistribute super."syb-extras";
"syb-with-class" = dontDistribute super."syb-with-class";
"syb-with-class-instances-text" = dontDistribute super."syb-with-class-instances-text";
@@ -7333,6 +7388,7 @@ self: super: {
"turing-music" = dontDistribute super."turing-music";
"turkish-deasciifier" = dontDistribute super."turkish-deasciifier";
"turni" = dontDistribute super."turni";
+ "turtle" = doDistribute super."turtle_1_2_3";
"tweak" = dontDistribute super."tweak";
"twentefp" = dontDistribute super."twentefp";
"twentefp-eventloop-graphics" = dontDistribute super."twentefp-eventloop-graphics";
@@ -7400,6 +7456,7 @@ self: super: {
"typehash" = dontDistribute super."typehash";
"typelevel" = dontDistribute super."typelevel";
"typelevel-tensor" = dontDistribute super."typelevel-tensor";
+ "typelits-witnesses" = dontDistribute super."typelits-witnesses";
"typeof" = dontDistribute super."typeof";
"typeparams" = dontDistribute super."typeparams";
"typesafe-endian" = dontDistribute super."typesafe-endian";
@@ -7621,6 +7678,7 @@ self: super: {
"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" = dontDistribute super."vty";
@@ -7630,6 +7688,7 @@ self: super: {
"vty-ui-extras" = dontDistribute super."vty-ui-extras";
"waddle" = dontDistribute super."waddle";
"wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi";
+ "wai-app-static" = doDistribute super."wai-app-static_3_1_3";
"wai-devel" = dontDistribute super."wai-devel";
"wai-digestive-functors" = dontDistribute super."wai-digestive-functors";
"wai-dispatch" = dontDistribute super."wai-dispatch";
@@ -7796,6 +7855,7 @@ self: super: {
"x-dsp" = dontDistribute super."x-dsp";
"x11-xim" = dontDistribute super."x11-xim";
"x11-xinput" = dontDistribute super."x11-xinput";
+ "x509-system" = doDistribute super."x509-system_1_6_1";
"x509-util" = dontDistribute super."x509-util";
"xattr" = dontDistribute super."xattr";
"xbattbar" = dontDistribute super."xbattbar";
@@ -7819,9 +7879,11 @@ self: super: {
"xinput-conduit" = dontDistribute super."xinput-conduit";
"xkbcommon" = dontDistribute super."xkbcommon";
"xkcd" = dontDistribute super."xkcd";
+ "xlsx" = doDistribute super."xlsx_0_1_2";
"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_2";
"xml-conduit-parse" = dontDistribute super."xml-conduit-parse";
"xml-conduit-writer" = dontDistribute super."xml-conduit-writer";
"xml-enumerator" = dontDistribute super."xml-enumerator";
@@ -7919,6 +7981,7 @@ self: super: {
"yesod-comments" = dontDistribute super."yesod-comments";
"yesod-content-pdf" = dontDistribute super."yesod-content-pdf";
"yesod-continuations" = dontDistribute super."yesod-continuations";
+ "yesod-core" = doDistribute super."yesod-core_1_4_17";
"yesod-crud" = dontDistribute super."yesod-crud";
"yesod-crud-persist" = dontDistribute super."yesod-crud-persist";
"yesod-csp" = dontDistribute super."yesod-csp";
diff --git a/pkgs/development/haskell-modules/configuration-lts-3.19.nix b/pkgs/development/haskell-modules/configuration-lts-3.19.nix
new file mode 100644
index 00000000000..f49e3fc7214
--- /dev/null
+++ b/pkgs/development/haskell-modules/configuration-lts-3.19.nix
@@ -0,0 +1,8067 @@
+{ 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-3.19 packages
+ "3d-graphics-examples" = dontDistribute super."3d-graphics-examples";
+ "3dmodels" = dontDistribute super."3dmodels";
+ "4Blocks" = dontDistribute super."4Blocks";
+ "AAI" = dontDistribute super."AAI";
+ "ABList" = dontDistribute super."ABList";
+ "AC-Angle" = dontDistribute super."AC-Angle";
+ "AC-Boolean" = dontDistribute super."AC-Boolean";
+ "AC-BuildPlatform" = dontDistribute super."AC-BuildPlatform";
+ "AC-Colour" = dontDistribute super."AC-Colour";
+ "AC-EasyRaster-GTK" = dontDistribute super."AC-EasyRaster-GTK";
+ "AC-HalfInteger" = dontDistribute super."AC-HalfInteger";
+ "AC-MiniTest" = dontDistribute super."AC-MiniTest";
+ "AC-PPM" = dontDistribute super."AC-PPM";
+ "AC-Random" = dontDistribute super."AC-Random";
+ "AC-Terminal" = dontDistribute super."AC-Terminal";
+ "AC-VanillaArray" = dontDistribute super."AC-VanillaArray";
+ "AC-Vector-Fancy" = dontDistribute super."AC-Vector-Fancy";
+ "ACME" = dontDistribute super."ACME";
+ "ADPfusion" = dontDistribute super."ADPfusion";
+ "AERN-Basics" = dontDistribute super."AERN-Basics";
+ "AERN-Net" = dontDistribute super."AERN-Net";
+ "AERN-Real" = dontDistribute super."AERN-Real";
+ "AERN-Real-Double" = dontDistribute super."AERN-Real-Double";
+ "AERN-Real-Interval" = dontDistribute super."AERN-Real-Interval";
+ "AERN-RnToRm" = dontDistribute super."AERN-RnToRm";
+ "AERN-RnToRm-Plot" = dontDistribute super."AERN-RnToRm-Plot";
+ "AES" = dontDistribute super."AES";
+ "AGI" = dontDistribute super."AGI";
+ "ALUT" = dontDistribute super."ALUT";
+ "AMI" = dontDistribute super."AMI";
+ "ANum" = dontDistribute super."ANum";
+ "ASN1" = dontDistribute super."ASN1";
+ "AVar" = dontDistribute super."AVar";
+ "AWin32Console" = dontDistribute super."AWin32Console";
+ "AbortT-monadstf" = dontDistribute super."AbortT-monadstf";
+ "AbortT-mtl" = dontDistribute super."AbortT-mtl";
+ "AbortT-transformers" = dontDistribute super."AbortT-transformers";
+ "ActionKid" = dontDistribute super."ActionKid";
+ "Adaptive" = dontDistribute super."Adaptive";
+ "Adaptive-Blaisorblade" = dontDistribute super."Adaptive-Blaisorblade";
+ "Advgame" = dontDistribute super."Advgame";
+ "AesonBson" = dontDistribute super."AesonBson";
+ "Agata" = dontDistribute super."Agata";
+ "Agda-executable" = dontDistribute super."Agda-executable";
+ "AhoCorasick" = dontDistribute super."AhoCorasick";
+ "AlgorithmW" = dontDistribute super."AlgorithmW";
+ "AlignmentAlgorithms" = dontDistribute super."AlignmentAlgorithms";
+ "Allure" = dontDistribute super."Allure";
+ "AndroidViewHierarchyImporter" = dontDistribute super."AndroidViewHierarchyImporter";
+ "Animas" = dontDistribute super."Animas";
+ "Annotations" = dontDistribute super."Annotations";
+ "Ansi2Html" = dontDistribute super."Ansi2Html";
+ "ApplePush" = dontDistribute super."ApplePush";
+ "AppleScript" = dontDistribute super."AppleScript";
+ "ApproxFun-hs" = dontDistribute super."ApproxFun-hs";
+ "ArrayRef" = dontDistribute super."ArrayRef";
+ "ArrowVHDL" = dontDistribute super."ArrowVHDL";
+ "AspectAG" = dontDistribute super."AspectAG";
+ "AttoBencode" = dontDistribute super."AttoBencode";
+ "AttoJson" = dontDistribute super."AttoJson";
+ "Attrac" = dontDistribute super."Attrac";
+ "Aurochs" = dontDistribute super."Aurochs";
+ "AutoForms" = dontDistribute super."AutoForms";
+ "AvlTree" = dontDistribute super."AvlTree";
+ "BASIC" = dontDistribute super."BASIC";
+ "BCMtools" = dontDistribute super."BCMtools";
+ "BNFC" = dontDistribute super."BNFC";
+ "BNFC-meta" = dontDistribute super."BNFC-meta";
+ "Baggins" = dontDistribute super."Baggins";
+ "Bang" = dontDistribute super."Bang";
+ "Barracuda" = dontDistribute super."Barracuda";
+ "Befunge93" = dontDistribute super."Befunge93";
+ "BenchmarkHistory" = dontDistribute super."BenchmarkHistory";
+ "BerkeleyDB" = dontDistribute super."BerkeleyDB";
+ "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML";
+ "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm";
+ "BigPixel" = dontDistribute super."BigPixel";
+ "Binpack" = dontDistribute super."Binpack";
+ "Biobase" = dontDistribute super."Biobase";
+ "BiobaseBlast" = dontDistribute super."BiobaseBlast";
+ "BiobaseDotP" = dontDistribute super."BiobaseDotP";
+ "BiobaseFR3D" = dontDistribute super."BiobaseFR3D";
+ "BiobaseFasta" = dontDistribute super."BiobaseFasta";
+ "BiobaseInfernal" = dontDistribute super."BiobaseInfernal";
+ "BiobaseMAF" = dontDistribute super."BiobaseMAF";
+ "BiobaseTrainingData" = dontDistribute super."BiobaseTrainingData";
+ "BiobaseTurner" = dontDistribute super."BiobaseTurner";
+ "BiobaseTypes" = dontDistribute super."BiobaseTypes";
+ "BiobaseVienna" = dontDistribute super."BiobaseVienna";
+ "BiobaseXNA" = dontDistribute super."BiobaseXNA";
+ "BirdPP" = dontDistribute super."BirdPP";
+ "BitSyntax" = dontDistribute super."BitSyntax";
+ "Bitly" = dontDistribute super."Bitly";
+ "Blobs" = dontDistribute super."Blobs";
+ "BluePrintCSS" = dontDistribute super."BluePrintCSS";
+ "Blueprint" = dontDistribute super."Blueprint";
+ "Bookshelf" = dontDistribute super."Bookshelf";
+ "Bravo" = dontDistribute super."Bravo";
+ "BufferedSocket" = dontDistribute super."BufferedSocket";
+ "Buster" = dontDistribute super."Buster";
+ "CBOR" = dontDistribute super."CBOR";
+ "CC-delcont" = dontDistribute super."CC-delcont";
+ "CC-delcont-alt" = dontDistribute super."CC-delcont-alt";
+ "CC-delcont-cxe" = dontDistribute super."CC-delcont-cxe";
+ "CC-delcont-exc" = dontDistribute super."CC-delcont-exc";
+ "CC-delcont-ref" = dontDistribute super."CC-delcont-ref";
+ "CC-delcont-ref-tf" = dontDistribute super."CC-delcont-ref-tf";
+ "CCA" = dontDistribute super."CCA";
+ "CHXHtml" = dontDistribute super."CHXHtml";
+ "CLASE" = dontDistribute super."CLASE";
+ "CLI" = dontDistribute super."CLI";
+ "CMCompare" = dontDistribute super."CMCompare";
+ "CMQ" = dontDistribute super."CMQ";
+ "COrdering" = dontDistribute super."COrdering";
+ "CPBrainfuck" = dontDistribute super."CPBrainfuck";
+ "CPL" = dontDistribute super."CPL";
+ "CSPM-CoreLanguage" = dontDistribute super."CSPM-CoreLanguage";
+ "CSPM-FiringRules" = dontDistribute super."CSPM-FiringRules";
+ "CSPM-Frontend" = dontDistribute super."CSPM-Frontend";
+ "CSPM-Interpreter" = dontDistribute super."CSPM-Interpreter";
+ "CSPM-ToProlog" = dontDistribute super."CSPM-ToProlog";
+ "CSPM-cspm" = dontDistribute super."CSPM-cspm";
+ "CTRex" = dontDistribute super."CTRex";
+ "CV" = dontDistribute super."CV";
+ "CabalSearch" = dontDistribute super."CabalSearch";
+ "Capabilities" = dontDistribute super."Capabilities";
+ "Cardinality" = dontDistribute super."Cardinality";
+ "CarneadesDSL" = dontDistribute super."CarneadesDSL";
+ "CarneadesIntoDung" = dontDistribute super."CarneadesIntoDung";
+ "Cartesian" = dontDistribute super."Cartesian";
+ "Cascade" = dontDistribute super."Cascade";
+ "Catana" = dontDistribute super."Catana";
+ "Chart-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";
+ "ClustalParser" = dontDistribute super."ClustalParser";
+ "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";
+ "DAV" = doDistribute super."DAV_1_0_7";
+ "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_9_0";
+ "Ebnf2ps" = dontDistribute super."Ebnf2ps";
+ "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";
+ "EntrezHTTP" = dontDistribute super."EntrezHTTP";
+ "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";
+ "FindBin" = dontDistribute super."FindBin";
+ "FiniteMap" = dontDistribute super."FiniteMap";
+ "FirstOrderTheory" = dontDistribute super."FirstOrderTheory";
+ "FixedPoint-simple" = dontDistribute super."FixedPoint-simple";
+ "Flippi" = dontDistribute super."Flippi";
+ "Focus" = dontDistribute super."Focus";
+ "Folly" = dontDistribute super."Folly";
+ "ForSyDe" = dontDistribute super."ForSyDe";
+ "ForkableT" = dontDistribute super."ForkableT";
+ "FormalGrammars" = dontDistribute super."FormalGrammars";
+ "Foster" = dontDistribute super."Foster";
+ "FpMLv53" = dontDistribute super."FpMLv53";
+ "FractalArt" = dontDistribute super."FractalArt";
+ "Fractaler" = dontDistribute super."Fractaler";
+ "Frames" = dontDistribute super."Frames";
+ "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" = dontDistribute super."GLFW-b";
+ "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" = dontDistribute super."GLURaw";
+ "GLUT" = dontDistribute super."GLUT";
+ "GLUtil" = dontDistribute super."GLUtil";
+ "GPX" = dontDistribute super."GPX";
+ "GPipe" = dontDistribute super."GPipe";
+ "GPipe-Collada" = dontDistribute super."GPipe-Collada";
+ "GPipe-Examples" = dontDistribute super."GPipe-Examples";
+ "GPipe-GLFW" = dontDistribute super."GPipe-GLFW";
+ "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";
+ "Genbank" = dontDistribute super."Genbank";
+ "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";
+ "GiveYouAHead" = dontDistribute super."GiveYouAHead";
+ "GlomeTrace" = dontDistribute super."GlomeTrace";
+ "GlomeVec" = dontDistribute super."GlomeVec";
+ "GlomeView" = dontDistribute super."GlomeView";
+ "GoogleChart" = dontDistribute super."GoogleChart";
+ "GoogleDirections" = dontDistribute super."GoogleDirections";
+ "GoogleSB" = dontDistribute super."GoogleSB";
+ "GoogleSuggest" = dontDistribute super."GoogleSuggest";
+ "GoogleTranslate" = dontDistribute super."GoogleTranslate";
+ "GotoT-transformers" = dontDistribute super."GotoT-transformers";
+ "GrammarProducts" = dontDistribute super."GrammarProducts";
+ "Graph500" = dontDistribute super."Graph500";
+ "GraphHammer" = dontDistribute super."GraphHammer";
+ "GraphHammer-examples" = dontDistribute super."GraphHammer-examples";
+ "Graphalyze" = dontDistribute super."Graphalyze";
+ "Grempa" = dontDistribute super."Grempa";
+ "GroteTrap" = dontDistribute super."GroteTrap";
+ "Grow" = dontDistribute super."Grow";
+ "GrowlNotify" = dontDistribute super."GrowlNotify";
+ "Gtk2hsGenerics" = dontDistribute super."Gtk2hsGenerics";
+ "GtkGLTV" = dontDistribute super."GtkGLTV";
+ "GtkTV" = dontDistribute super."GtkTV";
+ "GuiHaskell" = dontDistribute super."GuiHaskell";
+ "GuiTV" = dontDistribute super."GuiTV";
+ "H" = dontDistribute super."H";
+ "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" = dontDistribute super."HDBC";
+ "HDBC-mysql" = dontDistribute super."HDBC-mysql";
+ "HDBC-odbc" = dontDistribute super."HDBC-odbc";
+ "HDBC-postgresql" = dontDistribute super."HDBC-postgresql";
+ "HDBC-postgresql-hstore" = dontDistribute super."HDBC-postgresql-hstore";
+ "HDBC-session" = dontDistribute super."HDBC-session";
+ "HDBC-sqlite3" = dontDistribute super."HDBC-sqlite3";
+ "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";
+ "HPDF" = dontDistribute super."HPDF";
+ "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" = doDistribute super."HUnit_1_2_5_2";
+ "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";
+ "HaRe" = dontDistribute super."HaRe";
+ "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";
+ "HaskellNet" = doDistribute super."HaskellNet_0_4_5";
+ "HaskellNet-SSL" = dontDistribute super."HaskellNet-SSL";
+ "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";
+ "HsSyck" = dontDistribute super."HsSyck";
+ "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";
+ "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";
+ "IntervalMap" = dontDistribute super."IntervalMap";
+ "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" = dontDistribute super."JuicyPixels-repa";
+ "JuicyPixels-scale-dct" = dontDistribute super."JuicyPixels-scale-dct";
+ "JuicyPixels-util" = dontDistribute super."JuicyPixels-util";
+ "JunkDB" = dontDistribute super."JunkDB";
+ "JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm";
+ "JunkDB-driver-hashtables" = dontDistribute super."JunkDB-driver-hashtables";
+ "JustParse" = dontDistribute super."JustParse";
+ "KMP" = dontDistribute super."KMP";
+ "KSP" = dontDistribute super."KSP";
+ "Kalman" = dontDistribute super."Kalman";
+ "KdTree" = dontDistribute super."KdTree";
+ "Ketchup" = dontDistribute super."Ketchup";
+ "KiCS" = dontDistribute super."KiCS";
+ "KiCS-debugger" = dontDistribute super."KiCS-debugger";
+ "KiCS-prophecy" = dontDistribute super."KiCS-prophecy";
+ "Kleislify" = dontDistribute super."Kleislify";
+ "Konf" = dontDistribute super."Konf";
+ "Kriens" = dontDistribute super."Kriens";
+ "KyotoCabinet" = dontDistribute super."KyotoCabinet";
+ "L-seed" = dontDistribute super."L-seed";
+ "LDAP" = dontDistribute super."LDAP";
+ "LRU" = dontDistribute super."LRU";
+ "LTree" = dontDistribute super."LTree";
+ "LambdaCalculator" = dontDistribute super."LambdaCalculator";
+ "LambdaHack" = dontDistribute super."LambdaHack";
+ "LambdaINet" = dontDistribute super."LambdaINet";
+ "LambdaNet" = dontDistribute super."LambdaNet";
+ "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote";
+ "LambdaShell" = dontDistribute super."LambdaShell";
+ "Lambdajudge" = dontDistribute super."Lambdajudge";
+ "Lambdaya" = dontDistribute super."Lambdaya";
+ "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy";
+ "Lastik" = dontDistribute super."Lastik";
+ "Lattices" = dontDistribute super."Lattices";
+ "LazyVault" = dontDistribute super."LazyVault";
+ "Level0" = dontDistribute super."Level0";
+ "LibClang" = dontDistribute super."LibClang";
+ "LibZip" = dontDistribute super."LibZip";
+ "Limit" = dontDistribute super."Limit";
+ "LinearSplit" = dontDistribute super."LinearSplit";
+ "LinguisticsTypes" = dontDistribute super."LinguisticsTypes";
+ "LinkChecker" = dontDistribute super."LinkChecker";
+ "ListTree" = dontDistribute super."ListTree";
+ "ListWriter" = dontDistribute super."ListWriter";
+ "ListZipper" = dontDistribute super."ListZipper";
+ "Logic" = dontDistribute super."Logic";
+ "LogicGrowsOnTrees" = dontDistribute super."LogicGrowsOnTrees";
+ "LogicGrowsOnTrees-MPI" = dontDistribute super."LogicGrowsOnTrees-MPI";
+ "LogicGrowsOnTrees-network" = dontDistribute super."LogicGrowsOnTrees-network";
+ "LogicGrowsOnTrees-processes" = dontDistribute super."LogicGrowsOnTrees-processes";
+ "LslPlus" = dontDistribute super."LslPlus";
+ "Lucu" = dontDistribute super."Lucu";
+ "MC-Fold-DP" = dontDistribute super."MC-Fold-DP";
+ "MFlow" = dontDistribute super."MFlow";
+ "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" = dontDistribute super."MusicBrainz";
+ "MusicBrainz-libdiscid" = dontDistribute super."MusicBrainz-libdiscid";
+ "MyPrimes" = dontDistribute super."MyPrimes";
+ "NGrams" = dontDistribute super."NGrams";
+ "NTRU" = dontDistribute super."NTRU";
+ "NXT" = dontDistribute super."NXT";
+ "NXTDSL" = dontDistribute super."NXTDSL";
+ "NanoProlog" = dontDistribute super."NanoProlog";
+ "NaturalLanguageAlphabets" = dontDistribute super."NaturalLanguageAlphabets";
+ "NaturalSort" = dontDistribute super."NaturalSort";
+ "NearContextAlgebra" = dontDistribute super."NearContextAlgebra";
+ "Neks" = dontDistribute super."Neks";
+ "NestedFunctor" = dontDistribute super."NestedFunctor";
+ "NestedSampling" = dontDistribute super."NestedSampling";
+ "NetSNMP" = dontDistribute super."NetSNMP";
+ "NewBinary" = dontDistribute super."NewBinary";
+ "Ninjas" = dontDistribute super."Ninjas";
+ "NoSlow" = dontDistribute super."NoSlow";
+ "NoTrace" = dontDistribute super."NoTrace";
+ "Noise" = dontDistribute super."Noise";
+ "Nomyx" = dontDistribute super."Nomyx";
+ "Nomyx-Core" = dontDistribute super."Nomyx-Core";
+ "Nomyx-Language" = dontDistribute super."Nomyx-Language";
+ "Nomyx-Rules" = dontDistribute super."Nomyx-Rules";
+ "Nomyx-Web" = dontDistribute super."Nomyx-Web";
+ "NonEmpty" = dontDistribute super."NonEmpty";
+ "NonEmptyList" = dontDistribute super."NonEmptyList";
+ "NumLazyByteString" = dontDistribute super."NumLazyByteString";
+ "NumberSieves" = dontDistribute super."NumberSieves";
+ "Numbers" = dontDistribute super."Numbers";
+ "Nussinov78" = dontDistribute super."Nussinov78";
+ "Nutri" = dontDistribute super."Nutri";
+ "OGL" = dontDistribute super."OGL";
+ "OSM" = dontDistribute super."OSM";
+ "OTP" = dontDistribute super."OTP";
+ "Object" = dontDistribute super."Object";
+ "ObjectIO" = dontDistribute super."ObjectIO";
+ "ObjectName" = dontDistribute super."ObjectName";
+ "Obsidian" = dontDistribute super."Obsidian";
+ "OddWord" = dontDistribute super."OddWord";
+ "Omega" = dontDistribute super."Omega";
+ "OpenAFP" = dontDistribute super."OpenAFP";
+ "OpenAFP-Utils" = dontDistribute super."OpenAFP-Utils";
+ "OpenAL" = dontDistribute super."OpenAL";
+ "OpenCL" = dontDistribute super."OpenCL";
+ "OpenCLRaw" = dontDistribute super."OpenCLRaw";
+ "OpenCLWrappers" = dontDistribute super."OpenCLWrappers";
+ "OpenGL" = dontDistribute super."OpenGL";
+ "OpenGLCheck" = dontDistribute super."OpenGLCheck";
+ "OpenGLRaw" = dontDistribute super."OpenGLRaw";
+ "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";
+ "PageIO" = dontDistribute super."PageIO";
+ "Paillier" = dontDistribute super."Paillier";
+ "PandocAgda" = dontDistribute super."PandocAgda";
+ "Paraiso" = dontDistribute super."Paraiso";
+ "Parry" = dontDistribute super."Parry";
+ "ParsecTools" = dontDistribute super."ParsecTools";
+ "ParserFunction" = dontDistribute super."ParserFunction";
+ "PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures";
+ "PasswordGenerator" = dontDistribute super."PasswordGenerator";
+ "PastePipe" = dontDistribute super."PastePipe";
+ "Pathfinder" = dontDistribute super."Pathfinder";
+ "Peano" = dontDistribute super."Peano";
+ "PeanoWitnesses" = dontDistribute super."PeanoWitnesses";
+ "PerfectHash" = dontDistribute super."PerfectHash";
+ "PermuteEffects" = dontDistribute super."PermuteEffects";
+ "Phsu" = dontDistribute super."Phsu";
+ "Pipe" = dontDistribute super."Pipe";
+ "Piso" = dontDistribute super."Piso";
+ "PlayHangmanGame" = dontDistribute super."PlayHangmanGame";
+ "PlayingCards" = dontDistribute super."PlayingCards";
+ "Plot-ho-matic" = dontDistribute super."Plot-ho-matic";
+ "PlslTools" = dontDistribute super."PlslTools";
+ "Plural" = dontDistribute super."Plural";
+ "Pollutocracy" = dontDistribute super."Pollutocracy";
+ "PortFusion" = dontDistribute super."PortFusion";
+ "PortMidi" = dontDistribute super."PortMidi";
+ "PostgreSQL" = dontDistribute super."PostgreSQL";
+ "PrimitiveArray" = dontDistribute super."PrimitiveArray";
+ "Printf-TH" = dontDistribute super."Printf-TH";
+ "PriorityChansConverger" = dontDistribute super."PriorityChansConverger";
+ "ProbabilityMonads" = dontDistribute super."ProbabilityMonads";
+ "PropLogic" = dontDistribute super."PropLogic";
+ "Proper" = dontDistribute super."Proper";
+ "ProxN" = dontDistribute super."ProxN";
+ "Pugs" = dontDistribute super."Pugs";
+ "Pup-Events" = dontDistribute super."Pup-Events";
+ "Pup-Events-Client" = dontDistribute super."Pup-Events-Client";
+ "Pup-Events-Demo" = dontDistribute super."Pup-Events-Demo";
+ "Pup-Events-PQueue" = dontDistribute super."Pup-Events-PQueue";
+ "Pup-Events-Server" = dontDistribute super."Pup-Events-Server";
+ "QIO" = dontDistribute super."QIO";
+ "QuadEdge" = dontDistribute super."QuadEdge";
+ "QuadTree" = dontDistribute super."QuadTree";
+ "Quelea" = dontDistribute super."Quelea";
+ "QuickAnnotate" = dontDistribute super."QuickAnnotate";
+ "QuickCheck-GenT" = dontDistribute super."QuickCheck-GenT";
+ "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" = dontDistribute super."RNAlien";
+ "RNAwolf" = dontDistribute super."RNAwolf";
+ "RSA" = doDistribute super."RSA_2_1_0_3";
+ "Raincat" = dontDistribute super."Raincat";
+ "Random123" = dontDistribute super."Random123";
+ "RandomDotOrg" = dontDistribute super."RandomDotOrg";
+ "Randometer" = dontDistribute super."Randometer";
+ "Range" = dontDistribute super."Range";
+ "Ranged-sets" = dontDistribute super."Ranged-sets";
+ "Ranka" = dontDistribute super."Ranka";
+ "Rasenschach" = dontDistribute super."Rasenschach";
+ "Redmine" = dontDistribute super."Redmine";
+ "Ref" = dontDistribute super."Ref";
+ "Referees" = dontDistribute super."Referees";
+ "RepLib" = dontDistribute super."RepLib";
+ "ReplicateEffects" = dontDistribute super."ReplicateEffects";
+ "ReviewBoard" = dontDistribute super."ReviewBoard";
+ "RichConditional" = dontDistribute super."RichConditional";
+ "RollingDirectory" = dontDistribute super."RollingDirectory";
+ "RoyalMonad" = dontDistribute super."RoyalMonad";
+ "RxHaskell" = dontDistribute super."RxHaskell";
+ "SBench" = dontDistribute super."SBench";
+ "SConfig" = dontDistribute super."SConfig";
+ "SDL" = dontDistribute super."SDL";
+ "SDL-gfx" = dontDistribute super."SDL-gfx";
+ "SDL-image" = dontDistribute super."SDL-image";
+ "SDL-mixer" = dontDistribute super."SDL-mixer";
+ "SDL-mpeg" = dontDistribute super."SDL-mpeg";
+ "SDL-ttf" = dontDistribute super."SDL-ttf";
+ "SDL2-ttf" = dontDistribute super."SDL2-ttf";
+ "SFML" = dontDistribute super."SFML";
+ "SFML-control" = dontDistribute super."SFML-control";
+ "SFont" = dontDistribute super."SFont";
+ "SG" = dontDistribute super."SG";
+ "SGdemo" = dontDistribute super."SGdemo";
+ "SHA2" = dontDistribute super."SHA2";
+ "SMTPClient" = dontDistribute super."SMTPClient";
+ "SNet" = dontDistribute super."SNet";
+ "SQLDeps" = dontDistribute super."SQLDeps";
+ "STL" = dontDistribute super."STL";
+ "SVG2Q" = dontDistribute super."SVG2Q";
+ "SVGPath" = dontDistribute super."SVGPath";
+ "SWMMoutGetMB" = dontDistribute super."SWMMoutGetMB";
+ "SableCC2Hs" = dontDistribute super."SableCC2Hs";
+ "Safe" = dontDistribute super."Safe";
+ "Salsa" = dontDistribute super."Salsa";
+ "Saturnin" = dontDistribute super."Saturnin";
+ "SciFlow" = dontDistribute super."SciFlow";
+ "ScratchFs" = dontDistribute super."ScratchFs";
+ "Scurry" = dontDistribute super."Scurry";
+ "SegmentTree" = dontDistribute super."SegmentTree";
+ "Semantique" = dontDistribute super."Semantique";
+ "Semigroup" = dontDistribute super."Semigroup";
+ "SeqAlign" = dontDistribute super."SeqAlign";
+ "SessionLogger" = dontDistribute super."SessionLogger";
+ "ShellCheck" = dontDistribute super."ShellCheck";
+ "Shellac" = dontDistribute super."Shellac";
+ "Shellac-compatline" = dontDistribute super."Shellac-compatline";
+ "Shellac-editline" = dontDistribute super."Shellac-editline";
+ "Shellac-haskeline" = dontDistribute super."Shellac-haskeline";
+ "Shellac-readline" = dontDistribute super."Shellac-readline";
+ "ShowF" = dontDistribute super."ShowF";
+ "Shrub" = dontDistribute super."Shrub";
+ "Shu-thing" = dontDistribute super."Shu-thing";
+ "SimpleAES" = dontDistribute super."SimpleAES";
+ "SimpleEA" = dontDistribute super."SimpleEA";
+ "SimpleGL" = dontDistribute super."SimpleGL";
+ "SimpleH" = dontDistribute super."SimpleH";
+ "SimpleLog" = dontDistribute super."SimpleLog";
+ "SizeCompare" = dontDistribute super."SizeCompare";
+ "Slides" = dontDistribute super."Slides";
+ "Smooth" = dontDistribute super."Smooth";
+ "SmtLib" = dontDistribute super."SmtLib";
+ "Snusmumrik" = dontDistribute super."Snusmumrik";
+ "SoOSiM" = dontDistribute super."SoOSiM";
+ "SoccerFun" = dontDistribute super."SoccerFun";
+ "SoccerFunGL" = dontDistribute super."SoccerFunGL";
+ "Sonnex" = dontDistribute super."Sonnex";
+ "SourceGraph" = dontDistribute super."SourceGraph";
+ "Southpaw" = dontDistribute super."Southpaw";
+ "SpaceInvaders" = dontDistribute super."SpaceInvaders";
+ "SpacePrivateers" = dontDistribute super."SpacePrivateers";
+ "SpinCounter" = dontDistribute super."SpinCounter";
+ "Spock" = doDistribute super."Spock_0_8_1_0";
+ "Spock-auth" = dontDistribute super."Spock-auth";
+ "Spock-digestive" = doDistribute super."Spock-digestive_0_1_0_1";
+ "SpreadsheetML" = dontDistribute super."SpreadsheetML";
+ "Sprig" = dontDistribute super."Sprig";
+ "Stasis" = dontDistribute super."Stasis";
+ "StateVar-transformer" = dontDistribute super."StateVar-transformer";
+ "StatisticalMethods" = dontDistribute super."StatisticalMethods";
+ "Stomp" = dontDistribute super."Stomp";
+ "Strafunski-ATermLib" = dontDistribute super."Strafunski-ATermLib";
+ "Strafunski-Sdf2Haskell" = dontDistribute super."Strafunski-Sdf2Haskell";
+ "Strafunski-StrategyLib" = dontDistribute super."Strafunski-StrategyLib";
+ "StrappedTemplates" = dontDistribute super."StrappedTemplates";
+ "StrategyLib" = dontDistribute super."StrategyLib";
+ "StrictBench" = dontDistribute super."StrictBench";
+ "SuffixStructures" = dontDistribute super."SuffixStructures";
+ "SybWidget" = dontDistribute super."SybWidget";
+ "SyntaxMacros" = dontDistribute super."SyntaxMacros";
+ "Sysmon" = dontDistribute super."Sysmon";
+ "TBC" = dontDistribute super."TBC";
+ "TBit" = dontDistribute super."TBit";
+ "THEff" = dontDistribute super."THEff";
+ "TTTAS" = dontDistribute super."TTTAS";
+ "TV" = dontDistribute super."TV";
+ "TYB" = dontDistribute super."TYB";
+ "TableAlgebra" = dontDistribute super."TableAlgebra";
+ "Tables" = dontDistribute super."Tables";
+ "Tablify" = dontDistribute super."Tablify";
+ "Tainted" = dontDistribute super."Tainted";
+ "Takusen" = dontDistribute super."Takusen";
+ "Tape" = dontDistribute super."Tape";
+ "Taxonomy" = dontDistribute super."Taxonomy";
+ "TaxonomyTools" = dontDistribute super."TaxonomyTools";
+ "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";
+ "ViennaRNA-bindings" = dontDistribute super."ViennaRNA-bindings";
+ "ViennaRNAParser" = dontDistribute super."ViennaRNAParser";
+ "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-extras" = dontDistribute super."Win32-extras";
+ "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";
+ "Xauth" = dontDistribute super."Xauth";
+ "Xec" = dontDistribute super."Xec";
+ "XmlHtmlWriter" = dontDistribute super."XmlHtmlWriter";
+ "Xorshift128Plus" = dontDistribute super."Xorshift128Plus";
+ "YACPong" = dontDistribute super."YACPong";
+ "YFrob" = dontDistribute super."YFrob";
+ "Yablog" = dontDistribute super."Yablog";
+ "YamlReference" = dontDistribute super."YamlReference";
+ "Yampa-core" = dontDistribute super."Yampa-core";
+ "Yocto" = dontDistribute super."Yocto";
+ "Yogurt" = dontDistribute super."Yogurt";
+ "Yogurt-Standalone" = dontDistribute super."Yogurt-Standalone";
+ "ZEBEDDE" = dontDistribute super."ZEBEDDE";
+ "ZFS" = dontDistribute super."ZFS";
+ "ZMachine" = dontDistribute super."ZMachine";
+ "ZipFold" = dontDistribute super."ZipFold";
+ "ZipperAG" = dontDistribute super."ZipperAG";
+ "Zora" = dontDistribute super."Zora";
+ "Zwaluw" = dontDistribute super."Zwaluw";
+ "a50" = dontDistribute super."a50";
+ "abacate" = dontDistribute super."abacate";
+ "abc-puzzle" = dontDistribute super."abc-puzzle";
+ "abcBridge" = dontDistribute super."abcBridge";
+ "abcnotation" = dontDistribute super."abcnotation";
+ "abeson" = dontDistribute super."abeson";
+ "abstract-deque-tests" = dontDistribute super."abstract-deque-tests";
+ "abstract-par-accelerate" = dontDistribute super."abstract-par-accelerate";
+ "abt" = dontDistribute super."abt";
+ "ac-machine" = dontDistribute super."ac-machine";
+ "ac-machine-conduit" = dontDistribute super."ac-machine-conduit";
+ "accelerate-arithmetic" = dontDistribute super."accelerate-arithmetic";
+ "accelerate-cublas" = dontDistribute super."accelerate-cublas";
+ "accelerate-cuda" = dontDistribute super."accelerate-cuda";
+ "accelerate-cufft" = dontDistribute super."accelerate-cufft";
+ "accelerate-examples" = dontDistribute super."accelerate-examples";
+ "accelerate-fft" = dontDistribute super."accelerate-fft";
+ "accelerate-fftw" = dontDistribute super."accelerate-fftw";
+ "accelerate-fourier" = dontDistribute super."accelerate-fourier";
+ "accelerate-fourier-benchmark" = dontDistribute super."accelerate-fourier-benchmark";
+ "accelerate-io" = dontDistribute super."accelerate-io";
+ "accelerate-random" = dontDistribute super."accelerate-random";
+ "accelerate-utility" = dontDistribute super."accelerate-utility";
+ "accentuateus" = dontDistribute super."accentuateus";
+ "access-time" = dontDistribute super."access-time";
+ "acid-state" = doDistribute super."acid-state_0_12_4";
+ "acid-state-dist" = dontDistribute super."acid-state-dist";
+ "acid-state-tls" = dontDistribute super."acid-state-tls";
+ "acl2" = dontDistribute super."acl2";
+ "acme-all-monad" = dontDistribute super."acme-all-monad";
+ "acme-box" = dontDistribute super."acme-box";
+ "acme-cadre" = dontDistribute super."acme-cadre";
+ "acme-cofunctor" = dontDistribute super."acme-cofunctor";
+ "acme-colosson" = dontDistribute super."acme-colosson";
+ "acme-comonad" = dontDistribute super."acme-comonad";
+ "acme-cutegirl" = dontDistribute super."acme-cutegirl";
+ "acme-dont" = dontDistribute super."acme-dont";
+ "acme-flipping-tables" = dontDistribute super."acme-flipping-tables";
+ "acme-grawlix" = dontDistribute super."acme-grawlix";
+ "acme-hq9plus" = dontDistribute super."acme-hq9plus";
+ "acme-http" = dontDistribute super."acme-http";
+ "acme-inator" = dontDistribute super."acme-inator";
+ "acme-io" = dontDistribute super."acme-io";
+ "acme-lolcat" = dontDistribute super."acme-lolcat";
+ "acme-lookofdisapproval" = dontDistribute super."acme-lookofdisapproval";
+ "acme-memorandom" = dontDistribute super."acme-memorandom";
+ "acme-microwave" = dontDistribute super."acme-microwave";
+ "acme-miscorder" = dontDistribute super."acme-miscorder";
+ "acme-missiles" = dontDistribute super."acme-missiles";
+ "acme-now" = dontDistribute super."acme-now";
+ "acme-numbersystem" = dontDistribute super."acme-numbersystem";
+ "acme-omitted" = dontDistribute super."acme-omitted";
+ "acme-one" = dontDistribute super."acme-one";
+ "acme-operators" = dontDistribute super."acme-operators";
+ "acme-php" = dontDistribute super."acme-php";
+ "acme-pointful-numbers" = dontDistribute super."acme-pointful-numbers";
+ "acme-realworld" = dontDistribute super."acme-realworld";
+ "acme-safe" = dontDistribute super."acme-safe";
+ "acme-schoenfinkel" = dontDistribute super."acme-schoenfinkel";
+ "acme-strfry" = dontDistribute super."acme-strfry";
+ "acme-stringly-typed" = dontDistribute super."acme-stringly-typed";
+ "acme-strtok" = dontDistribute super."acme-strtok";
+ "acme-timemachine" = dontDistribute super."acme-timemachine";
+ "acme-year" = dontDistribute super."acme-year";
+ "acme-zero" = dontDistribute super."acme-zero";
+ "activehs" = dontDistribute super."activehs";
+ "activehs-base" = dontDistribute super."activehs-base";
+ "activitystreams-aeson" = dontDistribute super."activitystreams-aeson";
+ "actor" = dontDistribute super."actor";
+ "ad" = doDistribute super."ad_4_2_4";
+ "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";
+ "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_8_0_2";
+ "aeson-applicative" = dontDistribute super."aeson-applicative";
+ "aeson-bson" = dontDistribute super."aeson-bson";
+ "aeson-casing" = dontDistribute super."aeson-casing";
+ "aeson-diff" = dontDistribute super."aeson-diff";
+ "aeson-filthy" = dontDistribute super."aeson-filthy";
+ "aeson-iproute" = dontDistribute super."aeson-iproute";
+ "aeson-lens" = dontDistribute super."aeson-lens";
+ "aeson-native" = dontDistribute super."aeson-native";
+ "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky";
+ "aeson-schema" = doDistribute super."aeson-schema_0_3_0_7";
+ "aeson-serialize" = dontDistribute super."aeson-serialize";
+ "aeson-smart" = dontDistribute super."aeson-smart";
+ "aeson-streams" = dontDistribute super."aeson-streams";
+ "aeson-t" = dontDistribute super."aeson-t";
+ "aeson-toolkit" = dontDistribute super."aeson-toolkit";
+ "aeson-value-parser" = dontDistribute super."aeson-value-parser";
+ "aeson-yak" = dontDistribute super."aeson-yak";
+ "affine-invariant-ensemble-mcmc" = dontDistribute super."affine-invariant-ensemble-mcmc";
+ "afis" = dontDistribute super."afis";
+ "afv" = dontDistribute super."afv";
+ "agda-server" = dontDistribute super."agda-server";
+ "agda-snippets" = dontDistribute super."agda-snippets";
+ "agda-snippets-hakyll" = dontDistribute super."agda-snippets-hakyll";
+ "agum" = dontDistribute super."agum";
+ "aig" = dontDistribute super."aig";
+ "air" = dontDistribute super."air";
+ "air-extra" = dontDistribute super."air-extra";
+ "air-spec" = dontDistribute super."air-spec";
+ "air-th" = dontDistribute super."air-th";
+ "airbrake" = dontDistribute super."airbrake";
+ "airship" = dontDistribute super."airship";
+ "aivika" = dontDistribute super."aivika";
+ "aivika-experiment" = dontDistribute super."aivika-experiment";
+ "aivika-experiment-cairo" = dontDistribute super."aivika-experiment-cairo";
+ "aivika-experiment-chart" = dontDistribute super."aivika-experiment-chart";
+ "aivika-experiment-diagrams" = dontDistribute super."aivika-experiment-diagrams";
+ "aivika-transformers" = dontDistribute super."aivika-transformers";
+ "ajhc" = dontDistribute super."ajhc";
+ "al" = dontDistribute super."al";
+ "alea" = dontDistribute super."alea";
+ "alex" = doDistribute super."alex_3_1_4";
+ "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_0_3_6";
+ "amazonka-apigateway" = dontDistribute super."amazonka-apigateway";
+ "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_0_3_6";
+ "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_0_3_6";
+ "amazonka-cloudfront" = doDistribute super."amazonka-cloudfront_0_3_6";
+ "amazonka-cloudhsm" = doDistribute super."amazonka-cloudhsm_0_3_6";
+ "amazonka-cloudsearch" = doDistribute super."amazonka-cloudsearch_0_3_6";
+ "amazonka-cloudsearch-domains" = doDistribute super."amazonka-cloudsearch-domains_0_3_6";
+ "amazonka-cloudtrail" = doDistribute super."amazonka-cloudtrail_0_3_6";
+ "amazonka-cloudwatch" = doDistribute super."amazonka-cloudwatch_0_3_6";
+ "amazonka-cloudwatch-logs" = doDistribute super."amazonka-cloudwatch-logs_0_3_6";
+ "amazonka-codecommit" = dontDistribute super."amazonka-codecommit";
+ "amazonka-codedeploy" = doDistribute super."amazonka-codedeploy_0_3_6";
+ "amazonka-codepipeline" = dontDistribute super."amazonka-codepipeline";
+ "amazonka-cognito-identity" = doDistribute super."amazonka-cognito-identity_0_3_6";
+ "amazonka-cognito-sync" = doDistribute super."amazonka-cognito-sync_0_3_6";
+ "amazonka-config" = doDistribute super."amazonka-config_0_3_6";
+ "amazonka-core" = doDistribute super."amazonka-core_0_3_6";
+ "amazonka-datapipeline" = doDistribute super."amazonka-datapipeline_0_3_6";
+ "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm";
+ "amazonka-directconnect" = doDistribute super."amazonka-directconnect_0_3_6";
+ "amazonka-ds" = dontDistribute super."amazonka-ds";
+ "amazonka-dynamodb" = doDistribute super."amazonka-dynamodb_0_3_6";
+ "amazonka-dynamodb-streams" = dontDistribute super."amazonka-dynamodb-streams";
+ "amazonka-ec2" = doDistribute super."amazonka-ec2_0_3_6_1";
+ "amazonka-ecs" = doDistribute super."amazonka-ecs_0_3_6";
+ "amazonka-efs" = dontDistribute super."amazonka-efs";
+ "amazonka-elasticache" = doDistribute super."amazonka-elasticache_0_3_6";
+ "amazonka-elasticbeanstalk" = doDistribute super."amazonka-elasticbeanstalk_0_3_6";
+ "amazonka-elasticsearch" = dontDistribute super."amazonka-elasticsearch";
+ "amazonka-elastictranscoder" = doDistribute super."amazonka-elastictranscoder_0_3_6";
+ "amazonka-elb" = doDistribute super."amazonka-elb_0_3_6";
+ "amazonka-emr" = doDistribute super."amazonka-emr_0_3_6";
+ "amazonka-glacier" = doDistribute super."amazonka-glacier_0_3_6";
+ "amazonka-iam" = doDistribute super."amazonka-iam_0_3_6";
+ "amazonka-importexport" = doDistribute super."amazonka-importexport_0_3_6";
+ "amazonka-inspector" = dontDistribute super."amazonka-inspector";
+ "amazonka-iot" = dontDistribute super."amazonka-iot";
+ "amazonka-iot-dataplane" = dontDistribute super."amazonka-iot-dataplane";
+ "amazonka-kinesis" = doDistribute super."amazonka-kinesis_0_3_6";
+ "amazonka-kinesis-firehose" = dontDistribute super."amazonka-kinesis-firehose";
+ "amazonka-kms" = doDistribute super."amazonka-kms_0_3_6";
+ "amazonka-lambda" = doDistribute super."amazonka-lambda_0_3_6";
+ "amazonka-marketplace-analytics" = dontDistribute super."amazonka-marketplace-analytics";
+ "amazonka-ml" = doDistribute super."amazonka-ml_0_3_6";
+ "amazonka-opsworks" = doDistribute super."amazonka-opsworks_0_3_6";
+ "amazonka-rds" = doDistribute super."amazonka-rds_0_3_6";
+ "amazonka-redshift" = doDistribute super."amazonka-redshift_0_3_6";
+ "amazonka-route53" = doDistribute super."amazonka-route53_0_3_6_1";
+ "amazonka-route53-domains" = doDistribute super."amazonka-route53-domains_0_3_6";
+ "amazonka-s3" = doDistribute super."amazonka-s3_0_3_6";
+ "amazonka-sdb" = doDistribute super."amazonka-sdb_0_3_6";
+ "amazonka-ses" = doDistribute super."amazonka-ses_0_3_6";
+ "amazonka-sns" = doDistribute super."amazonka-sns_0_3_6";
+ "amazonka-sqs" = doDistribute super."amazonka-sqs_0_3_6";
+ "amazonka-ssm" = doDistribute super."amazonka-ssm_0_3_6";
+ "amazonka-storagegateway" = doDistribute super."amazonka-storagegateway_0_3_6";
+ "amazonka-sts" = doDistribute super."amazonka-sts_0_3_6";
+ "amazonka-support" = doDistribute super."amazonka-support_0_3_6";
+ "amazonka-swf" = doDistribute super."amazonka-swf_0_3_6";
+ "amazonka-test" = dontDistribute super."amazonka-test";
+ "amazonka-waf" = dontDistribute super."amazonka-waf";
+ "amazonka-workspaces" = doDistribute super."amazonka-workspaces_0_3_6";
+ "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";
+ "annotated-wl-pprint" = doDistribute super."annotated-wl-pprint_0_6_0";
+ "anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests";
+ "ansi-pretty" = dontDistribute super."ansi-pretty";
+ "ansigraph" = dontDistribute super."ansigraph";
+ "antagonist" = dontDistribute super."antagonist";
+ "antfarm" = dontDistribute super."antfarm";
+ "anticiv" = dontDistribute super."anticiv";
+ "antigate" = dontDistribute super."antigate";
+ "antimirov" = dontDistribute super."antimirov";
+ "antiquoter" = dontDistribute super."antiquoter";
+ "antisplice" = dontDistribute super."antisplice";
+ "antlrc" = dontDistribute super."antlrc";
+ "anydbm" = dontDistribute super."anydbm";
+ "aosd" = dontDistribute super."aosd";
+ "ap-reflect" = dontDistribute super."ap-reflect";
+ "apache-md5" = dontDistribute super."apache-md5";
+ "apelsin" = dontDistribute super."apelsin";
+ "api-builder" = dontDistribute super."api-builder";
+ "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode";
+ "api-tools" = dontDistribute super."api-tools";
+ "apiary-helics" = dontDistribute super."apiary-helics";
+ "apiary-purescript" = dontDistribute super."apiary-purescript";
+ "apis" = dontDistribute super."apis";
+ "apotiki" = dontDistribute super."apotiki";
+ "app-lens" = dontDistribute super."app-lens";
+ "app-settings" = dontDistribute super."app-settings";
+ "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";
+ "apply-refact" = dontDistribute super."apply-refact";
+ "apportionment" = dontDistribute super."apportionment";
+ "approx-rand-test" = dontDistribute super."approx-rand-test";
+ "approximate-equality" = dontDistribute super."approximate-equality";
+ "ar-timestamp-wiper" = dontDistribute super."ar-timestamp-wiper";
+ "arb-fft" = dontDistribute super."arb-fft";
+ "arbb-vm" = dontDistribute super."arbb-vm";
+ "archive" = dontDistribute super."archive";
+ "archiver" = dontDistribute super."archiver";
+ "archlinux" = dontDistribute super."archlinux";
+ "archlinux-web" = dontDistribute super."archlinux-web";
+ "archnews" = dontDistribute super."archnews";
+ "arff" = dontDistribute super."arff";
+ "arghwxhaskell" = dontDistribute super."arghwxhaskell";
+ "argon" = dontDistribute super."argon";
+ "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";
+ "artery" = dontDistribute super."artery";
+ "arx" = dontDistribute super."arx";
+ "arxiv" = dontDistribute super."arxiv";
+ "ascetic" = dontDistribute super."ascetic";
+ "ascii" = dontDistribute super."ascii";
+ "ascii-progress" = dontDistribute super."ascii-progress";
+ "ascii-vector-avc" = dontDistribute super."ascii-vector-avc";
+ "ascii85-conduit" = dontDistribute super."ascii85-conduit";
+ "asic" = dontDistribute super."asic";
+ "asil" = dontDistribute super."asil";
+ "asn1-data" = dontDistribute super."asn1-data";
+ "asn1dump" = dontDistribute super."asn1dump";
+ "assembler" = dontDistribute super."assembler";
+ "assert" = dontDistribute super."assert";
+ "assert-failure" = dontDistribute super."assert-failure";
+ "assertions" = dontDistribute super."assertions";
+ "assimp" = dontDistribute super."assimp";
+ "astar" = dontDistribute super."astar";
+ "astrds" = dontDistribute super."astrds";
+ "astview" = dontDistribute super."astview";
+ "astview-utils" = dontDistribute super."astview-utils";
+ "async-dejafu" = dontDistribute super."async-dejafu";
+ "async-extras" = dontDistribute super."async-extras";
+ "async-manager" = dontDistribute super."async-manager";
+ "async-pool" = dontDistribute super."async-pool";
+ "asynchronous-exceptions" = dontDistribute super."asynchronous-exceptions";
+ "aterm" = dontDistribute super."aterm";
+ "aterm-utils" = dontDistribute super."aterm-utils";
+ "atl" = dontDistribute super."atl";
+ "atlassian-connect-core" = dontDistribute super."atlassian-connect-core";
+ "atlassian-connect-descriptor" = dontDistribute super."atlassian-connect-descriptor";
+ "atmos" = dontDistribute super."atmos";
+ "atmos-dimensional" = dontDistribute super."atmos-dimensional";
+ "atmos-dimensional-tf" = dontDistribute super."atmos-dimensional-tf";
+ "atom" = dontDistribute super."atom";
+ "atom-basic" = dontDistribute super."atom-basic";
+ "atom-conduit" = dontDistribute super."atom-conduit";
+ "atom-msp430" = dontDistribute super."atom-msp430";
+ "atomic-primops-foreign" = dontDistribute super."atomic-primops-foreign";
+ "atomic-primops-vector" = dontDistribute super."atomic-primops-vector";
+ "atomic-write" = dontDistribute super."atomic-write";
+ "atomo" = dontDistribute super."atomo";
+ "atp-haskell" = dontDistribute super."atp-haskell";
+ "attempt" = dontDistribute super."attempt";
+ "atto-lisp" = dontDistribute super."atto-lisp";
+ "attoparsec" = doDistribute super."attoparsec_0_12_1_6";
+ "attoparsec-arff" = dontDistribute super."attoparsec-arff";
+ "attoparsec-binary" = dontDistribute super."attoparsec-binary";
+ "attoparsec-conduit" = dontDistribute super."attoparsec-conduit";
+ "attoparsec-csv" = dontDistribute super."attoparsec-csv";
+ "attoparsec-iteratee" = dontDistribute super."attoparsec-iteratee";
+ "attoparsec-parsec" = dontDistribute super."attoparsec-parsec";
+ "attoparsec-text" = dontDistribute super."attoparsec-text";
+ "attoparsec-text-enumerator" = dontDistribute super."attoparsec-text-enumerator";
+ "attosplit" = dontDistribute super."attosplit";
+ "atuin" = dontDistribute super."atuin";
+ "audacity" = dontDistribute super."audacity";
+ "audiovisual" = dontDistribute super."audiovisual";
+ "augeas" = dontDistribute super."augeas";
+ "augur" = dontDistribute super."augur";
+ "aur" = dontDistribute super."aur";
+ "authenticate-kerberos" = dontDistribute super."authenticate-kerberos";
+ "authenticate-ldap" = dontDistribute super."authenticate-ldap";
+ "authinfo-hs" = dontDistribute super."authinfo-hs";
+ "authoring" = dontDistribute super."authoring";
+ "autonix-deps" = dontDistribute super."autonix-deps";
+ "autonix-deps-kf5" = dontDistribute super."autonix-deps-kf5";
+ "autoproc" = dontDistribute super."autoproc";
+ "avahi" = dontDistribute super."avahi";
+ "avatar-generator" = dontDistribute super."avatar-generator";
+ "average" = dontDistribute super."average";
+ "avers" = dontDistribute super."avers";
+ "avl-static" = dontDistribute super."avl-static";
+ "avr-shake" = dontDistribute super."avr-shake";
+ "awesomium" = dontDistribute super."awesomium";
+ "awesomium-glut" = dontDistribute super."awesomium-glut";
+ "awesomium-raw" = dontDistribute super."awesomium-raw";
+ "aws" = doDistribute super."aws_0_12_1";
+ "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" = dontDistribute super."barrier";
+ "barrier-monad" = dontDistribute super."barrier-monad";
+ "base-generics" = dontDistribute super."base-generics";
+ "base-io-access" = dontDistribute super."base-io-access";
+ "base-noprelude" = dontDistribute super."base-noprelude";
+ "base32-bytestring" = dontDistribute super."base32-bytestring";
+ "base58-bytestring" = dontDistribute super."base58-bytestring";
+ "base58address" = dontDistribute super."base58address";
+ "base64-conduit" = dontDistribute super."base64-conduit";
+ "base91" = dontDistribute super."base91";
+ "basex-client" = dontDistribute super."basex-client";
+ "bash" = dontDistribute super."bash";
+ "basic-lens" = dontDistribute super."basic-lens";
+ "basic-sop" = dontDistribute super."basic-sop";
+ "baskell" = dontDistribute super."baskell";
+ "battlenet" = dontDistribute super."battlenet";
+ "battlenet-yesod" = dontDistribute super."battlenet-yesod";
+ "battleships" = dontDistribute super."battleships";
+ "bayes-stack" = dontDistribute super."bayes-stack";
+ "bbdb" = dontDistribute super."bbdb";
+ "bbi" = dontDistribute super."bbi";
+ "bcrypt" = doDistribute super."bcrypt_0_0_6";
+ "bdd" = dontDistribute super."bdd";
+ "bdelta" = dontDistribute super."bdelta";
+ "bdo" = dontDistribute super."bdo";
+ "beamable" = dontDistribute super."beamable";
+ "beautifHOL" = dontDistribute super."beautifHOL";
+ "bed-and-breakfast" = dontDistribute super."bed-and-breakfast";
+ "bein" = dontDistribute super."bein";
+ "benchmark-function" = dontDistribute super."benchmark-function";
+ "benchpress" = dontDistribute super."benchpress";
+ "bencoding" = dontDistribute super."bencoding";
+ "berkeleydb" = dontDistribute super."berkeleydb";
+ "berp" = dontDistribute super."berp";
+ "bert" = dontDistribute super."bert";
+ "besout" = dontDistribute super."besout";
+ "bet" = dontDistribute super."bet";
+ "betacode" = dontDistribute super."betacode";
+ "between" = dontDistribute super."between";
+ "bf-cata" = dontDistribute super."bf-cata";
+ "bff" = dontDistribute super."bff";
+ "bff-mono" = dontDistribute super."bff-mono";
+ "bgmax" = dontDistribute super."bgmax";
+ "bgzf" = dontDistribute super."bgzf";
+ "bibtex" = dontDistribute super."bibtex";
+ "bidirectionalization-combined" = dontDistribute super."bidirectionalization-combined";
+ "bidispec" = dontDistribute super."bidispec";
+ "bidispec-extras" = dontDistribute super."bidispec-extras";
+ "bifunctors" = doDistribute super."bifunctors_5";
+ "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";
+ "bimap" = dontDistribute super."bimap";
+ "bimap-server" = dontDistribute super."bimap-server";
+ "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-parser" = dontDistribute super."binary-parser";
+ "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";
+ "binary-typed" = dontDistribute super."binary-typed";
+ "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-GLFW" = dontDistribute super."bindings-GLFW";
+ "bindings-K8055" = dontDistribute super."bindings-K8055";
+ "bindings-apr" = dontDistribute super."bindings-apr";
+ "bindings-apr-util" = dontDistribute super."bindings-apr-util";
+ "bindings-audiofile" = dontDistribute super."bindings-audiofile";
+ "bindings-bfd" = dontDistribute super."bindings-bfd";
+ "bindings-cctools" = dontDistribute super."bindings-cctools";
+ "bindings-codec2" = dontDistribute super."bindings-codec2";
+ "bindings-common" = dontDistribute super."bindings-common";
+ "bindings-dc1394" = dontDistribute super."bindings-dc1394";
+ "bindings-directfb" = dontDistribute super."bindings-directfb";
+ "bindings-eskit" = dontDistribute super."bindings-eskit";
+ "bindings-fann" = dontDistribute super."bindings-fann";
+ "bindings-fluidsynth" = dontDistribute super."bindings-fluidsynth";
+ "bindings-friso" = dontDistribute super."bindings-friso";
+ "bindings-glib" = dontDistribute super."bindings-glib";
+ "bindings-gobject" = dontDistribute super."bindings-gobject";
+ "bindings-gpgme" = dontDistribute super."bindings-gpgme";
+ "bindings-gsl" = dontDistribute super."bindings-gsl";
+ "bindings-gts" = dontDistribute super."bindings-gts";
+ "bindings-hamlib" = dontDistribute super."bindings-hamlib";
+ "bindings-hdf5" = dontDistribute super."bindings-hdf5";
+ "bindings-levmar" = dontDistribute super."bindings-levmar";
+ "bindings-libcddb" = dontDistribute super."bindings-libcddb";
+ "bindings-libffi" = dontDistribute super."bindings-libffi";
+ "bindings-libftdi" = dontDistribute super."bindings-libftdi";
+ "bindings-librrd" = dontDistribute super."bindings-librrd";
+ "bindings-libstemmer" = dontDistribute super."bindings-libstemmer";
+ "bindings-libusb" = dontDistribute super."bindings-libusb";
+ "bindings-libv4l2" = dontDistribute super."bindings-libv4l2";
+ "bindings-libzip" = dontDistribute super."bindings-libzip";
+ "bindings-linux-videodev2" = dontDistribute super."bindings-linux-videodev2";
+ "bindings-lxc" = dontDistribute super."bindings-lxc";
+ "bindings-mmap" = dontDistribute super."bindings-mmap";
+ "bindings-mpdecimal" = dontDistribute super."bindings-mpdecimal";
+ "bindings-nettle" = dontDistribute super."bindings-nettle";
+ "bindings-parport" = dontDistribute super."bindings-parport";
+ "bindings-portaudio" = dontDistribute super."bindings-portaudio";
+ "bindings-posix" = dontDistribute super."bindings-posix";
+ "bindings-potrace" = dontDistribute super."bindings-potrace";
+ "bindings-ppdev" = dontDistribute super."bindings-ppdev";
+ "bindings-saga-cmd" = dontDistribute super."bindings-saga-cmd";
+ "bindings-sane" = dontDistribute super."bindings-sane";
+ "bindings-sc3" = dontDistribute super."bindings-sc3";
+ "bindings-sipc" = dontDistribute super."bindings-sipc";
+ "bindings-sophia" = dontDistribute super."bindings-sophia";
+ "bindings-sqlite3" = dontDistribute super."bindings-sqlite3";
+ "bindings-svm" = dontDistribute super."bindings-svm";
+ "bindings-uname" = dontDistribute super."bindings-uname";
+ "bindings-yices" = dontDistribute super."bindings-yices";
+ "bindynamic" = dontDistribute super."bindynamic";
+ "binembed" = dontDistribute super."binembed";
+ "binembed-example" = dontDistribute super."binembed-example";
+ "bio" = dontDistribute super."bio";
+ "bioinformatics-toolkit" = dontDistribute super."bioinformatics-toolkit";
+ "biophd" = dontDistribute super."biophd";
+ "biosff" = dontDistribute super."biosff";
+ "biostockholm" = dontDistribute super."biostockholm";
+ "bird" = dontDistribute super."bird";
+ "bit-array" = dontDistribute super."bit-array";
+ "bit-vector" = dontDistribute super."bit-vector";
+ "bitarray" = dontDistribute super."bitarray";
+ "bitcoin-rpc" = dontDistribute super."bitcoin-rpc";
+ "bitly-cli" = dontDistribute super."bitly-cli";
+ "bitmap" = dontDistribute super."bitmap";
+ "bitmap-opengl" = dontDistribute super."bitmap-opengl";
+ "bitmaps" = dontDistribute super."bitmaps";
+ "bits-atomic" = dontDistribute super."bits-atomic";
+ "bits-conduit" = dontDistribute super."bits-conduit";
+ "bits-extras" = dontDistribute super."bits-extras";
+ "bitset" = dontDistribute super."bitset";
+ "bitspeak" = dontDistribute super."bitspeak";
+ "bitstream" = dontDistribute super."bitstream";
+ "bitstring" = dontDistribute super."bitstring";
+ "bittorrent" = dontDistribute super."bittorrent";
+ "bitvec" = dontDistribute super."bitvec";
+ "bitx-bitcoin" = dontDistribute super."bitx-bitcoin";
+ "bk-tree" = dontDistribute super."bk-tree";
+ "bkr" = dontDistribute super."bkr";
+ "bktrees" = dontDistribute super."bktrees";
+ "bla" = dontDistribute super."bla";
+ "black-jewel" = dontDistribute super."black-jewel";
+ "blacktip" = dontDistribute super."blacktip";
+ "blake2" = dontDistribute super."blake2";
+ "blakesum" = dontDistribute super."blakesum";
+ "blakesum-demo" = dontDistribute super."blakesum-demo";
+ "blank-canvas" = dontDistribute super."blank-canvas";
+ "blas" = dontDistribute super."blas";
+ "blas-hs" = dontDistribute super."blas-hs";
+ "blaze" = dontDistribute super."blaze";
+ "blaze-bootstrap" = dontDistribute super."blaze-bootstrap";
+ "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" = doDistribute super."bloodhound_0_7_0_1";
+ "bloxorz" = dontDistribute super."bloxorz";
+ "blubber" = dontDistribute super."blubber";
+ "blubber-server" = dontDistribute super."blubber-server";
+ "bluetile" = dontDistribute super."bluetile";
+ "bluetileutils" = dontDistribute super."bluetileutils";
+ "blunt" = dontDistribute super."blunt";
+ "board-games" = dontDistribute super."board-games";
+ "bogre-banana" = dontDistribute super."bogre-banana";
+ "bond" = dontDistribute super."bond";
+ "boolean-list" = dontDistribute super."boolean-list";
+ "boolean-normal-forms" = dontDistribute super."boolean-normal-forms";
+ "boolexpr" = dontDistribute super."boolexpr";
+ "bools" = dontDistribute super."bools";
+ "boolsimplifier" = dontDistribute super."boolsimplifier";
+ "boomange" = dontDistribute super."boomange";
+ "boomerang" = dontDistribute super."boomerang";
+ "boomslang" = dontDistribute super."boomslang";
+ "borel" = dontDistribute super."borel";
+ "bot" = dontDistribute super."bot";
+ "both" = dontDistribute super."both";
+ "botpp" = dontDistribute super."botpp";
+ "bound-gen" = dontDistribute super."bound-gen";
+ "bounded-tchan" = dontDistribute super."bounded-tchan";
+ "boundingboxes" = dontDistribute super."boundingboxes";
+ "bpann" = dontDistribute super."bpann";
+ "brainfuck-monad" = dontDistribute super."brainfuck-monad";
+ "brainfuck-tut" = dontDistribute super."brainfuck-tut";
+ "break" = dontDistribute super."break";
+ "breakout" = dontDistribute super."breakout";
+ "breve" = dontDistribute super."breve";
+ "brians-brain" = dontDistribute super."brians-brain";
+ "brick" = dontDistribute super."brick";
+ "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-lens" = dontDistribute super."bson-lens";
+ "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";
+ "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";
+ "bustle" = dontDistribute super."bustle";
+ "bv" = dontDistribute super."bv";
+ "byline" = dontDistribute super."byline";
+ "bytable" = dontDistribute super."bytable";
+ "byteset" = dontDistribute super."byteset";
+ "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_25_2";
+ "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_30_2";
+ "cabal-dependency-licenses" = dontDistribute super."cabal-dependency-licenses";
+ "cabal-dev" = dontDistribute super."cabal-dev";
+ "cabal-dir" = dontDistribute super."cabal-dir";
+ "cabal-ghc-dynflags" = dontDistribute super."cabal-ghc-dynflags";
+ "cabal-ghci" = dontDistribute super."cabal-ghci";
+ "cabal-graphdeps" = dontDistribute super."cabal-graphdeps";
+ "cabal-helper" = dontDistribute super."cabal-helper";
+ "cabal-install-bundle" = dontDistribute super."cabal-install-bundle";
+ "cabal-install-ghc72" = dontDistribute super."cabal-install-ghc72";
+ "cabal-install-ghc74" = dontDistribute super."cabal-install-ghc74";
+ "cabal-lenses" = dontDistribute super."cabal-lenses";
+ "cabal-macosx" = dontDistribute super."cabal-macosx";
+ "cabal-meta" = dontDistribute super."cabal-meta";
+ "cabal-mon" = dontDistribute super."cabal-mon";
+ "cabal-nirvana" = dontDistribute super."cabal-nirvana";
+ "cabal-progdeps" = dontDistribute super."cabal-progdeps";
+ "cabal-query" = dontDistribute super."cabal-query";
+ "cabal-scripts" = dontDistribute super."cabal-scripts";
+ "cabal-setup" = dontDistribute super."cabal-setup";
+ "cabal-sign" = dontDistribute super."cabal-sign";
+ "cabal-sort" = dontDistribute super."cabal-sort";
+ "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" = dontDistribute super."cacophony";
+ "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";
+ "calculator" = dontDistribute super."calculator";
+ "caldims" = dontDistribute super."caldims";
+ "caledon" = dontDistribute super."caledon";
+ "call" = dontDistribute super."call";
+ "call-haskell-from-anything" = dontDistribute super."call-haskell-from-anything";
+ "camh" = dontDistribute super."camh";
+ "campfire" = dontDistribute super."campfire";
+ "canonical-filepath" = dontDistribute super."canonical-filepath";
+ "canteven-config" = dontDistribute super."canteven-config";
+ "canteven-listen-http" = dontDistribute super."canteven-listen-http";
+ "canteven-log" = dontDistribute super."canteven-log";
+ "canteven-template" = dontDistribute super."canteven-template";
+ "cantor" = dontDistribute super."cantor";
+ "cao" = dontDistribute super."cao";
+ "cap" = dontDistribute super."cap";
+ "capped-list" = dontDistribute super."capped-list";
+ "capri" = dontDistribute super."capri";
+ "car-pool" = dontDistribute super."car-pool";
+ "caramia" = dontDistribute super."caramia";
+ "carboncopy" = dontDistribute super."carboncopy";
+ "carettah" = dontDistribute super."carettah";
+ "carray" = dontDistribute super."carray";
+ "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";
+ "cased" = dontDistribute super."cased";
+ "cash" = dontDistribute super."cash";
+ "casing" = dontDistribute super."casing";
+ "cassandra-cql" = dontDistribute super."cassandra-cql";
+ "cassandra-thrift" = dontDistribute super."cassandra-thrift";
+ "cassava-conduit" = dontDistribute super."cassava-conduit";
+ "cassava-streams" = dontDistribute super."cassava-streams";
+ "cassette" = dontDistribute super."cassette";
+ "cassy" = dontDistribute super."cassy";
+ "castle" = dontDistribute super."castle";
+ "casui" = dontDistribute super."casui";
+ "catamorphism" = dontDistribute super."catamorphism";
+ "catch-fd" = dontDistribute super."catch-fd";
+ "categorical-algebra" = dontDistribute super."categorical-algebra";
+ "categories" = dontDistribute super."categories";
+ "category-extras" = dontDistribute super."category-extras";
+ "cayley-dickson" = dontDistribute super."cayley-dickson";
+ "cblrepo" = dontDistribute super."cblrepo";
+ "cci" = dontDistribute super."cci";
+ "ccnx" = dontDistribute super."ccnx";
+ "cctools-workqueue" = dontDistribute super."cctools-workqueue";
+ "cedict" = dontDistribute super."cedict";
+ "cef" = dontDistribute super."cef";
+ "ceilometer-common" = dontDistribute super."ceilometer-common";
+ "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo";
+ "cerberus" = dontDistribute super."cerberus";
+ "cereal-derive" = dontDistribute super."cereal-derive";
+ "cereal-enumerator" = dontDistribute super."cereal-enumerator";
+ "cereal-ieee754" = dontDistribute super."cereal-ieee754";
+ "cereal-plus" = dontDistribute super."cereal-plus";
+ "cereal-text" = dontDistribute super."cereal-text";
+ "certificate" = dontDistribute super."certificate";
+ "cf" = dontDistribute super."cf";
+ "cfipu" = dontDistribute super."cfipu";
+ "cflp" = dontDistribute super."cflp";
+ "cfopu" = dontDistribute super."cfopu";
+ "cg" = dontDistribute super."cg";
+ "cgen" = dontDistribute super."cgen";
+ "cgi-undecidable" = dontDistribute super."cgi-undecidable";
+ "cgi-utils" = dontDistribute super."cgi-utils";
+ "cgrep" = dontDistribute super."cgrep";
+ "chain-codes" = dontDistribute super."chain-codes";
+ "chalk" = dontDistribute super."chalk";
+ "chalkboard" = dontDistribute super."chalkboard";
+ "chalkboard-viewer" = dontDistribute super."chalkboard-viewer";
+ "chalmers-lava2000" = dontDistribute super."chalmers-lava2000";
+ "chan-split" = dontDistribute super."chan-split";
+ "change-monger" = dontDistribute super."change-monger";
+ "charade" = dontDistribute super."charade";
+ "charsetdetect" = dontDistribute super."charsetdetect";
+ "charsetdetect-ae" = dontDistribute super."charsetdetect-ae";
+ "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" = dontDistribute super."cheapskate";
+ "check-pvp" = dontDistribute super."check-pvp";
+ "checked" = dontDistribute super."checked";
+ "chell-hunit" = dontDistribute super."chell-hunit";
+ "chesshs" = dontDistribute super."chesshs";
+ "chevalier-common" = dontDistribute super."chevalier-common";
+ "chp" = dontDistribute super."chp";
+ "chp-mtl" = dontDistribute super."chp-mtl";
+ "chp-plus" = dontDistribute super."chp-plus";
+ "chp-spec" = dontDistribute super."chp-spec";
+ "chp-transformers" = dontDistribute super."chp-transformers";
+ "chronograph" = dontDistribute super."chronograph";
+ "chu2" = dontDistribute super."chu2";
+ "chuchu" = dontDistribute super."chuchu";
+ "chunks" = dontDistribute super."chunks";
+ "chunky" = dontDistribute super."chunky";
+ "church-list" = dontDistribute super."church-list";
+ "cil" = dontDistribute super."cil";
+ "cinvoke" = dontDistribute super."cinvoke";
+ "cio" = dontDistribute super."cio";
+ "cipher-rc5" = dontDistribute super."cipher-rc5";
+ "ciphersaber2" = dontDistribute super."ciphersaber2";
+ "circ" = dontDistribute super."circ";
+ "cirru-parser" = dontDistribute super."cirru-parser";
+ "citation-resolve" = dontDistribute super."citation-resolve";
+ "citeproc-hs" = dontDistribute super."citeproc-hs";
+ "citeproc-hs-pandoc-filter" = dontDistribute super."citeproc-hs-pandoc-filter";
+ "cityhash" = dontDistribute super."cityhash";
+ "cjk" = dontDistribute super."cjk";
+ "clac" = dontDistribute super."clac";
+ "clafer" = dontDistribute super."clafer";
+ "claferIG" = dontDistribute super."claferIG";
+ "claferwiki" = dontDistribute super."claferwiki";
+ "clang-pure" = dontDistribute super."clang-pure";
+ "clanki" = dontDistribute super."clanki";
+ "clash" = dontDistribute super."clash";
+ "clash-ghc" = doDistribute super."clash-ghc_0_5_15";
+ "clash-lib" = doDistribute super."clash-lib_0_5_13";
+ "clash-prelude" = doDistribute super."clash-prelude_0_9_3";
+ "clash-prelude-quickcheck" = dontDistribute super."clash-prelude-quickcheck";
+ "clash-systemverilog" = doDistribute super."clash-systemverilog_0_5_10";
+ "clash-verilog" = doDistribute super."clash-verilog_0_5_10";
+ "clash-vhdl" = doDistribute super."clash-vhdl_0_5_12";
+ "classify" = dontDistribute super."classify";
+ "classy-parallel" = dontDistribute super."classy-parallel";
+ "clckwrks" = dontDistribute super."clckwrks";
+ "clckwrks-cli" = dontDistribute super."clckwrks-cli";
+ "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-plugin-media" = dontDistribute super."clckwrks-plugin-media";
+ "clckwrks-plugin-page" = dontDistribute super."clckwrks-plugin-page";
+ "clckwrks-theme-bootstrap" = dontDistribute super."clckwrks-theme-bootstrap";
+ "clckwrks-theme-clckwrks" = dontDistribute super."clckwrks-theme-clckwrks";
+ "clckwrks-theme-geo-bootstrap" = dontDistribute super."clckwrks-theme-geo-bootstrap";
+ "cld2" = dontDistribute super."cld2";
+ "clean-home" = dontDistribute super."clean-home";
+ "clean-unions" = dontDistribute super."clean-unions";
+ "cless" = dontDistribute super."cless";
+ "clevercss" = dontDistribute super."clevercss";
+ "cli" = dontDistribute super."cli";
+ "click-clack" = dontDistribute super."click-clack";
+ "clifford" = dontDistribute super."clifford";
+ "clippard" = dontDistribute super."clippard";
+ "clipper" = dontDistribute super."clipper";
+ "clippings" = dontDistribute super."clippings";
+ "clist" = dontDistribute super."clist";
+ "clock" = doDistribute super."clock_0_5_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";
+ "cluss" = dontDistribute super."cluss";
+ "clustertools" = dontDistribute super."clustertools";
+ "clutterhs" = dontDistribute super."clutterhs";
+ "cmaes" = dontDistribute super."cmaes";
+ "cmath" = dontDistribute super."cmath";
+ "cmathml3" = dontDistribute super."cmathml3";
+ "cmd-item" = dontDistribute super."cmd-item";
+ "cmdargs-browser" = dontDistribute super."cmdargs-browser";
+ "cmdlib" = dontDistribute super."cmdlib";
+ "cmdtheline" = dontDistribute super."cmdtheline";
+ "cml" = dontDistribute super."cml";
+ "cmonad" = dontDistribute super."cmonad";
+ "cmu" = dontDistribute super."cmu";
+ "cnc-spec-compiler" = dontDistribute super."cnc-spec-compiler";
+ "cndict" = dontDistribute super."cndict";
+ "codec" = dontDistribute super."codec";
+ "codec-libevent" = dontDistribute super."codec-libevent";
+ "codec-mbox" = dontDistribute super."codec-mbox";
+ "codecov-haskell" = dontDistribute super."codecov-haskell";
+ "codemonitor" = dontDistribute super."codemonitor";
+ "codepad" = dontDistribute super."codepad";
+ "codex" = doDistribute super."codex_0_3_0_10";
+ "codo-notation" = dontDistribute super."codo-notation";
+ "cofunctor" = dontDistribute super."cofunctor";
+ "cognimeta-utils" = dontDistribute super."cognimeta-utils";
+ "coinbase-exchange" = dontDistribute super."coinbase-exchange";
+ "colada" = dontDistribute super."colada";
+ "colchis" = dontDistribute super."colchis";
+ "collada-output" = dontDistribute super."collada-output";
+ "collada-types" = dontDistribute super."collada-types";
+ "collapse-util" = dontDistribute super."collapse-util";
+ "collection-json" = dontDistribute super."collection-json";
+ "collections" = dontDistribute super."collections";
+ "collections-api" = dontDistribute super."collections-api";
+ "collections-base-instances" = dontDistribute super."collections-base-instances";
+ "colock" = dontDistribute super."colock";
+ "colorize-haskell" = dontDistribute super."colorize-haskell";
+ "colors" = dontDistribute super."colors";
+ "coltrane" = dontDistribute super."coltrane";
+ "com" = dontDistribute super."com";
+ "combinat" = dontDistribute super."combinat";
+ "combinat-diagrams" = dontDistribute super."combinat-diagrams";
+ "combinator-interactive" = dontDistribute super."combinator-interactive";
+ "combinatorial-problems" = dontDistribute super."combinatorial-problems";
+ "combinatorics" = dontDistribute super."combinatorics";
+ "combobuffer" = dontDistribute super."combobuffer";
+ "comfort-graph" = dontDistribute super."comfort-graph";
+ "command" = dontDistribute super."command";
+ "command-qq" = dontDistribute super."command-qq";
+ "commodities" = dontDistribute super."commodities";
+ "commsec" = dontDistribute super."commsec";
+ "commsec-keyexchange" = dontDistribute super."commsec-keyexchange";
+ "commutative" = dontDistribute super."commutative";
+ "comonad-extras" = dontDistribute super."comonad-extras";
+ "comonad-random" = dontDistribute super."comonad-random";
+ "compact-map" = dontDistribute super."compact-map";
+ "compact-socket" = dontDistribute super."compact-socket";
+ "compact-string" = dontDistribute super."compact-string";
+ "compact-string-fix" = dontDistribute super."compact-string-fix";
+ "compactmap" = dontDistribute super."compactmap";
+ "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";
+ "composition-extra" = doDistribute super."composition-extra_1_1_0";
+ "composition-tree" = dontDistribute super."composition-tree";
+ "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-machines" = dontDistribute super."concurrent-machines";
+ "concurrent-output" = dontDistribute super."concurrent-output";
+ "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";
+ "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-connection" = dontDistribute super."conduit-connection";
+ "conduit-iconv" = dontDistribute super."conduit-iconv";
+ "conduit-network-stream" = dontDistribute super."conduit-network-stream";
+ "conduit-parse" = dontDistribute super."conduit-parse";
+ "conduit-resumablesink" = dontDistribute super."conduit-resumablesink";
+ "conf" = dontDistribute super."conf";
+ "config-select" = dontDistribute super."config-select";
+ "config-value" = dontDistribute super."config-value";
+ "configifier" = dontDistribute super."configifier";
+ "configuration" = dontDistribute super."configuration";
+ "configuration-tools" = dontDistribute super."configuration-tools";
+ "confsolve" = dontDistribute super."confsolve";
+ "congruence-relation" = dontDistribute super."congruence-relation";
+ "conjugateGradient" = dontDistribute super."conjugateGradient";
+ "conjure" = dontDistribute super."conjure";
+ "conlogger" = dontDistribute super."conlogger";
+ "connection-pool" = dontDistribute super."connection-pool";
+ "consistent" = dontDistribute super."consistent";
+ "console-program" = dontDistribute super."console-program";
+ "const-math-ghc-plugin" = dontDistribute super."const-math-ghc-plugin";
+ "constrained-categories" = dontDistribute super."constrained-categories";
+ "constrained-normal" = dontDistribute super."constrained-normal";
+ "constraints" = doDistribute super."constraints_0_4_1_3";
+ "constructible" = dontDistribute super."constructible";
+ "constructive-algebra" = dontDistribute super."constructive-algebra";
+ "consul-haskell" = doDistribute super."consul-haskell_0_2_1";
+ "consumers" = dontDistribute super."consumers";
+ "container" = dontDistribute super."container";
+ "container-classes" = dontDistribute super."container-classes";
+ "containers-benchmark" = dontDistribute super."containers-benchmark";
+ "containers-deepseq" = dontDistribute super."containers-deepseq";
+ "context-free-grammar" = dontDistribute super."context-free-grammar";
+ "context-stack" = dontDistribute super."context-stack";
+ "continue" = dontDistribute super."continue";
+ "continued-fractions" = dontDistribute super."continued-fractions";
+ "continuum" = dontDistribute super."continuum";
+ "continuum-client" = dontDistribute super."continuum-client";
+ "contravariant-extras" = dontDistribute super."contravariant-extras";
+ "control-event" = dontDistribute super."control-event";
+ "control-monad-attempt" = dontDistribute super."control-monad-attempt";
+ "control-monad-exception" = dontDistribute super."control-monad-exception";
+ "control-monad-exception-monadsfd" = dontDistribute super."control-monad-exception-monadsfd";
+ "control-monad-exception-monadstf" = dontDistribute super."control-monad-exception-monadstf";
+ "control-monad-exception-mtl" = dontDistribute super."control-monad-exception-mtl";
+ "control-monad-failure" = dontDistribute super."control-monad-failure";
+ "control-monad-failure-mtl" = dontDistribute super."control-monad-failure-mtl";
+ "control-monad-omega" = dontDistribute super."control-monad-omega";
+ "control-monad-queue" = dontDistribute super."control-monad-queue";
+ "control-timeout" = dontDistribute super."control-timeout";
+ "contstuff" = dontDistribute super."contstuff";
+ "contstuff-monads-tf" = dontDistribute super."contstuff-monads-tf";
+ "contstuff-transformers" = dontDistribute super."contstuff-transformers";
+ "converge" = dontDistribute super."converge";
+ "conversion" = dontDistribute super."conversion";
+ "conversion-bytestring" = dontDistribute super."conversion-bytestring";
+ "conversion-case-insensitive" = dontDistribute super."conversion-case-insensitive";
+ "conversion-text" = dontDistribute super."conversion-text";
+ "convert" = dontDistribute super."convert";
+ "convertible-ascii" = dontDistribute super."convertible-ascii";
+ "convertible-text" = dontDistribute super."convertible-text";
+ "cookbook" = dontDistribute super."cookbook";
+ "coordinate" = dontDistribute super."coordinate";
+ "copilot" = dontDistribute super."copilot";
+ "copilot-c99" = dontDistribute super."copilot-c99";
+ "copilot-cbmc" = dontDistribute super."copilot-cbmc";
+ "copilot-core" = dontDistribute super."copilot-core";
+ "copilot-language" = dontDistribute super."copilot-language";
+ "copilot-libraries" = dontDistribute super."copilot-libraries";
+ "copilot-sbv" = dontDistribute super."copilot-sbv";
+ "copilot-theorem" = dontDistribute super."copilot-theorem";
+ "copr" = dontDistribute super."copr";
+ "core" = dontDistribute super."core";
+ "core-haskell" = dontDistribute super."core-haskell";
+ "corebot-bliki" = dontDistribute super."corebot-bliki";
+ "coroutine-enumerator" = dontDistribute super."coroutine-enumerator";
+ "coroutine-iteratee" = dontDistribute super."coroutine-iteratee";
+ "coroutine-object" = dontDistribute super."coroutine-object";
+ "couch-hs" = dontDistribute super."couch-hs";
+ "couch-simple" = dontDistribute super."couch-simple";
+ "couchdb-conduit" = dontDistribute super."couchdb-conduit";
+ "couchdb-enumerator" = dontDistribute super."couchdb-enumerator";
+ "count" = dontDistribute super."count";
+ "countable" = dontDistribute super."countable";
+ "counter" = dontDistribute super."counter";
+ "court" = dontDistribute super."court";
+ "coverage" = dontDistribute super."coverage";
+ "cpio-conduit" = dontDistribute super."cpio-conduit";
+ "cplusplus-th" = dontDistribute super."cplusplus-th";
+ "cprng-aes-effect" = dontDistribute super."cprng-aes-effect";
+ "cpsa" = dontDistribute super."cpsa";
+ "cpuid" = dontDistribute super."cpuid";
+ "cpuperf" = dontDistribute super."cpuperf";
+ "cpython" = dontDistribute super."cpython";
+ "cqrs" = dontDistribute super."cqrs";
+ "cqrs-core" = dontDistribute super."cqrs-core";
+ "cqrs-example" = dontDistribute super."cqrs-example";
+ "cqrs-memory" = dontDistribute super."cqrs-memory";
+ "cqrs-postgresql" = dontDistribute super."cqrs-postgresql";
+ "cqrs-sqlite3" = dontDistribute super."cqrs-sqlite3";
+ "cqrs-test" = dontDistribute super."cqrs-test";
+ "cqrs-testkit" = dontDistribute super."cqrs-testkit";
+ "cqrs-types" = dontDistribute super."cqrs-types";
+ "cr" = dontDistribute super."cr";
+ "crack" = dontDistribute super."crack";
+ "craftwerk" = dontDistribute super."craftwerk";
+ "craftwerk-cairo" = dontDistribute super."craftwerk-cairo";
+ "craftwerk-gtk" = dontDistribute super."craftwerk-gtk";
+ "crc16" = dontDistribute super."crc16";
+ "crc16-table" = dontDistribute super."crc16-table";
+ "creatur" = dontDistribute super."creatur";
+ "crf-chain1" = dontDistribute super."crf-chain1";
+ "crf-chain1-constrained" = dontDistribute super."crf-chain1-constrained";
+ "crf-chain2-generic" = dontDistribute super."crf-chain2-generic";
+ "crf-chain2-tiers" = dontDistribute super."crf-chain2-tiers";
+ "critbit" = dontDistribute super."critbit";
+ "criterion-plus" = dontDistribute super."criterion-plus";
+ "criterion-to-html" = dontDistribute super."criterion-to-html";
+ "crockford" = dontDistribute super."crockford";
+ "crocodile" = dontDistribute super."crocodile";
+ "cron" = doDistribute super."cron_0_3_0";
+ "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";
+ "cryptonite" = doDistribute super."cryptonite_0_6";
+ "cryptsy-api" = dontDistribute super."cryptsy-api";
+ "crystalfontz" = dontDistribute super."crystalfontz";
+ "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin";
+ "csound-catalog" = dontDistribute super."csound-catalog";
+ "csound-expression" = dontDistribute super."csound-expression";
+ "csound-expression-dynamic" = dontDistribute super."csound-expression-dynamic";
+ "csound-expression-opcodes" = dontDistribute super."csound-expression-opcodes";
+ "csound-expression-typed" = dontDistribute super."csound-expression-typed";
+ "csound-sampler" = dontDistribute super."csound-sampler";
+ "csp" = dontDistribute super."csp";
+ "cspmchecker" = dontDistribute super."cspmchecker";
+ "css" = dontDistribute super."css";
+ "css-syntax" = dontDistribute super."css-syntax";
+ "csv-enumerator" = dontDistribute super."csv-enumerator";
+ "csv-nptools" = dontDistribute super."csv-nptools";
+ "csv-to-qif" = dontDistribute super."csv-to-qif";
+ "ctemplate" = dontDistribute super."ctemplate";
+ "ctkl" = dontDistribute super."ctkl";
+ "ctpl" = dontDistribute super."ctpl";
+ "ctrie" = dontDistribute super."ctrie";
+ "cube" = dontDistribute super."cube";
+ "cubical" = dontDistribute super."cubical";
+ "cubicbezier" = dontDistribute super."cubicbezier";
+ "cubicspline" = doDistribute super."cubicspline_0_1_1";
+ "cublas" = dontDistribute super."cublas";
+ "cuboid" = dontDistribute super."cuboid";
+ "cuda" = dontDistribute super."cuda";
+ "cudd" = dontDistribute super."cudd";
+ "cufft" = dontDistribute super."cufft";
+ "curl-aeson" = dontDistribute super."curl-aeson";
+ "curlhs" = dontDistribute super."curlhs";
+ "currency" = dontDistribute super."currency";
+ "current-locale" = dontDistribute super."current-locale";
+ "curry-base" = dontDistribute super."curry-base";
+ "curry-frontend" = dontDistribute super."curry-frontend";
+ "cursedcsv" = dontDistribute super."cursedcsv";
+ "curve25519" = dontDistribute super."curve25519";
+ "curves" = dontDistribute super."curves";
+ "custom-prelude" = dontDistribute super."custom-prelude";
+ "cv-combinators" = dontDistribute super."cv-combinators";
+ "cyclotomic" = dontDistribute super."cyclotomic";
+ "cypher" = dontDistribute super."cypher";
+ "d-bus" = dontDistribute super."d-bus";
+ "d3js" = dontDistribute super."d3js";
+ "daemonize-doublefork" = dontDistribute super."daemonize-doublefork";
+ "daemons" = dontDistribute super."daemons";
+ "dag" = dontDistribute super."dag";
+ "damnpacket" = dontDistribute super."damnpacket";
+ "dao" = dontDistribute super."dao";
+ "dapi" = dontDistribute super."dapi";
+ "darcs" = dontDistribute super."darcs";
+ "darcs-benchmark" = dontDistribute super."darcs-benchmark";
+ "darcs-beta" = dontDistribute super."darcs-beta";
+ "darcs-buildpackage" = dontDistribute super."darcs-buildpackage";
+ "darcs-cabalized" = dontDistribute super."darcs-cabalized";
+ "darcs-fastconvert" = dontDistribute super."darcs-fastconvert";
+ "darcs-graph" = dontDistribute super."darcs-graph";
+ "darcs-monitor" = dontDistribute super."darcs-monitor";
+ "darcs-scripts" = dontDistribute super."darcs-scripts";
+ "darcs2dot" = dontDistribute super."darcs2dot";
+ "darcsden" = dontDistribute super."darcsden";
+ "darcswatch" = dontDistribute super."darcswatch";
+ "darkplaces-demo" = dontDistribute super."darkplaces-demo";
+ "darkplaces-rcon" = dontDistribute super."darkplaces-rcon";
+ "darkplaces-rcon-util" = dontDistribute super."darkplaces-rcon-util";
+ "darkplaces-text" = dontDistribute super."darkplaces-text";
+ "dash-haskell" = dontDistribute super."dash-haskell";
+ "data-accessor-monadLib" = dontDistribute super."data-accessor-monadLib";
+ "data-accessor-monads-fd" = dontDistribute super."data-accessor-monads-fd";
+ "data-accessor-monads-tf" = dontDistribute super."data-accessor-monads-tf";
+ "data-accessor-template" = dontDistribute super."data-accessor-template";
+ "data-accessor-transformers" = dontDistribute super."data-accessor-transformers";
+ "data-aviary" = dontDistribute super."data-aviary";
+ "data-bword" = dontDistribute super."data-bword";
+ "data-carousel" = dontDistribute super."data-carousel";
+ "data-category" = dontDistribute super."data-category";
+ "data-cell" = dontDistribute super."data-cell";
+ "data-checked" = dontDistribute super."data-checked";
+ "data-clist" = dontDistribute super."data-clist";
+ "data-concurrent-queue" = dontDistribute super."data-concurrent-queue";
+ "data-construction" = dontDistribute super."data-construction";
+ "data-cycle" = dontDistribute super."data-cycle";
+ "data-default-generics" = dontDistribute super."data-default-generics";
+ "data-dispersal" = dontDistribute super."data-dispersal";
+ "data-dword" = dontDistribute super."data-dword";
+ "data-easy" = dontDistribute super."data-easy";
+ "data-endian" = dontDistribute super."data-endian";
+ "data-extend-generic" = dontDistribute super."data-extend-generic";
+ "data-extra" = dontDistribute super."data-extra";
+ "data-filepath" = dontDistribute super."data-filepath";
+ "data-fin" = dontDistribute super."data-fin";
+ "data-fin-simple" = dontDistribute super."data-fin-simple";
+ "data-fix" = dontDistribute super."data-fix";
+ "data-fix-cse" = dontDistribute super."data-fix-cse";
+ "data-flags" = dontDistribute super."data-flags";
+ "data-flagset" = dontDistribute super."data-flagset";
+ "data-fresh" = dontDistribute super."data-fresh";
+ "data-interval" = dontDistribute super."data-interval";
+ "data-ivar" = dontDistribute super."data-ivar";
+ "data-kiln" = dontDistribute super."data-kiln";
+ "data-layer" = dontDistribute super."data-layer";
+ "data-layout" = dontDistribute super."data-layout";
+ "data-lens" = dontDistribute super."data-lens";
+ "data-lens-fd" = dontDistribute super."data-lens-fd";
+ "data-lens-ixset" = dontDistribute super."data-lens-ixset";
+ "data-lens-template" = dontDistribute super."data-lens-template";
+ "data-list-sequences" = dontDistribute super."data-list-sequences";
+ "data-map-multikey" = dontDistribute super."data-map-multikey";
+ "data-named" = dontDistribute super."data-named";
+ "data-nat" = dontDistribute super."data-nat";
+ "data-object" = dontDistribute super."data-object";
+ "data-object-json" = dontDistribute super."data-object-json";
+ "data-object-yaml" = dontDistribute super."data-object-yaml";
+ "data-or" = dontDistribute super."data-or";
+ "data-partition" = dontDistribute super."data-partition";
+ "data-pprint" = dontDistribute super."data-pprint";
+ "data-quotientref" = dontDistribute super."data-quotientref";
+ "data-r-tree" = dontDistribute super."data-r-tree";
+ "data-ref" = dontDistribute super."data-ref";
+ "data-reify-cse" = dontDistribute super."data-reify-cse";
+ "data-repr" = dontDistribute super."data-repr";
+ "data-rev" = dontDistribute super."data-rev";
+ "data-rope" = dontDistribute super."data-rope";
+ "data-rtuple" = dontDistribute super."data-rtuple";
+ "data-size" = dontDistribute super."data-size";
+ "data-spacepart" = dontDistribute super."data-spacepart";
+ "data-store" = dontDistribute super."data-store";
+ "data-stringmap" = dontDistribute super."data-stringmap";
+ "data-structure-inferrer" = dontDistribute super."data-structure-inferrer";
+ "data-tensor" = dontDistribute super."data-tensor";
+ "data-textual" = dontDistribute super."data-textual";
+ "data-timeout" = dontDistribute super."data-timeout";
+ "data-transform" = dontDistribute super."data-transform";
+ "data-treify" = dontDistribute super."data-treify";
+ "data-type" = dontDistribute super."data-type";
+ "data-util" = dontDistribute super."data-util";
+ "data-variant" = dontDistribute super."data-variant";
+ "database-migrate" = dontDistribute super."database-migrate";
+ "database-study" = dontDistribute super."database-study";
+ "dataenc" = dontDistribute super."dataenc";
+ "dataflow" = dontDistribute super."dataflow";
+ "datalog" = dontDistribute super."datalog";
+ "datapacker" = dontDistribute super."datapacker";
+ "dataurl" = dontDistribute super."dataurl";
+ "date-cache" = dontDistribute super."date-cache";
+ "dates" = dontDistribute super."dates";
+ "datetime" = dontDistribute super."datetime";
+ "datetime-sb" = dontDistribute super."datetime-sb";
+ "dawdle" = dontDistribute super."dawdle";
+ "dawg" = dontDistribute super."dawg";
+ "dbcleaner" = dontDistribute super."dbcleaner";
+ "dbf" = dontDistribute super."dbf";
+ "dbjava" = dontDistribute super."dbjava";
+ "dbmigrations" = dontDistribute super."dbmigrations";
+ "dbus-client" = dontDistribute super."dbus-client";
+ "dbus-core" = dontDistribute super."dbus-core";
+ "dbus-qq" = dontDistribute super."dbus-qq";
+ "dbus-th" = dontDistribute super."dbus-th";
+ "dclabel" = dontDistribute super."dclabel";
+ "dclabel-eci11" = dontDistribute super."dclabel-eci11";
+ "ddc-base" = dontDistribute super."ddc-base";
+ "ddc-build" = dontDistribute super."ddc-build";
+ "ddc-code" = dontDistribute super."ddc-code";
+ "ddc-core" = dontDistribute super."ddc-core";
+ "ddc-core-eval" = dontDistribute super."ddc-core-eval";
+ "ddc-core-flow" = dontDistribute super."ddc-core-flow";
+ "ddc-core-llvm" = dontDistribute super."ddc-core-llvm";
+ "ddc-core-salt" = dontDistribute super."ddc-core-salt";
+ "ddc-core-simpl" = dontDistribute super."ddc-core-simpl";
+ "ddc-core-tetra" = dontDistribute super."ddc-core-tetra";
+ "ddc-driver" = dontDistribute super."ddc-driver";
+ "ddc-interface" = dontDistribute super."ddc-interface";
+ "ddc-source-tetra" = dontDistribute super."ddc-source-tetra";
+ "ddc-tools" = dontDistribute super."ddc-tools";
+ "ddc-war" = dontDistribute super."ddc-war";
+ "ddci-core" = dontDistribute super."ddci-core";
+ "dead-code-detection" = dontDistribute super."dead-code-detection";
+ "dead-simple-json" = dontDistribute super."dead-simple-json";
+ "debian" = doDistribute super."debian_3_87_2";
+ "debian-binary" = dontDistribute super."debian-binary";
+ "debian-build" = dontDistribute super."debian-build";
+ "debug-diff" = dontDistribute super."debug-diff";
+ "decepticons" = dontDistribute super."decepticons";
+ "declarative" = dontDistribute super."declarative";
+ "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" = dontDistribute super."dejafu";
+ "deka" = dontDistribute super."deka";
+ "deka-tests" = dontDistribute super."deka-tests";
+ "delaunay" = dontDistribute super."delaunay";
+ "delicious" = dontDistribute super."delicious";
+ "delimited-text" = dontDistribute super."delimited-text";
+ "delimiter-separated" = dontDistribute super."delimiter-separated";
+ "delta" = dontDistribute super."delta";
+ "delta-h" = dontDistribute super."delta-h";
+ "demarcate" = dontDistribute super."demarcate";
+ "denominate" = dontDistribute super."denominate";
+ "dependent-map" = doDistribute super."dependent-map_0_1_1_3";
+ "dependent-sum" = doDistribute super."dependent-sum_0_2_1_0";
+ "depends" = dontDistribute super."depends";
+ "dephd" = dontDistribute super."dephd";
+ "dequeue" = dontDistribute super."dequeue";
+ "derangement" = dontDistribute super."derangement";
+ "derivation-trees" = dontDistribute super."derivation-trees";
+ "derive" = doDistribute super."derive_2_5_22";
+ "derive-IG" = dontDistribute super."derive-IG";
+ "derive-enumerable" = dontDistribute super."derive-enumerable";
+ "derive-gadt" = dontDistribute super."derive-gadt";
+ "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-canvas" = dontDistribute super."diagrams-canvas";
+ "diagrams-graphviz" = dontDistribute super."diagrams-graphviz";
+ "diagrams-gtk" = dontDistribute super."diagrams-gtk";
+ "diagrams-haddock" = doDistribute super."diagrams-haddock_0_3_0_7";
+ "diagrams-hsqml" = dontDistribute super."diagrams-hsqml";
+ "diagrams-lib" = doDistribute super."diagrams-lib_1_3_0_3";
+ "diagrams-pandoc" = dontDistribute super."diagrams-pandoc";
+ "diagrams-pdf" = dontDistribute super."diagrams-pdf";
+ "diagrams-pgf" = dontDistribute super."diagrams-pgf";
+ "diagrams-qrcode" = dontDistribute super."diagrams-qrcode";
+ "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube";
+ "diagrams-svg" = doDistribute super."diagrams-svg_1_3_1_7";
+ "diagrams-tikz" = dontDistribute super."diagrams-tikz";
+ "dialog" = dontDistribute super."dialog";
+ "dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit";
+ "dicom" = dontDistribute super."dicom";
+ "dictparser" = dontDistribute super."dictparser";
+ "diet" = dontDistribute super."diet";
+ "diff-gestalt" = dontDistribute super."diff-gestalt";
+ "diff-parse" = dontDistribute super."diff-parse";
+ "diffarray" = dontDistribute super."diffarray";
+ "diffcabal" = dontDistribute super."diffcabal";
+ "diffdump" = dontDistribute super."diffdump";
+ "digamma" = dontDistribute super."digamma";
+ "digest-pure" = dontDistribute super."digest-pure";
+ "digestive-bootstrap" = dontDistribute super."digestive-bootstrap";
+ "digestive-foundation-lucid" = dontDistribute super."digestive-foundation-lucid";
+ "digestive-functors-blaze" = dontDistribute super."digestive-functors-blaze";
+ "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_0_13_0_2";
+ "dimensional-codata" = dontDistribute super."dimensional-codata";
+ "dimensional-tf" = dontDistribute super."dimensional-tf";
+ "dingo-core" = dontDistribute super."dingo-core";
+ "dingo-example" = dontDistribute super."dingo-example";
+ "dingo-widgets" = dontDistribute super."dingo-widgets";
+ "diophantine" = dontDistribute super."diophantine";
+ "diplomacy" = dontDistribute super."diplomacy";
+ "diplomacy-server" = dontDistribute super."diplomacy-server";
+ "direct-binary-files" = dontDistribute super."direct-binary-files";
+ "direct-daemonize" = dontDistribute super."direct-daemonize";
+ "direct-fastcgi" = dontDistribute super."direct-fastcgi";
+ "direct-http" = dontDistribute super."direct-http";
+ "direct-murmur-hash" = dontDistribute super."direct-murmur-hash";
+ "direct-plugins" = dontDistribute super."direct-plugins";
+ "directed-cubical" = dontDistribute super."directed-cubical";
+ "directory-layout" = dontDistribute super."directory-layout";
+ "dirfiles" = dontDistribute super."dirfiles";
+ "dirstream" = dontDistribute super."dirstream";
+ "disassembler" = dontDistribute super."disassembler";
+ "discordian-calendar" = dontDistribute super."discordian-calendar";
+ "discount" = dontDistribute super."discount";
+ "discrete-space-map" = dontDistribute super."discrete-space-map";
+ "discrimination" = dontDistribute super."discrimination";
+ "disjoint-set" = dontDistribute super."disjoint-set";
+ "disjoint-sets-st" = dontDistribute super."disjoint-sets-st";
+ "dist-upload" = dontDistribute super."dist-upload";
+ "distributed-closure" = dontDistribute super."distributed-closure";
+ "distributed-process" = dontDistribute super."distributed-process";
+ "distributed-process-async" = dontDistribute super."distributed-process-async";
+ "distributed-process-azure" = dontDistribute super."distributed-process-azure";
+ "distributed-process-client-server" = dontDistribute super."distributed-process-client-server";
+ "distributed-process-execution" = dontDistribute super."distributed-process-execution";
+ "distributed-process-extras" = dontDistribute super."distributed-process-extras";
+ "distributed-process-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";
+ "distributed-static" = dontDistribute super."distributed-static";
+ "distribution" = dontDistribute super."distribution";
+ "distribution-plot" = dontDistribute super."distribution-plot";
+ "diversity" = dontDistribute super."diversity";
+ "dixi" = dontDistribute super."dixi";
+ "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";
+ "docopt" = dontDistribute super."docopt";
+ "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-selector" = dontDistribute super."dom-selector";
+ "domain-auth" = dontDistribute super."domain-auth";
+ "dominion" = dontDistribute super."dominion";
+ "domplate" = dontDistribute super."domplate";
+ "dot2graphml" = dontDistribute super."dot2graphml";
+ "dotenv" = dontDistribute super."dotenv";
+ "dotfs" = dontDistribute super."dotfs";
+ "dotgen" = dontDistribute super."dotgen";
+ "double-metaphone" = dontDistribute super."double-metaphone";
+ "dove" = dontDistribute super."dove";
+ "dow" = dontDistribute super."dow";
+ "download" = dontDistribute super."download";
+ "download-curl" = dontDistribute super."download-curl";
+ "download-media-content" = dontDistribute super."download-media-content";
+ "dozenal" = dontDistribute super."dozenal";
+ "dozens" = dontDistribute super."dozens";
+ "dph-base" = dontDistribute super."dph-base";
+ "dph-examples" = dontDistribute super."dph-examples";
+ "dph-lifted-base" = dontDistribute super."dph-lifted-base";
+ "dph-lifted-copy" = dontDistribute super."dph-lifted-copy";
+ "dph-lifted-vseg" = dontDistribute super."dph-lifted-vseg";
+ "dph-par" = dontDistribute super."dph-par";
+ "dph-prim-interface" = dontDistribute super."dph-prim-interface";
+ "dph-prim-par" = dontDistribute super."dph-prim-par";
+ "dph-prim-seq" = dontDistribute super."dph-prim-seq";
+ "dph-seq" = dontDistribute super."dph-seq";
+ "dpkg" = dontDistribute super."dpkg";
+ "drClickOn" = dontDistribute super."drClickOn";
+ "draw-poker" = dontDistribute super."draw-poker";
+ "drawille" = dontDistribute super."drawille";
+ "drifter" = dontDistribute super."drifter";
+ "drifter-postgresql" = dontDistribute super."drifter-postgresql";
+ "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";
+ "dynamic-state" = dontDistribute super."dynamic-state";
+ "dynobud" = dontDistribute super."dynobud";
+ "dyre" = dontDistribute super."dyre";
+ "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-distance-vector" = dontDistribute super."edit-distance-vector";
+ "edit-lenses" = dontDistribute super."edit-lenses";
+ "edit-lenses-demo" = dontDistribute super."edit-lenses-demo";
+ "editable" = dontDistribute super."editable";
+ "editline" = dontDistribute super."editline";
+ "effect-monad" = dontDistribute super."effect-monad";
+ "effective-aspects" = dontDistribute super."effective-aspects";
+ "effective-aspects-mzv" = dontDistribute super."effective-aspects-mzv";
+ "effects" = dontDistribute super."effects";
+ "effects-parser" = dontDistribute super."effects-parser";
+ "effin" = dontDistribute super."effin";
+ "egison" = dontDistribute super."egison";
+ "egison-quote" = dontDistribute super."egison-quote";
+ "egison-tutorial" = dontDistribute super."egison-tutorial";
+ "ehaskell" = dontDistribute super."ehaskell";
+ "ehs" = dontDistribute super."ehs";
+ "eibd-client-simple" = dontDistribute super."eibd-client-simple";
+ "eigen" = dontDistribute super."eigen";
+ "either-unwrap" = dontDistribute super."either-unwrap";
+ "eithers" = dontDistribute super."eithers";
+ "ekg" = dontDistribute super."ekg";
+ "ekg-bosun" = dontDistribute super."ekg-bosun";
+ "ekg-carbon" = dontDistribute super."ekg-carbon";
+ "ekg-json" = dontDistribute super."ekg-json";
+ "ekg-log" = dontDistribute super."ekg-log";
+ "ekg-push" = dontDistribute super."ekg-push";
+ "ekg-rrd" = dontDistribute super."ekg-rrd";
+ "ekg-statsd" = dontDistribute super."ekg-statsd";
+ "electrum-mnemonic" = dontDistribute super."electrum-mnemonic";
+ "elerea" = dontDistribute super."elerea";
+ "elerea-examples" = dontDistribute super."elerea-examples";
+ "elerea-sdl" = dontDistribute super."elerea-sdl";
+ "elevator" = dontDistribute super."elevator";
+ "elf" = dontDistribute super."elf";
+ "elm-bridge" = dontDistribute super."elm-bridge";
+ "elm-build-lib" = dontDistribute super."elm-build-lib";
+ "elm-compiler" = dontDistribute super."elm-compiler";
+ "elm-get" = dontDistribute super."elm-get";
+ "elm-init" = dontDistribute super."elm-init";
+ "elm-make" = dontDistribute super."elm-make";
+ "elm-package" = dontDistribute super."elm-package";
+ "elm-reactor" = dontDistribute super."elm-reactor";
+ "elm-repl" = dontDistribute super."elm-repl";
+ "elm-server" = dontDistribute super."elm-server";
+ "elm-yesod" = dontDistribute super."elm-yesod";
+ "elo" = dontDistribute super."elo";
+ "elocrypt" = dontDistribute super."elocrypt";
+ "emacs-keys" = dontDistribute super."emacs-keys";
+ "email" = dontDistribute super."email";
+ "email-header" = dontDistribute super."email-header";
+ "email-postmark" = dontDistribute super."email-postmark";
+ "email-validator" = dontDistribute super."email-validator";
+ "embeddock" = dontDistribute super."embeddock";
+ "embeddock-example" = dontDistribute super."embeddock-example";
+ "embroidery" = dontDistribute super."embroidery";
+ "emgm" = dontDistribute super."emgm";
+ "empty" = dontDistribute super."empty";
+ "encoding" = dontDistribute super."encoding";
+ "endo" = dontDistribute super."endo";
+ "engine-io-snap" = dontDistribute super."engine-io-snap";
+ "engine-io-wai" = dontDistribute super."engine-io-wai";
+ "engine-io-yesod" = dontDistribute super."engine-io-yesod";
+ "engineering-units" = dontDistribute super."engineering-units";
+ "enumerable" = dontDistribute super."enumerable";
+ "enumerate" = dontDistribute super."enumerate";
+ "enumeration" = dontDistribute super."enumeration";
+ "enumerator-fd" = dontDistribute super."enumerator-fd";
+ "enumerator-tf" = dontDistribute super."enumerator-tf";
+ "enumfun" = dontDistribute super."enumfun";
+ "enummapmap" = dontDistribute super."enummapmap";
+ "enummapset" = dontDistribute super."enummapset";
+ "enummapset-th" = dontDistribute super."enummapset-th";
+ "enumset" = dontDistribute super."enumset";
+ "env-parser" = dontDistribute super."env-parser";
+ "envparse" = dontDistribute super."envparse";
+ "envy" = dontDistribute super."envy";
+ "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";
+ "etcd" = dontDistribute super."etcd";
+ "eternal" = dontDistribute super."eternal";
+ "ethereum-client-haskell" = dontDistribute super."ethereum-client-haskell";
+ "ethereum-merkle-patricia-db" = dontDistribute super."ethereum-merkle-patricia-db";
+ "ethereum-rlp" = dontDistribute super."ethereum-rlp";
+ "ety" = dontDistribute super."ety";
+ "euler" = dontDistribute super."euler";
+ "euphoria" = dontDistribute super."euphoria";
+ "eurofxref" = dontDistribute super."eurofxref";
+ "event-driven" = dontDistribute super."event-driven";
+ "event-handlers" = dontDistribute super."event-handlers";
+ "event-list" = dontDistribute super."event-list";
+ "event-monad" = dontDistribute super."event-monad";
+ "eventloop" = dontDistribute super."eventloop";
+ "eventstore" = dontDistribute super."eventstore";
+ "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" = dontDistribute super."exact-pi";
+ "exact-real" = dontDistribute super."exact-real";
+ "exception-hierarchy" = dontDistribute super."exception-hierarchy";
+ "exception-mailer" = dontDistribute super."exception-mailer";
+ "exception-monads-fd" = dontDistribute super."exception-monads-fd";
+ "exception-monads-tf" = dontDistribute super."exception-monads-tf";
+ "exherbo-cabal" = dontDistribute super."exherbo-cabal";
+ "exif" = dontDistribute super."exif";
+ "exinst" = dontDistribute super."exinst";
+ "exinst-aeson" = dontDistribute super."exinst-aeson";
+ "exinst-bytes" = dontDistribute super."exinst-bytes";
+ "exinst-deepseq" = dontDistribute super."exinst-deepseq";
+ "exinst-hashable" = dontDistribute super."exinst-hashable";
+ "exists" = dontDistribute super."exists";
+ "exit-codes" = dontDistribute super."exit-codes";
+ "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-exception" = dontDistribute super."explicit-exception";
+ "explicit-iomodes" = dontDistribute super."explicit-iomodes";
+ "explicit-iomodes-bytestring" = dontDistribute super."explicit-iomodes-bytestring";
+ "explicit-iomodes-text" = dontDistribute super."explicit-iomodes-text";
+ "explicit-sharing" = dontDistribute super."explicit-sharing";
+ "explore" = dontDistribute super."explore";
+ "exposed-containers" = dontDistribute super."exposed-containers";
+ "expression-parser" = dontDistribute super."expression-parser";
+ "extcore" = dontDistribute super."extcore";
+ "extemp" = dontDistribute super."extemp";
+ "extended-categories" = dontDistribute super."extended-categories";
+ "extended-reals" = dontDistribute super."extended-reals";
+ "extensible" = dontDistribute super."extensible";
+ "extensible-data" = dontDistribute super."extensible-data";
+ "extensible-effects" = dontDistribute super."extensible-effects";
+ "external-sort" = dontDistribute super."external-sort";
+ "extract-dependencies" = dontDistribute super."extract-dependencies";
+ "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";
+ "failable-list" = dontDistribute super."failable-list";
+ "failure" = dontDistribute super."failure";
+ "fair-predicates" = dontDistribute super."fair-predicates";
+ "fake-type" = dontDistribute super."fake-type";
+ "faker" = dontDistribute super."faker";
+ "falling-turnip" = dontDistribute super."falling-turnip";
+ "fallingblocks" = dontDistribute super."fallingblocks";
+ "family-tree" = dontDistribute super."family-tree";
+ "farmhash" = dontDistribute super."farmhash";
+ "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";
+ "fasta" = dontDistribute super."fasta";
+ "fastbayes" = dontDistribute super."fastbayes";
+ "fastcgi" = dontDistribute super."fastcgi";
+ "fastedit" = dontDistribute super."fastedit";
+ "fastirc" = dontDistribute super."fastirc";
+ "fault-tree" = dontDistribute super."fault-tree";
+ "fay" = doDistribute super."fay_0_23_1_8";
+ "fay-geoposition" = dontDistribute super."fay-geoposition";
+ "fay-hsx" = dontDistribute super."fay-hsx";
+ "fay-ref" = dontDistribute super."fay-ref";
+ "fca" = dontDistribute super."fca";
+ "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";
+ "fft" = dontDistribute super."fft";
+ "fftwRaw" = dontDistribute super."fftwRaw";
+ "fgl-arbitrary" = dontDistribute super."fgl-arbitrary";
+ "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";
+ "file-modules" = dontDistribute super."file-modules";
+ "filecache" = dontDistribute super."filecache";
+ "filediff" = dontDistribute super."filediff";
+ "filepath-io-access" = dontDistribute super."filepath-io-access";
+ "filepather" = dontDistribute super."filepather";
+ "filestore" = dontDistribute super."filestore";
+ "filesystem-conduit" = dontDistribute super."filesystem-conduit";
+ "filesystem-enumerator" = dontDistribute super."filesystem-enumerator";
+ "filesystem-trees" = dontDistribute super."filesystem-trees";
+ "filtrable" = dontDistribute super."filtrable";
+ "final" = dontDistribute super."final";
+ "find-conduit" = dontDistribute super."find-conduit";
+ "fingertree-tf" = dontDistribute super."fingertree-tf";
+ "finite-field" = dontDistribute super."finite-field";
+ "finite-typelits" = dontDistribute super."finite-typelits";
+ "first-and-last" = dontDistribute super."first-and-last";
+ "first-class-patterns" = dontDistribute super."first-class-patterns";
+ "firstify" = dontDistribute super."firstify";
+ "fishfood" = dontDistribute super."fishfood";
+ "fit" = dontDistribute super."fit";
+ "fitsio" = dontDistribute super."fitsio";
+ "fix-imports" = dontDistribute super."fix-imports";
+ "fix-parser-simple" = dontDistribute super."fix-parser-simple";
+ "fix-symbols-gitit" = dontDistribute super."fix-symbols-gitit";
+ "fixed-length" = dontDistribute super."fixed-length";
+ "fixed-point" = dontDistribute super."fixed-point";
+ "fixed-point-vector" = dontDistribute super."fixed-point-vector";
+ "fixed-point-vector-space" = dontDistribute super."fixed-point-vector-space";
+ "fixed-precision" = dontDistribute super."fixed-precision";
+ "fixed-storable-array" = dontDistribute super."fixed-storable-array";
+ "fixed-vector-binary" = dontDistribute super."fixed-vector-binary";
+ "fixed-vector-cereal" = dontDistribute super."fixed-vector-cereal";
+ "fixedprec" = dontDistribute super."fixedprec";
+ "fixedwidth-hs" = dontDistribute super."fixedwidth-hs";
+ "fixhs" = dontDistribute super."fixhs";
+ "fixplate" = dontDistribute super."fixplate";
+ "fixpoint" = dontDistribute super."fixpoint";
+ "fixtime" = dontDistribute super."fixtime";
+ "fizz-buzz" = dontDistribute super."fizz-buzz";
+ "flaccuraterip" = dontDistribute super."flaccuraterip";
+ "flamethrower" = dontDistribute super."flamethrower";
+ "flamingra" = dontDistribute super."flamingra";
+ "flat-maybe" = dontDistribute super."flat-maybe";
+ "flat-mcmc" = dontDistribute super."flat-mcmc";
+ "flat-tex" = dontDistribute super."flat-tex";
+ "flexible-time" = dontDistribute super."flexible-time";
+ "flexible-unlit" = dontDistribute super."flexible-unlit";
+ "flexiwrap" = dontDistribute super."flexiwrap";
+ "flexiwrap-smallcheck" = dontDistribute super."flexiwrap-smallcheck";
+ "flickr" = dontDistribute super."flickr";
+ "flippers" = dontDistribute super."flippers";
+ "flite" = dontDistribute super."flite";
+ "flo" = dontDistribute super."flo";
+ "float-binstring" = dontDistribute super."float-binstring";
+ "floating-bits" = dontDistribute super."floating-bits";
+ "floatshow" = dontDistribute super."floatshow";
+ "flow2dot" = dontDistribute super."flow2dot";
+ "flowdock-api" = dontDistribute super."flowdock-api";
+ "flowdock-rest" = dontDistribute super."flowdock-rest";
+ "flower" = dontDistribute super."flower";
+ "flowlocks-framework" = dontDistribute super."flowlocks-framework";
+ "flowsim" = dontDistribute super."flowsim";
+ "fltkhs" = dontDistribute super."fltkhs";
+ "fltkhs-fluid-examples" = dontDistribute super."fltkhs-fluid-examples";
+ "fluent-logger" = dontDistribute super."fluent-logger";
+ "fluent-logger-conduit" = dontDistribute super."fluent-logger-conduit";
+ "fluidsynth" = dontDistribute super."fluidsynth";
+ "fmark" = dontDistribute super."fmark";
+ "fn" = dontDistribute super."fn";
+ "fn-extra" = dontDistribute super."fn-extra";
+ "fold-debounce" = dontDistribute super."fold-debounce";
+ "fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit";
+ "foldl-incremental" = dontDistribute super."foldl-incremental";
+ "foldl-transduce" = dontDistribute super."foldl-transduce";
+ "foldl-transduce-attoparsec" = dontDistribute super."foldl-transduce-attoparsec";
+ "folds" = dontDistribute super."folds";
+ "folds-common" = dontDistribute super."folds-common";
+ "follower" = dontDistribute super."follower";
+ "foma" = dontDistribute super."foma";
+ "font-opengl-basic4x6" = dontDistribute super."font-opengl-basic4x6";
+ "foo" = dontDistribute super."foo";
+ "for-free" = dontDistribute super."for-free";
+ "forbidden-fruit" = dontDistribute super."forbidden-fruit";
+ "fordo" = dontDistribute super."fordo";
+ "forecast-io" = dontDistribute super."forecast-io";
+ "foreign-storable-asymmetric" = dontDistribute super."foreign-storable-asymmetric";
+ "foreign-var" = dontDistribute super."foreign-var";
+ "forger" = dontDistribute super."forger";
+ "forkable-monad" = dontDistribute super."forkable-monad";
+ "formal" = dontDistribute super."formal";
+ "format" = dontDistribute super."format";
+ "format-status" = dontDistribute super."format-status";
+ "formattable" = dontDistribute super."formattable";
+ "forml" = dontDistribute super."forml";
+ "formlets" = dontDistribute super."formlets";
+ "formlets-hsp" = dontDistribute super."formlets-hsp";
+ "formura" = dontDistribute super."formura";
+ "forth-hll" = dontDistribute super."forth-hll";
+ "foscam-directory" = dontDistribute super."foscam-directory";
+ "foscam-filename" = dontDistribute super."foscam-filename";
+ "foscam-sort" = dontDistribute super."foscam-sort";
+ "fountain" = dontDistribute super."fountain";
+ "fpco-api" = dontDistribute super."fpco-api";
+ "fpipe" = dontDistribute super."fpipe";
+ "fpnla" = dontDistribute super."fpnla";
+ "fpnla-examples" = dontDistribute super."fpnla-examples";
+ "fptest" = dontDistribute super."fptest";
+ "fquery" = dontDistribute super."fquery";
+ "fractal" = dontDistribute super."fractal";
+ "fractals" = dontDistribute super."fractals";
+ "fraction" = dontDistribute super."fraction";
+ "frag" = dontDistribute super."frag";
+ "frame" = dontDistribute super."frame";
+ "frame-markdown" = dontDistribute super."frame-markdown";
+ "franchise" = dontDistribute super."franchise";
+ "free-concurrent" = dontDistribute super."free-concurrent";
+ "free-functors" = dontDistribute super."free-functors";
+ "free-game" = dontDistribute super."free-game";
+ "free-http" = dontDistribute super."free-http";
+ "free-operational" = dontDistribute super."free-operational";
+ "free-theorems" = dontDistribute super."free-theorems";
+ "free-theorems-counterexamples" = dontDistribute super."free-theorems-counterexamples";
+ "free-theorems-seq" = dontDistribute super."free-theorems-seq";
+ "free-theorems-seq-webui" = dontDistribute super."free-theorems-seq-webui";
+ "free-theorems-webui" = dontDistribute super."free-theorems-webui";
+ "freekick2" = dontDistribute super."freekick2";
+ "freenect" = doDistribute super."freenect_1_2";
+ "freer" = dontDistribute super."freer";
+ "freesect" = dontDistribute super."freesect";
+ "freesound" = dontDistribute super."freesound";
+ "freetype-simple" = dontDistribute super."freetype-simple";
+ "freetype2" = dontDistribute super."freetype2";
+ "fresh" = dontDistribute super."fresh";
+ "friday" = dontDistribute super."friday";
+ "friday-devil" = dontDistribute super."friday-devil";
+ "friday-juicypixels" = dontDistribute super."friday-juicypixels";
+ "friday-scale-dct" = dontDistribute super."friday-scale-dct";
+ "friendly-time" = dontDistribute super."friendly-time";
+ "frontmatter" = dontDistribute super."frontmatter";
+ "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";
+ "funcmp" = dontDistribute super."funcmp";
+ "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";
+ "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_8_0";
+ "generic-lucid-scaffold" = dontDistribute super."generic-lucid-scaffold";
+ "generic-maybe" = dontDistribute super."generic-maybe";
+ "generic-pretty" = dontDistribute super."generic-pretty";
+ "generic-server" = dontDistribute super."generic-server";
+ "generic-storable" = dontDistribute super."generic-storable";
+ "generic-tree" = dontDistribute super."generic-tree";
+ "generic-trie" = dontDistribute super."generic-trie";
+ "generic-xml" = dontDistribute super."generic-xml";
+ "generics-sop" = doDistribute super."generics-sop_0_1_1_2";
+ "genericserialize" = dontDistribute super."genericserialize";
+ "genetics" = dontDistribute super."genetics";
+ "geni-gui" = dontDistribute super."geni-gui";
+ "geni-util" = dontDistribute super."geni-util";
+ "geniconvert" = dontDistribute super."geniconvert";
+ "genifunctors" = dontDistribute super."genifunctors";
+ "geniplate" = dontDistribute super."geniplate";
+ "geniserver" = dontDistribute super."geniserver";
+ "genprog" = dontDistribute super."genprog";
+ "gentlemark" = dontDistribute super."gentlemark";
+ "geo-resolver" = dontDistribute super."geo-resolver";
+ "geo-uk" = dontDistribute super."geo-uk";
+ "geocalc" = dontDistribute super."geocalc";
+ "geocode-google" = dontDistribute super."geocode-google";
+ "geodetic" = dontDistribute super."geodetic";
+ "geodetics" = dontDistribute super."geodetics";
+ "geohash" = dontDistribute super."geohash";
+ "geoip2" = dontDistribute super."geoip2";
+ "geojson" = dontDistribute super."geojson";
+ "geom2d" = dontDistribute super."geom2d";
+ "getemx" = dontDistribute super."getemx";
+ "getflag" = dontDistribute super."getflag";
+ "getopt-generics" = doDistribute super."getopt-generics_0_10_0_1";
+ "getopt-simple" = dontDistribute super."getopt-simple";
+ "gf" = dontDistribute super."gf";
+ "ggtsTC" = dontDistribute super."ggtsTC";
+ "ghc-core" = dontDistribute super."ghc-core";
+ "ghc-core-html" = dontDistribute super."ghc-core-html";
+ "ghc-datasize" = dontDistribute super."ghc-datasize";
+ "ghc-dup" = dontDistribute super."ghc-dup";
+ "ghc-events-analyze" = dontDistribute super."ghc-events-analyze";
+ "ghc-events-parallel" = dontDistribute super."ghc-events-parallel";
+ "ghc-exactprint" = dontDistribute super."ghc-exactprint";
+ "ghc-gc-tune" = dontDistribute super."ghc-gc-tune";
+ "ghc-generic-instances" = dontDistribute super."ghc-generic-instances";
+ "ghc-heap-view" = dontDistribute super."ghc-heap-view";
+ "ghc-imported-from" = dontDistribute super."ghc-imported-from";
+ "ghc-make" = dontDistribute super."ghc-make";
+ "ghc-man-completion" = dontDistribute super."ghc-man-completion";
+ "ghc-mod" = dontDistribute super."ghc-mod";
+ "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-session" = dontDistribute super."ghc-session";
+ "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-typelits-extra" = dontDistribute super."ghc-typelits-extra";
+ "ghc-vis" = dontDistribute super."ghc-vis";
+ "ghci-diagrams" = dontDistribute super."ghci-diagrams";
+ "ghci-haskeline" = dontDistribute super."ghci-haskeline";
+ "ghci-lib" = dontDistribute super."ghci-lib";
+ "ghci-ng" = dontDistribute super."ghci-ng";
+ "ghci-pretty" = dontDistribute super."ghci-pretty";
+ "ghcjs-codemirror" = dontDistribute super."ghcjs-codemirror";
+ "ghcjs-dom" = dontDistribute super."ghcjs-dom";
+ "ghcjs-dom-hello" = dontDistribute super."ghcjs-dom-hello";
+ "ghcjs-websockets" = dontDistribute super."ghcjs-websockets";
+ "ghclive" = dontDistribute super."ghclive";
+ "ghczdecode" = dontDistribute super."ghczdecode";
+ "ght" = dontDistribute super."ght";
+ "gi-atk" = dontDistribute super."gi-atk";
+ "gi-cairo" = dontDistribute super."gi-cairo";
+ "gi-gdk" = dontDistribute super."gi-gdk";
+ "gi-gdkpixbuf" = dontDistribute super."gi-gdkpixbuf";
+ "gi-gio" = dontDistribute super."gi-gio";
+ "gi-glib" = dontDistribute super."gi-glib";
+ "gi-gobject" = dontDistribute super."gi-gobject";
+ "gi-gtk" = dontDistribute super."gi-gtk";
+ "gi-javascriptcore" = dontDistribute super."gi-javascriptcore";
+ "gi-notify" = dontDistribute super."gi-notify";
+ "gi-pango" = dontDistribute super."gi-pango";
+ "gi-soup" = dontDistribute super."gi-soup";
+ "gi-vte" = dontDistribute super."gi-vte";
+ "gi-webkit" = dontDistribute super."gi-webkit";
+ "gimlh" = dontDistribute super."gimlh";
+ "ginger" = dontDistribute super."ginger";
+ "ginsu" = dontDistribute super."ginsu";
+ "gipeda" = doDistribute super."gipeda_0_1_2_1";
+ "gist" = dontDistribute super."gist";
+ "git-all" = dontDistribute super."git-all";
+ "git-annex" = doDistribute super."git-annex_5_20150727";
+ "git-checklist" = dontDistribute super."git-checklist";
+ "git-date" = dontDistribute super."git-date";
+ "git-embed" = dontDistribute super."git-embed";
+ "git-fmt" = dontDistribute super."git-fmt";
+ "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";
+ "gitcache" = dontDistribute super."gitcache";
+ "gitdo" = dontDistribute super."gitdo";
+ "github" = dontDistribute super."github";
+ "github-backup" = dontDistribute super."github-backup";
+ "github-post-receive" = dontDistribute super."github-post-receive";
+ "github-types" = dontDistribute super."github-types";
+ "github-utils" = dontDistribute super."github-utils";
+ "github-webhook-handler" = dontDistribute super."github-webhook-handler";
+ "github-webhook-handler-snap" = dontDistribute super."github-webhook-handler-snap";
+ "gitignore" = dontDistribute super."gitignore";
+ "gitit" = dontDistribute super."gitit";
+ "gitlib-cmdline" = dontDistribute super."gitlib-cmdline";
+ "gitlib-cross" = dontDistribute super."gitlib-cross";
+ "gitlib-s3" = dontDistribute super."gitlib-s3";
+ "gitlib-sample" = dontDistribute super."gitlib-sample";
+ "gitlib-utils" = dontDistribute super."gitlib-utils";
+ "gitter" = dontDistribute super."gitter";
+ "gl-capture" = dontDistribute super."gl-capture";
+ "glade" = dontDistribute super."glade";
+ "gladexml-accessor" = dontDistribute super."gladexml-accessor";
+ "glambda" = dontDistribute super."glambda";
+ "glapp" = dontDistribute super."glapp";
+ "glasso" = dontDistribute super."glasso";
+ "glicko" = dontDistribute super."glicko";
+ "glider-nlp" = dontDistribute super."glider-nlp";
+ "glintcollider" = dontDistribute super."glintcollider";
+ "gll" = dontDistribute super."gll";
+ "global" = dontDistribute super."global";
+ "global-config" = dontDistribute super."global-config";
+ "global-lock" = dontDistribute super."global-lock";
+ "global-variables" = dontDistribute super."global-variables";
+ "glome-hs" = dontDistribute super."glome-hs";
+ "gloss" = dontDistribute super."gloss";
+ "gloss-accelerate" = dontDistribute super."gloss-accelerate";
+ "gloss-algorithms" = dontDistribute super."gloss-algorithms";
+ "gloss-banana" = dontDistribute super."gloss-banana";
+ "gloss-devil" = dontDistribute super."gloss-devil";
+ "gloss-examples" = dontDistribute super."gloss-examples";
+ "gloss-game" = dontDistribute super."gloss-game";
+ "gloss-juicy" = dontDistribute super."gloss-juicy";
+ "gloss-raster" = dontDistribute super."gloss-raster";
+ "gloss-raster-accelerate" = dontDistribute super."gloss-raster-accelerate";
+ "gloss-rendering" = dontDistribute super."gloss-rendering";
+ "gloss-sodium" = dontDistribute super."gloss-sodium";
+ "glpk-hs" = dontDistribute super."glpk-hs";
+ "glue" = dontDistribute super."glue";
+ "glue-common" = dontDistribute super."glue-common";
+ "glue-core" = dontDistribute super."glue-core";
+ "glue-ekg" = dontDistribute super."glue-ekg";
+ "glue-example" = dontDistribute super."glue-example";
+ "gluturtle" = dontDistribute super."gluturtle";
+ "gmap" = dontDistribute super."gmap";
+ "gmndl" = dontDistribute super."gmndl";
+ "gnome-desktop" = dontDistribute super."gnome-desktop";
+ "gnome-keyring" = dontDistribute super."gnome-keyring";
+ "gnomevfs" = dontDistribute super."gnomevfs";
+ "gnss-converters" = dontDistribute super."gnss-converters";
+ "gnuplot" = dontDistribute super."gnuplot";
+ "goa" = dontDistribute super."goa";
+ "goatee" = dontDistribute super."goatee";
+ "goatee-gtk" = dontDistribute super."goatee-gtk";
+ "gofer-prelude" = dontDistribute super."gofer-prelude";
+ "gogol" = dontDistribute super."gogol";
+ "gogol-adexchange-buyer" = dontDistribute super."gogol-adexchange-buyer";
+ "gogol-adexchange-seller" = dontDistribute super."gogol-adexchange-seller";
+ "gogol-admin-datatransfer" = dontDistribute super."gogol-admin-datatransfer";
+ "gogol-admin-directory" = dontDistribute super."gogol-admin-directory";
+ "gogol-admin-emailmigration" = dontDistribute super."gogol-admin-emailmigration";
+ "gogol-admin-reports" = dontDistribute super."gogol-admin-reports";
+ "gogol-adsense" = dontDistribute super."gogol-adsense";
+ "gogol-adsense-host" = dontDistribute super."gogol-adsense-host";
+ "gogol-affiliates" = dontDistribute super."gogol-affiliates";
+ "gogol-analytics" = dontDistribute super."gogol-analytics";
+ "gogol-android-enterprise" = dontDistribute super."gogol-android-enterprise";
+ "gogol-android-publisher" = dontDistribute super."gogol-android-publisher";
+ "gogol-appengine" = dontDistribute super."gogol-appengine";
+ "gogol-apps-activity" = dontDistribute super."gogol-apps-activity";
+ "gogol-apps-calendar" = dontDistribute super."gogol-apps-calendar";
+ "gogol-apps-licensing" = dontDistribute super."gogol-apps-licensing";
+ "gogol-apps-reseller" = dontDistribute super."gogol-apps-reseller";
+ "gogol-apps-tasks" = dontDistribute super."gogol-apps-tasks";
+ "gogol-appstate" = dontDistribute super."gogol-appstate";
+ "gogol-autoscaler" = dontDistribute super."gogol-autoscaler";
+ "gogol-bigquery" = dontDistribute super."gogol-bigquery";
+ "gogol-billing" = dontDistribute super."gogol-billing";
+ "gogol-blogger" = dontDistribute super."gogol-blogger";
+ "gogol-books" = dontDistribute super."gogol-books";
+ "gogol-civicinfo" = dontDistribute super."gogol-civicinfo";
+ "gogol-classroom" = dontDistribute super."gogol-classroom";
+ "gogol-cloudtrace" = dontDistribute super."gogol-cloudtrace";
+ "gogol-compute" = dontDistribute super."gogol-compute";
+ "gogol-container" = dontDistribute super."gogol-container";
+ "gogol-core" = dontDistribute super."gogol-core";
+ "gogol-customsearch" = dontDistribute super."gogol-customsearch";
+ "gogol-dataflow" = dontDistribute super."gogol-dataflow";
+ "gogol-datastore" = dontDistribute super."gogol-datastore";
+ "gogol-debugger" = dontDistribute super."gogol-debugger";
+ "gogol-deploymentmanager" = dontDistribute super."gogol-deploymentmanager";
+ "gogol-dfareporting" = dontDistribute super."gogol-dfareporting";
+ "gogol-discovery" = dontDistribute super."gogol-discovery";
+ "gogol-dns" = dontDistribute super."gogol-dns";
+ "gogol-doubleclick-bids" = dontDistribute super."gogol-doubleclick-bids";
+ "gogol-doubleclick-search" = dontDistribute super."gogol-doubleclick-search";
+ "gogol-drive" = dontDistribute super."gogol-drive";
+ "gogol-fitness" = dontDistribute super."gogol-fitness";
+ "gogol-fonts" = dontDistribute super."gogol-fonts";
+ "gogol-freebasesearch" = dontDistribute super."gogol-freebasesearch";
+ "gogol-fusiontables" = dontDistribute super."gogol-fusiontables";
+ "gogol-games" = dontDistribute super."gogol-games";
+ "gogol-games-configuration" = dontDistribute super."gogol-games-configuration";
+ "gogol-games-management" = dontDistribute super."gogol-games-management";
+ "gogol-genomics" = dontDistribute super."gogol-genomics";
+ "gogol-gmail" = dontDistribute super."gogol-gmail";
+ "gogol-groups-migration" = dontDistribute super."gogol-groups-migration";
+ "gogol-groups-settings" = dontDistribute super."gogol-groups-settings";
+ "gogol-identity-toolkit" = dontDistribute super."gogol-identity-toolkit";
+ "gogol-latencytest" = dontDistribute super."gogol-latencytest";
+ "gogol-logging" = dontDistribute super."gogol-logging";
+ "gogol-maps-coordinate" = dontDistribute super."gogol-maps-coordinate";
+ "gogol-maps-engine" = dontDistribute super."gogol-maps-engine";
+ "gogol-mirror" = dontDistribute super."gogol-mirror";
+ "gogol-monitoring" = dontDistribute super."gogol-monitoring";
+ "gogol-oauth2" = dontDistribute super."gogol-oauth2";
+ "gogol-pagespeed" = dontDistribute super."gogol-pagespeed";
+ "gogol-partners" = dontDistribute super."gogol-partners";
+ "gogol-play-moviespartner" = dontDistribute super."gogol-play-moviespartner";
+ "gogol-plus" = dontDistribute super."gogol-plus";
+ "gogol-plus-domains" = dontDistribute super."gogol-plus-domains";
+ "gogol-prediction" = dontDistribute super."gogol-prediction";
+ "gogol-proximitybeacon" = dontDistribute super."gogol-proximitybeacon";
+ "gogol-pubsub" = dontDistribute super."gogol-pubsub";
+ "gogol-qpxexpress" = dontDistribute super."gogol-qpxexpress";
+ "gogol-replicapool" = dontDistribute super."gogol-replicapool";
+ "gogol-replicapool-updater" = dontDistribute super."gogol-replicapool-updater";
+ "gogol-resourcemanager" = dontDistribute super."gogol-resourcemanager";
+ "gogol-resourceviews" = dontDistribute super."gogol-resourceviews";
+ "gogol-shopping-content" = dontDistribute super."gogol-shopping-content";
+ "gogol-siteverification" = dontDistribute super."gogol-siteverification";
+ "gogol-spectrum" = dontDistribute super."gogol-spectrum";
+ "gogol-sqladmin" = dontDistribute super."gogol-sqladmin";
+ "gogol-storage" = dontDistribute super."gogol-storage";
+ "gogol-storage-transfer" = dontDistribute super."gogol-storage-transfer";
+ "gogol-tagmanager" = dontDistribute super."gogol-tagmanager";
+ "gogol-taskqueue" = dontDistribute super."gogol-taskqueue";
+ "gogol-translate" = dontDistribute super."gogol-translate";
+ "gogol-urlshortener" = dontDistribute super."gogol-urlshortener";
+ "gogol-useraccounts" = dontDistribute super."gogol-useraccounts";
+ "gogol-webmaster-tools" = dontDistribute super."gogol-webmaster-tools";
+ "gogol-youtube" = dontDistribute super."gogol-youtube";
+ "gogol-youtube-analytics" = dontDistribute super."gogol-youtube-analytics";
+ "gogol-youtube-reporting" = dontDistribute super."gogol-youtube-reporting";
+ "gooey" = dontDistribute super."gooey";
+ "google-cloud" = dontDistribute super."google-cloud";
+ "google-dictionary" = dontDistribute super."google-dictionary";
+ "google-drive" = dontDistribute super."google-drive";
+ "google-html5-slide" = dontDistribute super."google-html5-slide";
+ "google-mail-filters" = dontDistribute super."google-mail-filters";
+ "google-oauth2" = dontDistribute super."google-oauth2";
+ "google-search" = dontDistribute super."google-search";
+ "google-translate" = dontDistribute super."google-translate";
+ "googleplus" = dontDistribute super."googleplus";
+ "googlepolyline" = dontDistribute super."googlepolyline";
+ "gopherbot" = dontDistribute super."gopherbot";
+ "gpah" = dontDistribute super."gpah";
+ "gpcsets" = dontDistribute super."gpcsets";
+ "gpolyline" = dontDistribute super."gpolyline";
+ "gps" = dontDistribute super."gps";
+ "gps2htmlReport" = dontDistribute super."gps2htmlReport";
+ "gpx-conduit" = dontDistribute super."gpx-conduit";
+ "graceful" = dontDistribute super."graceful";
+ "grammar-combinators" = dontDistribute super."grammar-combinators";
+ "grapefruit-examples" = dontDistribute super."grapefruit-examples";
+ "grapefruit-frp" = dontDistribute super."grapefruit-frp";
+ "grapefruit-records" = dontDistribute super."grapefruit-records";
+ "grapefruit-ui" = dontDistribute super."grapefruit-ui";
+ "grapefruit-ui-gtk" = dontDistribute super."grapefruit-ui-gtk";
+ "graph-generators" = dontDistribute super."graph-generators";
+ "graph-matchings" = dontDistribute super."graph-matchings";
+ "graph-rewriting" = dontDistribute super."graph-rewriting";
+ "graph-rewriting-cl" = dontDistribute super."graph-rewriting-cl";
+ "graph-rewriting-gl" = dontDistribute super."graph-rewriting-gl";
+ "graph-rewriting-lambdascope" = dontDistribute super."graph-rewriting-lambdascope";
+ "graph-rewriting-layout" = dontDistribute super."graph-rewriting-layout";
+ "graph-rewriting-ski" = dontDistribute super."graph-rewriting-ski";
+ "graph-rewriting-strategies" = dontDistribute super."graph-rewriting-strategies";
+ "graph-rewriting-trs" = dontDistribute super."graph-rewriting-trs";
+ "graph-rewriting-ww" = dontDistribute super."graph-rewriting-ww";
+ "graph-serialize" = dontDistribute super."graph-serialize";
+ "graph-utils" = dontDistribute super."graph-utils";
+ "graph-visit" = dontDistribute super."graph-visit";
+ "graphbuilder" = dontDistribute super."graphbuilder";
+ "graphene" = dontDistribute super."graphene";
+ "graphics-drawingcombinators" = dontDistribute super."graphics-drawingcombinators";
+ "graphics-formats-collada" = dontDistribute super."graphics-formats-collada";
+ "graphicsFormats" = dontDistribute super."graphicsFormats";
+ "graphicstools" = dontDistribute super."graphicstools";
+ "graphmod" = dontDistribute super."graphmod";
+ "graphql" = dontDistribute super."graphql";
+ "graphtype" = dontDistribute super."graphtype";
+ "graphviz" = dontDistribute super."graphviz";
+ "gray-code" = dontDistribute super."gray-code";
+ "gray-extended" = dontDistribute super."gray-extended";
+ "greencard" = dontDistribute super."greencard";
+ "greencard-lib" = dontDistribute super."greencard-lib";
+ "greg-client" = dontDistribute super."greg-client";
+ "grid" = dontDistribute super."grid";
+ "gridland" = dontDistribute super."gridland";
+ "grm" = dontDistribute super."grm";
+ "groom" = dontDistribute super."groom";
+ "groundhog-inspector" = dontDistribute super."groundhog-inspector";
+ "group-with" = dontDistribute super."group-with";
+ "grouped-list" = dontDistribute super."grouped-list";
+ "groupoid" = dontDistribute super."groupoid";
+ "gruff" = dontDistribute super."gruff";
+ "gruff-examples" = dontDistribute super."gruff-examples";
+ "gsc-weighting" = dontDistribute super."gsc-weighting";
+ "gsl-random" = dontDistribute super."gsl-random";
+ "gsl-random-fu" = dontDistribute super."gsl-random-fu";
+ "gsmenu" = dontDistribute super."gsmenu";
+ "gstreamer" = dontDistribute super."gstreamer";
+ "gt-tools" = dontDistribute super."gt-tools";
+ "gtfs" = dontDistribute super."gtfs";
+ "gtk" = doDistribute super."gtk_0_13_9";
+ "gtk-helpers" = dontDistribute super."gtk-helpers";
+ "gtk-jsinput" = dontDistribute super."gtk-jsinput";
+ "gtk-largeTreeStore" = dontDistribute super."gtk-largeTreeStore";
+ "gtk-mac-integration" = dontDistribute super."gtk-mac-integration";
+ "gtk-serialized-event" = dontDistribute super."gtk-serialized-event";
+ "gtk-simple-list-view" = dontDistribute super."gtk-simple-list-view";
+ "gtk-toggle-button-list" = dontDistribute super."gtk-toggle-button-list";
+ "gtk-toy" = dontDistribute super."gtk-toy";
+ "gtk-traymanager" = dontDistribute super."gtk-traymanager";
+ "gtk2hs-cast-glade" = dontDistribute super."gtk2hs-cast-glade";
+ "gtk2hs-cast-glib" = dontDistribute super."gtk2hs-cast-glib";
+ "gtk2hs-cast-gnomevfs" = dontDistribute super."gtk2hs-cast-gnomevfs";
+ "gtk2hs-cast-gtk" = dontDistribute super."gtk2hs-cast-gtk";
+ "gtk2hs-cast-gtkglext" = dontDistribute super."gtk2hs-cast-gtkglext";
+ "gtk2hs-cast-gtksourceview2" = dontDistribute super."gtk2hs-cast-gtksourceview2";
+ "gtk2hs-cast-th" = dontDistribute super."gtk2hs-cast-th";
+ "gtk2hs-hello" = dontDistribute super."gtk2hs-hello";
+ "gtk2hs-rpn" = dontDistribute super."gtk2hs-rpn";
+ "gtk3-mac-integration" = dontDistribute super."gtk3-mac-integration";
+ "gtkglext" = dontDistribute super."gtkglext";
+ "gtkimageview" = dontDistribute super."gtkimageview";
+ "gtkrsync" = dontDistribute super."gtkrsync";
+ "gtksourceview2" = dontDistribute super."gtksourceview2";
+ "gtksourceview3" = dontDistribute super."gtksourceview3";
+ "guarded-rewriting" = dontDistribute super."guarded-rewriting";
+ "guess-combinator" = dontDistribute super."guess-combinator";
+ "gulcii" = dontDistribute super."gulcii";
+ "gutenberg-fibonaccis" = dontDistribute super."gutenberg-fibonaccis";
+ "gyah-bin" = dontDistribute super."gyah-bin";
+ "h-booru" = dontDistribute super."h-booru";
+ "h-gpgme" = dontDistribute super."h-gpgme";
+ "h2048" = dontDistribute super."h2048";
+ "hArduino" = dontDistribute super."hArduino";
+ "hBDD" = dontDistribute super."hBDD";
+ "hBDD-CMUBDD" = dontDistribute super."hBDD-CMUBDD";
+ "hBDD-CUDD" = dontDistribute super."hBDD-CUDD";
+ "hCsound" = dontDistribute super."hCsound";
+ "hDFA" = dontDistribute super."hDFA";
+ "hF2" = dontDistribute super."hF2";
+ "hGelf" = dontDistribute super."hGelf";
+ "hLLVM" = dontDistribute super."hLLVM";
+ "hMollom" = dontDistribute super."hMollom";
+ "hOpenPGP" = dontDistribute super."hOpenPGP";
+ "hPDB-examples" = dontDistribute super."hPDB-examples";
+ "hPushover" = dontDistribute super."hPushover";
+ "hR" = dontDistribute super."hR";
+ "hRESP" = dontDistribute super."hRESP";
+ "hS3" = dontDistribute super."hS3";
+ "hScraper" = dontDistribute super."hScraper";
+ "hSimpleDB" = dontDistribute super."hSimpleDB";
+ "hTalos" = dontDistribute super."hTalos";
+ "hTensor" = dontDistribute super."hTensor";
+ "hVOIDP" = dontDistribute super."hVOIDP";
+ "hXmixer" = dontDistribute super."hXmixer";
+ "haar" = dontDistribute super."haar";
+ "hacanon-light" = dontDistribute super."hacanon-light";
+ "hack" = dontDistribute super."hack";
+ "hack-contrib" = dontDistribute super."hack-contrib";
+ "hack-contrib-press" = dontDistribute super."hack-contrib-press";
+ "hack-frontend-happstack" = dontDistribute super."hack-frontend-happstack";
+ "hack-frontend-monadcgi" = dontDistribute super."hack-frontend-monadcgi";
+ "hack-handler-cgi" = dontDistribute super."hack-handler-cgi";
+ "hack-handler-epoll" = dontDistribute super."hack-handler-epoll";
+ "hack-handler-evhttp" = dontDistribute super."hack-handler-evhttp";
+ "hack-handler-fastcgi" = dontDistribute super."hack-handler-fastcgi";
+ "hack-handler-happstack" = dontDistribute super."hack-handler-happstack";
+ "hack-handler-hyena" = dontDistribute super."hack-handler-hyena";
+ "hack-handler-kibro" = dontDistribute super."hack-handler-kibro";
+ "hack-handler-simpleserver" = dontDistribute super."hack-handler-simpleserver";
+ "hack-middleware-cleanpath" = dontDistribute super."hack-middleware-cleanpath";
+ "hack-middleware-clientsession" = dontDistribute super."hack-middleware-clientsession";
+ "hack-middleware-gzip" = dontDistribute super."hack-middleware-gzip";
+ "hack-middleware-jsonp" = dontDistribute super."hack-middleware-jsonp";
+ "hack2" = dontDistribute super."hack2";
+ "hack2-contrib" = dontDistribute super."hack2-contrib";
+ "hack2-contrib-extra" = dontDistribute super."hack2-contrib-extra";
+ "hack2-handler-happstack-server" = dontDistribute super."hack2-handler-happstack-server";
+ "hack2-handler-mongrel2-http" = dontDistribute super."hack2-handler-mongrel2-http";
+ "hack2-handler-snap-server" = dontDistribute super."hack2-handler-snap-server";
+ "hack2-handler-warp" = dontDistribute super."hack2-handler-warp";
+ "hack2-interface-wai" = dontDistribute super."hack2-interface-wai";
+ "hackage-diff" = dontDistribute super."hackage-diff";
+ "hackage-plot" = dontDistribute super."hackage-plot";
+ "hackage-proxy" = dontDistribute super."hackage-proxy";
+ "hackage-repo-tool" = dontDistribute super."hackage-repo-tool";
+ "hackage-security" = dontDistribute super."hackage-security";
+ "hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP";
+ "hackage-server" = dontDistribute super."hackage-server";
+ "hackage-sparks" = dontDistribute super."hackage-sparks";
+ "hackage-whatsnew" = dontDistribute super."hackage-whatsnew";
+ "hackage2hwn" = dontDistribute super."hackage2hwn";
+ "hackage2twitter" = dontDistribute super."hackage2twitter";
+ "hackager" = dontDistribute super."hackager";
+ "hackernews" = dontDistribute super."hackernews";
+ "hackertyper" = dontDistribute super."hackertyper";
+ "hackmanager" = dontDistribute super."hackmanager";
+ "hackport" = dontDistribute super."hackport";
+ "hactor" = dontDistribute super."hactor";
+ "hactors" = dontDistribute super."hactors";
+ "haddock" = dontDistribute super."haddock";
+ "haddock-leksah" = dontDistribute super."haddock-leksah";
+ "haddocset" = dontDistribute super."haddocset";
+ "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";
+ "hailgun" = dontDistribute super."hailgun";
+ "hailgun-send" = dontDistribute super."hailgun-send";
+ "hails" = dontDistribute super."hails";
+ "hails-bin" = dontDistribute super."hails-bin";
+ "hairy" = dontDistribute super."hairy";
+ "hakaru" = dontDistribute super."hakaru";
+ "hake" = dontDistribute super."hake";
+ "hakismet" = dontDistribute super."hakismet";
+ "hako" = dontDistribute super."hako";
+ "hakyll-R" = dontDistribute super."hakyll-R";
+ "hakyll-agda" = dontDistribute super."hakyll-agda";
+ "hakyll-blaze-templates" = dontDistribute super."hakyll-blaze-templates";
+ "hakyll-contrib" = dontDistribute super."hakyll-contrib";
+ "hakyll-contrib-hyphenation" = dontDistribute super."hakyll-contrib-hyphenation";
+ "hakyll-contrib-links" = dontDistribute super."hakyll-contrib-links";
+ "hakyll-convert" = dontDistribute super."hakyll-convert";
+ "hakyll-elm" = dontDistribute super."hakyll-elm";
+ "hakyll-sass" = dontDistribute super."hakyll-sass";
+ "halberd" = dontDistribute super."halberd";
+ "halfs" = dontDistribute super."halfs";
+ "halipeto" = dontDistribute super."halipeto";
+ "halive" = dontDistribute super."halive";
+ "halma" = dontDistribute super."halma";
+ "haltavista" = dontDistribute super."haltavista";
+ "hamid" = dontDistribute super."hamid";
+ "hampp" = dontDistribute super."hampp";
+ "hamtmap" = dontDistribute super."hamtmap";
+ "hamusic" = dontDistribute super."hamusic";
+ "handa-gdata" = dontDistribute super."handa-gdata";
+ "handa-geodata" = dontDistribute super."handa-geodata";
+ "handa-opengl" = dontDistribute super."handa-opengl";
+ "handle-like" = dontDistribute super."handle-like";
+ "handsy" = dontDistribute super."handsy";
+ "hangman" = dontDistribute super."hangman";
+ "hannahci" = dontDistribute super."hannahci";
+ "hans" = dontDistribute super."hans";
+ "hans-pcap" = dontDistribute super."hans-pcap";
+ "hans-pfq" = dontDistribute super."hans-pfq";
+ "haphviz" = dontDistribute super."haphviz";
+ "hapistrano" = dontDistribute super."hapistrano";
+ "happindicator" = dontDistribute super."happindicator";
+ "happindicator3" = dontDistribute super."happindicator3";
+ "happraise" = dontDistribute super."happraise";
+ "happs-hsp" = dontDistribute super."happs-hsp";
+ "happs-hsp-template" = dontDistribute super."happs-hsp-template";
+ "happs-tutorial" = dontDistribute super."happs-tutorial";
+ "happstack" = dontDistribute super."happstack";
+ "happstack-auth" = dontDistribute super."happstack-auth";
+ "happstack-authenticate" = dontDistribute super."happstack-authenticate";
+ "happstack-clientsession" = dontDistribute super."happstack-clientsession";
+ "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-hsp" = dontDistribute super."happstack-hsp";
+ "happstack-hstringtemplate" = dontDistribute super."happstack-hstringtemplate";
+ "happstack-ixset" = dontDistribute super."happstack-ixset";
+ "happstack-jmacro" = dontDistribute super."happstack-jmacro";
+ "happstack-lite" = dontDistribute super."happstack-lite";
+ "happstack-monad-peel" = dontDistribute super."happstack-monad-peel";
+ "happstack-plugins" = dontDistribute super."happstack-plugins";
+ "happstack-server-tls" = dontDistribute super."happstack-server-tls";
+ "happstack-server-tls-cryptonite" = dontDistribute super."happstack-server-tls-cryptonite";
+ "happstack-state" = dontDistribute super."happstack-state";
+ "happstack-static-routing" = dontDistribute super."happstack-static-routing";
+ "happstack-util" = dontDistribute super."happstack-util";
+ "happstack-yui" = dontDistribute super."happstack-yui";
+ "happy-meta" = dontDistribute super."happy-meta";
+ "happybara" = dontDistribute super."happybara";
+ "happybara-webkit" = dontDistribute super."happybara-webkit";
+ "happybara-webkit-server" = dontDistribute super."happybara-webkit-server";
+ "har" = dontDistribute super."har";
+ "harchive" = dontDistribute super."harchive";
+ "hark" = dontDistribute super."hark";
+ "harmony" = dontDistribute super."harmony";
+ "haroonga" = dontDistribute super."haroonga";
+ "haroonga-httpd" = dontDistribute super."haroonga-httpd";
+ "harp" = dontDistribute super."harp";
+ "harpy" = dontDistribute super."harpy";
+ "has" = dontDistribute super."has";
+ "has-th" = dontDistribute super."has-th";
+ "hascal" = dontDistribute super."hascal";
+ "hascat" = dontDistribute super."hascat";
+ "hascat-lib" = dontDistribute super."hascat-lib";
+ "hascat-setup" = dontDistribute super."hascat-setup";
+ "hascat-system" = dontDistribute super."hascat-system";
+ "hash" = dontDistribute super."hash";
+ "hashable-generics" = dontDistribute super."hashable-generics";
+ "hashable-time" = dontDistribute super."hashable-time";
+ "hashabler" = dontDistribute super."hashabler";
+ "hashed-storage" = dontDistribute super."hashed-storage";
+ "hashids" = dontDistribute super."hashids";
+ "hashring" = dontDistribute super."hashring";
+ "hashtables-plus" = dontDistribute super."hashtables-plus";
+ "hasim" = dontDistribute super."hasim";
+ "hask" = dontDistribute super."hask";
+ "hask-home" = dontDistribute super."hask-home";
+ "haskades" = dontDistribute super."haskades";
+ "haskakafka" = dontDistribute super."haskakafka";
+ "haskanoid" = dontDistribute super."haskanoid";
+ "haskarrow" = dontDistribute super."haskarrow";
+ "haskbot-core" = dontDistribute super."haskbot-core";
+ "haskdeep" = dontDistribute super."haskdeep";
+ "haskdogs" = dontDistribute super."haskdogs";
+ "haskeem" = dontDistribute super."haskeem";
+ "haskeline" = doDistribute super."haskeline_0_7_2_2";
+ "haskeline-class" = dontDistribute super."haskeline-class";
+ "haskell-aliyun" = dontDistribute super."haskell-aliyun";
+ "haskell-awk" = dontDistribute super."haskell-awk";
+ "haskell-bcrypt" = dontDistribute super."haskell-bcrypt";
+ "haskell-brainfuck" = dontDistribute super."haskell-brainfuck";
+ "haskell-cnc" = dontDistribute super."haskell-cnc";
+ "haskell-coffee" = dontDistribute super."haskell-coffee";
+ "haskell-compression" = dontDistribute super."haskell-compression";
+ "haskell-course-preludes" = dontDistribute super."haskell-course-preludes";
+ "haskell-docs" = dontDistribute super."haskell-docs";
+ "haskell-exp-parser" = dontDistribute super."haskell-exp-parser";
+ "haskell-formatter" = dontDistribute super."haskell-formatter";
+ "haskell-ftp" = dontDistribute super."haskell-ftp";
+ "haskell-generate" = dontDistribute super."haskell-generate";
+ "haskell-gi" = dontDistribute super."haskell-gi";
+ "haskell-gi-base" = dontDistribute super."haskell-gi-base";
+ "haskell-import-graph" = dontDistribute super."haskell-import-graph";
+ "haskell-in-space" = dontDistribute super."haskell-in-space";
+ "haskell-modbus" = dontDistribute super."haskell-modbus";
+ "haskell-mpi" = dontDistribute super."haskell-mpi";
+ "haskell-names" = doDistribute super."haskell-names_0_5_3";
+ "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" = doDistribute super."haskell-src-exts_1_16_0_1";
+ "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";
+ "haskintex" = doDistribute super."haskintex_0_5_1_0";
+ "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_7_4";
+ "hasql-pool" = dontDistribute super."hasql-pool";
+ "hasql-postgres-options" = dontDistribute super."hasql-postgres-options";
+ "hasql-th" = dontDistribute super."hasql-th";
+ "hasql-transaction" = dontDistribute super."hasql-transaction";
+ "hastache-aeson" = dontDistribute super."hastache-aeson";
+ "haste" = dontDistribute super."haste";
+ "haste-compiler" = dontDistribute super."haste-compiler";
+ "haste-markup" = dontDistribute super."haste-markup";
+ "haste-perch" = dontDistribute super."haste-perch";
+ "hastily" = dontDistribute super."hastily";
+ "hasty-hamiltonian" = dontDistribute super."hasty-hamiltonian";
+ "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" = dontDistribute super."haxl";
+ "haxl-amazonka" = dontDistribute super."haxl-amazonka";
+ "haxl-facebook" = dontDistribute super."haxl-facebook";
+ "haxparse" = dontDistribute super."haxparse";
+ "haxr-th" = dontDistribute super."haxr-th";
+ "haxy" = dontDistribute super."haxy";
+ "hayland" = dontDistribute super."hayland";
+ "hayoo-cli" = dontDistribute super."hayoo-cli";
+ "hback" = dontDistribute super."hback";
+ "hbayes" = dontDistribute super."hbayes";
+ "hbb" = dontDistribute super."hbb";
+ "hbcd" = dontDistribute super."hbcd";
+ "hbeat" = dontDistribute super."hbeat";
+ "hblas" = dontDistribute super."hblas";
+ "hblock" = dontDistribute super."hblock";
+ "hbro" = dontDistribute super."hbro";
+ "hbro-contrib" = dontDistribute super."hbro-contrib";
+ "hburg" = dontDistribute super."hburg";
+ "hcc" = dontDistribute super."hcc";
+ "hcg-minus" = dontDistribute super."hcg-minus";
+ "hcg-minus-cairo" = dontDistribute super."hcg-minus-cairo";
+ "hcheat" = dontDistribute super."hcheat";
+ "hchesslib" = dontDistribute super."hchesslib";
+ "hcltest" = dontDistribute super."hcltest";
+ "hcron" = dontDistribute super."hcron";
+ "hcube" = dontDistribute super."hcube";
+ "hcwiid" = dontDistribute super."hcwiid";
+ "hdaemonize-buildfix" = dontDistribute super."hdaemonize-buildfix";
+ "hdbc-aeson" = dontDistribute super."hdbc-aeson";
+ "hdbc-postgresql-hstore" = dontDistribute super."hdbc-postgresql-hstore";
+ "hdbc-tuple" = dontDistribute super."hdbc-tuple";
+ "hdbi" = dontDistribute super."hdbi";
+ "hdbi-conduit" = dontDistribute super."hdbi-conduit";
+ "hdbi-postgresql" = dontDistribute super."hdbi-postgresql";
+ "hdbi-sqlite" = dontDistribute super."hdbi-sqlite";
+ "hdbi-tests" = dontDistribute super."hdbi-tests";
+ "hdf" = dontDistribute super."hdf";
+ "hdigest" = dontDistribute super."hdigest";
+ "hdirect" = dontDistribute super."hdirect";
+ "hdis86" = dontDistribute super."hdis86";
+ "hdiscount" = dontDistribute super."hdiscount";
+ "hdm" = dontDistribute super."hdm";
+ "hdph" = dontDistribute super."hdph";
+ "hdph-closure" = dontDistribute super."hdph-closure";
+ "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";
+ "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";
+ "hermit" = dontDistribute super."hermit";
+ "hermit-syb" = dontDistribute super."hermit-syb";
+ "heroku" = dontDistribute super."heroku";
+ "heroku-persistent" = dontDistribute super."heroku-persistent";
+ "herringbone" = dontDistribute super."herringbone";
+ "herringbone-embed" = dontDistribute super."herringbone-embed";
+ "herringbone-wai" = dontDistribute super."herringbone-wai";
+ "hesql" = dontDistribute super."hesql";
+ "hetero-map" = dontDistribute super."hetero-map";
+ "hetris" = dontDistribute super."hetris";
+ "heukarya" = dontDistribute super."heukarya";
+ "hevolisa" = dontDistribute super."hevolisa";
+ "hevolisa-dph" = dontDistribute super."hevolisa-dph";
+ "hexdump" = dontDistribute super."hexdump";
+ "hexif" = dontDistribute super."hexif";
+ "hexpat-iteratee" = dontDistribute super."hexpat-iteratee";
+ "hexpat-lens" = dontDistribute super."hexpat-lens";
+ "hexpat-pickle" = dontDistribute super."hexpat-pickle";
+ "hexpat-pickle-generic" = dontDistribute super."hexpat-pickle-generic";
+ "hexpat-tagsoup" = dontDistribute super."hexpat-tagsoup";
+ "hexpr" = dontDistribute super."hexpr";
+ "hexquote" = dontDistribute super."hexquote";
+ "heyefi" = dontDistribute super."heyefi";
+ "hfann" = dontDistribute super."hfann";
+ "hfd" = dontDistribute super."hfd";
+ "hfiar" = dontDistribute super."hfiar";
+ "hfmt" = dontDistribute super."hfmt";
+ "hfoil" = dontDistribute super."hfoil";
+ "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";
+ "hgettext" = dontDistribute super."hgettext";
+ "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";
+ "hiccup" = dontDistribute super."hiccup";
+ "hichi" = dontDistribute super."hichi";
+ "hidapi" = dontDistribute super."hidapi";
+ "hieraclus" = dontDistribute super."hieraclus";
+ "hierarchical-clustering" = dontDistribute super."hierarchical-clustering";
+ "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";
+ "hindent" = doDistribute super."hindent_4_5_5";
+ "hinduce-associations-apriori" = dontDistribute super."hinduce-associations-apriori";
+ "hinduce-classifier" = dontDistribute super."hinduce-classifier";
+ "hinduce-classifier-decisiontree" = dontDistribute super."hinduce-classifier-decisiontree";
+ "hinduce-examples" = dontDistribute super."hinduce-examples";
+ "hinduce-missingh" = dontDistribute super."hinduce-missingh";
+ "hinquire" = dontDistribute super."hinquire";
+ "hinstaller" = dontDistribute super."hinstaller";
+ "hint-server" = dontDistribute super."hint-server";
+ "hinvaders" = dontDistribute super."hinvaders";
+ "hinze-streams" = dontDistribute super."hinze-streams";
+ "hipbot" = dontDistribute super."hipbot";
+ "hipe" = dontDistribute super."hipe";
+ "hips" = dontDistribute super."hips";
+ "hircules" = dontDistribute super."hircules";
+ "hirt" = dontDistribute super."hirt";
+ "hissmetrics" = dontDistribute super."hissmetrics";
+ "hist-pl" = dontDistribute super."hist-pl";
+ "hist-pl-dawg" = dontDistribute super."hist-pl-dawg";
+ "hist-pl-fusion" = dontDistribute super."hist-pl-fusion";
+ "hist-pl-lexicon" = dontDistribute super."hist-pl-lexicon";
+ "hist-pl-lmf" = dontDistribute super."hist-pl-lmf";
+ "hist-pl-transliter" = dontDistribute super."hist-pl-transliter";
+ "hist-pl-types" = dontDistribute super."hist-pl-types";
+ "histogram-fill-binary" = dontDistribute super."histogram-fill-binary";
+ "histogram-fill-cereal" = dontDistribute super."histogram-fill-cereal";
+ "historian" = dontDistribute super."historian";
+ "hjcase" = dontDistribute super."hjcase";
+ "hjpath" = dontDistribute super."hjpath";
+ "hjs" = dontDistribute super."hjs";
+ "hjson" = dontDistribute super."hjson";
+ "hjson-query" = dontDistribute super."hjson-query";
+ "hjsonpointer" = dontDistribute super."hjsonpointer";
+ "hjsonschema" = dontDistribute super."hjsonschema";
+ "hlatex" = dontDistribute super."hlatex";
+ "hlbfgsb" = dontDistribute super."hlbfgsb";
+ "hlcm" = dontDistribute super."hlcm";
+ "hledger" = doDistribute super."hledger_0_26";
+ "hledger-chart" = dontDistribute super."hledger-chart";
+ "hledger-diff" = dontDistribute super."hledger-diff";
+ "hledger-interest" = dontDistribute super."hledger-interest";
+ "hledger-irr" = dontDistribute super."hledger-irr";
+ "hledger-lib" = doDistribute super."hledger-lib_0_26";
+ "hledger-ui" = dontDistribute super."hledger-ui";
+ "hledger-vty" = dontDistribute super."hledger-vty";
+ "hledger-web" = doDistribute super."hledger-web_0_26";
+ "hlibBladeRF" = dontDistribute super."hlibBladeRF";
+ "hlibev" = dontDistribute super."hlibev";
+ "hlibfam" = dontDistribute super."hlibfam";
+ "hlint" = doDistribute super."hlint_1_9_22";
+ "hlogger" = dontDistribute super."hlogger";
+ "hlongurl" = dontDistribute super."hlongurl";
+ "hls" = dontDistribute super."hls";
+ "hlwm" = dontDistribute super."hlwm";
+ "hly" = dontDistribute super."hly";
+ "hmark" = dontDistribute super."hmark";
+ "hmarkup" = dontDistribute super."hmarkup";
+ "hmatrix" = doDistribute super."hmatrix_0_16_1_5";
+ "hmatrix-banded" = dontDistribute super."hmatrix-banded";
+ "hmatrix-csv" = dontDistribute super."hmatrix-csv";
+ "hmatrix-glpk" = dontDistribute super."hmatrix-glpk";
+ "hmatrix-gsl" = doDistribute super."hmatrix-gsl_0_16_0_3";
+ "hmatrix-gsl-stats" = doDistribute super."hmatrix-gsl-stats_0_4_1_1";
+ "hmatrix-mmap" = dontDistribute super."hmatrix-mmap";
+ "hmatrix-nipals" = dontDistribute super."hmatrix-nipals";
+ "hmatrix-quadprogpp" = dontDistribute super."hmatrix-quadprogpp";
+ "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" = dontDistribute super."hopenpgp-tools";
+ "hopenssl" = dontDistribute super."hopenssl";
+ "hopfield" = dontDistribute super."hopfield";
+ "hopfield-networks" = dontDistribute super."hopfield-networks";
+ "hopfli" = dontDistribute super."hopfli";
+ "hops" = dontDistribute super."hops";
+ "hoq" = dontDistribute super."hoq";
+ "horizon" = dontDistribute super."horizon";
+ "hosc" = dontDistribute super."hosc";
+ "hosc-json" = dontDistribute super."hosc-json";
+ "hosc-utils" = dontDistribute super."hosc-utils";
+ "hosts-server" = dontDistribute super."hosts-server";
+ "hothasktags" = dontDistribute super."hothasktags";
+ "hotswap" = dontDistribute super."hotswap";
+ "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing";
+ "hp2any-core" = dontDistribute super."hp2any-core";
+ "hp2any-graph" = dontDistribute super."hp2any-graph";
+ "hp2any-manager" = dontDistribute super."hp2any-manager";
+ "hp2html" = dontDistribute super."hp2html";
+ "hp2pretty" = dontDistribute super."hp2pretty";
+ "hpack" = dontDistribute super."hpack";
+ "hpaco" = dontDistribute super."hpaco";
+ "hpaco-lib" = dontDistribute super."hpaco-lib";
+ "hpage" = dontDistribute super."hpage";
+ "hpapi" = dontDistribute super."hpapi";
+ "hpaste" = dontDistribute super."hpaste";
+ "hpasteit" = dontDistribute super."hpasteit";
+ "hpc-coveralls" = doDistribute super."hpc-coveralls_0_9_0";
+ "hpc-strobe" = dontDistribute super."hpc-strobe";
+ "hpc-tracer" = dontDistribute super."hpc-tracer";
+ "hplayground" = dontDistribute super."hplayground";
+ "hplaylist" = dontDistribute super."hplaylist";
+ "hpodder" = dontDistribute super."hpodder";
+ "hpp" = dontDistribute super."hpp";
+ "hpqtypes" = dontDistribute super."hpqtypes";
+ "hprotoc-fork" = dontDistribute super."hprotoc-fork";
+ "hps" = dontDistribute super."hps";
+ "hps-cairo" = dontDistribute super."hps-cairo";
+ "hps-kmeans" = dontDistribute super."hps-kmeans";
+ "hpuz" = dontDistribute super."hpuz";
+ "hpygments" = dontDistribute super."hpygments";
+ "hpylos" = dontDistribute super."hpylos";
+ "hpyrg" = dontDistribute super."hpyrg";
+ "hquantlib" = dontDistribute super."hquantlib";
+ "hquery" = dontDistribute super."hquery";
+ "hranker" = dontDistribute super."hranker";
+ "hreader" = dontDistribute super."hreader";
+ "hricket" = dontDistribute super."hricket";
+ "hruby" = dontDistribute super."hruby";
+ "hs-GeoIP" = dontDistribute super."hs-GeoIP";
+ "hs-blake2" = dontDistribute super."hs-blake2";
+ "hs-captcha" = dontDistribute super."hs-captcha";
+ "hs-carbon" = dontDistribute super."hs-carbon";
+ "hs-carbon-examples" = dontDistribute super."hs-carbon-examples";
+ "hs-cdb" = dontDistribute super."hs-cdb";
+ "hs-dotnet" = dontDistribute super."hs-dotnet";
+ "hs-duktape" = dontDistribute super."hs-duktape";
+ "hs-excelx" = dontDistribute super."hs-excelx";
+ "hs-ffmpeg" = dontDistribute super."hs-ffmpeg";
+ "hs-fltk" = dontDistribute super."hs-fltk";
+ "hs-gchart" = dontDistribute super."hs-gchart";
+ "hs-gen-iface" = dontDistribute super."hs-gen-iface";
+ "hs-gizapp" = dontDistribute super."hs-gizapp";
+ "hs-inspector" = dontDistribute super."hs-inspector";
+ "hs-java" = dontDistribute super."hs-java";
+ "hs-json-rpc" = dontDistribute super."hs-json-rpc";
+ "hs-logo" = dontDistribute super."hs-logo";
+ "hs-mesos" = dontDistribute super."hs-mesos";
+ "hs-nombre-generator" = dontDistribute super."hs-nombre-generator";
+ "hs-pgms" = dontDistribute super."hs-pgms";
+ "hs-php-session" = dontDistribute super."hs-php-session";
+ "hs-pkg-config" = dontDistribute super."hs-pkg-config";
+ "hs-pkpass" = dontDistribute super."hs-pkpass";
+ "hs-re" = dontDistribute super."hs-re";
+ "hs-scrape" = dontDistribute super."hs-scrape";
+ "hs-twitter" = dontDistribute super."hs-twitter";
+ "hs-twitterarchiver" = dontDistribute super."hs-twitterarchiver";
+ "hs-vcard" = dontDistribute super."hs-vcard";
+ "hs2048" = dontDistribute super."hs2048";
+ "hs2bf" = dontDistribute super."hs2bf";
+ "hs2dot" = dontDistribute super."hs2dot";
+ "hsConfigure" = dontDistribute super."hsConfigure";
+ "hsSqlite3" = dontDistribute super."hsSqlite3";
+ "hsXenCtrl" = dontDistribute super."hsXenCtrl";
+ "hsass" = doDistribute super."hsass_0_3_0";
+ "hsay" = dontDistribute super."hsay";
+ "hsb2hs" = dontDistribute super."hsb2hs";
+ "hsbackup" = dontDistribute super."hsbackup";
+ "hsbencher" = dontDistribute super."hsbencher";
+ "hsbencher-codespeed" = dontDistribute super."hsbencher-codespeed";
+ "hsbencher-fusion" = dontDistribute super."hsbencher-fusion";
+ "hsc2hs" = dontDistribute super."hsc2hs";
+ "hsc3" = dontDistribute super."hsc3";
+ "hsc3-auditor" = dontDistribute super."hsc3-auditor";
+ "hsc3-cairo" = dontDistribute super."hsc3-cairo";
+ "hsc3-data" = dontDistribute super."hsc3-data";
+ "hsc3-db" = dontDistribute super."hsc3-db";
+ "hsc3-dot" = dontDistribute super."hsc3-dot";
+ "hsc3-forth" = dontDistribute super."hsc3-forth";
+ "hsc3-graphs" = dontDistribute super."hsc3-graphs";
+ "hsc3-lang" = dontDistribute super."hsc3-lang";
+ "hsc3-lisp" = dontDistribute super."hsc3-lisp";
+ "hsc3-plot" = dontDistribute super."hsc3-plot";
+ "hsc3-process" = dontDistribute super."hsc3-process";
+ "hsc3-rec" = dontDistribute super."hsc3-rec";
+ "hsc3-rw" = dontDistribute super."hsc3-rw";
+ "hsc3-server" = dontDistribute super."hsc3-server";
+ "hsc3-sf" = dontDistribute super."hsc3-sf";
+ "hsc3-sf-hsndfile" = dontDistribute super."hsc3-sf-hsndfile";
+ "hsc3-unsafe" = dontDistribute super."hsc3-unsafe";
+ "hsc3-utils" = dontDistribute super."hsc3-utils";
+ "hscamwire" = dontDistribute super."hscamwire";
+ "hscassandra" = dontDistribute super."hscassandra";
+ "hscd" = dontDistribute super."hscd";
+ "hsclock" = dontDistribute super."hsclock";
+ "hscope" = dontDistribute super."hscope";
+ "hscrtmpl" = dontDistribute super."hscrtmpl";
+ "hscuid" = dontDistribute super."hscuid";
+ "hscurses" = dontDistribute super."hscurses";
+ "hscurses-fish-ex" = dontDistribute super."hscurses-fish-ex";
+ "hsdev" = dontDistribute super."hsdev";
+ "hsdif" = dontDistribute super."hsdif";
+ "hsdip" = dontDistribute super."hsdip";
+ "hsdns" = dontDistribute super."hsdns";
+ "hsdns-cache" = dontDistribute super."hsdns-cache";
+ "hsemail-ns" = dontDistribute super."hsemail-ns";
+ "hsenv" = dontDistribute super."hsenv";
+ "hserv" = dontDistribute super."hserv";
+ "hset" = dontDistribute super."hset";
+ "hsexif" = dontDistribute super."hsexif";
+ "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";
+ "hsignal" = doDistribute super."hsignal_0_2_7_1";
+ "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" = dontDistribute super."hsndfile";
+ "hsndfile-storablevector" = dontDistribute super."hsndfile-storablevector";
+ "hsndfile-vector" = dontDistribute super."hsndfile-vector";
+ "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" = dontDistribute super."hsp";
+ "hsp-cgi" = dontDistribute super."hsp-cgi";
+ "hsparklines" = dontDistribute super."hsparklines";
+ "hsparql" = dontDistribute super."hsparql";
+ "hspear" = dontDistribute super."hspear";
+ "hspec" = doDistribute super."hspec_2_1_10";
+ "hspec-checkers" = dontDistribute super."hspec-checkers";
+ "hspec-core" = doDistribute super."hspec-core_2_1_10";
+ "hspec-discover" = doDistribute super."hspec-discover_2_1_10";
+ "hspec-expectations" = doDistribute super."hspec-expectations_0_7_1";
+ "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-expectations-pretty-diff" = dontDistribute super."hspec-expectations-pretty-diff";
+ "hspec-experimental" = dontDistribute super."hspec-experimental";
+ "hspec-laws" = dontDistribute super."hspec-laws";
+ "hspec-meta" = doDistribute super."hspec-meta_2_1_7";
+ "hspec-monad-control" = dontDistribute super."hspec-monad-control";
+ "hspec-server" = dontDistribute super."hspec-server";
+ "hspec-setup" = dontDistribute super."hspec-setup";
+ "hspec-shouldbe" = dontDistribute super."hspec-shouldbe";
+ "hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0";
+ "hspec-snap" = doDistribute super."hspec-snap_0_3_3_0";
+ "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-webdriver" = doDistribute super."hspec-webdriver_1_0_3";
+ "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";
+ "hstatistics" = doDistribute super."hstatistics_0_2_5_2";
+ "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-jmacro" = dontDistribute super."hsx-jmacro";
+ "hsx-xhtml" = dontDistribute super."hsx-xhtml";
+ "hsx2hs" = dontDistribute super."hsx2hs";
+ "hsyscall" = dontDistribute super."hsyscall";
+ "hszephyr" = dontDistribute super."hszephyr";
+ "htaglib" = dontDistribute super."htaglib";
+ "htags" = dontDistribute super."htags";
+ "htar" = dontDistribute super."htar";
+ "htiled" = dontDistribute super."htiled";
+ "htime" = dontDistribute super."htime";
+ "html-email-validate" = dontDistribute super."html-email-validate";
+ "html-entities" = dontDistribute super."html-entities";
+ "html-kure" = dontDistribute super."html-kure";
+ "html-minimalist" = dontDistribute super."html-minimalist";
+ "html-rules" = dontDistribute super."html-rules";
+ "html-tokenizer" = dontDistribute super."html-tokenizer";
+ "html-truncate" = dontDistribute super."html-truncate";
+ "html2hamlet" = dontDistribute super."html2hamlet";
+ "html5-entity" = dontDistribute super."html5-entity";
+ "htodo" = dontDistribute super."htodo";
+ "htoml" = dontDistribute super."htoml";
+ "htrace" = dontDistribute super."htrace";
+ "hts" = dontDistribute super."hts";
+ "htsn" = dontDistribute super."htsn";
+ "htsn-common" = dontDistribute super."htsn-common";
+ "htsn-import" = dontDistribute super."htsn-import";
+ "http-accept" = dontDistribute super."http-accept";
+ "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-openssl" = dontDistribute super."http-client-openssl";
+ "http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers";
+ "http-client-streams" = dontDistribute super."http-client-streams";
+ "http-conduit-browser" = dontDistribute super."http-conduit-browser";
+ "http-conduit-downloader" = dontDistribute super."http-conduit-downloader";
+ "http-encodings" = dontDistribute super."http-encodings";
+ "http-enumerator" = dontDistribute super."http-enumerator";
+ "http-kit" = dontDistribute super."http-kit";
+ "http-link-header" = dontDistribute super."http-link-header";
+ "http-listen" = dontDistribute super."http-listen";
+ "http-monad" = dontDistribute super."http-monad";
+ "http-proxy" = dontDistribute super."http-proxy";
+ "http-querystring" = dontDistribute super."http-querystring";
+ "http-server" = dontDistribute super."http-server";
+ "http-shed" = dontDistribute super."http-shed";
+ "http-test" = dontDistribute super."http-test";
+ "http-types" = doDistribute super."http-types_0_8_6";
+ "http-wget" = dontDistribute super."http-wget";
+ "http2" = doDistribute super."http2_1_0_4";
+ "httpd-shed" = dontDistribute super."httpd-shed";
+ "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" = dontDistribute super."human-readable-duration";
+ "hums" = dontDistribute super."hums";
+ "hunch" = dontDistribute super."hunch";
+ "hunit-dejafu" = dontDistribute super."hunit-dejafu";
+ "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_2_0_0";
+ "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk";
+ "hworker" = dontDistribute super."hworker";
+ "hworker-ses" = dontDistribute super."hworker-ses";
+ "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";
+ "hybrid-vectors" = dontDistribute super."hybrid-vectors";
+ "hydra-hs" = dontDistribute super."hydra-hs";
+ "hydra-print" = dontDistribute super."hydra-print";
+ "hydrogen" = dontDistribute super."hydrogen";
+ "hydrogen-cli" = dontDistribute super."hydrogen-cli";
+ "hydrogen-cli-args" = dontDistribute super."hydrogen-cli-args";
+ "hydrogen-data" = dontDistribute super."hydrogen-data";
+ "hydrogen-multimap" = dontDistribute super."hydrogen-multimap";
+ "hydrogen-parsing" = dontDistribute super."hydrogen-parsing";
+ "hydrogen-prelude" = dontDistribute super."hydrogen-prelude";
+ "hydrogen-prelude-parsec" = dontDistribute super."hydrogen-prelude-parsec";
+ "hydrogen-syntax" = dontDistribute super."hydrogen-syntax";
+ "hydrogen-util" = dontDistribute super."hydrogen-util";
+ "hydrogen-version" = dontDistribute super."hydrogen-version";
+ "hyena" = dontDistribute super."hyena";
+ "hylolib" = dontDistribute super."hylolib";
+ "hylotab" = dontDistribute super."hylotab";
+ "hyloutils" = dontDistribute super."hyloutils";
+ "hyperdrive" = dontDistribute super."hyperdrive";
+ "hyperfunctions" = dontDistribute super."hyperfunctions";
+ "hyperloglog" = doDistribute super."hyperloglog_0_3_4";
+ "hyperpublic" = dontDistribute super."hyperpublic";
+ "hyphenate" = dontDistribute super."hyphenate";
+ "hypher" = dontDistribute super."hypher";
+ "hzk" = dontDistribute super."hzk";
+ "hzulip" = dontDistribute super."hzulip";
+ "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";
+ "ical" = dontDistribute super."ical";
+ "iconv" = dontDistribute super."iconv";
+ "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" = dontDistribute super."ig";
+ "ige-mac-integration" = dontDistribute super."ige-mac-integration";
+ "igraph" = dontDistribute super."igraph";
+ "igrf" = dontDistribute super."igrf";
+ "ihaskell" = doDistribute super."ihaskell_0_6_5_0";
+ "ihaskell-display" = dontDistribute super."ihaskell-display";
+ "ihaskell-inline-r" = dontDistribute super."ihaskell-inline-r";
+ "ihaskell-parsec" = dontDistribute super."ihaskell-parsec";
+ "ihaskell-plot" = dontDistribute super."ihaskell-plot";
+ "ihaskell-widgets" = dontDistribute super."ihaskell-widgets";
+ "ihttp" = dontDistribute super."ihttp";
+ "illuminate" = dontDistribute super."illuminate";
+ "image-type" = dontDistribute super."image-type";
+ "imagefilters" = dontDistribute super."imagefilters";
+ "imagemagick" = dontDistribute super."imagemagick";
+ "imagepaste" = dontDistribute super."imagepaste";
+ "imapget" = dontDistribute super."imapget";
+ "imbib" = dontDistribute super."imbib";
+ "imgurder" = dontDistribute super."imgurder";
+ "imm" = dontDistribute super."imm";
+ "imparse" = dontDistribute super."imparse";
+ "imperative-edsl" = dontDistribute super."imperative-edsl";
+ "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl";
+ "implicit" = dontDistribute super."implicit";
+ "implicit-params" = dontDistribute super."implicit-params";
+ "imports" = dontDistribute super."imports";
+ "improve" = dontDistribute super."improve";
+ "inc-ref" = dontDistribute super."inc-ref";
+ "inch" = dontDistribute super."inch";
+ "incremental-computing" = dontDistribute super."incremental-computing";
+ "incremental-sat-solver" = dontDistribute super."incremental-sat-solver";
+ "increments" = dontDistribute super."increments";
+ "indentation" = dontDistribute super."indentation";
+ "indentparser" = dontDistribute super."indentparser";
+ "index-core" = dontDistribute super."index-core";
+ "indexed" = dontDistribute super."indexed";
+ "indexed-do-notation" = dontDistribute super."indexed-do-notation";
+ "indexed-extras" = dontDistribute super."indexed-extras";
+ "indexed-free" = dontDistribute super."indexed-free";
+ "indian-language-font-converter" = dontDistribute super."indian-language-font-converter";
+ "indices" = dontDistribute super."indices";
+ "indieweb-algorithms" = dontDistribute super."indieweb-algorithms";
+ "inf-interval" = dontDistribute super."inf-interval";
+ "infer-upstream" = dontDistribute super."infer-upstream";
+ "infernu" = dontDistribute super."infernu";
+ "infinite-search" = dontDistribute super."infinite-search";
+ "infinity" = dontDistribute super."infinity";
+ "infix" = dontDistribute super."infix";
+ "inflist" = dontDistribute super."inflist";
+ "influxdb" = dontDistribute super."influxdb";
+ "informative" = dontDistribute super."informative";
+ "inilist" = dontDistribute super."inilist";
+ "inject" = dontDistribute super."inject";
+ "inject-function" = dontDistribute super."inject-function";
+ "inline-c" = dontDistribute super."inline-c";
+ "inline-c-cpp" = dontDistribute super."inline-c-cpp";
+ "inline-c-win32" = dontDistribute super."inline-c-win32";
+ "inline-r" = dontDistribute super."inline-r";
+ "inquire" = dontDistribute super."inquire";
+ "inserts" = dontDistribute super."inserts";
+ "inspection-proxy" = dontDistribute super."inspection-proxy";
+ "instant-aeson" = dontDistribute super."instant-aeson";
+ "instant-bytes" = dontDistribute super."instant-bytes";
+ "instant-deepseq" = dontDistribute super."instant-deepseq";
+ "instant-generics" = dontDistribute super."instant-generics";
+ "instant-hashable" = dontDistribute super."instant-hashable";
+ "instant-zipper" = dontDistribute super."instant-zipper";
+ "instinct" = dontDistribute super."instinct";
+ "instrument-chord" = dontDistribute super."instrument-chord";
+ "int-cast" = dontDistribute super."int-cast";
+ "integer-pure" = dontDistribute super."integer-pure";
+ "intel-aes" = dontDistribute super."intel-aes";
+ "interchangeable" = dontDistribute super."interchangeable";
+ "interleavableGen" = dontDistribute super."interleavableGen";
+ "interleavableIO" = dontDistribute super."interleavableIO";
+ "interleave" = dontDistribute super."interleave";
+ "interlude" = dontDistribute super."interlude";
+ "intern" = dontDistribute super."intern";
+ "internetmarke" = dontDistribute super."internetmarke";
+ "interpol" = dontDistribute super."interpol";
+ "interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq";
+ "interpolatedstring-qq-mwotton" = dontDistribute super."interpolatedstring-qq-mwotton";
+ "interpolation" = dontDistribute super."interpolation";
+ "intricacy" = dontDistribute super."intricacy";
+ "intset" = dontDistribute super."intset";
+ "invertible-syntax" = dontDistribute super."invertible-syntax";
+ "io-capture" = dontDistribute super."io-capture";
+ "io-reactive" = dontDistribute super."io-reactive";
+ "io-region" = dontDistribute super."io-region";
+ "io-storage" = dontDistribute super."io-storage";
+ "io-streams-http" = dontDistribute super."io-streams-http";
+ "io-throttle" = dontDistribute super."io-throttle";
+ "ioctl" = dontDistribute super."ioctl";
+ "ioref-stable" = dontDistribute super."ioref-stable";
+ "iothread" = dontDistribute super."iothread";
+ "iotransaction" = dontDistribute super."iotransaction";
+ "ip-quoter" = dontDistribute super."ip-quoter";
+ "ipatch" = dontDistribute super."ipatch";
+ "ipc" = dontDistribute super."ipc";
+ "ipcvar" = dontDistribute super."ipcvar";
+ "ipopt-hs" = dontDistribute super."ipopt-hs";
+ "ipprint" = dontDistribute super."ipprint";
+ "iproute" = doDistribute super."iproute_1_5_0";
+ "iptables-helpers" = dontDistribute super."iptables-helpers";
+ "iptadmin" = dontDistribute super."iptadmin";
+ "ipython-kernel" = doDistribute super."ipython-kernel_0_6_1_3";
+ "irc" = dontDistribute super."irc";
+ "irc-bytestring" = dontDistribute super."irc-bytestring";
+ "irc-client" = dontDistribute super."irc-client";
+ "irc-colors" = dontDistribute super."irc-colors";
+ "irc-conduit" = dontDistribute super."irc-conduit";
+ "irc-core" = dontDistribute super."irc-core";
+ "irc-ctcp" = dontDistribute super."irc-ctcp";
+ "irc-fun-bot" = dontDistribute super."irc-fun-bot";
+ "irc-fun-client" = dontDistribute super."irc-fun-client";
+ "irc-fun-color" = dontDistribute super."irc-fun-color";
+ "irc-fun-messages" = dontDistribute super."irc-fun-messages";
+ "ircbot" = dontDistribute super."ircbot";
+ "ircbouncer" = dontDistribute super."ircbouncer";
+ "ireal" = dontDistribute super."ireal";
+ "iron-mq" = dontDistribute super."iron-mq";
+ "ironforge" = dontDistribute super."ironforge";
+ "is" = dontDistribute super."is";
+ "isdicom" = dontDistribute super."isdicom";
+ "isevaluated" = dontDistribute super."isevaluated";
+ "isiz" = dontDistribute super."isiz";
+ "ismtp" = dontDistribute super."ismtp";
+ "iso8583-bitmaps" = dontDistribute super."iso8583-bitmaps";
+ "iso8601-time" = dontDistribute super."iso8601-time";
+ "isohunt" = dontDistribute super."isohunt";
+ "itanium-abi" = dontDistribute super."itanium-abi";
+ "iter-stats" = dontDistribute super."iter-stats";
+ "iterIO" = dontDistribute super."iterIO";
+ "iteratee" = dontDistribute super."iteratee";
+ "iteratee-compress" = dontDistribute super."iteratee-compress";
+ "iteratee-mtl" = dontDistribute super."iteratee-mtl";
+ "iteratee-parsec" = dontDistribute super."iteratee-parsec";
+ "iteratee-stm" = dontDistribute super."iteratee-stm";
+ "iterio-server" = dontDistribute super."iterio-server";
+ "ivar-simple" = dontDistribute super."ivar-simple";
+ "ivor" = dontDistribute super."ivor";
+ "ivory" = dontDistribute super."ivory";
+ "ivory-backend-c" = dontDistribute super."ivory-backend-c";
+ "ivory-bitdata" = dontDistribute super."ivory-bitdata";
+ "ivory-examples" = dontDistribute super."ivory-examples";
+ "ivory-hw" = dontDistribute super."ivory-hw";
+ "ivory-opts" = dontDistribute super."ivory-opts";
+ "ivory-quickcheck" = dontDistribute super."ivory-quickcheck";
+ "ivory-stdlib" = dontDistribute super."ivory-stdlib";
+ "ivy-web" = dontDistribute super."ivy-web";
+ "ix-shapable" = dontDistribute super."ix-shapable";
+ "ixdopp" = dontDistribute super."ixdopp";
+ "ixmonad" = dontDistribute super."ixmonad";
+ "ixset" = dontDistribute super."ixset";
+ "ixset-typed" = dontDistribute super."ixset-typed";
+ "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-reflect" = dontDistribute super."java-reflect";
+ "javasf" = dontDistribute super."javasf";
+ "javav" = dontDistribute super."javav";
+ "jcdecaux-vls" = dontDistribute super."jcdecaux-vls";
+ "jdi" = dontDistribute super."jdi";
+ "jespresso" = dontDistribute super."jespresso";
+ "jobqueue" = dontDistribute super."jobqueue";
+ "join" = dontDistribute super."join";
+ "joinlist" = dontDistribute super."joinlist";
+ "jonathanscard" = dontDistribute super."jonathanscard";
+ "jort" = dontDistribute super."jort";
+ "jose" = dontDistribute super."jose";
+ "jose-jwt" = doDistribute super."jose-jwt_0_6_2";
+ "jpeg" = dontDistribute super."jpeg";
+ "js-good-parts" = dontDistribute super."js-good-parts";
+ "jsaddle" = dontDistribute super."jsaddle";
+ "jsaddle-hello" = dontDistribute super."jsaddle-hello";
+ "jsc" = dontDistribute super."jsc";
+ "jsmw" = dontDistribute super."jsmw";
+ "json-assertions" = dontDistribute super."json-assertions";
+ "json-b" = dontDistribute super."json-b";
+ "json-encoder" = dontDistribute super."json-encoder";
+ "json-enumerator" = dontDistribute super."json-enumerator";
+ "json-extra" = dontDistribute super."json-extra";
+ "json-fu" = dontDistribute super."json-fu";
+ "json-litobj" = dontDistribute super."json-litobj";
+ "json-python" = dontDistribute super."json-python";
+ "json-qq" = dontDistribute super."json-qq";
+ "json-rpc" = dontDistribute super."json-rpc";
+ "json-rpc-client" = dontDistribute super."json-rpc-client";
+ "json-rpc-server" = dontDistribute super."json-rpc-server";
+ "json-sop" = dontDistribute super."json-sop";
+ "json-state" = dontDistribute super."json-state";
+ "json-stream" = dontDistribute super."json-stream";
+ "json-togo" = dontDistribute super."json-togo";
+ "json-tools" = dontDistribute super."json-tools";
+ "json-types" = dontDistribute super."json-types";
+ "json2" = dontDistribute super."json2";
+ "json2-hdbc" = dontDistribute super."json2-hdbc";
+ "json2-types" = dontDistribute super."json2-types";
+ "json2yaml" = dontDistribute super."json2yaml";
+ "jsonresume" = dontDistribute super."jsonresume";
+ "jsonrpc-conduit" = dontDistribute super."jsonrpc-conduit";
+ "jsonschema-gen" = dontDistribute super."jsonschema-gen";
+ "jsonsql" = dontDistribute super."jsonsql";
+ "jsontsv" = dontDistribute super."jsontsv";
+ "jspath" = dontDistribute super."jspath";
+ "judy" = dontDistribute super."judy";
+ "jukebox" = dontDistribute super."jukebox";
+ "jumpthefive" = dontDistribute super."jumpthefive";
+ "jvm-parser" = dontDistribute super."jvm-parser";
+ "kademlia" = dontDistribute super."kademlia";
+ "kafka-client" = dontDistribute super."kafka-client";
+ "kangaroo" = dontDistribute super."kangaroo";
+ "kansas-comet" = dontDistribute super."kansas-comet";
+ "kansas-lava" = dontDistribute super."kansas-lava";
+ "kansas-lava-cores" = dontDistribute super."kansas-lava-cores";
+ "kansas-lava-papilio" = dontDistribute super."kansas-lava-papilio";
+ "kansas-lava-shake" = dontDistribute super."kansas-lava-shake";
+ "karakuri" = dontDistribute super."karakuri";
+ "karver" = dontDistribute super."karver";
+ "katt" = dontDistribute super."katt";
+ "kbq-gu" = dontDistribute super."kbq-gu";
+ "kd-tree" = dontDistribute super."kd-tree";
+ "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra";
+ "keera-callbacks" = dontDistribute super."keera-callbacks";
+ "keera-hails-i18n" = dontDistribute super."keera-hails-i18n";
+ "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller";
+ "keera-hails-mvc-environment-gtk" = dontDistribute super."keera-hails-mvc-environment-gtk";
+ "keera-hails-mvc-model-lightmodel" = dontDistribute super."keera-hails-mvc-model-lightmodel";
+ "keera-hails-mvc-model-protectedmodel" = dontDistribute super."keera-hails-mvc-model-protectedmodel";
+ "keera-hails-mvc-solutions-config" = dontDistribute super."keera-hails-mvc-solutions-config";
+ "keera-hails-mvc-solutions-gtk" = dontDistribute super."keera-hails-mvc-solutions-gtk";
+ "keera-hails-mvc-view" = dontDistribute super."keera-hails-mvc-view";
+ "keera-hails-mvc-view-gtk" = dontDistribute super."keera-hails-mvc-view-gtk";
+ "keera-hails-reactive-fs" = dontDistribute super."keera-hails-reactive-fs";
+ "keera-hails-reactive-gtk" = dontDistribute super."keera-hails-reactive-gtk";
+ "keera-hails-reactive-network" = dontDistribute super."keera-hails-reactive-network";
+ "keera-hails-reactive-polling" = dontDistribute super."keera-hails-reactive-polling";
+ "keera-hails-reactive-wx" = dontDistribute super."keera-hails-reactive-wx";
+ "keera-hails-reactive-yampa" = dontDistribute super."keera-hails-reactive-yampa";
+ "keera-hails-reactivelenses" = dontDistribute super."keera-hails-reactivelenses";
+ "keera-hails-reactivevalues" = dontDistribute super."keera-hails-reactivevalues";
+ "keera-posture" = dontDistribute super."keera-posture";
+ "keiretsu" = dontDistribute super."keiretsu";
+ "kevin" = dontDistribute super."kevin";
+ "keyed" = dontDistribute super."keyed";
+ "keyring" = dontDistribute super."keyring";
+ "keystore" = dontDistribute super."keystore";
+ "keyvaluehash" = dontDistribute super."keyvaluehash";
+ "keyword-args" = dontDistribute super."keyword-args";
+ "kibro" = dontDistribute super."kibro";
+ "kicad-data" = dontDistribute super."kicad-data";
+ "kickass-torrents-dump-parser" = dontDistribute super."kickass-torrents-dump-parser";
+ "kickchan" = dontDistribute super."kickchan";
+ "kif-parser" = dontDistribute super."kif-parser";
+ "kinds" = dontDistribute super."kinds";
+ "kit" = dontDistribute super."kit";
+ "kmeans-par" = dontDistribute super."kmeans-par";
+ "kmeans-vector" = dontDistribute super."kmeans-vector";
+ "knots" = dontDistribute super."knots";
+ "koellner-phonetic" = dontDistribute super."koellner-phonetic";
+ "kontrakcja-templates" = dontDistribute super."kontrakcja-templates";
+ "korfu" = dontDistribute super."korfu";
+ "kqueue" = dontDistribute super."kqueue";
+ "kraken" = dontDistribute super."kraken";
+ "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-utils" = dontDistribute super."lambdabot-utils";
+ "lambdacat" = dontDistribute super."lambdacat";
+ "lambdacms-core" = dontDistribute super."lambdacms-core";
+ "lambdacms-media" = dontDistribute super."lambdacms-media";
+ "lambdacube" = dontDistribute super."lambdacube";
+ "lambdacube-bullet" = dontDistribute super."lambdacube-bullet";
+ "lambdacube-core" = dontDistribute super."lambdacube-core";
+ "lambdacube-edsl" = dontDistribute super."lambdacube-edsl";
+ "lambdacube-engine" = dontDistribute super."lambdacube-engine";
+ "lambdacube-examples" = dontDistribute super."lambdacube-examples";
+ "lambdacube-gl" = dontDistribute super."lambdacube-gl";
+ "lambdacube-samples" = dontDistribute super."lambdacube-samples";
+ "lambdatex" = dontDistribute super."lambdatex";
+ "lambdatwit" = dontDistribute super."lambdatwit";
+ "lambdiff" = dontDistribute super."lambdiff";
+ "lame-tester" = dontDistribute super."lame-tester";
+ "language-asn1" = dontDistribute super."language-asn1";
+ "language-bash" = dontDistribute super."language-bash";
+ "language-boogie" = dontDistribute super."language-boogie";
+ "language-c-comments" = dontDistribute super."language-c-comments";
+ "language-c-inline" = dontDistribute super."language-c-inline";
+ "language-cil" = dontDistribute super."language-cil";
+ "language-css" = dontDistribute super."language-css";
+ "language-dot" = dontDistribute super."language-dot";
+ "language-ecmascript-analysis" = dontDistribute super."language-ecmascript-analysis";
+ "language-eiffel" = dontDistribute super."language-eiffel";
+ "language-fortran" = dontDistribute super."language-fortran";
+ "language-gcl" = dontDistribute super."language-gcl";
+ "language-go" = dontDistribute super."language-go";
+ "language-guess" = dontDistribute super."language-guess";
+ "language-java-classfile" = dontDistribute super."language-java-classfile";
+ "language-kort" = dontDistribute super."language-kort";
+ "language-lua" = dontDistribute super."language-lua";
+ "language-lua-qq" = dontDistribute super."language-lua-qq";
+ "language-lua2" = dontDistribute super."language-lua2";
+ "language-mixal" = dontDistribute super."language-mixal";
+ "language-nix" = dontDistribute super."language-nix";
+ "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" = dontDistribute super."language-thrift";
+ "language-typescript" = dontDistribute super."language-typescript";
+ "language-vhdl" = dontDistribute super."language-vhdl";
+ "largeword" = doDistribute super."largeword_1_2_3";
+ "lat" = dontDistribute super."lat";
+ "latest-npm-version" = dontDistribute super."latest-npm-version";
+ "latex" = dontDistribute super."latex";
+ "latex-formulae-hakyll" = dontDistribute super."latex-formulae-hakyll";
+ "latex-formulae-image" = dontDistribute super."latex-formulae-image";
+ "latex-formulae-pandoc" = dontDistribute super."latex-formulae-pandoc";
+ "lattices" = doDistribute super."lattices_1_3";
+ "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";
+ "lazysplines" = dontDistribute super."lazysplines";
+ "lbfgs" = dontDistribute super."lbfgs";
+ "lcs" = dontDistribute super."lcs";
+ "lda" = dontDistribute super."lda";
+ "ldap-client" = dontDistribute super."ldap-client";
+ "ldif" = dontDistribute super."ldif";
+ "leaf" = dontDistribute super."leaf";
+ "leaky" = dontDistribute super."leaky";
+ "leankit-api" = dontDistribute super."leankit-api";
+ "leapseconds-announced" = dontDistribute super."leapseconds-announced";
+ "learn" = dontDistribute super."learn";
+ "learn-physics" = dontDistribute super."learn-physics";
+ "learn-physics-examples" = dontDistribute super."learn-physics-examples";
+ "learning-hmm" = dontDistribute super."learning-hmm";
+ "leetify" = dontDistribute super."leetify";
+ "leksah" = dontDistribute super."leksah";
+ "leksah-server" = dontDistribute super."leksah-server";
+ "lendingclub" = dontDistribute super."lendingclub";
+ "lens" = doDistribute super."lens_4_12_3";
+ "lens-datetime" = dontDistribute super."lens-datetime";
+ "lens-prelude" = dontDistribute super."lens-prelude";
+ "lens-properties" = dontDistribute super."lens-properties";
+ "lens-regex" = dontDistribute super."lens-regex";
+ "lens-sop" = dontDistribute super."lens-sop";
+ "lens-text-encoding" = dontDistribute super."lens-text-encoding";
+ "lens-time" = dontDistribute super."lens-time";
+ "lens-tutorial" = dontDistribute super."lens-tutorial";
+ "lens-utils" = dontDistribute super."lens-utils";
+ "lenses" = dontDistribute super."lenses";
+ "lensref" = dontDistribute super."lensref";
+ "lentil" = dontDistribute super."lentil";
+ "level-monad" = dontDistribute super."level-monad";
+ "leveldb-haskell" = dontDistribute super."leveldb-haskell";
+ "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork";
+ "levmar" = dontDistribute super."levmar";
+ "levmar-chart" = dontDistribute super."levmar-chart";
+ "lgtk" = dontDistribute super."lgtk";
+ "lha" = dontDistribute super."lha";
+ "lhae" = dontDistribute super."lhae";
+ "lhc" = dontDistribute super."lhc";
+ "lhe" = dontDistribute super."lhe";
+ "lhs2TeX-hl" = dontDistribute super."lhs2TeX-hl";
+ "lhs2html" = dontDistribute super."lhs2html";
+ "lhslatex" = dontDistribute super."lhslatex";
+ "libGenI" = dontDistribute super."libGenI";
+ "libarchive-conduit" = dontDistribute super."libarchive-conduit";
+ "libconfig" = dontDistribute super."libconfig";
+ "libcspm" = dontDistribute super."libcspm";
+ "libexpect" = dontDistribute super."libexpect";
+ "libffi" = dontDistribute super."libffi";
+ "libgraph" = dontDistribute super."libgraph";
+ "libhbb" = dontDistribute super."libhbb";
+ "libinfluxdb" = dontDistribute super."libinfluxdb";
+ "libjenkins" = dontDistribute super."libjenkins";
+ "liblastfm" = dontDistribute super."liblastfm";
+ "liblinear-enumerator" = dontDistribute super."liblinear-enumerator";
+ "libltdl" = dontDistribute super."libltdl";
+ "libmpd" = dontDistribute super."libmpd";
+ "libnvvm" = dontDistribute super."libnvvm";
+ "liboleg" = dontDistribute super."liboleg";
+ "libpafe" = dontDistribute super."libpafe";
+ "libpq" = dontDistribute super."libpq";
+ "librandomorg" = dontDistribute super."librandomorg";
+ "libravatar" = dontDistribute super."libravatar";
+ "libssh2" = dontDistribute super."libssh2";
+ "libssh2-conduit" = dontDistribute super."libssh2-conduit";
+ "libstackexchange" = dontDistribute super."libstackexchange";
+ "libsystemd-daemon" = dontDistribute super."libsystemd-daemon";
+ "libsystemd-journal" = dontDistribute super."libsystemd-journal";
+ "libtagc" = dontDistribute super."libtagc";
+ "libvirt-hs" = dontDistribute super."libvirt-hs";
+ "libvorbis" = dontDistribute super."libvorbis";
+ "libxml" = dontDistribute super."libxml";
+ "libxml-enumerator" = dontDistribute super."libxml-enumerator";
+ "libxslt" = dontDistribute super."libxslt";
+ "life" = dontDistribute super."life";
+ "lift-generics" = dontDistribute super."lift-generics";
+ "lifted-threads" = dontDistribute super."lifted-threads";
+ "lifter" = dontDistribute super."lifter";
+ "ligature" = dontDistribute super."ligature";
+ "ligd" = dontDistribute super."ligd";
+ "lighttpd-conf" = dontDistribute super."lighttpd-conf";
+ "lighttpd-conf-qq" = dontDistribute super."lighttpd-conf-qq";
+ "lilypond" = dontDistribute super."lilypond";
+ "limp" = dontDistribute super."limp";
+ "limp-cbc" = dontDistribute super."limp-cbc";
+ "lin-alg" = dontDistribute super."lin-alg";
+ "linda" = dontDistribute super."linda";
+ "lindenmayer" = dontDistribute super."lindenmayer";
+ "line-break" = dontDistribute super."line-break";
+ "line2pdf" = dontDistribute super."line2pdf";
+ "linear" = doDistribute super."linear_1_19_1_3";
+ "linear-algebra-cblas" = dontDistribute super."linear-algebra-cblas";
+ "linear-circuit" = dontDistribute super."linear-circuit";
+ "linear-grammar" = dontDistribute super."linear-grammar";
+ "linear-maps" = dontDistribute super."linear-maps";
+ "linear-opengl" = dontDistribute super."linear-opengl";
+ "linear-vect" = dontDistribute super."linear-vect";
+ "linearEqSolver" = dontDistribute super."linearEqSolver";
+ "linearscan" = dontDistribute super."linearscan";
+ "linearscan-hoopl" = dontDistribute super."linearscan-hoopl";
+ "linebreak" = dontDistribute super."linebreak";
+ "linguistic-ordinals" = dontDistribute super."linguistic-ordinals";
+ "link-relations" = dontDistribute super."link-relations";
+ "linkchk" = dontDistribute super."linkchk";
+ "linkcore" = dontDistribute super."linkcore";
+ "linkedhashmap" = dontDistribute super."linkedhashmap";
+ "linklater" = dontDistribute super."linklater";
+ "linode" = dontDistribute super."linode";
+ "linux-blkid" = dontDistribute super."linux-blkid";
+ "linux-cgroup" = dontDistribute super."linux-cgroup";
+ "linux-evdev" = dontDistribute super."linux-evdev";
+ "linux-inotify" = dontDistribute super."linux-inotify";
+ "linux-kmod" = dontDistribute super."linux-kmod";
+ "linux-mount" = dontDistribute super."linux-mount";
+ "linux-perf" = dontDistribute super."linux-perf";
+ "linux-ptrace" = dontDistribute super."linux-ptrace";
+ "linux-xattr" = dontDistribute super."linux-xattr";
+ "linx-gateway" = dontDistribute super."linx-gateway";
+ "lio" = dontDistribute super."lio";
+ "lio-eci11" = dontDistribute super."lio-eci11";
+ "lio-fs" = dontDistribute super."lio-fs";
+ "lio-simple" = dontDistribute super."lio-simple";
+ "lipsum-gen" = dontDistribute super."lipsum-gen";
+ "liquid-fixpoint" = dontDistribute super."liquid-fixpoint";
+ "liquidhaskell" = dontDistribute super."liquidhaskell";
+ "lispparser" = dontDistribute super."lispparser";
+ "list-extras" = dontDistribute super."list-extras";
+ "list-grouping" = dontDistribute super."list-grouping";
+ "list-mux" = dontDistribute super."list-mux";
+ "list-prompt" = dontDistribute super."list-prompt";
+ "list-remote-forwards" = dontDistribute super."list-remote-forwards";
+ "list-t-attoparsec" = dontDistribute super."list-t-attoparsec";
+ "list-t-html-parser" = dontDistribute super."list-t-html-parser";
+ "list-t-http-client" = dontDistribute super."list-t-http-client";
+ "list-t-libcurl" = dontDistribute super."list-t-libcurl";
+ "list-t-text" = dontDistribute super."list-t-text";
+ "list-tries" = dontDistribute super."list-tries";
+ "list-zip-def" = dontDistribute super."list-zip-def";
+ "listlike-instances" = dontDistribute super."listlike-instances";
+ "lists" = dontDistribute super."lists";
+ "listsafe" = dontDistribute super."listsafe";
+ "lit" = dontDistribute super."lit";
+ "literals" = dontDistribute super."literals";
+ "live-sequencer" = dontDistribute super."live-sequencer";
+ "ll-picosat" = dontDistribute super."ll-picosat";
+ "llrbtree" = dontDistribute super."llrbtree";
+ "llsd" = dontDistribute super."llsd";
+ "llvm" = dontDistribute super."llvm";
+ "llvm-analysis" = dontDistribute super."llvm-analysis";
+ "llvm-base" = dontDistribute super."llvm-base";
+ "llvm-base-types" = dontDistribute super."llvm-base-types";
+ "llvm-base-util" = dontDistribute super."llvm-base-util";
+ "llvm-data-interop" = dontDistribute super."llvm-data-interop";
+ "llvm-extra" = dontDistribute super."llvm-extra";
+ "llvm-ffi" = dontDistribute super."llvm-ffi";
+ "llvm-general" = dontDistribute super."llvm-general";
+ "llvm-general-pure" = dontDistribute super."llvm-general-pure";
+ "llvm-general-quote" = dontDistribute super."llvm-general-quote";
+ "llvm-ht" = dontDistribute super."llvm-ht";
+ "llvm-pkg-config" = dontDistribute super."llvm-pkg-config";
+ "llvm-pretty" = dontDistribute super."llvm-pretty";
+ "llvm-pretty-bc-parser" = dontDistribute super."llvm-pretty-bc-parser";
+ "llvm-tf" = dontDistribute super."llvm-tf";
+ "llvm-tools" = dontDistribute super."llvm-tools";
+ "lmdb" = dontDistribute super."lmdb";
+ "load-env" = dontDistribute super."load-env";
+ "loadavg" = dontDistribute super."loadavg";
+ "local-address" = dontDistribute super."local-address";
+ "local-search" = dontDistribute super."local-search";
+ "located-base" = dontDistribute super."located-base";
+ "locators" = dontDistribute super."locators";
+ "loch" = dontDistribute super."loch";
+ "lock-file" = dontDistribute super."lock-file";
+ "locked-poll" = dontDistribute super."locked-poll";
+ "lockfree-queue" = dontDistribute super."lockfree-queue";
+ "log" = dontDistribute super."log";
+ "log-effect" = dontDistribute super."log-effect";
+ "log2json" = dontDistribute super."log2json";
+ "logfloat" = dontDistribute super."logfloat";
+ "logger" = dontDistribute super."logger";
+ "logging" = dontDistribute super."logging";
+ "logging-facade-journald" = dontDistribute super."logging-facade-journald";
+ "logic-TPTP" = dontDistribute super."logic-TPTP";
+ "logic-classes" = dontDistribute super."logic-classes";
+ "logicst" = dontDistribute super."logicst";
+ "logplex-parse" = dontDistribute super."logplex-parse";
+ "logsink" = dontDistribute super."logsink";
+ "lojban" = dontDistribute super."lojban";
+ "lojbanParser" = dontDistribute super."lojbanParser";
+ "lojbanXiragan" = dontDistribute super."lojbanXiragan";
+ "lojysamban" = dontDistribute super."lojysamban";
+ "lol" = dontDistribute super."lol";
+ "loli" = dontDistribute super."loli";
+ "lookup-tables" = dontDistribute super."lookup-tables";
+ "loop" = doDistribute super."loop_0_2_0";
+ "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";
+ "ls-usb" = dontDistribute super."ls-usb";
+ "lscabal" = dontDistribute super."lscabal";
+ "lss" = dontDistribute super."lss";
+ "lsystem" = dontDistribute super."lsystem";
+ "ltk" = dontDistribute super."ltk";
+ "ltl" = dontDistribute super."ltl";
+ "lua-bytecode" = dontDistribute super."lua-bytecode";
+ "luachunk" = dontDistribute super."luachunk";
+ "luautils" = dontDistribute super."luautils";
+ "lub" = dontDistribute super."lub";
+ "lucid-foundation" = dontDistribute super."lucid-foundation";
+ "lucid-svg" = doDistribute super."lucid-svg_0_5_0_0";
+ "lucienne" = dontDistribute super."lucienne";
+ "luhn" = dontDistribute super."luhn";
+ "lui" = dontDistribute super."lui";
+ "luka" = dontDistribute super."luka";
+ "luminance" = dontDistribute super."luminance";
+ "luminance-samples" = dontDistribute super."luminance-samples";
+ "lushtags" = dontDistribute super."lushtags";
+ "luthor" = dontDistribute super."luthor";
+ "lvish" = dontDistribute super."lvish";
+ "lvmlib" = dontDistribute super."lvmlib";
+ "lvmrun" = dontDistribute super."lvmrun";
+ "lxc" = dontDistribute super."lxc";
+ "lye" = dontDistribute super."lye";
+ "lz4" = dontDistribute super."lz4";
+ "lzma" = dontDistribute super."lzma";
+ "lzma-clib" = dontDistribute super."lzma-clib";
+ "lzma-enumerator" = dontDistribute super."lzma-enumerator";
+ "lzma-streams" = dontDistribute super."lzma-streams";
+ "maam" = dontDistribute super."maam";
+ "mac" = dontDistribute super."mac";
+ "maccatcher" = dontDistribute super."maccatcher";
+ "machinecell" = dontDistribute super."machinecell";
+ "machines-binary" = dontDistribute super."machines-binary";
+ "machines-zlib" = dontDistribute super."machines-zlib";
+ "macho" = dontDistribute super."macho";
+ "maclight" = dontDistribute super."maclight";
+ "macosx-make-standalone" = dontDistribute super."macosx-make-standalone";
+ "mage" = dontDistribute super."mage";
+ "magico" = dontDistribute super."magico";
+ "magma" = dontDistribute super."magma";
+ "mahoro" = dontDistribute super."mahoro";
+ "maid" = dontDistribute super."maid";
+ "mailbox-count" = dontDistribute super."mailbox-count";
+ "mailchimp-subscribe" = dontDistribute super."mailchimp-subscribe";
+ "mailgun" = dontDistribute super."mailgun";
+ "majordomo" = dontDistribute super."majordomo";
+ "majority" = dontDistribute super."majority";
+ "make-hard-links" = dontDistribute super."make-hard-links";
+ "make-package" = dontDistribute super."make-package";
+ "makedo" = dontDistribute super."makedo";
+ "manatee" = dontDistribute super."manatee";
+ "manatee-all" = dontDistribute super."manatee-all";
+ "manatee-anything" = dontDistribute super."manatee-anything";
+ "manatee-browser" = dontDistribute super."manatee-browser";
+ "manatee-core" = dontDistribute super."manatee-core";
+ "manatee-curl" = dontDistribute super."manatee-curl";
+ "manatee-editor" = dontDistribute super."manatee-editor";
+ "manatee-filemanager" = dontDistribute super."manatee-filemanager";
+ "manatee-imageviewer" = dontDistribute super."manatee-imageviewer";
+ "manatee-ircclient" = dontDistribute super."manatee-ircclient";
+ "manatee-mplayer" = dontDistribute super."manatee-mplayer";
+ "manatee-pdfviewer" = dontDistribute super."manatee-pdfviewer";
+ "manatee-processmanager" = dontDistribute super."manatee-processmanager";
+ "manatee-reader" = dontDistribute super."manatee-reader";
+ "manatee-template" = dontDistribute super."manatee-template";
+ "manatee-terminal" = dontDistribute super."manatee-terminal";
+ "manatee-welcome" = dontDistribute super."manatee-welcome";
+ "mancala" = dontDistribute super."mancala";
+ "mandrill" = doDistribute super."mandrill_0_3_0_0";
+ "mandulia" = dontDistribute super."mandulia";
+ "manifold-random" = dontDistribute super."manifold-random";
+ "manifolds" = dontDistribute super."manifolds";
+ "marionetta" = dontDistribute super."marionetta";
+ "markdown-kate" = dontDistribute super."markdown-kate";
+ "markdown-pap" = dontDistribute super."markdown-pap";
+ "markdown-unlit" = dontDistribute super."markdown-unlit";
+ "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" = doDistribute super."markup_1_1_0";
+ "markup-preview" = dontDistribute super."markup-preview";
+ "marmalade-upload" = dontDistribute super."marmalade-upload";
+ "marquise" = dontDistribute super."marquise";
+ "marxup" = dontDistribute super."marxup";
+ "masakazu-bot" = dontDistribute super."masakazu-bot";
+ "mastermind" = dontDistribute super."mastermind";
+ "matchers" = dontDistribute super."matchers";
+ "mathblog" = dontDistribute super."mathblog";
+ "mathgenealogy" = dontDistribute super."mathgenealogy";
+ "mathista" = dontDistribute super."mathista";
+ "mathlink" = dontDistribute super."mathlink";
+ "matlab" = dontDistribute super."matlab";
+ "matrix-market" = dontDistribute super."matrix-market";
+ "matrix-market-pure" = dontDistribute super."matrix-market-pure";
+ "matsuri" = dontDistribute super."matsuri";
+ "maude" = dontDistribute super."maude";
+ "maxent" = dontDistribute super."maxent";
+ "maxsharing" = dontDistribute super."maxsharing";
+ "maybe-justify" = dontDistribute super."maybe-justify";
+ "maybench" = dontDistribute super."maybench";
+ "mbox-tools" = dontDistribute super."mbox-tools";
+ "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples";
+ "mcmc-samplers" = dontDistribute super."mcmc-samplers";
+ "mcmc-synthesis" = dontDistribute super."mcmc-synthesis";
+ "mcmc-types" = dontDistribute super."mcmc-types";
+ "mcpi" = dontDistribute super."mcpi";
+ "mdapi" = dontDistribute super."mdapi";
+ "mdcat" = dontDistribute super."mdcat";
+ "mdo" = dontDistribute super."mdo";
+ "mecab" = dontDistribute super."mecab";
+ "mecha" = dontDistribute super."mecha";
+ "mediawiki" = dontDistribute super."mediawiki";
+ "mediawiki2latex" = dontDistribute super."mediawiki2latex";
+ "medium-sdk-haskell" = dontDistribute super."medium-sdk-haskell";
+ "meep" = dontDistribute super."meep";
+ "mega-sdist" = dontDistribute super."mega-sdist";
+ "megaparsec" = dontDistribute super."megaparsec";
+ "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";
+ "memoization-utils" = dontDistribute super."memoization-utils";
+ "memory" = doDistribute super."memory_0_7";
+ "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-parser" = dontDistribute super."microformats2-parser";
+ "microformats2-types" = dontDistribute super."microformats2-types";
+ "microlens" = doDistribute super."microlens_0_2_0_0";
+ "microlens-each" = dontDistribute super."microlens-each";
+ "microlens-ghc" = doDistribute super."microlens-ghc_0_1_0_1";
+ "microlens-mtl" = doDistribute super."microlens-mtl_0_1_4_0";
+ "microlens-platform" = dontDistribute super."microlens-platform";
+ "microlens-th" = doDistribute super."microlens-th_0_2_1_1";
+ "microtimer" = dontDistribute super."microtimer";
+ "mida" = dontDistribute super."mida";
+ "midi" = dontDistribute super."midi";
+ "midi-alsa" = dontDistribute super."midi-alsa";
+ "midi-music-box" = dontDistribute super."midi-music-box";
+ "midi-util" = dontDistribute super."midi-util";
+ "midimory" = dontDistribute super."midimory";
+ "midisurface" = dontDistribute super."midisurface";
+ "mighttpd" = dontDistribute super."mighttpd";
+ "mighttpd2" = dontDistribute super."mighttpd2";
+ "mighty-metropolis" = dontDistribute super."mighty-metropolis";
+ "mikmod" = dontDistribute super."mikmod";
+ "miku" = dontDistribute super."miku";
+ "milena" = dontDistribute super."milena";
+ "mime" = dontDistribute super."mime";
+ "mime-directory" = dontDistribute super."mime-directory";
+ "mime-string" = dontDistribute super."mime-string";
+ "mines" = dontDistribute super."mines";
+ "minesweeper" = dontDistribute super."minesweeper";
+ "miniball" = dontDistribute super."miniball";
+ "miniforth" = dontDistribute super."miniforth";
+ "minilens" = dontDistribute super."minilens";
+ "minimal-configuration" = dontDistribute super."minimal-configuration";
+ "minimorph" = dontDistribute super."minimorph";
+ "minimung" = dontDistribute super."minimung";
+ "minions" = dontDistribute super."minions";
+ "minioperational" = dontDistribute super."minioperational";
+ "miniplex" = dontDistribute super."miniplex";
+ "minirotate" = dontDistribute super."minirotate";
+ "minisat" = dontDistribute super."minisat";
+ "ministg" = dontDistribute super."ministg";
+ "miniutter" = dontDistribute super."miniutter";
+ "minst-idx" = dontDistribute super."minst-idx";
+ "mirror-tweet" = dontDistribute super."mirror-tweet";
+ "missing-py2" = dontDistribute super."missing-py2";
+ "mix-arrows" = dontDistribute super."mix-arrows";
+ "mixed-strategies" = dontDistribute super."mixed-strategies";
+ "mkbndl" = dontDistribute super."mkbndl";
+ "mkcabal" = dontDistribute super."mkcabal";
+ "ml-w" = dontDistribute super."ml-w";
+ "mlist" = dontDistribute super."mlist";
+ "mmtl" = dontDistribute super."mmtl";
+ "mmtl-base" = dontDistribute super."mmtl-base";
+ "moan" = dontDistribute super."moan";
+ "modbus-tcp" = dontDistribute super."modbus-tcp";
+ "modelicaparser" = dontDistribute super."modelicaparser";
+ "modsplit" = dontDistribute super."modsplit";
+ "modular-arithmetic" = dontDistribute super."modular-arithmetic";
+ "modular-prelude" = dontDistribute super."modular-prelude";
+ "modular-prelude-classy" = dontDistribute super."modular-prelude-classy";
+ "module-management" = dontDistribute super."module-management";
+ "modulespection" = dontDistribute super."modulespection";
+ "modulo" = dontDistribute super."modulo";
+ "moe" = dontDistribute super."moe";
+ "moesocks" = dontDistribute super."moesocks";
+ "mohws" = dontDistribute super."mohws";
+ "mole" = dontDistribute super."mole";
+ "monad-abort-fd" = dontDistribute super."monad-abort-fd";
+ "monad-atom" = dontDistribute super."monad-atom";
+ "monad-atom-simple" = dontDistribute super."monad-atom-simple";
+ "monad-bool" = dontDistribute super."monad-bool";
+ "monad-classes" = dontDistribute super."monad-classes";
+ "monad-codec" = dontDistribute super."monad-codec";
+ "monad-exception" = dontDistribute super."monad-exception";
+ "monad-fork" = dontDistribute super."monad-fork";
+ "monad-gen" = dontDistribute super."monad-gen";
+ "monad-interleave" = dontDistribute super."monad-interleave";
+ "monad-levels" = dontDistribute super."monad-levels";
+ "monad-loops-stm" = dontDistribute super."monad-loops-stm";
+ "monad-lrs" = dontDistribute super."monad-lrs";
+ "monad-memo" = dontDistribute super."monad-memo";
+ "monad-mersenne-random" = dontDistribute super."monad-mersenne-random";
+ "monad-open" = dontDistribute super."monad-open";
+ "monad-ox" = dontDistribute super."monad-ox";
+ "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar";
+ "monad-param" = dontDistribute super."monad-param";
+ "monad-ran" = dontDistribute super."monad-ran";
+ "monad-resumption" = dontDistribute super."monad-resumption";
+ "monad-state" = dontDistribute super."monad-state";
+ "monad-statevar" = dontDistribute super."monad-statevar";
+ "monad-stlike-io" = dontDistribute super."monad-stlike-io";
+ "monad-stlike-stm" = dontDistribute super."monad-stlike-stm";
+ "monad-supply" = dontDistribute super."monad-supply";
+ "monad-task" = dontDistribute super."monad-task";
+ "monad-time" = dontDistribute super."monad-time";
+ "monad-tx" = dontDistribute super."monad-tx";
+ "monad-unify" = dontDistribute super."monad-unify";
+ "monad-wrap" = dontDistribute super."monad-wrap";
+ "monadIO" = dontDistribute super."monadIO";
+ "monadLib-compose" = dontDistribute super."monadLib-compose";
+ "monadacme" = dontDistribute super."monadacme";
+ "monadbi" = dontDistribute super."monadbi";
+ "monadcryptorandom" = doDistribute super."monadcryptorandom_0_6_1";
+ "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" = dontDistribute super."monadloc";
+ "monadloc-pp" = dontDistribute super."monadloc-pp";
+ "monadplus" = dontDistribute super."monadplus";
+ "monads-fd" = dontDistribute super."monads-fd";
+ "monadtransform" = dontDistribute super."monadtransform";
+ "monarch" = dontDistribute super."monarch";
+ "mongodb-queue" = dontDistribute super."mongodb-queue";
+ "mongrel2-handler" = dontDistribute super."mongrel2-handler";
+ "monitor" = dontDistribute super."monitor";
+ "mono-foldable" = dontDistribute super."mono-foldable";
+ "mono-traversable" = doDistribute super."mono-traversable_0_9_3";
+ "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" = dontDistribute super."morte";
+ "mosaico-lib" = dontDistribute super."mosaico-lib";
+ "mount" = dontDistribute super."mount";
+ "mp" = dontDistribute super."mp";
+ "mp3decoder" = dontDistribute super."mp3decoder";
+ "mpdmate" = dontDistribute super."mpdmate";
+ "mpppc" = dontDistribute super."mpppc";
+ "mpretty" = dontDistribute super."mpretty";
+ "mpris" = dontDistribute super."mpris";
+ "mprover" = dontDistribute super."mprover";
+ "mps" = dontDistribute super."mps";
+ "mpvguihs" = dontDistribute super."mpvguihs";
+ "mqtt-hs" = dontDistribute super."mqtt-hs";
+ "ms" = dontDistribute super."ms";
+ "msgpack" = dontDistribute super."msgpack";
+ "msgpack-aeson" = dontDistribute super."msgpack-aeson";
+ "msgpack-idl" = dontDistribute super."msgpack-idl";
+ "msgpack-rpc" = dontDistribute super."msgpack-rpc";
+ "msh" = dontDistribute super."msh";
+ "msu" = dontDistribute super."msu";
+ "mtgoxapi" = dontDistribute super."mtgoxapi";
+ "mtl-c" = dontDistribute super."mtl-c";
+ "mtl-evil-instances" = dontDistribute super."mtl-evil-instances";
+ "mtl-tf" = dontDistribute super."mtl-tf";
+ "mtl-unleashed" = dontDistribute super."mtl-unleashed";
+ "mtlparse" = dontDistribute super."mtlparse";
+ "mtlx" = dontDistribute super."mtlx";
+ "mtp" = dontDistribute super."mtp";
+ "mtree" = dontDistribute super."mtree";
+ "mucipher" = dontDistribute super."mucipher";
+ "mudbath" = dontDistribute super."mudbath";
+ "muesli" = dontDistribute super."muesli";
+ "multext-east-msd" = dontDistribute super."multext-east-msd";
+ "multi-cabal" = dontDistribute super."multi-cabal";
+ "multifocal" = dontDistribute super."multifocal";
+ "multihash" = dontDistribute super."multihash";
+ "multipart-names" = dontDistribute super."multipart-names";
+ "multipass" = dontDistribute super."multipass";
+ "multiplate" = dontDistribute super."multiplate";
+ "multiplate-simplified" = dontDistribute super."multiplate-simplified";
+ "multiplicity" = dontDistribute super."multiplicity";
+ "multirec" = dontDistribute super."multirec";
+ "multirec-alt-deriver" = dontDistribute super."multirec-alt-deriver";
+ "multirec-binary" = dontDistribute super."multirec-binary";
+ "multiset-comb" = dontDistribute super."multiset-comb";
+ "multisetrewrite" = dontDistribute super."multisetrewrite";
+ "multistate" = dontDistribute super."multistate";
+ "muon" = dontDistribute super."muon";
+ "murder" = dontDistribute super."murder";
+ "murmur3" = dontDistribute super."murmur3";
+ "murmurhash3" = dontDistribute super."murmurhash3";
+ "music-articulation" = dontDistribute super."music-articulation";
+ "music-diatonic" = dontDistribute super."music-diatonic";
+ "music-dynamics" = dontDistribute super."music-dynamics";
+ "music-dynamics-literal" = dontDistribute super."music-dynamics-literal";
+ "music-graphics" = dontDistribute super."music-graphics";
+ "music-parts" = dontDistribute super."music-parts";
+ "music-pitch" = dontDistribute super."music-pitch";
+ "music-pitch-literal" = dontDistribute super."music-pitch-literal";
+ "music-preludes" = dontDistribute super."music-preludes";
+ "music-score" = dontDistribute super."music-score";
+ "music-sibelius" = dontDistribute super."music-sibelius";
+ "music-suite" = dontDistribute super."music-suite";
+ "music-util" = dontDistribute super."music-util";
+ "musicbrainz-email" = dontDistribute super."musicbrainz-email";
+ "musicxml" = dontDistribute super."musicxml";
+ "musicxml2" = dontDistribute super."musicxml2";
+ "mustache" = dontDistribute super."mustache";
+ "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" = dontDistribute super."mwc-probability";
+ "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-check" = dontDistribute super."nagios-check";
+ "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-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";
+ "narc" = dontDistribute super."narc";
+ "nat" = dontDistribute super."nat";
+ "nationstates" = doDistribute super."nationstates_0_2_0_3";
+ "nats" = doDistribute super."nats_1";
+ "nats-queue" = dontDistribute super."nats-queue";
+ "natural-number" = dontDistribute super."natural-number";
+ "natural-numbers" = dontDistribute super."natural-numbers";
+ "natural-sort" = dontDistribute super."natural-sort";
+ "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";
+ "neat-interpolation" = doDistribute super."neat-interpolation_0_2_3";
+ "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" = dontDistribute super."nettle";
+ "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-anonymous-tor" = doDistribute super."network-anonymous-tor_0_9_2";
+ "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-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-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-composed" = dontDistribute super."network-transport-composed";
+ "network-transport-inmemory" = dontDistribute super."network-transport-inmemory";
+ "network-transport-tcp" = dontDistribute super."network-transport-tcp";
+ "network-transport-tests" = dontDistribute super."network-transport-tests";
+ "network-transport-zeromq" = dontDistribute super."network-transport-zeromq";
+ "network-uri-static" = dontDistribute super."network-uri-static";
+ "network-wai-router" = dontDistribute super."network-wai-router";
+ "network-websocket" = dontDistribute super."network-websocket";
+ "networked-game" = dontDistribute super."networked-game";
+ "newports" = dontDistribute super."newports";
+ "newsynth" = dontDistribute super."newsynth";
+ "newt" = dontDistribute super."newt";
+ "newtype-deriving" = dontDistribute super."newtype-deriving";
+ "newtype-th" = dontDistribute super."newtype-th";
+ "newtyper" = dontDistribute super."newtyper";
+ "nextstep-plist" = dontDistribute super."nextstep-plist";
+ "nf" = dontDistribute super."nf";
+ "ngrams-loader" = dontDistribute super."ngrams-loader";
+ "niagra" = dontDistribute super."niagra";
+ "nibblestring" = dontDistribute super."nibblestring";
+ "nicify" = dontDistribute super."nicify";
+ "nicify-lib" = dontDistribute super."nicify-lib";
+ "nicovideo-translator" = dontDistribute super."nicovideo-translator";
+ "nikepub" = dontDistribute super."nikepub";
+ "nimber" = dontDistribute super."nimber";
+ "nitro" = dontDistribute super."nitro";
+ "nix-eval" = dontDistribute super."nix-eval";
+ "nix-paths" = dontDistribute super."nix-paths";
+ "nixfromnpm" = dontDistribute super."nixfromnpm";
+ "nixos-types" = dontDistribute super."nixos-types";
+ "nkjp" = dontDistribute super."nkjp";
+ "nlp-scores" = dontDistribute super."nlp-scores";
+ "nlp-scores-scripts" = dontDistribute super."nlp-scores-scripts";
+ "nm" = dontDistribute super."nm";
+ "nme" = dontDistribute super."nme";
+ "nntp" = dontDistribute super."nntp";
+ "no-buffering-workaround" = dontDistribute super."no-buffering-workaround";
+ "no-role-annots" = dontDistribute super."no-role-annots";
+ "nofib-analyse" = dontDistribute super."nofib-analyse";
+ "nofib-analyze" = dontDistribute super."nofib-analyze";
+ "noise" = dontDistribute super."noise";
+ "non-empty" = dontDistribute super."non-empty";
+ "non-negative" = dontDistribute super."non-negative";
+ "nondeterminism" = dontDistribute super."nondeterminism";
+ "nonfree" = dontDistribute super."nonfree";
+ "nonlinear-optimization" = dontDistribute super."nonlinear-optimization";
+ "nonlinear-optimization-ad" = dontDistribute super."nonlinear-optimization-ad";
+ "noodle" = dontDistribute super."noodle";
+ "normaldistribution" = dontDistribute super."normaldistribution";
+ "not-gloss" = dontDistribute super."not-gloss";
+ "not-gloss-examples" = dontDistribute super."not-gloss-examples";
+ "not-in-base" = dontDistribute super."not-in-base";
+ "notcpp" = dontDistribute super."notcpp";
+ "notmuch-haskell" = dontDistribute super."notmuch-haskell";
+ "notmuch-web" = dontDistribute super."notmuch-web";
+ "notzero" = dontDistribute super."notzero";
+ "np-extras" = dontDistribute super."np-extras";
+ "np-linear" = dontDistribute super."np-linear";
+ "nptools" = dontDistribute super."nptools";
+ "nth-prime" = dontDistribute super."nth-prime";
+ "nthable" = dontDistribute super."nthable";
+ "ntp-control" = dontDistribute super."ntp-control";
+ "null-canvas" = dontDistribute super."null-canvas";
+ "nullary" = dontDistribute super."nullary";
+ "number" = dontDistribute super."number";
+ "numbering" = dontDistribute super."numbering";
+ "numerals" = dontDistribute super."numerals";
+ "numerals-base" = dontDistribute super."numerals-base";
+ "numeric-extras" = doDistribute super."numeric-extras_0_0_3";
+ "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-tools" = dontDistribute super."numeric-tools";
+ "numericpeano" = dontDistribute super."numericpeano";
+ "nums" = dontDistribute super."nums";
+ "numtype-dk" = dontDistribute super."numtype-dk";
+ "numtype-tf" = dontDistribute super."numtype-tf";
+ "nurbs" = dontDistribute super."nurbs";
+ "nvim-hs" = dontDistribute super."nvim-hs";
+ "nvim-hs-contrib" = dontDistribute super."nvim-hs-contrib";
+ "nyan" = dontDistribute super."nyan";
+ "nylas" = dontDistribute super."nylas";
+ "nymphaea" = dontDistribute super."nymphaea";
+ "oauthenticated" = dontDistribute super."oauthenticated";
+ "obdd" = dontDistribute super."obdd";
+ "oberon0" = dontDistribute super."oberon0";
+ "obj" = dontDistribute super."obj";
+ "objectid" = dontDistribute super."objectid";
+ "observable-sharing" = dontDistribute super."observable-sharing";
+ "octohat" = dontDistribute super."octohat";
+ "octopus" = dontDistribute super."octopus";
+ "oculus" = dontDistribute super."oculus";
+ "off-simple" = dontDistribute super."off-simple";
+ "ofx" = dontDistribute super."ofx";
+ "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";
+ "omnifmt" = dontDistribute super."omnifmt";
+ "on-a-horse" = dontDistribute super."on-a-horse";
+ "on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel";
+ "once" = dontDistribute super."once";
+ "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";
+ "oo-prototypes" = dontDistribute super."oo-prototypes";
+ "opaleye-classy" = dontDistribute super."opaleye-classy";
+ "opaleye-sqlite" = dontDistribute super."opaleye-sqlite";
+ "opaleye-trans" = dontDistribute super."opaleye-trans";
+ "open-browser" = dontDistribute super."open-browser";
+ "open-haddock" = dontDistribute super."open-haddock";
+ "open-pandoc" = dontDistribute super."open-pandoc";
+ "open-symbology" = dontDistribute super."open-symbology";
+ "open-typerep" = dontDistribute super."open-typerep";
+ "open-union" = dontDistribute super."open-union";
+ "open-witness" = dontDistribute super."open-witness";
+ "opencog-atomspace" = dontDistribute super."opencog-atomspace";
+ "opencv-raw" = dontDistribute super."opencv-raw";
+ "opendatatable" = dontDistribute super."opendatatable";
+ "openexchangerates" = dontDistribute super."openexchangerates";
+ "openflow" = dontDistribute super."openflow";
+ "opengl-dlp-stereo" = dontDistribute super."opengl-dlp-stereo";
+ "opengl-spacenavigator" = dontDistribute super."opengl-spacenavigator";
+ "opengles" = dontDistribute super."opengles";
+ "openid" = dontDistribute super."openid";
+ "openpgp" = dontDistribute super."openpgp";
+ "openpgp-Crypto" = dontDistribute super."openpgp-Crypto";
+ "openpgp-crypto-api" = dontDistribute super."openpgp-crypto-api";
+ "opensoundcontrol-ht" = dontDistribute super."opensoundcontrol-ht";
+ "openssh-github-keys" = dontDistribute super."openssh-github-keys";
+ "openssl-createkey" = dontDistribute super."openssl-createkey";
+ "opentheory" = dontDistribute super."opentheory";
+ "opentheory-bits" = dontDistribute super."opentheory-bits";
+ "opentheory-byte" = dontDistribute super."opentheory-byte";
+ "opentheory-char" = dontDistribute super."opentheory-char";
+ "opentheory-divides" = dontDistribute super."opentheory-divides";
+ "opentheory-fibonacci" = dontDistribute super."opentheory-fibonacci";
+ "opentheory-parser" = dontDistribute super."opentheory-parser";
+ "opentheory-prime" = dontDistribute super."opentheory-prime";
+ "opentheory-primitive" = dontDistribute super."opentheory-primitive";
+ "opentheory-probability" = dontDistribute super."opentheory-probability";
+ "opentheory-stream" = dontDistribute super."opentheory-stream";
+ "opentheory-unicode" = dontDistribute super."opentheory-unicode";
+ "operational-alacarte" = dontDistribute super."operational-alacarte";
+ "opml" = dontDistribute super."opml";
+ "opml-conduit" = dontDistribute super."opml-conduit";
+ "opn" = dontDistribute super."opn";
+ "optimal-blocks" = dontDistribute super."optimal-blocks";
+ "optimization" = dontDistribute super."optimization";
+ "optimusprime" = dontDistribute super."optimusprime";
+ "optional" = dontDistribute super."optional";
+ "options-time" = dontDistribute super."options-time";
+ "optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2";
+ "optparse-declarative" = dontDistribute super."optparse-declarative";
+ "orc" = dontDistribute super."orc";
+ "orchestrate" = dontDistribute super."orchestrate";
+ "orchid" = dontDistribute super."orchid";
+ "orchid-demo" = dontDistribute super."orchid-demo";
+ "ord-adhoc" = dontDistribute super."ord-adhoc";
+ "order-maintenance" = dontDistribute super."order-maintenance";
+ "order-statistics" = dontDistribute super."order-statistics";
+ "ordered" = dontDistribute super."ordered";
+ "orders" = dontDistribute super."orders";
+ "ordrea" = dontDistribute super."ordrea";
+ "organize-imports" = dontDistribute super."organize-imports";
+ "orgmode" = dontDistribute super."orgmode";
+ "orgmode-parse" = dontDistribute super."orgmode-parse";
+ "origami" = dontDistribute super."origami";
+ "os-release" = dontDistribute super."os-release";
+ "osc" = dontDistribute super."osc";
+ "osm-download" = dontDistribute super."osm-download";
+ "oso2pdf" = dontDistribute super."oso2pdf";
+ "osx-ar" = dontDistribute super."osx-ar";
+ "ot" = dontDistribute super."ot";
+ "ottparse-pretty" = dontDistribute super."ottparse-pretty";
+ "overture" = dontDistribute super."overture";
+ "pack" = dontDistribute super."pack";
+ "package-description-remote" = dontDistribute super."package-description-remote";
+ "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";
+ "pagerduty" = doDistribute super."pagerduty_0_0_3_3";
+ "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver";
+ "palindromes" = dontDistribute super."palindromes";
+ "pam" = dontDistribute super."pam";
+ "panda" = dontDistribute super."panda";
+ "pandoc-citeproc" = doDistribute super."pandoc-citeproc_0_7_4";
+ "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-lens" = dontDistribute super."pandoc-lens";
+ "pandoc-placetable" = dontDistribute super."pandoc-placetable";
+ "pandoc-plantuml-diagrams" = dontDistribute super."pandoc-plantuml-diagrams";
+ "pandoc-unlit" = dontDistribute super."pandoc-unlit";
+ "papillon" = dontDistribute super."papillon";
+ "pappy" = dontDistribute super."pappy";
+ "para" = dontDistribute super."para";
+ "paragon" = dontDistribute super."paragon";
+ "parallel-tasks" = dontDistribute super."parallel-tasks";
+ "parallel-tree-search" = dontDistribute super."parallel-tree-search";
+ "parameterized-data" = dontDistribute super."parameterized-data";
+ "parco" = dontDistribute super."parco";
+ "parco-attoparsec" = dontDistribute super."parco-attoparsec";
+ "parco-parsec" = dontDistribute super."parco-parsec";
+ "parcom-lib" = dontDistribute super."parcom-lib";
+ "parconc-examples" = dontDistribute super."parconc-examples";
+ "parport" = dontDistribute super."parport";
+ "parse-dimacs" = dontDistribute super."parse-dimacs";
+ "parse-help" = dontDistribute super."parse-help";
+ "parseargs" = doDistribute super."parseargs_0_1_5_2";
+ "parsec-extra" = dontDistribute super."parsec-extra";
+ "parsec-numbers" = dontDistribute super."parsec-numbers";
+ "parsec-parsers" = dontDistribute super."parsec-parsers";
+ "parsec-permutation" = dontDistribute super."parsec-permutation";
+ "parsec-tagsoup" = dontDistribute super."parsec-tagsoup";
+ "parsec-trace" = dontDistribute super."parsec-trace";
+ "parsec-utils" = dontDistribute super."parsec-utils";
+ "parsec1" = dontDistribute super."parsec1";
+ "parsec2" = dontDistribute super."parsec2";
+ "parsec3" = dontDistribute super."parsec3";
+ "parsec3-numbers" = dontDistribute super."parsec3-numbers";
+ "parsedate" = dontDistribute super."parsedate";
+ "parseerror-eq" = dontDistribute super."parseerror-eq";
+ "parsek" = dontDistribute super."parsek";
+ "parsely" = dontDistribute super."parsely";
+ "parser-helper" = dontDistribute super."parser-helper";
+ "parser241" = dontDistribute super."parser241";
+ "parsergen" = dontDistribute super."parsergen";
+ "parsestar" = dontDistribute super."parsestar";
+ "parsimony" = dontDistribute super."parsimony";
+ "partial" = dontDistribute super."partial";
+ "partial-isomorphisms" = dontDistribute super."partial-isomorphisms";
+ "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";
+ "patches-vector" = dontDistribute super."patches-vector";
+ "path-extra" = dontDistribute super."path-extra";
+ "pathfinding" = dontDistribute super."pathfinding";
+ "pathfindingcore" = dontDistribute super."pathfindingcore";
+ "pathtype" = dontDistribute super."pathtype";
+ "pathwalk" = dontDistribute super."pathwalk";
+ "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" = dontDistribute super."pcap";
+ "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-heavy" = doDistribute super."pcre-heavy_0_2_5";
+ "pcre-less" = dontDistribute super."pcre-less";
+ "pcre-light-extra" = dontDistribute super."pcre-light-extra";
+ "pcre-utils" = dontDistribute super."pcre-utils";
+ "pdf-toolbox-content" = dontDistribute super."pdf-toolbox-content";
+ "pdf-toolbox-core" = dontDistribute super."pdf-toolbox-core";
+ "pdf-toolbox-document" = dontDistribute super."pdf-toolbox-document";
+ "pdf-toolbox-viewer" = dontDistribute super."pdf-toolbox-viewer";
+ "pdf2line" = dontDistribute super."pdf2line";
+ "pdfsplit" = dontDistribute super."pdfsplit";
+ "pdynload" = dontDistribute super."pdynload";
+ "peakachu" = dontDistribute super."peakachu";
+ "peano" = dontDistribute super."peano";
+ "peano-inf" = dontDistribute super."peano-inf";
+ "pec" = dontDistribute super."pec";
+ "pecoff" = dontDistribute super."pecoff";
+ "peg" = dontDistribute super."peg";
+ "peggy" = dontDistribute super."peggy";
+ "pell" = dontDistribute super."pell";
+ "penn-treebank" = dontDistribute super."penn-treebank";
+ "penny" = dontDistribute super."penny";
+ "penny-bin" = dontDistribute super."penny-bin";
+ "penny-lib" = dontDistribute super."penny-lib";
+ "peparser" = dontDistribute super."peparser";
+ "perceptron" = dontDistribute super."perceptron";
+ "perdure" = dontDistribute super."perdure";
+ "period" = dontDistribute super."period";
+ "perm" = dontDistribute super."perm";
+ "permutation" = dontDistribute super."permutation";
+ "permute" = dontDistribute super."permute";
+ "persist2er" = dontDistribute super."persist2er";
+ "persistable-record" = dontDistribute super."persistable-record";
+ "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg";
+ "persistent-cereal" = dontDistribute super."persistent-cereal";
+ "persistent-equivalence" = dontDistribute super."persistent-equivalence";
+ "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp";
+ "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute";
+ "persistent-iproute" = dontDistribute super."persistent-iproute";
+ "persistent-map" = dontDistribute super."persistent-map";
+ "persistent-mysql" = doDistribute super."persistent-mysql_2_2";
+ "persistent-odbc" = dontDistribute super."persistent-odbc";
+ "persistent-protobuf" = dontDistribute super."persistent-protobuf";
+ "persistent-ratelimit" = dontDistribute super."persistent-ratelimit";
+ "persistent-redis" = dontDistribute super."persistent-redis";
+ "persistent-vector" = dontDistribute super."persistent-vector";
+ "persistent-zookeeper" = dontDistribute super."persistent-zookeeper";
+ "persona" = dontDistribute super."persona";
+ "persona-idp" = dontDistribute super."persona-idp";
+ "pesca" = dontDistribute super."pesca";
+ "peyotls" = dontDistribute super."peyotls";
+ "peyotls-codec" = dontDistribute super."peyotls-codec";
+ "pez" = dontDistribute super."pez";
+ "pg-harness" = dontDistribute super."pg-harness";
+ "pg-harness-client" = dontDistribute super."pg-harness-client";
+ "pg-harness-server" = dontDistribute super."pg-harness-server";
+ "pgdl" = dontDistribute super."pgdl";
+ "pgm" = dontDistribute super."pgm";
+ "pgp-wordlist" = dontDistribute super."pgp-wordlist";
+ "pgsql-simple" = dontDistribute super."pgsql-simple";
+ "pgstream" = dontDistribute super."pgstream";
+ "phasechange" = dontDistribute super."phasechange";
+ "phizzle" = dontDistribute super."phizzle";
+ "phoityne" = dontDistribute super."phoityne";
+ "phone-numbers" = dontDistribute super."phone-numbers";
+ "phone-push" = dontDistribute super."phone-push";
+ "phonetic-code" = dontDistribute super."phonetic-code";
+ "phooey" = dontDistribute super."phooey";
+ "photoname" = dontDistribute super."photoname";
+ "phraskell" = dontDistribute super."phraskell";
+ "phybin" = dontDistribute super."phybin";
+ "pi-calculus" = dontDistribute super."pi-calculus";
+ "pia-forward" = dontDistribute super."pia-forward";
+ "pianola" = dontDistribute super."pianola";
+ "picologic" = dontDistribute super."picologic";
+ "picosat" = dontDistribute super."picosat";
+ "piet" = dontDistribute super."piet";
+ "piki" = dontDistribute super."piki";
+ "pinboard" = dontDistribute super."pinboard";
+ "pinch" = dontDistribute super."pinch";
+ "pinchot" = dontDistribute super."pinchot";
+ "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-cacophony" = dontDistribute super."pipes-cacophony";
+ "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-csv" = dontDistribute super."pipes-csv";
+ "pipes-errors" = dontDistribute super."pipes-errors";
+ "pipes-extra" = dontDistribute super."pipes-extra";
+ "pipes-extras" = dontDistribute super."pipes-extras";
+ "pipes-files" = dontDistribute super."pipes-files";
+ "pipes-interleave" = dontDistribute super."pipes-interleave";
+ "pipes-mongodb" = dontDistribute super."pipes-mongodb";
+ "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";
+ "pkcs10" = dontDistribute super."pkcs10";
+ "pkcs7" = dontDistribute super."pkcs7";
+ "pkggraph" = dontDistribute super."pkggraph";
+ "pktree" = dontDistribute super."pktree";
+ "plailude" = dontDistribute super."plailude";
+ "planar-graph" = dontDistribute super."planar-graph";
+ "plat" = dontDistribute super."plat";
+ "playlists" = dontDistribute super."playlists";
+ "plist" = dontDistribute super."plist";
+ "plist-buddy" = dontDistribute super."plist-buddy";
+ "plivo" = dontDistribute super."plivo";
+ "plot" = doDistribute super."plot_0_2_3_4";
+ "plot-gtk" = doDistribute super."plot-gtk_0_2_0_2";
+ "plot-gtk-ui" = dontDistribute super."plot-gtk-ui";
+ "plot-gtk3" = doDistribute super."plot-gtk3_0_1_0_1";
+ "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";
+ "pointedlist" = dontDistribute super."pointedlist";
+ "pointfree" = dontDistribute super."pointfree";
+ "pointful" = dontDistribute super."pointful";
+ "pointless-fun" = dontDistribute super."pointless-fun";
+ "pointless-haskell" = dontDistribute super."pointless-haskell";
+ "pointless-lenses" = dontDistribute super."pointless-lenses";
+ "pointless-rewrite" = dontDistribute super."pointless-rewrite";
+ "poker-eval" = dontDistribute super."poker-eval";
+ "pokitdok" = dontDistribute super."pokitdok";
+ "polar" = dontDistribute super."polar";
+ "polar-configfile" = dontDistribute super."polar-configfile";
+ "polar-shader" = dontDistribute super."polar-shader";
+ "polh-lexicon" = dontDistribute super."polh-lexicon";
+ "polimorf" = dontDistribute super."polimorf";
+ "poll" = dontDistribute super."poll";
+ "polyToMonoid" = dontDistribute super."polyToMonoid";
+ "polymap" = dontDistribute super."polymap";
+ "polynomial" = dontDistribute super."polynomial";
+ "polynomials-bernstein" = dontDistribute super."polynomials-bernstein";
+ "polyseq" = dontDistribute super."polyseq";
+ "polysoup" = dontDistribute super."polysoup";
+ "polytypeable" = dontDistribute super."polytypeable";
+ "polytypeable-utils" = dontDistribute super."polytypeable-utils";
+ "ponder" = dontDistribute super."ponder";
+ "pontarius-mediaserver" = dontDistribute super."pontarius-mediaserver";
+ "pontarius-xmpp" = dontDistribute super."pontarius-xmpp";
+ "pontarius-xpmn" = dontDistribute super."pontarius-xpmn";
+ "pony" = dontDistribute super."pony";
+ "pool" = dontDistribute super."pool";
+ "pool-conduit" = dontDistribute super."pool-conduit";
+ "pooled-io" = dontDistribute super."pooled-io";
+ "pop3-client" = dontDistribute super."pop3-client";
+ "popenhs" = dontDistribute super."popenhs";
+ "poppler" = dontDistribute super."poppler";
+ "populate-setup-exe-cache" = dontDistribute super."populate-setup-exe-cache";
+ "portable-lines" = dontDistribute super."portable-lines";
+ "portaudio" = dontDistribute super."portaudio";
+ "porte" = dontDistribute super."porte";
+ "porter" = dontDistribute super."porter";
+ "ports" = dontDistribute super."ports";
+ "ports-tools" = dontDistribute super."ports-tools";
+ "positive" = dontDistribute super."positive";
+ "posix-acl" = dontDistribute super."posix-acl";
+ "posix-escape" = dontDistribute super."posix-escape";
+ "posix-filelock" = dontDistribute super."posix-filelock";
+ "posix-paths" = dontDistribute super."posix-paths";
+ "posix-pty" = dontDistribute super."posix-pty";
+ "posix-timer" = dontDistribute super."posix-timer";
+ "posix-waitpid" = dontDistribute super."posix-waitpid";
+ "possible" = dontDistribute super."possible";
+ "post-mess-age" = doDistribute super."post-mess-age_0_1_0_0";
+ "postcodes" = dontDistribute super."postcodes";
+ "postgresql-binary" = doDistribute super."postgresql-binary_0_5_2_1";
+ "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-orm" = dontDistribute super."postgresql-orm";
+ "postgresql-query" = dontDistribute super."postgresql-query";
+ "postgresql-schema" = dontDistribute super."postgresql-schema";
+ "postgresql-simple" = doDistribute super."postgresql-simple_0_4_10_0";
+ "postgresql-simple-migration" = dontDistribute super."postgresql-simple-migration";
+ "postgresql-simple-sop" = dontDistribute super."postgresql-simple-sop";
+ "postgresql-simple-typed" = dontDistribute super."postgresql-simple-typed";
+ "postgresql-typed" = dontDistribute super."postgresql-typed";
+ "postgrest" = dontDistribute super."postgrest";
+ "postie" = dontDistribute super."postie";
+ "postmark" = dontDistribute super."postmark";
+ "postmaster" = dontDistribute super."postmaster";
+ "potato-tool" = dontDistribute super."potato-tool";
+ "potrace" = dontDistribute super."potrace";
+ "potrace-diagrams" = dontDistribute super."potrace-diagrams";
+ "powermate" = dontDistribute super."powermate";
+ "powerpc" = dontDistribute super."powerpc";
+ "ppm" = dontDistribute super."ppm";
+ "pqc" = dontDistribute super."pqc";
+ "pqueue-mtl" = dontDistribute super."pqueue-mtl";
+ "practice-room" = dontDistribute super."practice-room";
+ "precis" = dontDistribute super."precis";
+ "pred-trie" = doDistribute super."pred-trie_0_2_0";
+ "predicates" = dontDistribute super."predicates";
+ "prednote-test" = dontDistribute super."prednote-test";
+ "prefix-units" = doDistribute super."prefix-units_0_1_0_2";
+ "prefork" = dontDistribute super."prefork";
+ "pregame" = dontDistribute super."pregame";
+ "prelude-edsl" = dontDistribute super."prelude-edsl";
+ "prelude-generalize" = dontDistribute super."prelude-generalize";
+ "prelude-plus" = dontDistribute super."prelude-plus";
+ "prelude-prime" = dontDistribute super."prelude-prime";
+ "prelude-safeenum" = dontDistribute super."prelude-safeenum";
+ "preprocess-haskell" = dontDistribute super."preprocess-haskell";
+ "preprocessor-tools" = dontDistribute super."preprocessor-tools";
+ "present" = dontDistribute super."present";
+ "press" = dontDistribute super."press";
+ "presto-hdbc" = dontDistribute super."presto-hdbc";
+ "prettify" = dontDistribute super."prettify";
+ "pretty-compact" = dontDistribute super."pretty-compact";
+ "pretty-error" = dontDistribute super."pretty-error";
+ "pretty-hex" = dontDistribute super."pretty-hex";
+ "pretty-ncols" = dontDistribute super."pretty-ncols";
+ "pretty-sop" = dontDistribute super."pretty-sop";
+ "pretty-tree" = dontDistribute super."pretty-tree";
+ "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing";
+ "prim-uniq" = dontDistribute super."prim-uniq";
+ "primula-board" = dontDistribute super."primula-board";
+ "primula-bot" = dontDistribute super."primula-bot";
+ "printf-mauke" = dontDistribute super."printf-mauke";
+ "printxosd" = dontDistribute super."printxosd";
+ "priority-queue" = dontDistribute super."priority-queue";
+ "priority-sync" = dontDistribute super."priority-sync";
+ "privileged-concurrency" = dontDistribute super."privileged-concurrency";
+ "prizm" = dontDistribute super."prizm";
+ "probability" = dontDistribute super."probability";
+ "probable" = dontDistribute super."probable";
+ "proc" = dontDistribute super."proc";
+ "process-conduit" = dontDistribute super."process-conduit";
+ "process-iterio" = dontDistribute super."process-iterio";
+ "process-leksah" = dontDistribute super."process-leksah";
+ "process-listlike" = dontDistribute super."process-listlike";
+ "process-progress" = dontDistribute super."process-progress";
+ "process-qq" = dontDistribute super."process-qq";
+ "process-streaming" = dontDistribute super."process-streaming";
+ "processing" = dontDistribute super."processing";
+ "processor-creative-kit" = dontDistribute super."processor-creative-kit";
+ "procrastinating-structure" = dontDistribute super."procrastinating-structure";
+ "procrastinating-variable" = dontDistribute super."procrastinating-variable";
+ "procstat" = dontDistribute super."procstat";
+ "proctest" = dontDistribute super."proctest";
+ "prof2dot" = dontDistribute super."prof2dot";
+ "prof2pretty" = dontDistribute super."prof2pretty";
+ "profiteur" = dontDistribute super."profiteur";
+ "progress" = dontDistribute super."progress";
+ "progressbar" = dontDistribute super."progressbar";
+ "progression" = dontDistribute super."progression";
+ "progressive" = dontDistribute super."progressive";
+ "proj4-hs-bindings" = dontDistribute super."proj4-hs-bindings";
+ "projection" = dontDistribute super."projection";
+ "projectroot" = dontDistribute super."projectroot";
+ "prolog" = dontDistribute super."prolog";
+ "prolog-graph" = dontDistribute super."prolog-graph";
+ "prolog-graph-lib" = dontDistribute super."prolog-graph-lib";
+ "prologue" = dontDistribute super."prologue";
+ "promise" = dontDistribute super."promise";
+ "promises" = dontDistribute super."promises";
+ "prompt" = dontDistribute super."prompt";
+ "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" = dontDistribute super."protobuf";
+ "protobuf-native" = dontDistribute super."protobuf-native";
+ "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork";
+ "protocol-buffers-fork" = dontDistribute super."protocol-buffers-fork";
+ "proton-haskell" = dontDistribute super."proton-haskell";
+ "prototype" = dontDistribute super."prototype";
+ "prove-everywhere-server" = dontDistribute super."prove-everywhere-server";
+ "proxy-kindness" = dontDistribute super."proxy-kindness";
+ "psc-ide" = dontDistribute super."psc-ide";
+ "pseudo-boolean" = dontDistribute super."pseudo-boolean";
+ "pseudo-trie" = dontDistribute super."pseudo-trie";
+ "pseudomacros" = dontDistribute super."pseudomacros";
+ "pub" = dontDistribute super."pub";
+ "publicsuffix" = dontDistribute super."publicsuffix";
+ "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-cdb" = dontDistribute super."pure-cdb";
+ "pure-fft" = dontDistribute super."pure-fft";
+ "pure-priority-queue" = dontDistribute super."pure-priority-queue";
+ "pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests";
+ "pure-zlib" = dontDistribute super."pure-zlib";
+ "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast";
+ "push-notify" = dontDistribute super."push-notify";
+ "push-notify-ccs" = dontDistribute super."push-notify-ccs";
+ "push-notify-general" = dontDistribute super."push-notify-general";
+ "pusher-haskell" = dontDistribute super."pusher-haskell";
+ "pusher-http-haskell" = dontDistribute super."pusher-http-haskell";
+ "pushme" = dontDistribute super."pushme";
+ "putlenses" = dontDistribute super."putlenses";
+ "puzzle-draw" = dontDistribute super."puzzle-draw";
+ "puzzle-draw-cmdline" = dontDistribute super."puzzle-draw-cmdline";
+ "pvd" = dontDistribute super."pvd";
+ "pwstore-cli" = dontDistribute super."pwstore-cli";
+ "pwstore-purehaskell" = dontDistribute super."pwstore-purehaskell";
+ "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";
+ "questioner" = dontDistribute super."questioner";
+ "queue" = dontDistribute super."queue";
+ "queuelike" = dontDistribute super."queuelike";
+ "quick-generator" = dontDistribute super."quick-generator";
+ "quick-schema" = dontDistribute super."quick-schema";
+ "quickcheck-poly" = dontDistribute super."quickcheck-poly";
+ "quickcheck-properties" = dontDistribute super."quickcheck-properties";
+ "quickcheck-property-comb" = dontDistribute super."quickcheck-property-comb";
+ "quickcheck-property-monad" = dontDistribute super."quickcheck-property-monad";
+ "quickcheck-regex" = dontDistribute super."quickcheck-regex";
+ "quickcheck-relaxng" = dontDistribute super."quickcheck-relaxng";
+ "quickcheck-rematch" = dontDistribute super."quickcheck-rematch";
+ "quickcheck-script" = dontDistribute super."quickcheck-script";
+ "quickcheck-simple" = dontDistribute super."quickcheck-simple";
+ "quickcheck-text" = dontDistribute super."quickcheck-text";
+ "quickcheck-webdriver" = dontDistribute super."quickcheck-webdriver";
+ "quicklz" = dontDistribute super."quicklz";
+ "quickpull" = dontDistribute super."quickpull";
+ "quickset" = dontDistribute super."quickset";
+ "quickspec" = dontDistribute super."quickspec";
+ "quicktest" = dontDistribute super."quicktest";
+ "quickwebapp" = dontDistribute super."quickwebapp";
+ "quiver" = dontDistribute super."quiver";
+ "quiver-bytestring" = dontDistribute super."quiver-bytestring";
+ "quiver-cell" = dontDistribute super."quiver-cell";
+ "quiver-csv" = dontDistribute super."quiver-csv";
+ "quiver-enumerator" = dontDistribute super."quiver-enumerator";
+ "quiver-http" = dontDistribute super."quiver-http";
+ "quoridor-hs" = dontDistribute super."quoridor-hs";
+ "qux" = dontDistribute super."qux";
+ "rabocsv2qif" = dontDistribute super."rabocsv2qif";
+ "rad" = dontDistribute super."rad";
+ "radian" = dontDistribute super."radian";
+ "radium" = dontDistribute super."radium";
+ "radium-formula-parser" = dontDistribute super."radium-formula-parser";
+ "radix" = dontDistribute super."radix";
+ "rados-haskell" = dontDistribute super."rados-haskell";
+ "rail-compiler-editor" = dontDistribute super."rail-compiler-editor";
+ "rainbow-tests" = dontDistribute super."rainbow-tests";
+ "rake" = dontDistribute super."rake";
+ "rakhana" = dontDistribute super."rakhana";
+ "ralist" = dontDistribute super."ralist";
+ "rallod" = dontDistribute super."rallod";
+ "raml" = dontDistribute super."raml";
+ "rand-vars" = dontDistribute super."rand-vars";
+ "randfile" = dontDistribute super."randfile";
+ "random-access-list" = dontDistribute super."random-access-list";
+ "random-derive" = dontDistribute super."random-derive";
+ "random-eff" = dontDistribute super."random-eff";
+ "random-effin" = dontDistribute super."random-effin";
+ "random-extras" = dontDistribute super."random-extras";
+ "random-hypergeometric" = dontDistribute super."random-hypergeometric";
+ "random-stream" = dontDistribute super."random-stream";
+ "random-variates" = dontDistribute super."random-variates";
+ "randomgen" = dontDistribute super."randomgen";
+ "randproc" = dontDistribute super."randproc";
+ "randsolid" = dontDistribute super."randsolid";
+ "range-set-list" = dontDistribute super."range-set-list";
+ "range-space" = dontDistribute super."range-space";
+ "rangemin" = dontDistribute super."rangemin";
+ "ranges" = dontDistribute super."ranges";
+ "rank1dynamic" = dontDistribute super."rank1dynamic";
+ "rascal" = dontDistribute super."rascal";
+ "rate-limit" = dontDistribute super."rate-limit";
+ "ratio-int" = dontDistribute super."ratio-int";
+ "raven-haskell" = dontDistribute super."raven-haskell";
+ "raven-haskell-scotty" = dontDistribute super."raven-haskell-scotty";
+ "raw-strings-qq" = doDistribute super."raw-strings-qq_1_0_2";
+ "rawstring-qm" = dontDistribute super."rawstring-qm";
+ "razom-text-util" = dontDistribute super."razom-text-util";
+ "rbr" = dontDistribute super."rbr";
+ "rclient" = dontDistribute super."rclient";
+ "rcu" = dontDistribute super."rcu";
+ "rdf4h" = dontDistribute super."rdf4h";
+ "rdioh" = dontDistribute super."rdioh";
+ "rdtsc" = dontDistribute super."rdtsc";
+ "rdtsc-enolan" = dontDistribute super."rdtsc-enolan";
+ "re2" = dontDistribute super."re2";
+ "react-flux" = dontDistribute super."react-flux";
+ "react-haskell" = dontDistribute super."react-haskell";
+ "reaction-logic" = dontDistribute super."reaction-logic";
+ "reactive" = dontDistribute super."reactive";
+ "reactive-bacon" = dontDistribute super."reactive-bacon";
+ "reactive-balsa" = dontDistribute super."reactive-balsa";
+ "reactive-banana" = dontDistribute super."reactive-banana";
+ "reactive-banana-sdl" = dontDistribute super."reactive-banana-sdl";
+ "reactive-banana-threepenny" = dontDistribute super."reactive-banana-threepenny";
+ "reactive-banana-wx" = dontDistribute super."reactive-banana-wx";
+ "reactive-fieldtrip" = dontDistribute super."reactive-fieldtrip";
+ "reactive-glut" = dontDistribute super."reactive-glut";
+ "reactive-haskell" = dontDistribute super."reactive-haskell";
+ "reactive-io" = dontDistribute super."reactive-io";
+ "reactive-thread" = dontDistribute super."reactive-thread";
+ "reactor" = dontDistribute super."reactor";
+ "read-bounded" = dontDistribute super."read-bounded";
+ "read-editor" = dontDistribute super."read-editor";
+ "readable" = dontDistribute super."readable";
+ "readline" = dontDistribute super."readline";
+ "readline-statevar" = dontDistribute super."readline-statevar";
+ "readpyc" = dontDistribute super."readpyc";
+ "really-simple-xml-parser" = dontDistribute super."really-simple-xml-parser";
+ "reasonable-lens" = dontDistribute super."reasonable-lens";
+ "reasonable-operational" = dontDistribute super."reasonable-operational";
+ "recaptcha" = dontDistribute super."recaptcha";
+ "record" = dontDistribute super."record";
+ "record-aeson" = dontDistribute super."record-aeson";
+ "record-gl" = dontDistribute super."record-gl";
+ "record-preprocessor" = dontDistribute super."record-preprocessor";
+ "record-syntax" = dontDistribute super."record-syntax";
+ "records" = dontDistribute super."records";
+ "records-th" = dontDistribute super."records-th";
+ "recursion-schemes" = dontDistribute super."recursion-schemes";
+ "recursive-line-count" = dontDistribute super."recursive-line-count";
+ "redHandlers" = dontDistribute super."redHandlers";
+ "reddit" = dontDistribute super."reddit";
+ "redis" = dontDistribute super."redis";
+ "redis-hs" = dontDistribute super."redis-hs";
+ "redis-job-queue" = dontDistribute super."redis-job-queue";
+ "redis-simple" = dontDistribute super."redis-simple";
+ "redo" = dontDistribute super."redo";
+ "reducers" = doDistribute super."reducers_3_10_3_2";
+ "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" = doDistribute super."reflection_2";
+ "reflection-extras" = dontDistribute super."reflection-extras";
+ "reflection-without-remorse" = dontDistribute super."reflection-without-remorse";
+ "reflex" = dontDistribute super."reflex";
+ "reflex-animation" = dontDistribute super."reflex-animation";
+ "reflex-dom" = dontDistribute super."reflex-dom";
+ "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib";
+ "reflex-gloss" = dontDistribute super."reflex-gloss";
+ "reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
+ "reflex-transformers" = dontDistribute super."reflex-transformers";
+ "reform" = dontDistribute super."reform";
+ "reform-blaze" = dontDistribute super."reform-blaze";
+ "reform-hamlet" = dontDistribute super."reform-hamlet";
+ "reform-happstack" = dontDistribute super."reform-happstack";
+ "reform-hsp" = dontDistribute super."reform-hsp";
+ "regex-applicative-text" = dontDistribute super."regex-applicative-text";
+ "regex-compat-tdfa" = dontDistribute super."regex-compat-tdfa";
+ "regex-deriv" = dontDistribute super."regex-deriv";
+ "regex-dfa" = dontDistribute super."regex-dfa";
+ "regex-easy" = dontDistribute super."regex-easy";
+ "regex-genex" = dontDistribute super."regex-genex";
+ "regex-parsec" = dontDistribute super."regex-parsec";
+ "regex-pderiv" = dontDistribute super."regex-pderiv";
+ "regex-posix-unittest" = dontDistribute super."regex-posix-unittest";
+ "regex-tdfa-pipes" = dontDistribute super."regex-tdfa-pipes";
+ "regex-tdfa-quasiquoter" = dontDistribute super."regex-tdfa-quasiquoter";
+ "regex-tdfa-text" = dontDistribute super."regex-tdfa-text";
+ "regex-tdfa-unittest" = dontDistribute super."regex-tdfa-unittest";
+ "regex-tdfa-utf8" = dontDistribute super."regex-tdfa-utf8";
+ "regex-tre" = dontDistribute super."regex-tre";
+ "regex-xmlschema" = dontDistribute super."regex-xmlschema";
+ "regexchar" = dontDistribute super."regexchar";
+ "regexdot" = dontDistribute super."regexdot";
+ "regexp-tries" = dontDistribute super."regexp-tries";
+ "regexpr" = dontDistribute super."regexpr";
+ "regexpr-symbolic" = dontDistribute super."regexpr-symbolic";
+ "regexqq" = dontDistribute super."regexqq";
+ "regional-pointers" = dontDistribute super."regional-pointers";
+ "regions" = dontDistribute super."regions";
+ "regions-monadsfd" = dontDistribute super."regions-monadsfd";
+ "regions-monadstf" = dontDistribute super."regions-monadstf";
+ "regions-mtl" = dontDistribute super."regions-mtl";
+ "regress" = dontDistribute super."regress";
+ "regular" = dontDistribute super."regular";
+ "regular-extras" = dontDistribute super."regular-extras";
+ "regular-web" = dontDistribute super."regular-web";
+ "regular-xmlpickler" = dontDistribute super."regular-xmlpickler";
+ "reheat" = dontDistribute super."reheat";
+ "rehoo" = dontDistribute super."rehoo";
+ "rei" = dontDistribute super."rei";
+ "reified-records" = dontDistribute super."reified-records";
+ "reify" = dontDistribute super."reify";
+ "reinterpret-cast" = dontDistribute super."reinterpret-cast";
+ "relacion" = dontDistribute super."relacion";
+ "relation" = dontDistribute super."relation";
+ "relational-postgresql8" = dontDistribute super."relational-postgresql8";
+ "relational-query" = dontDistribute super."relational-query";
+ "relational-query-HDBC" = dontDistribute super."relational-query-HDBC";
+ "relational-record" = dontDistribute super."relational-record";
+ "relational-record-examples" = dontDistribute super."relational-record-examples";
+ "relational-schemas" = dontDistribute super."relational-schemas";
+ "relative-date" = dontDistribute super."relative-date";
+ "relit" = dontDistribute super."relit";
+ "rematch" = dontDistribute super."rematch";
+ "rematch-text" = dontDistribute super."rematch-text";
+ "remote" = dontDistribute super."remote";
+ "remote-debugger" = dontDistribute super."remote-debugger";
+ "remotion" = dontDistribute super."remotion";
+ "renderable" = dontDistribute super."renderable";
+ "reord" = dontDistribute super."reord";
+ "reorderable" = dontDistribute super."reorderable";
+ "repa" = doDistribute super."repa_3_4_0_1";
+ "repa-algorithms" = doDistribute super."repa-algorithms_3_4_0_1";
+ "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-io" = doDistribute super."repa-io_3_4_0_1";
+ "repa-linear-algebra" = dontDistribute super."repa-linear-algebra";
+ "repa-plugin" = dontDistribute super."repa-plugin";
+ "repa-scalar" = dontDistribute super."repa-scalar";
+ "repa-series" = dontDistribute super."repa-series";
+ "repa-sndfile" = dontDistribute super."repa-sndfile";
+ "repa-stream" = dontDistribute super."repa-stream";
+ "repa-v4l2" = dontDistribute super."repa-v4l2";
+ "repl" = dontDistribute super."repl";
+ "repl-toolkit" = dontDistribute super."repl-toolkit";
+ "repline" = dontDistribute super."repline";
+ "repo-based-blog" = dontDistribute super."repo-based-blog";
+ "repr" = dontDistribute super."repr";
+ "repr-tree-syb" = dontDistribute super."repr-tree-syb";
+ "representable-functors" = dontDistribute super."representable-functors";
+ "representable-profunctors" = dontDistribute super."representable-profunctors";
+ "representable-tries" = dontDistribute super."representable-tries";
+ "request-monad" = dontDistribute super."request-monad";
+ "reserve" = dontDistribute super."reserve";
+ "resistor-cube" = dontDistribute super."resistor-cube";
+ "resolve-trivial-conflicts" = dontDistribute super."resolve-trivial-conflicts";
+ "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_36_0_6";
+ "rest-example" = dontDistribute super."rest-example";
+ "rest-gen" = doDistribute super."rest-gen_0_17_1_3";
+ "rest-happstack" = doDistribute super."rest-happstack_0_2_10_8";
+ "rest-snap" = doDistribute super."rest-snap_0_1_17_18";
+ "rest-wai" = doDistribute super."rest-wai_0_1_0_8";
+ "restful-snap" = dontDistribute super."restful-snap";
+ "restricted-workers" = dontDistribute super."restricted-workers";
+ "restyle" = dontDistribute super."restyle";
+ "resumable-exceptions" = dontDistribute super."resumable-exceptions";
+ "rethinkdb" = dontDistribute super."rethinkdb";
+ "rethinkdb-model" = dontDistribute super."rethinkdb-model";
+ "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster";
+ "retry" = doDistribute super."retry_0_6";
+ "retryer" = dontDistribute super."retryer";
+ "revdectime" = dontDistribute super."revdectime";
+ "reverse-apply" = dontDistribute super."reverse-apply";
+ "reverse-geocoding" = dontDistribute super."reverse-geocoding";
+ "reversi" = dontDistribute super."reversi";
+ "rewrite" = dontDistribute super."rewrite";
+ "rewriting" = dontDistribute super."rewriting";
+ "rex" = dontDistribute super."rex";
+ "rezoom" = dontDistribute super."rezoom";
+ "rfc3339" = dontDistribute super."rfc3339";
+ "rhythm-game-tutorial" = dontDistribute super."rhythm-game-tutorial";
+ "riak" = dontDistribute super."riak";
+ "riak-protobuf" = dontDistribute super."riak-protobuf";
+ "richreports" = dontDistribute super."richreports";
+ "riemann" = dontDistribute super."riemann";
+ "riff" = dontDistribute super."riff";
+ "ring-buffer" = dontDistribute super."ring-buffer";
+ "riot" = dontDistribute super."riot";
+ "ripple" = dontDistribute super."ripple";
+ "ripple-federation" = dontDistribute super."ripple-federation";
+ "risc386" = dontDistribute super."risc386";
+ "rivers" = dontDistribute super."rivers";
+ "rivet" = dontDistribute super."rivet";
+ "rivet-core" = dontDistribute super."rivet-core";
+ "rivet-migration" = dontDistribute super."rivet-migration";
+ "rivet-simple-deploy" = dontDistribute super."rivet-simple-deploy";
+ "rlglue" = dontDistribute super."rlglue";
+ "rmonad" = dontDistribute super."rmonad";
+ "rncryptor" = dontDistribute super."rncryptor";
+ "rng-utils" = dontDistribute super."rng-utils";
+ "robin" = dontDistribute super."robin";
+ "robot" = dontDistribute super."robot";
+ "robots-txt" = dontDistribute super."robots-txt";
+ "rocksdb-haskell" = dontDistribute super."rocksdb-haskell";
+ "roguestar" = dontDistribute super."roguestar";
+ "roguestar-engine" = dontDistribute super."roguestar-engine";
+ "roguestar-gl" = dontDistribute super."roguestar-gl";
+ "roguestar-glut" = dontDistribute super."roguestar-glut";
+ "rollbar" = dontDistribute super."rollbar";
+ "roller" = dontDistribute super."roller";
+ "rolling-queue" = dontDistribute super."rolling-queue";
+ "roman-numerals" = dontDistribute super."roman-numerals";
+ "romkan" = dontDistribute super."romkan";
+ "roots" = dontDistribute super."roots";
+ "rope" = dontDistribute super."rope";
+ "rosa" = dontDistribute super."rosa";
+ "rose-trees" = dontDistribute super."rose-trees";
+ "rose-trie" = dontDistribute super."rose-trie";
+ "rosezipper" = dontDistribute super."rosezipper";
+ "roshask" = dontDistribute super."roshask";
+ "rosso" = dontDistribute super."rosso";
+ "rot13" = dontDistribute super."rot13";
+ "rotating-log" = dontDistribute super."rotating-log";
+ "rounding" = dontDistribute super."rounding";
+ "roundtrip" = dontDistribute super."roundtrip";
+ "roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
+ "roundtrip-string" = dontDistribute super."roundtrip-string";
+ "roundtrip-xml" = dontDistribute super."roundtrip-xml";
+ "route-generator" = dontDistribute super."route-generator";
+ "route-planning" = dontDistribute super."route-planning";
+ "rowrecord" = dontDistribute super."rowrecord";
+ "rpc" = dontDistribute super."rpc";
+ "rpc-framework" = dontDistribute super."rpc-framework";
+ "rpf" = dontDistribute super."rpf";
+ "rpm" = dontDistribute super."rpm";
+ "rsagl" = dontDistribute super."rsagl";
+ "rsagl-frp" = dontDistribute super."rsagl-frp";
+ "rsagl-math" = dontDistribute super."rsagl-math";
+ "rspp" = dontDistribute super."rspp";
+ "rss" = dontDistribute super."rss";
+ "rss2irc" = dontDistribute super."rss2irc";
+ "rtcm" = dontDistribute super."rtcm";
+ "rtld" = dontDistribute super."rtld";
+ "rtlsdr" = dontDistribute super."rtlsdr";
+ "rtorrent-rpc" = dontDistribute super."rtorrent-rpc";
+ "rtorrent-state" = dontDistribute super."rtorrent-state";
+ "rubberband" = dontDistribute super."rubberband";
+ "ruby-marshal" = dontDistribute super."ruby-marshal";
+ "ruby-qq" = dontDistribute super."ruby-qq";
+ "ruff" = dontDistribute super."ruff";
+ "ruler" = dontDistribute super."ruler";
+ "ruler-core" = dontDistribute super."ruler-core";
+ "rungekutta" = dontDistribute super."rungekutta";
+ "runghc" = dontDistribute super."runghc";
+ "rwlock" = dontDistribute super."rwlock";
+ "rws" = dontDistribute super."rws";
+ "s-cargot" = dontDistribute super."s-cargot";
+ "s3-signer" = dontDistribute super."s3-signer";
+ "safe-access" = dontDistribute super."safe-access";
+ "safe-failure" = dontDistribute super."safe-failure";
+ "safe-failure-cme" = dontDistribute super."safe-failure-cme";
+ "safe-freeze" = dontDistribute super."safe-freeze";
+ "safe-globals" = dontDistribute super."safe-globals";
+ "safe-lazy-io" = dontDistribute super."safe-lazy-io";
+ "safe-length" = dontDistribute super."safe-length";
+ "safe-plugins" = dontDistribute super."safe-plugins";
+ "safe-printf" = dontDistribute super."safe-printf";
+ "safeint" = dontDistribute super."safeint";
+ "safer-file-handles" = dontDistribute super."safer-file-handles";
+ "safer-file-handles-bytestring" = dontDistribute super."safer-file-handles-bytestring";
+ "safer-file-handles-text" = dontDistribute super."safer-file-handles-text";
+ "saferoute" = dontDistribute super."saferoute";
+ "sai-shape-syb" = dontDistribute super."sai-shape-syb";
+ "saltine" = dontDistribute super."saltine";
+ "saltine-quickcheck" = dontDistribute super."saltine-quickcheck";
+ "salvia" = dontDistribute super."salvia";
+ "salvia-demo" = dontDistribute super."salvia-demo";
+ "salvia-extras" = dontDistribute super."salvia-extras";
+ "salvia-protocol" = dontDistribute super."salvia-protocol";
+ "salvia-sessions" = dontDistribute super."salvia-sessions";
+ "salvia-websocket" = dontDistribute super."salvia-websocket";
+ "sample-frame" = dontDistribute super."sample-frame";
+ "sample-frame-np" = dontDistribute super."sample-frame-np";
+ "samtools" = dontDistribute super."samtools";
+ "samtools-conduit" = dontDistribute super."samtools-conduit";
+ "samtools-enumerator" = dontDistribute super."samtools-enumerator";
+ "samtools-iteratee" = dontDistribute super."samtools-iteratee";
+ "sandlib" = dontDistribute super."sandlib";
+ "sandman" = dontDistribute super."sandman";
+ "sarasvati" = dontDistribute super."sarasvati";
+ "sasl" = dontDistribute super."sasl";
+ "sat" = dontDistribute super."sat";
+ "sat-micro-hs" = dontDistribute super."sat-micro-hs";
+ "satchmo" = dontDistribute super."satchmo";
+ "satchmo-backends" = dontDistribute super."satchmo-backends";
+ "satchmo-examples" = dontDistribute super."satchmo-examples";
+ "satchmo-funsat" = dontDistribute super."satchmo-funsat";
+ "satchmo-minisat" = dontDistribute super."satchmo-minisat";
+ "satchmo-toysat" = dontDistribute super."satchmo-toysat";
+ "sbp" = dontDistribute super."sbp";
+ "sbvPlugin" = dontDistribute super."sbvPlugin";
+ "sc3-rdu" = dontDistribute super."sc3-rdu";
+ "scalable-server" = dontDistribute super."scalable-server";
+ "scaleimage" = dontDistribute super."scaleimage";
+ "scalp-webhooks" = dontDistribute super."scalp-webhooks";
+ "scan" = dontDistribute super."scan";
+ "scan-vector-machine" = dontDistribute super."scan-vector-machine";
+ "scat" = dontDistribute super."scat";
+ "scc" = dontDistribute super."scc";
+ "scenegraph" = dontDistribute super."scenegraph";
+ "scgi" = dontDistribute super."scgi";
+ "schedevr" = dontDistribute super."schedevr";
+ "schedule-planner" = dontDistribute super."schedule-planner";
+ "schedyield" = dontDistribute super."schedyield";
+ "scholdoc" = dontDistribute super."scholdoc";
+ "scholdoc-citeproc" = dontDistribute super."scholdoc-citeproc";
+ "scholdoc-texmath" = dontDistribute super."scholdoc-texmath";
+ "scholdoc-types" = dontDistribute super."scholdoc-types";
+ "schonfinkeling" = dontDistribute super."schonfinkeling";
+ "sci-ratio" = dontDistribute super."sci-ratio";
+ "science-constants" = dontDistribute super."science-constants";
+ "science-constants-dimensional" = dontDistribute super."science-constants-dimensional";
+ "scion" = dontDistribute super."scion";
+ "scion-browser" = dontDistribute super."scion-browser";
+ "scons2dot" = dontDistribute super."scons2dot";
+ "scope" = dontDistribute super."scope";
+ "scope-cairo" = dontDistribute super."scope-cairo";
+ "scottish" = dontDistribute super."scottish";
+ "scotty-binding-play" = dontDistribute super."scotty-binding-play";
+ "scotty-blaze" = dontDistribute super."scotty-blaze";
+ "scotty-cookie" = dontDistribute super."scotty-cookie";
+ "scotty-fay" = dontDistribute super."scotty-fay";
+ "scotty-hastache" = dontDistribute super."scotty-hastache";
+ "scotty-rest" = dontDistribute super."scotty-rest";
+ "scotty-session" = dontDistribute super."scotty-session";
+ "scotty-tls" = dontDistribute super."scotty-tls";
+ "scp-streams" = dontDistribute super."scp-streams";
+ "scrabble-bot" = dontDistribute super."scrabble-bot";
+ "scrobble" = dontDistribute super."scrobble";
+ "scroll" = dontDistribute super."scroll";
+ "scrypt" = dontDistribute super."scrypt";
+ "scrz" = dontDistribute super."scrz";
+ "scyther-proof" = dontDistribute super."scyther-proof";
+ "sde-solver" = dontDistribute super."sde-solver";
+ "sdf2p1-parser" = dontDistribute super."sdf2p1-parser";
+ "sdl2" = doDistribute super."sdl2_1_3_1";
+ "sdl2-cairo" = dontDistribute super."sdl2-cairo";
+ "sdl2-cairo-image" = dontDistribute super."sdl2-cairo-image";
+ "sdl2-compositor" = dontDistribute super."sdl2-compositor";
+ "sdl2-image" = dontDistribute super."sdl2-image";
+ "sdl2-ttf" = dontDistribute super."sdl2-ttf";
+ "sdnv" = dontDistribute super."sdnv";
+ "sdr" = dontDistribute super."sdr";
+ "seacat" = dontDistribute super."seacat";
+ "seal-module" = dontDistribute super."seal-module";
+ "search" = dontDistribute super."search";
+ "sec" = dontDistribute super."sec";
+ "secdh" = dontDistribute super."secdh";
+ "seclib" = dontDistribute super."seclib";
+ "second-transfer" = doDistribute super."second-transfer_0_6_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" = doDistribute super."semigroups_0_16_2_2";
+ "semigroups-actions" = dontDistribute super."semigroups-actions";
+ "semiring" = dontDistribute super."semiring";
+ "semiring-simple" = dontDistribute super."semiring-simple";
+ "semver-range" = dontDistribute super."semver-range";
+ "sendgrid-haskell" = dontDistribute super."sendgrid-haskell";
+ "sensenet" = dontDistribute super."sensenet";
+ "sentry" = dontDistribute super."sentry";
+ "senza" = dontDistribute super."senza";
+ "separated" = dontDistribute super."separated";
+ "seqaid" = dontDistribute super."seqaid";
+ "seqid" = dontDistribute super."seqid";
+ "seqid-streams" = dontDistribute super."seqid-streams";
+ "seqloc-datafiles" = dontDistribute super."seqloc-datafiles";
+ "sequence" = dontDistribute super."sequence";
+ "sequent-core" = dontDistribute super."sequent-core";
+ "sequential-index" = dontDistribute super."sequential-index";
+ "sequor" = dontDistribute super."sequor";
+ "serial" = dontDistribute super."serial";
+ "serial-test-generators" = dontDistribute super."serial-test-generators";
+ "serialport" = dontDistribute super."serialport";
+ "serv" = dontDistribute super."serv";
+ "servant-JuicyPixels" = doDistribute super."servant-JuicyPixels_0_1_0_0";
+ "servant-blaze" = dontDistribute super."servant-blaze";
+ "servant-cassava" = dontDistribute super."servant-cassava";
+ "servant-ede" = dontDistribute super."servant-ede";
+ "servant-examples" = dontDistribute super."servant-examples";
+ "servant-github" = dontDistribute super."servant-github";
+ "servant-lucid" = dontDistribute super."servant-lucid";
+ "servant-mock" = dontDistribute super."servant-mock";
+ "servant-pool" = dontDistribute super."servant-pool";
+ "servant-postgresql" = dontDistribute super."servant-postgresql";
+ "servant-response" = dontDistribute super."servant-response";
+ "servant-scotty" = dontDistribute super."servant-scotty";
+ "servant-swagger" = dontDistribute super."servant-swagger";
+ "servant-yaml" = dontDistribute super."servant-yaml";
+ "servius" = dontDistribute super."servius";
+ "ses-html" = dontDistribute super."ses-html";
+ "ses-html-snaplet" = dontDistribute super."ses-html-snaplet";
+ "sessions" = dontDistribute super."sessions";
+ "set-cover" = dontDistribute super."set-cover";
+ "set-with" = dontDistribute super."set-with";
+ "setdown" = dontDistribute super."setdown";
+ "setgame" = dontDistribute super."setgame";
+ "setops" = dontDistribute super."setops";
+ "sets" = dontDistribute super."sets";
+ "setters" = dontDistribute super."setters";
+ "settings" = dontDistribute super."settings";
+ "sexp" = dontDistribute super."sexp";
+ "sexp-show" = dontDistribute super."sexp-show";
+ "sexpr" = dontDistribute super."sexpr";
+ "sext" = dontDistribute super."sext";
+ "sfml-audio" = dontDistribute super."sfml-audio";
+ "sfmt" = dontDistribute super."sfmt";
+ "sgd" = dontDistribute super."sgd";
+ "sgf" = dontDistribute super."sgf";
+ "sgrep" = dontDistribute super."sgrep";
+ "sha-streams" = dontDistribute super."sha-streams";
+ "shadower" = dontDistribute super."shadower";
+ "shadowsocks" = dontDistribute super."shadowsocks";
+ "shady-gen" = dontDistribute super."shady-gen";
+ "shady-graphics" = dontDistribute super."shady-graphics";
+ "shake-cabal-build" = dontDistribute super."shake-cabal-build";
+ "shake-extras" = dontDistribute super."shake-extras";
+ "shake-minify" = dontDistribute super."shake-minify";
+ "shake-pack" = dontDistribute super."shake-pack";
+ "shaker" = dontDistribute super."shaker";
+ "shakespeare-css" = dontDistribute super."shakespeare-css";
+ "shakespeare-i18n" = dontDistribute super."shakespeare-i18n";
+ "shakespeare-js" = dontDistribute super."shakespeare-js";
+ "shakespeare-text" = dontDistribute super."shakespeare-text";
+ "shana" = dontDistribute super."shana";
+ "shapefile" = dontDistribute super."shapefile";
+ "shapely-data" = dontDistribute super."shapely-data";
+ "sharc-timbre" = dontDistribute super."sharc-timbre";
+ "shared-buffer" = dontDistribute super."shared-buffer";
+ "shared-fields" = dontDistribute super."shared-fields";
+ "shared-memory" = dontDistribute super."shared-memory";
+ "sharedio" = dontDistribute super."sharedio";
+ "she" = dontDistribute super."she";
+ "shelduck" = dontDistribute super."shelduck";
+ "shell-escape" = dontDistribute super."shell-escape";
+ "shell-monad" = dontDistribute super."shell-monad";
+ "shell-pipe" = dontDistribute super."shell-pipe";
+ "shellish" = dontDistribute super."shellish";
+ "shellmate" = dontDistribute super."shellmate";
+ "shelly-extra" = dontDistribute super."shelly-extra";
+ "shivers-cfg" = dontDistribute super."shivers-cfg";
+ "shoap" = dontDistribute super."shoap";
+ "shortcircuit" = dontDistribute super."shortcircuit";
+ "shorten-strings" = dontDistribute super."shorten-strings";
+ "should-not-typecheck" = dontDistribute super."should-not-typecheck";
+ "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";
+ "signal" = dontDistribute super."signal";
+ "signals" = dontDistribute super."signals";
+ "signed-multiset" = dontDistribute super."signed-multiset";
+ "simd" = dontDistribute super."simd";
+ "simgi" = dontDistribute super."simgi";
+ "simple" = dontDistribute super."simple";
+ "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-postgresql-orm" = dontDistribute super."simple-postgresql-orm";
+ "simple-rope" = dontDistribute super."simple-rope";
+ "simple-server" = dontDistribute super."simple-server";
+ "simple-session" = dontDistribute super."simple-session";
+ "simple-sessions" = dontDistribute super."simple-sessions";
+ "simple-smt" = dontDistribute super."simple-smt";
+ "simple-sql-parser" = dontDistribute super."simple-sql-parser";
+ "simple-stacked-vm" = dontDistribute super."simple-stacked-vm";
+ "simple-tabular" = dontDistribute super."simple-tabular";
+ "simple-templates" = dontDistribute super."simple-templates";
+ "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";
+ "singletons" = doDistribute super."singletons_1_1_2_1";
+ "sink" = dontDistribute super."sink";
+ "sirkel" = dontDistribute super."sirkel";
+ "sitemap" = dontDistribute super."sitemap";
+ "sized" = dontDistribute super."sized";
+ "sized-types" = dontDistribute super."sized-types";
+ "sized-vector" = dontDistribute super."sized-vector";
+ "sizes" = dontDistribute super."sizes";
+ "sjsp" = dontDistribute super."sjsp";
+ "skeleton" = dontDistribute super."skeleton";
+ "skeletons" = dontDistribute super."skeletons";
+ "skell" = dontDistribute super."skell";
+ "skemmtun" = dontDistribute super."skemmtun";
+ "skype4hs" = dontDistribute super."skype4hs";
+ "skypelogexport" = dontDistribute super."skypelogexport";
+ "slack" = dontDistribute super."slack";
+ "slack-api" = dontDistribute super."slack-api";
+ "slack-notify-haskell" = dontDistribute super."slack-notify-haskell";
+ "slice-cpp-gen" = dontDistribute super."slice-cpp-gen";
+ "slidemews" = dontDistribute super."slidemews";
+ "sloane" = dontDistribute super."sloane";
+ "slot-lambda" = dontDistribute super."slot-lambda";
+ "sloth" = dontDistribute super."sloth";
+ "smallarray" = dontDistribute super."smallarray";
+ "smallcaps" = dontDistribute super."smallcaps";
+ "smallcheck-laws" = dontDistribute super."smallcheck-laws";
+ "smallcheck-lens" = dontDistribute super."smallcheck-lens";
+ "smallcheck-series" = dontDistribute super."smallcheck-series";
+ "smallpt-hs" = dontDistribute super."smallpt-hs";
+ "smallstring" = dontDistribute super."smallstring";
+ "smaoin" = dontDistribute super."smaoin";
+ "smartGroup" = dontDistribute super."smartGroup";
+ "smartcheck" = dontDistribute super."smartcheck";
+ "smartconstructor" = dontDistribute super."smartconstructor";
+ "smartword" = dontDistribute super."smartword";
+ "sme" = dontDistribute super."sme";
+ "smsaero" = dontDistribute super."smsaero";
+ "smt-lib" = dontDistribute super."smt-lib";
+ "smtlib2" = dontDistribute super."smtlib2";
+ "smtp-mail-ng" = dontDistribute super."smtp-mail-ng";
+ "smtp2mta" = dontDistribute super."smtp2mta";
+ "smtps-gmail" = dontDistribute super."smtps-gmail";
+ "snake-game" = dontDistribute super."snake-game";
+ "snap-accept" = dontDistribute super."snap-accept";
+ "snap-app" = dontDistribute super."snap-app";
+ "snap-auth-cli" = dontDistribute super."snap-auth-cli";
+ "snap-blaze" = dontDistribute super."snap-blaze";
+ "snap-blaze-clay" = dontDistribute super."snap-blaze-clay";
+ "snap-configuration-utilities" = dontDistribute super."snap-configuration-utilities";
+ "snap-cors" = dontDistribute super."snap-cors";
+ "snap-elm" = dontDistribute super."snap-elm";
+ "snap-error-collector" = dontDistribute super."snap-error-collector";
+ "snap-extras" = dontDistribute super."snap-extras";
+ "snap-language" = dontDistribute super."snap-language";
+ "snap-loader-dynamic" = dontDistribute super."snap-loader-dynamic";
+ "snap-loader-static" = dontDistribute super."snap-loader-static";
+ "snap-predicates" = dontDistribute super."snap-predicates";
+ "snap-testing" = dontDistribute super."snap-testing";
+ "snap-utils" = dontDistribute super."snap-utils";
+ "snap-web-routes" = dontDistribute super."snap-web-routes";
+ "snaplet-acid-state" = dontDistribute super."snaplet-acid-state";
+ "snaplet-actionlog" = dontDistribute super."snaplet-actionlog";
+ "snaplet-amqp" = dontDistribute super."snaplet-amqp";
+ "snaplet-auth-acid" = dontDistribute super."snaplet-auth-acid";
+ "snaplet-coffee" = dontDistribute super."snaplet-coffee";
+ "snaplet-css-min" = dontDistribute super."snaplet-css-min";
+ "snaplet-environments" = dontDistribute super."snaplet-environments";
+ "snaplet-ghcjs" = dontDistribute super."snaplet-ghcjs";
+ "snaplet-hasql" = dontDistribute super."snaplet-hasql";
+ "snaplet-haxl" = dontDistribute super."snaplet-haxl";
+ "snaplet-hdbc" = dontDistribute super."snaplet-hdbc";
+ "snaplet-hslogger" = dontDistribute super."snaplet-hslogger";
+ "snaplet-i18n" = dontDistribute super."snaplet-i18n";
+ "snaplet-influxdb" = dontDistribute super."snaplet-influxdb";
+ "snaplet-lss" = dontDistribute super."snaplet-lss";
+ "snaplet-mandrill" = dontDistribute super."snaplet-mandrill";
+ "snaplet-mongoDB" = dontDistribute super."snaplet-mongoDB";
+ "snaplet-mongodb-minimalistic" = dontDistribute super."snaplet-mongodb-minimalistic";
+ "snaplet-mysql-simple" = dontDistribute super."snaplet-mysql-simple";
+ "snaplet-oauth" = dontDistribute super."snaplet-oauth";
+ "snaplet-persistent" = dontDistribute super."snaplet-persistent";
+ "snaplet-postgresql-simple" = dontDistribute super."snaplet-postgresql-simple";
+ "snaplet-postmark" = dontDistribute super."snaplet-postmark";
+ "snaplet-purescript" = dontDistribute super."snaplet-purescript";
+ "snaplet-recaptcha" = dontDistribute super."snaplet-recaptcha";
+ "snaplet-redis" = dontDistribute super."snaplet-redis";
+ "snaplet-redson" = dontDistribute super."snaplet-redson";
+ "snaplet-rest" = dontDistribute super."snaplet-rest";
+ "snaplet-riak" = dontDistribute super."snaplet-riak";
+ "snaplet-sass" = dontDistribute super."snaplet-sass";
+ "snaplet-sedna" = dontDistribute super."snaplet-sedna";
+ "snaplet-ses-html" = dontDistribute super."snaplet-ses-html";
+ "snaplet-sqlite-simple" = dontDistribute super."snaplet-sqlite-simple";
+ "snaplet-stripe" = dontDistribute super."snaplet-stripe";
+ "snaplet-tasks" = dontDistribute super."snaplet-tasks";
+ "snaplet-typed-sessions" = dontDistribute super."snaplet-typed-sessions";
+ "snaplet-wordpress" = dontDistribute super."snaplet-wordpress";
+ "snappy" = dontDistribute super."snappy";
+ "snappy-conduit" = dontDistribute super."snappy-conduit";
+ "snappy-framing" = dontDistribute super."snappy-framing";
+ "snappy-iteratee" = dontDistribute super."snappy-iteratee";
+ "sndfile-enumerators" = dontDistribute super."sndfile-enumerators";
+ "sneakyterm" = dontDistribute super."sneakyterm";
+ "sneathlane-haste" = dontDistribute super."sneathlane-haste";
+ "snippet-extractor" = dontDistribute super."snippet-extractor";
+ "snm" = dontDistribute super."snm";
+ "snow-white" = dontDistribute super."snow-white";
+ "snowball" = dontDistribute super."snowball";
+ "snowglobe" = dontDistribute super."snowglobe";
+ "soap" = dontDistribute super."soap";
+ "soap-openssl" = dontDistribute super."soap-openssl";
+ "soap-tls" = dontDistribute super."soap-tls";
+ "sock2stream" = dontDistribute super."sock2stream";
+ "sockaddr" = dontDistribute super."sockaddr";
+ "socket" = dontDistribute super."socket";
+ "socket-activation" = dontDistribute super."socket-activation";
+ "socket-sctp" = dontDistribute super."socket-sctp";
+ "socketio" = dontDistribute super."socketio";
+ "soegtk" = dontDistribute super."soegtk";
+ "sonic-visualiser" = dontDistribute super."sonic-visualiser";
+ "sophia" = dontDistribute super."sophia";
+ "sort-by-pinyin" = dontDistribute super."sort-by-pinyin";
+ "sorted" = dontDistribute super."sorted";
+ "sorted-list" = dontDistribute super."sorted-list";
+ "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";
+ "sourcemap" = doDistribute super."sourcemap_0_1_3_0";
+ "sousit" = dontDistribute super."sousit";
+ "sox" = dontDistribute super."sox";
+ "soxlib" = dontDistribute super."soxlib";
+ "soyuz" = dontDistribute super."soyuz";
+ "spacefill" = dontDistribute super."spacefill";
+ "spacepart" = dontDistribute super."spacepart";
+ "spaceprobe" = dontDistribute super."spaceprobe";
+ "spanout" = dontDistribute super."spanout";
+ "sparse" = dontDistribute super."sparse";
+ "sparse-lin-alg" = dontDistribute super."sparse-lin-alg";
+ "sparsebit" = dontDistribute super."sparsebit";
+ "sparsecheck" = dontDistribute super."sparsecheck";
+ "sparser" = dontDistribute super."sparser";
+ "spata" = dontDistribute super."spata";
+ "spatial-math" = dontDistribute super."spatial-math";
+ "spawn" = dontDistribute super."spawn";
+ "spe" = dontDistribute super."spe";
+ "special-functors" = dontDistribute super."special-functors";
+ "special-keys" = dontDistribute super."special-keys";
+ "specialize-th" = dontDistribute super."specialize-th";
+ "species" = dontDistribute super."species";
+ "speculation-transformers" = dontDistribute super."speculation-transformers";
+ "speedy-slice" = dontDistribute super."speedy-slice";
+ "spelling-suggest" = dontDistribute super."spelling-suggest";
+ "sphero" = dontDistribute super."sphero";
+ "sphinx-cli" = dontDistribute super."sphinx-cli";
+ "spice" = dontDistribute super."spice";
+ "spike" = dontDistribute super."spike";
+ "spine" = dontDistribute super."spine";
+ "spir-v" = dontDistribute super."spir-v";
+ "splay" = dontDistribute super."splay";
+ "splaytree" = dontDistribute super."splaytree";
+ "spline3" = dontDistribute super."spline3";
+ "splines" = dontDistribute super."splines";
+ "split-channel" = dontDistribute super."split-channel";
+ "split-record" = dontDistribute super."split-record";
+ "split-tchan" = dontDistribute super."split-tchan";
+ "splitter" = dontDistribute super."splitter";
+ "splot" = dontDistribute super."splot";
+ "spool" = dontDistribute super."spool";
+ "spoonutil" = dontDistribute super."spoonutil";
+ "spoty" = dontDistribute super."spoty";
+ "spreadsheet" = dontDistribute super."spreadsheet";
+ "spritz" = dontDistribute super."spritz";
+ "spsa" = dontDistribute super."spsa";
+ "spy" = dontDistribute super."spy";
+ "sql-simple" = dontDistribute super."sql-simple";
+ "sql-simple-mysql" = dontDistribute super."sql-simple-mysql";
+ "sql-simple-pool" = dontDistribute super."sql-simple-pool";
+ "sql-simple-postgresql" = dontDistribute super."sql-simple-postgresql";
+ "sql-simple-sqlite" = dontDistribute super."sql-simple-sqlite";
+ "sql-words" = dontDistribute super."sql-words";
+ "sqlite" = dontDistribute super."sqlite";
+ "sqlite-simple-typed" = dontDistribute super."sqlite-simple-typed";
+ "sqlvalue-list" = dontDistribute super."sqlvalue-list";
+ "squeeze" = dontDistribute super."squeeze";
+ "sr-extra" = dontDistribute super."sr-extra";
+ "srcinst" = dontDistribute super."srcinst";
+ "srec" = dontDistribute super."srec";
+ "sscgi" = dontDistribute super."sscgi";
+ "ssh" = dontDistribute super."ssh";
+ "sshd-lint" = dontDistribute super."sshd-lint";
+ "sshtun" = dontDistribute super."sshtun";
+ "sssp" = dontDistribute super."sssp";
+ "sstable" = dontDistribute super."sstable";
+ "ssv" = dontDistribute super."ssv";
+ "stable-heap" = dontDistribute super."stable-heap";
+ "stable-maps" = dontDistribute super."stable-maps";
+ "stable-marriage" = dontDistribute super."stable-marriage";
+ "stable-memo" = dontDistribute super."stable-memo";
+ "stable-tree" = dontDistribute super."stable-tree";
+ "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls";
+ "stack-prism" = dontDistribute super."stack-prism";
+ "stack-run-auto" = dontDistribute super."stack-run-auto";
+ "stackage-curator" = dontDistribute super."stackage-curator";
+ "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-plus" = dontDistribute super."state-plus";
+ "state-record" = dontDistribute super."state-record";
+ "stateWriter" = dontDistribute super."stateWriter";
+ "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_6_1";
+ "stm-firehose" = dontDistribute super."stm-firehose";
+ "stm-io-hooks" = dontDistribute super."stm-io-hooks";
+ "stm-lifted" = dontDistribute super."stm-lifted";
+ "stm-linkedlist" = dontDistribute super."stm-linkedlist";
+ "stm-orelse-io" = dontDistribute super."stm-orelse-io";
+ "stm-promise" = dontDistribute super."stm-promise";
+ "stm-queue-extras" = dontDistribute super."stm-queue-extras";
+ "stm-sbchan" = dontDistribute super."stm-sbchan";
+ "stm-split" = dontDistribute super."stm-split";
+ "stm-tlist" = dontDistribute super."stm-tlist";
+ "stmcontrol" = dontDistribute super."stmcontrol";
+ "stomp-conduit" = dontDistribute super."stomp-conduit";
+ "stomp-patterns" = dontDistribute super."stomp-patterns";
+ "stomp-queue" = dontDistribute super."stomp-queue";
+ "stompl" = dontDistribute super."stompl";
+ "stopwatch" = dontDistribute super."stopwatch";
+ "storable" = dontDistribute super."storable";
+ "storable-record" = dontDistribute super."storable-record";
+ "storable-static-array" = dontDistribute super."storable-static-array";
+ "storable-tuple" = dontDistribute super."storable-tuple";
+ "storablevector" = dontDistribute super."storablevector";
+ "storablevector-carray" = dontDistribute super."storablevector-carray";
+ "storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
+ "str" = dontDistribute super."str";
+ "stratum-tool" = dontDistribute super."stratum-tool";
+ "stream-fusion" = dontDistribute super."stream-fusion";
+ "stream-monad" = dontDistribute super."stream-monad";
+ "streamed" = dontDistribute super."streamed";
+ "streaming" = dontDistribute super."streaming";
+ "streaming-bytestring" = dontDistribute super."streaming-bytestring";
+ "streaming-histogram" = dontDistribute super."streaming-histogram";
+ "streaming-utils" = dontDistribute super."streaming-utils";
+ "streaming-wai" = dontDistribute super."streaming-wai";
+ "streamproc" = dontDistribute super."streamproc";
+ "strict-base-types" = dontDistribute super."strict-base-types";
+ "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-qq" = dontDistribute super."string-qq";
+ "string-quote" = dontDistribute super."string-quote";
+ "string-similarity" = dontDistribute super."string-similarity";
+ "stringlike" = dontDistribute super."stringlike";
+ "stringprep" = dontDistribute super."stringprep";
+ "strings" = dontDistribute super."strings";
+ "stringtable-atom" = dontDistribute super."stringtable-atom";
+ "strio" = dontDistribute super."strio";
+ "stripe" = dontDistribute super."stripe";
+ "stripe-core" = dontDistribute super."stripe-core";
+ "stripe-haskell" = dontDistribute super."stripe-haskell";
+ "stripe-http-streams" = dontDistribute super."stripe-http-streams";
+ "strive" = dontDistribute super."strive";
+ "strptime" = dontDistribute super."strptime";
+ "structs" = dontDistribute super."structs";
+ "structural-induction" = dontDistribute super."structural-induction";
+ "structured-haskell-mode" = dontDistribute super."structured-haskell-mode";
+ "structured-mongoDB" = dontDistribute super."structured-mongoDB";
+ "structures" = dontDistribute super."structures";
+ "stunclient" = dontDistribute super."stunclient";
+ "stunts" = dontDistribute super."stunts";
+ "stylish-haskell" = doDistribute super."stylish-haskell_0_5_14_3";
+ "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";
+ "success" = dontDistribute super."success";
+ "suffixarray" = dontDistribute super."suffixarray";
+ "suffixtree" = dontDistribute super."suffixtree";
+ "sugarhaskell" = dontDistribute super."sugarhaskell";
+ "suitable" = dontDistribute super."suitable";
+ "sump" = dontDistribute super."sump";
+ "sundown" = dontDistribute super."sundown";
+ "sunlight" = dontDistribute super."sunlight";
+ "sunroof-compiler" = dontDistribute super."sunroof-compiler";
+ "sunroof-examples" = dontDistribute super."sunroof-examples";
+ "sunroof-server" = dontDistribute super."sunroof-server";
+ "super-user-spark" = dontDistribute super."super-user-spark";
+ "supercollider-ht" = dontDistribute super."supercollider-ht";
+ "supercollider-midi" = dontDistribute super."supercollider-midi";
+ "superdoc" = dontDistribute super."superdoc";
+ "supero" = dontDistribute super."supero";
+ "supervisor" = dontDistribute super."supervisor";
+ "suspend" = dontDistribute super."suspend";
+ "svg2q" = dontDistribute super."svg2q";
+ "svgcairo" = dontDistribute super."svgcairo";
+ "svgutils" = dontDistribute super."svgutils";
+ "svm" = dontDistribute super."svm";
+ "svm-light-utils" = dontDistribute super."svm-light-utils";
+ "svm-simple" = dontDistribute super."svm-simple";
+ "svndump" = dontDistribute super."svndump";
+ "swagger2" = dontDistribute super."swagger2";
+ "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" = doDistribute super."syb_0_5_1";
+ "syb-extras" = dontDistribute super."syb-extras";
+ "syb-with-class" = dontDistribute super."syb-with-class";
+ "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";
+ "sync" = dontDistribute super."sync";
+ "sync-mht" = dontDistribute super."sync-mht";
+ "synchronous-channels" = dontDistribute super."synchronous-channels";
+ "syncthing-hs" = dontDistribute super."syncthing-hs";
+ "synt" = dontDistribute super."synt";
+ "syntactic" = dontDistribute super."syntactic";
+ "syntactical" = dontDistribute super."syntactical";
+ "syntax" = dontDistribute super."syntax";
+ "syntax-attoparsec" = dontDistribute super."syntax-attoparsec";
+ "syntax-example" = dontDistribute super."syntax-example";
+ "syntax-example-json" = dontDistribute super."syntax-example-json";
+ "syntax-pretty" = dontDistribute super."syntax-pretty";
+ "syntax-printer" = dontDistribute super."syntax-printer";
+ "syntax-trees" = dontDistribute super."syntax-trees";
+ "syntax-trees-fork-bairyn" = dontDistribute super."syntax-trees-fork-bairyn";
+ "synthesizer" = dontDistribute super."synthesizer";
+ "synthesizer-alsa" = dontDistribute super."synthesizer-alsa";
+ "synthesizer-core" = dontDistribute super."synthesizer-core";
+ "synthesizer-dimensional" = dontDistribute super."synthesizer-dimensional";
+ "synthesizer-filter" = dontDistribute super."synthesizer-filter";
+ "synthesizer-inference" = dontDistribute super."synthesizer-inference";
+ "synthesizer-llvm" = dontDistribute super."synthesizer-llvm";
+ "synthesizer-midi" = dontDistribute super."synthesizer-midi";
+ "sys-auth-smbclient" = dontDistribute super."sys-auth-smbclient";
+ "sys-process" = dontDistribute super."sys-process";
+ "system-canonicalpath" = dontDistribute super."system-canonicalpath";
+ "system-command" = dontDistribute super."system-command";
+ "system-gpio" = dontDistribute super."system-gpio";
+ "system-inotify" = dontDistribute super."system-inotify";
+ "system-lifted" = dontDistribute super."system-lifted";
+ "system-random-effect" = dontDistribute super."system-random-effect";
+ "system-time-monotonic" = dontDistribute super."system-time-monotonic";
+ "system-util" = dontDistribute super."system-util";
+ "system-uuid" = dontDistribute super."system-uuid";
+ "systemd" = dontDistribute super."systemd";
+ "syz" = dontDistribute super."syz";
+ "t-regex" = dontDistribute super."t-regex";
+ "ta" = dontDistribute super."ta";
+ "table" = dontDistribute super."table";
+ "table-tennis" = dontDistribute super."table-tennis";
+ "tableaux" = dontDistribute super."tableaux";
+ "tables" = dontDistribute super."tables";
+ "tablestorage" = dontDistribute super."tablestorage";
+ "tabloid" = dontDistribute super."tabloid";
+ "taffybar" = dontDistribute super."taffybar";
+ "tag-bits" = dontDistribute super."tag-bits";
+ "tag-stream" = dontDistribute super."tag-stream";
+ "tagchup" = dontDistribute super."tagchup";
+ "tagged-exception-core" = dontDistribute super."tagged-exception-core";
+ "tagged-list" = dontDistribute super."tagged-list";
+ "tagged-th" = dontDistribute super."tagged-th";
+ "tagged-transformer" = dontDistribute super."tagged-transformer";
+ "tagging" = dontDistribute super."tagging";
+ "taggy" = dontDistribute super."taggy";
+ "taggy-lens" = dontDistribute super."taggy-lens";
+ "taglib" = dontDistribute super."taglib";
+ "taglib-api" = dontDistribute super."taglib-api";
+ "tagset-positional" = dontDistribute super."tagset-positional";
+ "tagsoup-ht" = dontDistribute super."tagsoup-ht";
+ "tagsoup-parsec" = dontDistribute super."tagsoup-parsec";
+ "takahashi" = dontDistribute super."takahashi";
+ "takusen-oracle" = dontDistribute super."takusen-oracle";
+ "tamarin-prover" = dontDistribute super."tamarin-prover";
+ "tamarin-prover-term" = dontDistribute super."tamarin-prover-term";
+ "tamarin-prover-theory" = dontDistribute super."tamarin-prover-theory";
+ "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils";
+ "tamper" = dontDistribute super."tamper";
+ "target" = dontDistribute super."target";
+ "task" = dontDistribute super."task";
+ "taskpool" = dontDistribute super."taskpool";
+ "tasty" = doDistribute super."tasty_0_10_1_2";
+ "tasty-dejafu" = dontDistribute super."tasty-dejafu";
+ "tasty-expected-failure" = dontDistribute super."tasty-expected-failure";
+ "tasty-fail-fast" = dontDistribute super."tasty-fail-fast";
+ "tasty-html" = dontDistribute super."tasty-html";
+ "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter";
+ "tasty-integrate" = dontDistribute super."tasty-integrate";
+ "tasty-laws" = dontDistribute super."tasty-laws";
+ "tasty-lens" = dontDistribute super."tasty-lens";
+ "tasty-program" = dontDistribute super."tasty-program";
+ "tasty-tap" = dontDistribute super."tasty-tap";
+ "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";
+ "tellbot" = dontDistribute super."tellbot";
+ "template-default" = dontDistribute super."template-default";
+ "template-haskell-util" = dontDistribute super."template-haskell-util";
+ "template-hsml" = dontDistribute super."template-hsml";
+ "template-yj" = dontDistribute super."template-yj";
+ "templatepg" = dontDistribute super."templatepg";
+ "templater" = dontDistribute super."templater";
+ "tempodb" = dontDistribute super."tempodb";
+ "temporal-csound" = dontDistribute super."temporal-csound";
+ "temporal-media" = dontDistribute super."temporal-media";
+ "temporal-music-notation" = dontDistribute super."temporal-music-notation";
+ "temporal-music-notation-demo" = dontDistribute super."temporal-music-notation-demo";
+ "temporal-music-notation-western" = dontDistribute super."temporal-music-notation-western";
+ "temporary-resourcet" = dontDistribute super."temporary-resourcet";
+ "tempus" = dontDistribute super."tempus";
+ "tempus-fugit" = dontDistribute super."tempus-fugit";
+ "tensor" = dontDistribute super."tensor";
+ "term-rewriting" = dontDistribute super."term-rewriting";
+ "termbox-bindings" = dontDistribute super."termbox-bindings";
+ "termination-combinators" = dontDistribute super."termination-combinators";
+ "terminfo" = doDistribute super."terminfo_0_4_0_2";
+ "terminfo-hs" = dontDistribute super."terminfo-hs";
+ "termplot" = dontDistribute super."termplot";
+ "terrahs" = dontDistribute super."terrahs";
+ "tersmu" = dontDistribute super."tersmu";
+ "test-framework-doctest" = dontDistribute super."test-framework-doctest";
+ "test-framework-golden" = dontDistribute super."test-framework-golden";
+ "test-framework-program" = dontDistribute super."test-framework-program";
+ "test-framework-quickcheck" = dontDistribute super."test-framework-quickcheck";
+ "test-framework-sandbox" = dontDistribute super."test-framework-sandbox";
+ "test-framework-skip" = dontDistribute super."test-framework-skip";
+ "test-framework-smallcheck" = dontDistribute super."test-framework-smallcheck";
+ "test-framework-testing-feat" = dontDistribute super."test-framework-testing-feat";
+ "test-framework-th-prime" = dontDistribute super."test-framework-th-prime";
+ "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";
+ "test-simple" = dontDistribute super."test-simple";
+ "testPkg" = dontDistribute super."testPkg";
+ "testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
+ "testloop" = dontDistribute super."testloop";
+ "testpack" = dontDistribute super."testpack";
+ "testpattern" = dontDistribute super."testpattern";
+ "testrunner" = dontDistribute super."testrunner";
+ "tetris" = dontDistribute super."tetris";
+ "tex2txt" = dontDistribute super."tex2txt";
+ "texrunner" = dontDistribute super."texrunner";
+ "text-and-plots" = dontDistribute super."text-and-plots";
+ "text-format-simple" = dontDistribute super."text-format-simple";
+ "text-icu-translit" = dontDistribute super."text-icu-translit";
+ "text-json-qq" = dontDistribute super."text-json-qq";
+ "text-latin1" = dontDistribute super."text-latin1";
+ "text-ldap" = dontDistribute super."text-ldap";
+ "text-locale-encoding" = dontDistribute super."text-locale-encoding";
+ "text-normal" = dontDistribute super."text-normal";
+ "text-position" = dontDistribute super."text-position";
+ "text-postgresql" = dontDistribute super."text-postgresql";
+ "text-printer" = dontDistribute super."text-printer";
+ "text-regex-replace" = dontDistribute super."text-regex-replace";
+ "text-register-machine" = dontDistribute super."text-register-machine";
+ "text-render" = dontDistribute super."text-render";
+ "text-show" = doDistribute super."text-show_2";
+ "text-show-instances" = dontDistribute super."text-show-instances";
+ "text-stream-decode" = dontDistribute super."text-stream-decode";
+ "text-utf7" = dontDistribute super."text-utf7";
+ "text-xml-generic" = dontDistribute super."text-xml-generic";
+ "text-xml-qq" = dontDistribute super."text-xml-qq";
+ "text-zipper" = dontDistribute super."text-zipper";
+ "text1" = dontDistribute super."text1";
+ "textPlot" = dontDistribute super."textPlot";
+ "textmatetags" = dontDistribute super."textmatetags";
+ "textocat-api" = dontDistribute super."textocat-api";
+ "texts" = dontDistribute super."texts";
+ "tfp" = dontDistribute super."tfp";
+ "tfp-th" = dontDistribute super."tfp-th";
+ "tftp" = dontDistribute super."tftp";
+ "tga" = dontDistribute super."tga";
+ "th-alpha" = dontDistribute super."th-alpha";
+ "th-build" = dontDistribute super."th-build";
+ "th-cas" = dontDistribute super."th-cas";
+ "th-context" = dontDistribute super."th-context";
+ "th-fold" = dontDistribute super."th-fold";
+ "th-inline-io-action" = dontDistribute super."th-inline-io-action";
+ "th-instance-reification" = dontDistribute super."th-instance-reification";
+ "th-instances" = dontDistribute super."th-instances";
+ "th-kinds" = dontDistribute super."th-kinds";
+ "th-kinds-fork" = dontDistribute super."th-kinds-fork";
+ "th-lift-instances" = dontDistribute super."th-lift-instances";
+ "th-orphans" = doDistribute super."th-orphans_0_12_2";
+ "th-printf" = dontDistribute super."th-printf";
+ "th-sccs" = dontDistribute super."th-sccs";
+ "th-traced" = dontDistribute super."th-traced";
+ "th-typegraph" = dontDistribute super."th-typegraph";
+ "themoviedb" = dontDistribute super."themoviedb";
+ "themplate" = dontDistribute super."themplate";
+ "theoremquest" = dontDistribute super."theoremquest";
+ "theoremquest-client" = dontDistribute super."theoremquest-client";
+ "these" = dontDistribute super."these";
+ "thespian" = dontDistribute super."thespian";
+ "theta-functions" = dontDistribute super."theta-functions";
+ "thih" = dontDistribute super."thih";
+ "thimk" = dontDistribute super."thimk";
+ "thorn" = dontDistribute super."thorn";
+ "thread-local-storage" = dontDistribute super."thread-local-storage";
+ "threadPool" = dontDistribute super."threadPool";
+ "threadmanager" = dontDistribute super."threadmanager";
+ "threads-pool" = dontDistribute super."threads-pool";
+ "threads-supervisor" = dontDistribute super."threads-supervisor";
+ "threadscope" = dontDistribute super."threadscope";
+ "threefish" = dontDistribute super."threefish";
+ "threepenny-gui" = dontDistribute super."threepenny-gui";
+ "thrift" = dontDistribute super."thrift";
+ "thrist" = dontDistribute super."thrist";
+ "throttle" = dontDistribute super."throttle";
+ "thumbnail" = dontDistribute super."thumbnail";
+ "tianbar" = dontDistribute super."tianbar";
+ "tic-tac-toe" = dontDistribute super."tic-tac-toe";
+ "tickle" = dontDistribute super."tickle";
+ "tictactoe3d" = dontDistribute super."tictactoe3d";
+ "tidal" = dontDistribute super."tidal";
+ "tidal-midi" = dontDistribute super."tidal-midi";
+ "tidal-vis" = dontDistribute super."tidal-vis";
+ "tie-knot" = dontDistribute super."tie-knot";
+ "tiempo" = dontDistribute super."tiempo";
+ "tiger" = dontDistribute super."tiger";
+ "tight-apply" = dontDistribute super."tight-apply";
+ "tightrope" = dontDistribute super."tightrope";
+ "tighttp" = dontDistribute super."tighttp";
+ "tilings" = dontDistribute super."tilings";
+ "timberc" = dontDistribute super."timberc";
+ "time-extras" = dontDistribute super."time-extras";
+ "time-exts" = dontDistribute super."time-exts";
+ "time-http" = dontDistribute super."time-http";
+ "time-interval" = dontDistribute super."time-interval";
+ "time-io-access" = dontDistribute super."time-io-access";
+ "time-patterns" = dontDistribute super."time-patterns";
+ "time-qq" = dontDistribute super."time-qq";
+ "time-recurrence" = dontDistribute super."time-recurrence";
+ "time-series" = dontDistribute super."time-series";
+ "time-units" = dontDistribute super."time-units";
+ "time-w3c" = dontDistribute super."time-w3c";
+ "timecalc" = dontDistribute super."timecalc";
+ "timeconsole" = dontDistribute super."timeconsole";
+ "timeless" = dontDistribute super."timeless";
+ "timelike" = dontDistribute super."timelike";
+ "timelike-time" = dontDistribute super."timelike-time";
+ "timemap" = dontDistribute super."timemap";
+ "timeout" = dontDistribute super."timeout";
+ "timeout-control" = dontDistribute super."timeout-control";
+ "timeout-with-results" = dontDistribute super."timeout-with-results";
+ "timeparsers" = dontDistribute super."timeparsers";
+ "timeplot" = dontDistribute super."timeplot";
+ "timers" = dontDistribute super."timers";
+ "timers-updatable" = dontDistribute super."timers-updatable";
+ "timestamp-subprocess-lines" = dontDistribute super."timestamp-subprocess-lines";
+ "timestamper" = dontDistribute super."timestamper";
+ "timezone-olson-th" = dontDistribute super."timezone-olson-th";
+ "timing-convenience" = dontDistribute super."timing-convenience";
+ "tinyMesh" = dontDistribute super."tinyMesh";
+ "tinytemplate" = dontDistribute super."tinytemplate";
+ "tip-haskell-frontend" = dontDistribute super."tip-haskell-frontend";
+ "tip-lib" = dontDistribute super."tip-lib";
+ "titlecase" = dontDistribute super."titlecase";
+ "tkhs" = dontDistribute super."tkhs";
+ "tkyprof" = dontDistribute super."tkyprof";
+ "tld" = dontDistribute super."tld";
+ "tls" = doDistribute super."tls_1_3_2";
+ "tls-debug" = doDistribute super."tls-debug_0_4_0";
+ "tls-extra" = dontDistribute super."tls-extra";
+ "tmpl" = dontDistribute super."tmpl";
+ "tn" = dontDistribute super."tn";
+ "tnet" = dontDistribute super."tnet";
+ "to-haskell" = dontDistribute super."to-haskell";
+ "to-string-class" = dontDistribute super."to-string-class";
+ "to-string-instances" = dontDistribute super."to-string-instances";
+ "todos" = dontDistribute super."todos";
+ "tofromxml" = dontDistribute super."tofromxml";
+ "toilet" = dontDistribute super."toilet";
+ "tokenify" = dontDistribute super."tokenify";
+ "tokenize" = dontDistribute super."tokenize";
+ "toktok" = dontDistribute super."toktok";
+ "tokyocabinet-haskell" = dontDistribute super."tokyocabinet-haskell";
+ "tokyotyrant-haskell" = dontDistribute super."tokyotyrant-haskell";
+ "tomato-rubato-openal" = dontDistribute super."tomato-rubato-openal";
+ "toml" = dontDistribute super."toml";
+ "toolshed" = dontDistribute super."toolshed";
+ "topkata" = dontDistribute super."topkata";
+ "torch" = dontDistribute super."torch";
+ "total" = dontDistribute super."total";
+ "total-map" = dontDistribute super."total-map";
+ "total-maps" = dontDistribute super."total-maps";
+ "touched" = dontDistribute super."touched";
+ "toysolver" = dontDistribute super."toysolver";
+ "tpdb" = dontDistribute super."tpdb";
+ "trace" = dontDistribute super."trace";
+ "trace-call" = dontDistribute super."trace-call";
+ "trace-function-call" = dontDistribute super."trace-function-call";
+ "traced" = dontDistribute super."traced";
+ "tracer" = dontDistribute super."tracer";
+ "tracker" = dontDistribute super."tracker";
+ "tracy" = dontDistribute super."tracy";
+ "trajectory" = dontDistribute super."trajectory";
+ "transactional-events" = dontDistribute super."transactional-events";
+ "transf" = dontDistribute super."transf";
+ "transformations" = dontDistribute super."transformations";
+ "transformers-abort" = dontDistribute super."transformers-abort";
+ "transformers-compose" = dontDistribute super."transformers-compose";
+ "transformers-convert" = dontDistribute super."transformers-convert";
+ "transformers-free" = dontDistribute super."transformers-free";
+ "transformers-runnable" = dontDistribute super."transformers-runnable";
+ "transformers-supply" = dontDistribute super."transformers-supply";
+ "transient" = dontDistribute super."transient";
+ "translatable-intset" = dontDistribute super."translatable-intset";
+ "translate" = dontDistribute super."translate";
+ "travis" = dontDistribute super."travis";
+ "travis-meta-yaml" = dontDistribute super."travis-meta-yaml";
+ "trawl" = dontDistribute super."trawl";
+ "traypoweroff" = dontDistribute super."traypoweroff";
+ "tree-monad" = dontDistribute super."tree-monad";
+ "treemap-html" = dontDistribute super."treemap-html";
+ "treemap-html-tools" = dontDistribute super."treemap-html-tools";
+ "treersec" = dontDistribute super."treersec";
+ "treeviz" = dontDistribute super."treeviz";
+ "tremulous-query" = dontDistribute super."tremulous-query";
+ "trhsx" = dontDistribute super."trhsx";
+ "triangulation" = dontDistribute super."triangulation";
+ "tries" = dontDistribute super."tries";
+ "trimpolya" = dontDistribute super."trimpolya";
+ "tripLL" = dontDistribute super."tripLL";
+ "trivia" = dontDistribute super."trivia";
+ "trivial-constraint" = dontDistribute super."trivial-constraint";
+ "tropical" = dontDistribute super."tropical";
+ "true-name" = dontDistribute super."true-name";
+ "truelevel" = dontDistribute super."truelevel";
+ "trurl" = dontDistribute super."trurl";
+ "truthful" = dontDistribute super."truthful";
+ "tsession" = dontDistribute super."tsession";
+ "tsession-happstack" = dontDistribute super."tsession-happstack";
+ "tskiplist" = dontDistribute super."tskiplist";
+ "tslogger" = dontDistribute super."tslogger";
+ "tsp-viz" = dontDistribute super."tsp-viz";
+ "tsparse" = dontDistribute super."tsparse";
+ "tst" = dontDistribute super."tst";
+ "tsvsql" = dontDistribute super."tsvsql";
+ "ttrie" = dontDistribute super."ttrie";
+ "tttool" = doDistribute super."tttool_1_4_0_5";
+ "tubes" = dontDistribute super."tubes";
+ "tuntap" = dontDistribute super."tuntap";
+ "tup-functor" = dontDistribute super."tup-functor";
+ "tuple-gen" = dontDistribute super."tuple-gen";
+ "tuple-generic" = dontDistribute super."tuple-generic";
+ "tuple-hlist" = dontDistribute super."tuple-hlist";
+ "tuple-lenses" = dontDistribute super."tuple-lenses";
+ "tuple-morph" = dontDistribute super."tuple-morph";
+ "tuple-th" = dontDistribute super."tuple-th";
+ "tupleinstances" = dontDistribute super."tupleinstances";
+ "turing" = dontDistribute super."turing";
+ "turing-music" = dontDistribute super."turing-music";
+ "turkish-deasciifier" = dontDistribute super."turkish-deasciifier";
+ "turni" = dontDistribute super."turni";
+ "tweak" = dontDistribute super."tweak";
+ "twentefp" = dontDistribute super."twentefp";
+ "twentefp-eventloop-graphics" = dontDistribute super."twentefp-eventloop-graphics";
+ "twentefp-eventloop-trees" = dontDistribute super."twentefp-eventloop-trees";
+ "twentefp-graphs" = dontDistribute super."twentefp-graphs";
+ "twentefp-number" = dontDistribute super."twentefp-number";
+ "twentefp-rosetree" = dontDistribute super."twentefp-rosetree";
+ "twentefp-trees" = dontDistribute super."twentefp-trees";
+ "twentefp-websockets" = dontDistribute super."twentefp-websockets";
+ "twhs" = dontDistribute super."twhs";
+ "twidge" = dontDistribute super."twidge";
+ "twilight-stm" = dontDistribute super."twilight-stm";
+ "twilio" = dontDistribute super."twilio";
+ "twill" = dontDistribute super."twill";
+ "twiml" = dontDistribute super."twiml";
+ "twine" = dontDistribute super."twine";
+ "twisty" = dontDistribute super."twisty";
+ "twitch" = dontDistribute super."twitch";
+ "twitter" = dontDistribute super."twitter";
+ "twitter-conduit" = dontDistribute super."twitter-conduit";
+ "twitter-enumerator" = dontDistribute super."twitter-enumerator";
+ "twitter-types" = dontDistribute super."twitter-types";
+ "twitter-types-lens" = dontDistribute super."twitter-types-lens";
+ "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-aligned" = dontDistribute super."type-aligned";
+ "type-booleans" = dontDistribute super."type-booleans";
+ "type-cereal" = dontDistribute super."type-cereal";
+ "type-combinators" = dontDistribute super."type-combinators";
+ "type-combinators-quote" = dontDistribute super."type-combinators-quote";
+ "type-digits" = dontDistribute super."type-digits";
+ "type-equality" = dontDistribute super."type-equality";
+ "type-equality-check" = dontDistribute super."type-equality-check";
+ "type-fun" = dontDistribute super."type-fun";
+ "type-functions" = dontDistribute super."type-functions";
+ "type-hint" = dontDistribute super."type-hint";
+ "type-int" = dontDistribute super."type-int";
+ "type-iso" = dontDistribute super."type-iso";
+ "type-level" = dontDistribute super."type-level";
+ "type-level-bst" = dontDistribute super."type-level-bst";
+ "type-level-natural-number" = dontDistribute super."type-level-natural-number";
+ "type-level-natural-number-induction" = dontDistribute super."type-level-natural-number-induction";
+ "type-level-natural-number-operations" = dontDistribute super."type-level-natural-number-operations";
+ "type-level-sets" = dontDistribute super."type-level-sets";
+ "type-level-tf" = dontDistribute super."type-level-tf";
+ "type-list" = doDistribute super."type-list_0_2_0_0";
+ "type-natural" = dontDistribute super."type-natural";
+ "type-ord" = dontDistribute super."type-ord";
+ "type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal";
+ "type-prelude" = dontDistribute super."type-prelude";
+ "type-settheory" = dontDistribute super."type-settheory";
+ "type-spine" = dontDistribute super."type-spine";
+ "type-structure" = dontDistribute super."type-structure";
+ "type-sub-th" = dontDistribute super."type-sub-th";
+ "type-unary" = dontDistribute super."type-unary";
+ "typeable-th" = dontDistribute super."typeable-th";
+ "typed-spreadsheet" = dontDistribute super."typed-spreadsheet";
+ "typed-wire" = dontDistribute super."typed-wire";
+ "typed-wire-utils" = dontDistribute super."typed-wire-utils";
+ "typedquery" = dontDistribute super."typedquery";
+ "typehash" = dontDistribute super."typehash";
+ "typelevel" = dontDistribute super."typelevel";
+ "typelevel-tensor" = dontDistribute super."typelevel-tensor";
+ "typelits-witnesses" = dontDistribute super."typelits-witnesses";
+ "typeof" = dontDistribute super."typeof";
+ "typeparams" = dontDistribute super."typeparams";
+ "typesafe-endian" = dontDistribute super."typesafe-endian";
+ "typescript-docs" = dontDistribute super."typescript-docs";
+ "typical" = dontDistribute super."typical";
+ "typography-geometry" = dontDistribute super."typography-geometry";
+ "tz" = dontDistribute super."tz";
+ "tzdata" = dontDistribute super."tzdata";
+ "uAgda" = dontDistribute super."uAgda";
+ "ua-parser" = dontDistribute super."ua-parser";
+ "uacpid" = dontDistribute super."uacpid";
+ "uberlast" = dontDistribute super."uberlast";
+ "uconv" = dontDistribute super."uconv";
+ "udbus" = dontDistribute super."udbus";
+ "udbus-model" = dontDistribute super."udbus-model";
+ "udcode" = dontDistribute super."udcode";
+ "udev" = dontDistribute super."udev";
+ "uglymemo" = dontDistribute super."uglymemo";
+ "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";
+ "unexceptionalio" = dontDistribute super."unexceptionalio";
+ "unfoldable" = dontDistribute super."unfoldable";
+ "ungadtagger" = dontDistribute super."ungadtagger";
+ "uni-events" = dontDistribute super."uni-events";
+ "uni-graphs" = dontDistribute super."uni-graphs";
+ "uni-htk" = dontDistribute super."uni-htk";
+ "uni-posixutil" = dontDistribute super."uni-posixutil";
+ "uni-reactor" = dontDistribute super."uni-reactor";
+ "uni-uDrawGraph" = dontDistribute super."uni-uDrawGraph";
+ "uni-util" = dontDistribute super."uni-util";
+ "unicode" = dontDistribute super."unicode";
+ "unicode-names" = dontDistribute super."unicode-names";
+ "unicode-normalization" = dontDistribute super."unicode-normalization";
+ "unicode-prelude" = dontDistribute super."unicode-prelude";
+ "unicode-properties" = dontDistribute super."unicode-properties";
+ "unicode-symbols" = dontDistribute super."unicode-symbols";
+ "unicoder" = dontDistribute super."unicoder";
+ "unification-fd" = dontDistribute super."unification-fd";
+ "uniform-io" = dontDistribute super."uniform-io";
+ "uniform-pair" = dontDistribute super."uniform-pair";
+ "union-find-array" = dontDistribute super."union-find-array";
+ "union-map" = dontDistribute super."union-map";
+ "unique" = dontDistribute super."unique";
+ "unique-logic" = dontDistribute super."unique-logic";
+ "unique-logic-tf" = dontDistribute super."unique-logic-tf";
+ "uniqueid" = dontDistribute super."uniqueid";
+ "unit" = dontDistribute super."unit";
+ "units" = dontDistribute super."units";
+ "units-attoparsec" = dontDistribute super."units-attoparsec";
+ "units-defs" = dontDistribute super."units-defs";
+ "units-parser" = dontDistribute super."units-parser";
+ "unittyped" = dontDistribute super."unittyped";
+ "universal-binary" = dontDistribute super."universal-binary";
+ "universe" = dontDistribute super."universe";
+ "universe-base" = dontDistribute super."universe-base";
+ "universe-instances-base" = dontDistribute super."universe-instances-base";
+ "universe-instances-extended" = dontDistribute super."universe-instances-extended";
+ "universe-instances-trans" = dontDistribute super."universe-instances-trans";
+ "universe-reverse-instances" = dontDistribute super."universe-reverse-instances";
+ "universe-th" = dontDistribute super."universe-th";
+ "unix-bytestring" = dontDistribute super."unix-bytestring";
+ "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";
+ "unlit" = dontDistribute super."unlit";
+ "unm-hip" = dontDistribute super."unm-hip";
+ "unordered-containers-rematch" = dontDistribute super."unordered-containers-rematch";
+ "unordered-graphs" = dontDistribute super."unordered-graphs";
+ "unpack-funcs" = dontDistribute super."unpack-funcs";
+ "unroll-ghc-plugin" = dontDistribute super."unroll-ghc-plugin";
+ "unsafe" = dontDistribute super."unsafe";
+ "unsafe-promises" = dontDistribute super."unsafe-promises";
+ "unsafely" = dontDistribute super."unsafely";
+ "unsafeperformst" = dontDistribute super."unsafeperformst";
+ "unscramble" = dontDistribute super."unscramble";
+ "unusable-pkg" = dontDistribute super."unusable-pkg";
+ "uom-plugin" = dontDistribute super."uom-plugin";
+ "up" = dontDistribute super."up";
+ "up-grade" = dontDistribute super."up-grade";
+ "uploadcare" = dontDistribute super."uploadcare";
+ "upskirt" = dontDistribute super."upskirt";
+ "ureader" = dontDistribute super."ureader";
+ "urembed" = dontDistribute super."urembed";
+ "uri" = dontDistribute super."uri";
+ "uri-conduit" = dontDistribute super."uri-conduit";
+ "uri-enumerator" = dontDistribute super."uri-enumerator";
+ "uri-enumerator-file" = dontDistribute super."uri-enumerator-file";
+ "uri-template" = dontDistribute super."uri-template";
+ "url-generic" = dontDistribute super."url-generic";
+ "urlcheck" = dontDistribute super."urlcheck";
+ "urldecode" = dontDistribute super."urldecode";
+ "urldisp-happstack" = dontDistribute super."urldisp-happstack";
+ "urlencoded" = dontDistribute super."urlencoded";
+ "urlpath" = doDistribute super."urlpath_2_1_0";
+ "urn" = dontDistribute super."urn";
+ "urxml" = dontDistribute super."urxml";
+ "usb" = dontDistribute super."usb";
+ "usb-enumerator" = dontDistribute super."usb-enumerator";
+ "usb-hid" = dontDistribute super."usb-hid";
+ "usb-id-database" = dontDistribute super."usb-id-database";
+ "usb-iteratee" = dontDistribute super."usb-iteratee";
+ "usb-safe" = dontDistribute super."usb-safe";
+ "userid" = dontDistribute super."userid";
+ "utc" = dontDistribute super."utc";
+ "utf8-env" = dontDistribute super."utf8-env";
+ "utf8-prelude" = dontDistribute super."utf8-prelude";
+ "utility-ht" = dontDistribute super."utility-ht";
+ "uu-cco" = dontDistribute super."uu-cco";
+ "uu-cco-examples" = dontDistribute super."uu-cco-examples";
+ "uu-cco-hut-parsing" = dontDistribute super."uu-cco-hut-parsing";
+ "uu-cco-uu-parsinglib" = dontDistribute super."uu-cco-uu-parsinglib";
+ "uu-options" = dontDistribute super."uu-options";
+ "uu-tc" = dontDistribute super."uu-tc";
+ "uuagc" = dontDistribute super."uuagc";
+ "uuagc-bootstrap" = dontDistribute super."uuagc-bootstrap";
+ "uuagc-cabal" = dontDistribute super."uuagc-cabal";
+ "uuagc-diagrams" = dontDistribute super."uuagc-diagrams";
+ "uuagd" = dontDistribute super."uuagd";
+ "uuid-aeson" = dontDistribute super."uuid-aeson";
+ "uuid-le" = dontDistribute super."uuid-le";
+ "uuid-orphans" = dontDistribute super."uuid-orphans";
+ "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";
+ "validate-input" = doDistribute super."validate-input_0_2_0_0";
+ "validated-literals" = dontDistribute super."validated-literals";
+ "validation" = dontDistribute super."validation";
+ "validations" = dontDistribute super."validations";
+ "value-supply" = dontDistribute super."value-supply";
+ "vampire" = dontDistribute super."vampire";
+ "var" = dontDistribute super."var";
+ "varan" = dontDistribute super."varan";
+ "variable-precision" = dontDistribute super."variable-precision";
+ "variables" = dontDistribute super."variables";
+ "varying" = dontDistribute super."varying";
+ "vaultaire-common" = dontDistribute super."vaultaire-common";
+ "vcache" = dontDistribute super."vcache";
+ "vcache-trie" = dontDistribute super."vcache-trie";
+ "vcard" = dontDistribute super."vcard";
+ "vcd" = dontDistribute super."vcd";
+ "vcs-revision" = dontDistribute super."vcs-revision";
+ "vcs-web-hook-parse" = dontDistribute super."vcs-web-hook-parse";
+ "vcsgui" = dontDistribute super."vcsgui";
+ "vcswrapper" = dontDistribute super."vcswrapper";
+ "vect" = dontDistribute super."vect";
+ "vect-floating" = dontDistribute super."vect-floating";
+ "vect-floating-accelerate" = dontDistribute super."vect-floating-accelerate";
+ "vect-opengl" = dontDistribute super."vect-opengl";
+ "vector" = doDistribute super."vector_0_10_12_3";
+ "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-fftw" = dontDistribute super."vector-fftw";
+ "vector-functorlazy" = dontDistribute super."vector-functorlazy";
+ "vector-heterogenous" = dontDistribute super."vector-heterogenous";
+ "vector-instances-collections" = dontDistribute super."vector-instances-collections";
+ "vector-mmap" = dontDistribute super."vector-mmap";
+ "vector-random" = dontDistribute super."vector-random";
+ "vector-read-instances" = dontDistribute super."vector-read-instances";
+ "vector-space-map" = dontDistribute super."vector-space-map";
+ "vector-space-opengl" = dontDistribute super."vector-space-opengl";
+ "vector-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" = dontDistribute super."vinyl";
+ "vinyl-gl" = dontDistribute super."vinyl-gl";
+ "vinyl-json" = dontDistribute super."vinyl-json";
+ "vinyl-utils" = dontDistribute super."vinyl-utils";
+ "vinyl-vectors" = dontDistribute super."vinyl-vectors";
+ "virthualenv" = dontDistribute super."virthualenv";
+ "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" = dontDistribute super."vty";
+ "vty-examples" = dontDistribute super."vty-examples";
+ "vty-menu" = dontDistribute super."vty-menu";
+ "vty-ui" = dontDistribute super."vty-ui";
+ "vty-ui-extras" = dontDistribute super."vty-ui-extras";
+ "waddle" = dontDistribute super."waddle";
+ "wai-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-caching" = dontDistribute super."wai-middleware-caching";
+ "wai-middleware-caching-lru" = dontDistribute super."wai-middleware-caching-lru";
+ "wai-middleware-caching-redis" = dontDistribute super."wai-middleware-caching-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-metrics" = dontDistribute super."wai-middleware-metrics";
+ "wai-middleware-preprocessor" = dontDistribute super."wai-middleware-preprocessor";
+ "wai-middleware-route" = dontDistribute super."wai-middleware-route";
+ "wai-middleware-static" = doDistribute super."wai-middleware-static_0_7_0_1";
+ "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-routes" = doDistribute super."wai-routes_0_7_3";
+ "wai-session-alt" = dontDistribute super."wai-session-alt";
+ "wai-session-clientsession" = dontDistribute super."wai-session-clientsession";
+ "wai-session-postgresql" = dontDistribute super."wai-session-postgresql";
+ "wai-session-tokyocabinet" = dontDistribute super."wai-session-tokyocabinet";
+ "wai-static-cache" = dontDistribute super."wai-static-cache";
+ "wai-static-pages" = dontDistribute super."wai-static-pages";
+ "wai-test" = dontDistribute super."wai-test";
+ "wai-thrift" = dontDistribute super."wai-thrift";
+ "wai-throttler" = dontDistribute super."wai-throttler";
+ "wai-transformers" = dontDistribute super."wai-transformers";
+ "wai-util" = dontDistribute super."wai-util";
+ "wait-handle" = dontDistribute super."wait-handle";
+ "waitfree" = dontDistribute super."waitfree";
+ "warc" = dontDistribute super."warc";
+ "warp" = doDistribute super."warp_3_1_3_1";
+ "warp-dynamic" = dontDistribute super."warp-dynamic";
+ "warp-static" = dontDistribute super."warp-static";
+ "warp-tls" = doDistribute super."warp-tls_3_1_3";
+ "warp-tls-uid" = dontDistribute super."warp-tls-uid";
+ "watchdog" = dontDistribute super."watchdog";
+ "watcher" = dontDistribute super."watcher";
+ "watchit" = dontDistribute super."watchit";
+ "wavconvert" = dontDistribute super."wavconvert";
+ "wavefront" = dontDistribute super."wavefront";
+ "wavesurfer" = dontDistribute super."wavesurfer";
+ "wavy" = dontDistribute super."wavy";
+ "wcwidth" = dontDistribute super."wcwidth";
+ "weather-api" = dontDistribute super."weather-api";
+ "web-browser-in-haskell" = dontDistribute super."web-browser-in-haskell";
+ "web-css" = dontDistribute super."web-css";
+ "web-encodings" = dontDistribute super."web-encodings";
+ "web-mongrel2" = dontDistribute super."web-mongrel2";
+ "web-page" = dontDistribute super."web-page";
+ "web-plugins" = dontDistribute super."web-plugins";
+ "web-routes" = dontDistribute super."web-routes";
+ "web-routes-boomerang" = dontDistribute super."web-routes-boomerang";
+ "web-routes-happstack" = dontDistribute super."web-routes-happstack";
+ "web-routes-hsp" = dontDistribute super."web-routes-hsp";
+ "web-routes-mtl" = dontDistribute super."web-routes-mtl";
+ "web-routes-quasi" = dontDistribute super."web-routes-quasi";
+ "web-routes-regular" = dontDistribute super."web-routes-regular";
+ "web-routes-th" = dontDistribute super."web-routes-th";
+ "web-routes-transformers" = dontDistribute super."web-routes-transformers";
+ "web-routes-wai" = dontDistribute super."web-routes-wai";
+ "webapp" = dontDistribute super."webapp";
+ "webcrank" = dontDistribute super."webcrank";
+ "webcrank-dispatch" = dontDistribute super."webcrank-dispatch";
+ "webcrank-wai" = dontDistribute super."webcrank-wai";
+ "webdriver" = doDistribute super."webdriver_0_6_3_1";
+ "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";
+ "websockets-snap" = dontDistribute super."websockets-snap";
+ "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";
+ "wheb-mongo" = dontDistribute super."wheb-mongo";
+ "wheb-redis" = dontDistribute super."wheb-redis";
+ "wheb-strapped" = dontDistribute super."wheb-strapped";
+ "while-lang-parser" = dontDistribute super."while-lang-parser";
+ "whim" = dontDistribute super."whim";
+ "whiskers" = dontDistribute super."whiskers";
+ "whitespace" = dontDistribute super."whitespace";
+ "whois" = dontDistribute super."whois";
+ "why3" = dontDistribute super."why3";
+ "wigner-symbols" = dontDistribute super."wigner-symbols";
+ "wikipedia4epub" = dontDistribute super."wikipedia4epub";
+ "win-hp-path" = dontDistribute super."win-hp-path";
+ "windowslive" = dontDistribute super."windowslive";
+ "winerror" = dontDistribute super."winerror";
+ "winio" = dontDistribute super."winio";
+ "wiring" = dontDistribute super."wiring";
+ "withdependencies" = dontDistribute super."withdependencies";
+ "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-trie" = dontDistribute super."word-trie";
+ "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";
+ "wsedit" = dontDistribute super."wsedit";
+ "wtk" = dontDistribute super."wtk";
+ "wtk-gtk" = dontDistribute super."wtk-gtk";
+ "wumpus-basic" = dontDistribute super."wumpus-basic";
+ "wumpus-core" = dontDistribute super."wumpus-core";
+ "wumpus-drawing" = dontDistribute super."wumpus-drawing";
+ "wumpus-microprint" = dontDistribute super."wumpus-microprint";
+ "wumpus-tree" = dontDistribute super."wumpus-tree";
+ "wuss" = dontDistribute super."wuss";
+ "wx" = dontDistribute super."wx";
+ "wxAsteroids" = dontDistribute super."wxAsteroids";
+ "wxFruit" = dontDistribute super."wxFruit";
+ "wxc" = dontDistribute super."wxc";
+ "wxcore" = dontDistribute super."wxcore";
+ "wxdirect" = dontDistribute super."wxdirect";
+ "wxhnotepad" = dontDistribute super."wxhnotepad";
+ "wxturtle" = dontDistribute super."wxturtle";
+ "wybor" = dontDistribute super."wybor";
+ "wyvern" = dontDistribute super."wyvern";
+ "x-dsp" = dontDistribute super."x-dsp";
+ "x11-xim" = dontDistribute super."x11-xim";
+ "x11-xinput" = dontDistribute super."x11-xinput";
+ "x509-util" = dontDistribute super."x509-util";
+ "xattr" = dontDistribute super."xattr";
+ "xbattbar" = dontDistribute super."xbattbar";
+ "xcb-types" = dontDistribute super."xcb-types";
+ "xcffib" = dontDistribute super."xcffib";
+ "xchat-plugin" = dontDistribute super."xchat-plugin";
+ "xcp" = dontDistribute super."xcp";
+ "xdg-basedir" = dontDistribute super."xdg-basedir";
+ "xdg-userdirs" = dontDistribute super."xdg-userdirs";
+ "xdot" = dontDistribute super."xdot";
+ "xfconf" = dontDistribute super."xfconf";
+ "xhaskell-library" = dontDistribute super."xhaskell-library";
+ "xhb" = dontDistribute super."xhb";
+ "xhb-atom-cache" = dontDistribute super."xhb-atom-cache";
+ "xhb-ewmh" = dontDistribute super."xhb-ewmh";
+ "xhtml" = doDistribute super."xhtml_3000_2_1";
+ "xhtml-combinators" = dontDistribute super."xhtml-combinators";
+ "xilinx-lava" = dontDistribute super."xilinx-lava";
+ "xine" = dontDistribute super."xine";
+ "xing-api" = dontDistribute super."xing-api";
+ "xinput-conduit" = dontDistribute super."xinput-conduit";
+ "xkbcommon" = dontDistribute super."xkbcommon";
+ "xkcd" = dontDistribute super."xkcd";
+ "xlsx" = doDistribute super."xlsx_0_1_2";
+ "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_2";
+ "xml-conduit-parse" = dontDistribute super."xml-conduit-parse";
+ "xml-conduit-writer" = dontDistribute super."xml-conduit-writer";
+ "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" = dontDistribute super."xmonad";
+ "xmonad-bluetilebranch" = dontDistribute super."xmonad-bluetilebranch";
+ "xmonad-contrib" = dontDistribute super."xmonad-contrib";
+ "xmonad-contrib-bluetilebranch" = dontDistribute super."xmonad-contrib-bluetilebranch";
+ "xmonad-contrib-gpl" = dontDistribute super."xmonad-contrib-gpl";
+ "xmonad-entryhelper" = dontDistribute super."xmonad-entryhelper";
+ "xmonad-eval" = dontDistribute super."xmonad-eval";
+ "xmonad-extras" = dontDistribute super."xmonad-extras";
+ "xmonad-screenshot" = dontDistribute super."xmonad-screenshot";
+ "xmonad-utils" = dontDistribute super."xmonad-utils";
+ "xmonad-wallpaper" = dontDistribute super."xmonad-wallpaper";
+ "xmonad-windownames" = dontDistribute super."xmonad-windownames";
+ "xmpipe" = dontDistribute super."xmpipe";
+ "xorshift" = dontDistribute super."xorshift";
+ "xosd" = dontDistribute super."xosd";
+ "xournal-builder" = dontDistribute super."xournal-builder";
+ "xournal-convert" = dontDistribute super."xournal-convert";
+ "xournal-parser" = dontDistribute super."xournal-parser";
+ "xournal-render" = dontDistribute super."xournal-render";
+ "xournal-types" = dontDistribute super."xournal-types";
+ "xsact" = dontDistribute super."xsact";
+ "xsd" = dontDistribute super."xsd";
+ "xsha1" = dontDistribute super."xsha1";
+ "xslt" = dontDistribute super."xslt";
+ "xtc" = dontDistribute super."xtc";
+ "xtest" = dontDistribute super."xtest";
+ "xturtle" = dontDistribute super."xturtle";
+ "xxhash" = dontDistribute super."xxhash";
+ "y0l0bot" = dontDistribute super."y0l0bot";
+ "yabi" = dontDistribute super."yabi";
+ "yabi-muno" = dontDistribute super."yabi-muno";
+ "yahoo-finance-conduit" = dontDistribute super."yahoo-finance-conduit";
+ "yahoo-web-search" = dontDistribute super."yahoo-web-search";
+ "yajl" = dontDistribute super."yajl";
+ "yajl-enumerator" = dontDistribute super."yajl-enumerator";
+ "yall" = dontDistribute super."yall";
+ "yamemo" = dontDistribute super."yamemo";
+ "yaml-config" = dontDistribute super."yaml-config";
+ "yaml-light" = dontDistribute super."yaml-light";
+ "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";
+ "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";
+ "yes-precure5-command" = dontDistribute super."yes-precure5-command";
+ "yesod-angular" = dontDistribute super."yesod-angular";
+ "yesod-angular-ui" = dontDistribute super."yesod-angular-ui";
+ "yesod-auth-account-fork" = dontDistribute super."yesod-auth-account-fork";
+ "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt";
+ "yesod-auth-kerberos" = dontDistribute super."yesod-auth-kerberos";
+ "yesod-auth-ldap" = dontDistribute super."yesod-auth-ldap";
+ "yesod-auth-ldap-mediocre" = dontDistribute super."yesod-auth-ldap-mediocre";
+ "yesod-auth-ldap-native" = dontDistribute super."yesod-auth-ldap-native";
+ "yesod-auth-pam" = dontDistribute super."yesod-auth-pam";
+ "yesod-auth-smbclient" = dontDistribute super."yesod-auth-smbclient";
+ "yesod-auth-zendesk" = dontDistribute super."yesod-auth-zendesk";
+ "yesod-bootstrap" = dontDistribute super."yesod-bootstrap";
+ "yesod-comments" = dontDistribute super."yesod-comments";
+ "yesod-content-pdf" = dontDistribute super."yesod-content-pdf";
+ "yesod-continuations" = dontDistribute super."yesod-continuations";
+ "yesod-crud" = dontDistribute super."yesod-crud";
+ "yesod-crud-persist" = dontDistribute super."yesod-crud-persist";
+ "yesod-csp" = dontDistribute super."yesod-csp";
+ "yesod-datatables" = dontDistribute super."yesod-datatables";
+ "yesod-dsl" = dontDistribute super."yesod-dsl";
+ "yesod-examples" = dontDistribute super."yesod-examples";
+ "yesod-form-json" = dontDistribute super."yesod-form-json";
+ "yesod-goodies" = dontDistribute super."yesod-goodies";
+ "yesod-json" = dontDistribute super."yesod-json";
+ "yesod-links" = dontDistribute super."yesod-links";
+ "yesod-lucid" = dontDistribute super."yesod-lucid";
+ "yesod-markdown" = dontDistribute super."yesod-markdown";
+ "yesod-media-simple" = dontDistribute super."yesod-media-simple";
+ "yesod-newsfeed" = doDistribute super."yesod-newsfeed_1_4_0_1";
+ "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-table" = doDistribute super."yesod-table_1_0_6";
+ "yesod-tableview" = dontDistribute super."yesod-tableview";
+ "yesod-test" = doDistribute super."yesod-test_1_4_4";
+ "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" = dontDistribute super."yi";
+ "yi-contrib" = dontDistribute super."yi-contrib";
+ "yi-emacs-colours" = dontDistribute super."yi-emacs-colours";
+ "yi-fuzzy-open" = dontDistribute super."yi-fuzzy-open";
+ "yi-gtk" = dontDistribute super."yi-gtk";
+ "yi-language" = dontDistribute super."yi-language";
+ "yi-monokai" = dontDistribute super."yi-monokai";
+ "yi-rope" = dontDistribute super."yi-rope";
+ "yi-snippet" = dontDistribute super."yi-snippet";
+ "yi-solarized" = dontDistribute super."yi-solarized";
+ "yi-spolsky" = dontDistribute super."yi-spolsky";
+ "yi-vty" = dontDistribute super."yi-vty";
+ "yices" = dontDistribute super."yices";
+ "yices-easy" = dontDistribute super."yices-easy";
+ "yices-painless" = dontDistribute super."yices-painless";
+ "yjftp" = dontDistribute super."yjftp";
+ "yjftp-libs" = dontDistribute super."yjftp-libs";
+ "yjsvg" = dontDistribute super."yjsvg";
+ "yjtools" = dontDistribute super."yjtools";
+ "yocto" = dontDistribute super."yocto";
+ "yoko" = dontDistribute super."yoko";
+ "york-lava" = dontDistribute super."york-lava";
+ "youtube" = dontDistribute super."youtube";
+ "yql" = dontDistribute super."yql";
+ "yst" = dontDistribute super."yst";
+ "yuiGrid" = dontDistribute super."yuiGrid";
+ "yuuko" = dontDistribute super."yuuko";
+ "yxdb-utils" = dontDistribute super."yxdb-utils";
+ "z3" = dontDistribute super."z3";
+ "zalgo" = dontDistribute super."zalgo";
+ "zampolit" = dontDistribute super."zampolit";
+ "zasni-gerna" = dontDistribute super."zasni-gerna";
+ "zcache" = dontDistribute super."zcache";
+ "zenc" = dontDistribute super."zenc";
+ "zendesk-api" = dontDistribute super."zendesk-api";
+ "zeno" = dontDistribute super."zeno";
+ "zerobin" = dontDistribute super."zerobin";
+ "zeromq-haskell" = dontDistribute super."zeromq-haskell";
+ "zeromq3-conduit" = dontDistribute super."zeromq3-conduit";
+ "zeromq3-haskell" = dontDistribute super."zeromq3-haskell";
+ "zeroth" = dontDistribute super."zeroth";
+ "zigbee-znet25" = dontDistribute super."zigbee-znet25";
+ "zim-parser" = dontDistribute super."zim-parser";
+ "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-3.2.nix b/pkgs/development/haskell-modules/configuration-lts-3.2.nix
index 7f3faa96206..29e012e9069 100644
--- a/pkgs/development/haskell-modules/configuration-lts-3.2.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-3.2.nix
@@ -319,6 +319,7 @@ self: super: {
"FormalGrammars" = dontDistribute super."FormalGrammars";
"Foster" = dontDistribute super."Foster";
"FpMLv53" = dontDistribute super."FpMLv53";
+ "FractalArt" = dontDistribute super."FractalArt";
"Fractaler" = dontDistribute super."Fractaler";
"Frames" = dontDistribute super."Frames";
"Frank" = dontDistribute super."Frank";
@@ -468,6 +469,7 @@ self: super: {
"HTTP-Simple" = dontDistribute super."HTTP-Simple";
"HTab" = dontDistribute super."HTab";
"HTicTacToe" = dontDistribute super."HTicTacToe";
+ "HUnit" = doDistribute super."HUnit_1_2_5_2";
"HUnit-Diff" = dontDistribute super."HUnit-Diff";
"HUnit-Plus" = dontDistribute super."HUnit-Plus";
"HUnit-approx" = dontDistribute super."HUnit-approx";
@@ -500,6 +502,7 @@ self: super: {
"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";
@@ -1390,6 +1393,7 @@ self: super: {
"authenticate-ldap" = dontDistribute super."authenticate-ldap";
"authinfo-hs" = dontDistribute super."authinfo-hs";
"authoring" = dontDistribute super."authoring";
+ "auto-update" = doDistribute super."auto-update_0_1_2_2";
"autonix-deps" = dontDistribute super."autonix-deps";
"autonix-deps-kf5" = dontDistribute super."autonix-deps-kf5";
"autoproc" = dontDistribute super."autoproc";
@@ -1453,6 +1457,8 @@ self: super: {
"base-generics" = dontDistribute super."base-generics";
"base-io-access" = dontDistribute super."base-io-access";
"base-noprelude" = dontDistribute super."base-noprelude";
+ "base-orphans" = doDistribute super."base-orphans_0_4_4";
+ "base-prelude" = doDistribute super."base-prelude_0_1_19";
"base32-bytestring" = dontDistribute super."base32-bytestring";
"base58-bytestring" = dontDistribute super."base58-bytestring";
"base58address" = dontDistribute super."base58address";
@@ -1496,6 +1502,7 @@ self: super: {
"bidirectionalization-combined" = dontDistribute super."bidirectionalization-combined";
"bidispec" = dontDistribute super."bidispec";
"bidispec-extras" = dontDistribute super."bidispec-extras";
+ "bifunctors" = doDistribute super."bifunctors_5";
"billboard-parser" = dontDistribute super."billboard-parser";
"billeksah-forms" = dontDistribute super."billeksah-forms";
"billeksah-main" = dontDistribute super."billeksah-main";
@@ -1661,6 +1668,7 @@ self: super: {
"bot" = dontDistribute super."bot";
"both" = dontDistribute super."both";
"botpp" = dontDistribute super."botpp";
+ "bound" = doDistribute super."bound_1_0_6";
"bound-gen" = dontDistribute super."bound-gen";
"bounded-tchan" = dontDistribute super."bounded-tchan";
"boundingboxes" = dontDistribute super."boundingboxes";
@@ -1684,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_0";
"buffer-builder-aeson" = dontDistribute super."buffer-builder-aeson";
"buffon" = dontDistribute super."buffon";
"bugzilla" = dontDistribute super."bugzilla";
@@ -1849,6 +1858,7 @@ self: super: {
"cef" = dontDistribute super."cef";
"ceilometer-common" = dontDistribute super."ceilometer-common";
"cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo";
+ "cerberus" = dontDistribute super."cerberus";
"cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_3";
"cereal-derive" = dontDistribute super."cereal-derive";
"cereal-enumerator" = dontDistribute super."cereal-enumerator";
@@ -1952,6 +1962,7 @@ self: super: {
"clipper" = dontDistribute super."clipper";
"clippings" = dontDistribute super."clippings";
"clist" = dontDistribute super."clist";
+ "clock" = doDistribute super."clock_0_5_1";
"clocked" = dontDistribute super."clocked";
"clogparse" = dontDistribute super."clogparse";
"clone-all" = dontDistribute super."clone-all";
@@ -2051,6 +2062,7 @@ self: super: {
"concrete-typerep" = dontDistribute super."concrete-typerep";
"concurrent-barrier" = dontDistribute super."concurrent-barrier";
"concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache";
+ "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9";
"concurrent-machines" = dontDistribute super."concurrent-machines";
"concurrent-output" = dontDistribute super."concurrent-output";
"concurrent-sa" = dontDistribute super."concurrent-sa";
@@ -2420,6 +2432,8 @@ self: super: {
"delta-h" = dontDistribute super."delta-h";
"demarcate" = dontDistribute super."demarcate";
"denominate" = dontDistribute super."denominate";
+ "dependent-map" = doDistribute super."dependent-map_0_1_1_3";
+ "dependent-sum" = doDistribute super."dependent-sum_0_2_1_0";
"depends" = dontDistribute super."depends";
"dephd" = dontDistribute super."dephd";
"dequeue" = dontDistribute super."dequeue";
@@ -2467,6 +2481,7 @@ self: super: {
"diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube";
"diagrams-svg" = doDistribute super."diagrams-svg_1_3_1_4";
"diagrams-tikz" = dontDistribute super."diagrams-tikz";
+ "dialog" = dontDistribute super."dialog";
"dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit";
"dicom" = dontDistribute super."dicom";
"dictparser" = dontDistribute super."dictparser";
@@ -2649,6 +2664,7 @@ self: super: {
"edenskel" = dontDistribute super."edenskel";
"edentv" = dontDistribute super."edentv";
"edge" = dontDistribute super."edge";
+ "edis" = dontDistribute super."edis";
"edit-distance-vector" = dontDistribute super."edit-distance-vector";
"edit-lenses" = dontDistribute super."edit-lenses";
"edit-lenses-demo" = dontDistribute super."edit-lenses-demo";
@@ -2832,6 +2848,7 @@ self: super: {
"failable-list" = dontDistribute super."failable-list";
"failure" = dontDistribute super."failure";
"fair-predicates" = dontDistribute super."fair-predicates";
+ "fake-type" = dontDistribute super."fake-type";
"faker" = dontDistribute super."faker";
"falling-turnip" = dontDistribute super."falling-turnip";
"fallingblocks" = dontDistribute super."fallingblocks";
@@ -3036,6 +3053,7 @@ self: super: {
"friday-juicypixels" = dontDistribute super."friday-juicypixels";
"friday-scale-dct" = dontDistribute super."friday-scale-dct";
"friendly-time" = dontDistribute super."friendly-time";
+ "frontmatter" = dontDistribute super."frontmatter";
"frp-arduino" = dontDistribute super."frp-arduino";
"frpnow" = dontDistribute super."frpnow";
"frpnow-gloss" = dontDistribute super."frpnow-gloss";
@@ -3246,6 +3264,7 @@ self: super: {
"gitlib-s3" = dontDistribute super."gitlib-s3";
"gitlib-sample" = dontDistribute super."gitlib-sample";
"gitlib-utils" = dontDistribute super."gitlib-utils";
+ "gitter" = dontDistribute super."gitter";
"gl-capture" = dontDistribute super."gl-capture";
"glade" = dontDistribute super."glade";
"gladexml-accessor" = dontDistribute super."gladexml-accessor";
@@ -3453,6 +3472,7 @@ self: super: {
"gstreamer" = dontDistribute super."gstreamer";
"gt-tools" = dontDistribute super."gt-tools";
"gtfs" = dontDistribute super."gtfs";
+ "gtk" = doDistribute super."gtk_0_13_9";
"gtk-helpers" = dontDistribute super."gtk-helpers";
"gtk-jsinput" = dontDistribute super."gtk-jsinput";
"gtk-largeTreeStore" = dontDistribute super."gtk-largeTreeStore";
@@ -3545,6 +3565,7 @@ self: super: {
"hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP";
"hackage-server" = dontDistribute super."hackage-server";
"hackage-sparks" = dontDistribute super."hackage-sparks";
+ "hackage-whatsnew" = dontDistribute super."hackage-whatsnew";
"hackage2hwn" = dontDistribute super."hackage2hwn";
"hackage2twitter" = dontDistribute super."hackage2twitter";
"hackager" = dontDistribute super."hackager";
@@ -3700,6 +3721,7 @@ self: super: {
"haskell-in-space" = dontDistribute super."haskell-in-space";
"haskell-modbus" = dontDistribute super."haskell-modbus";
"haskell-mpi" = dontDistribute super."haskell-mpi";
+ "haskell-names" = doDistribute super."haskell-names_0_5_3";
"haskell-neo4j-client" = doDistribute super."haskell-neo4j-client_0_3_1_4";
"haskell-openflow" = dontDistribute super."haskell-openflow";
"haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter";
@@ -3774,6 +3796,7 @@ self: super: {
"hasloGUI" = dontDistribute super."hasloGUI";
"hasparql-client" = dontDistribute super."hasparql-client";
"haspell" = dontDistribute super."haspell";
+ "hasql" = doDistribute super."hasql_0_7_4";
"hasql-pool" = dontDistribute super."hasql-pool";
"hasql-postgres" = doDistribute super."hasql-postgres_0_10_5";
"hasql-postgres-options" = dontDistribute super."hasql-postgres-options";
@@ -3988,6 +4011,8 @@ self: super: {
"hlibBladeRF" = dontDistribute super."hlibBladeRF";
"hlibev" = dontDistribute super."hlibev";
"hlibfam" = dontDistribute super."hlibfam";
+ "hlibgit2" = doDistribute super."hlibgit2_0_18_0_14";
+ "hlibsass" = doDistribute super."hlibsass_0_1_4_0";
"hlint" = doDistribute super."hlint_1_9_21";
"hlogger" = dontDistribute super."hlogger";
"hlongurl" = dontDistribute super."hlongurl";
@@ -4154,6 +4179,7 @@ self: super: {
"hsConfigure" = dontDistribute super."hsConfigure";
"hsSqlite3" = dontDistribute super."hsSqlite3";
"hsXenCtrl" = dontDistribute super."hsXenCtrl";
+ "hsass" = doDistribute super."hsass_0_3_0";
"hsay" = dontDistribute super."hsay";
"hsb2hs" = dontDistribute super."hsb2hs";
"hsbackup" = dontDistribute super."hsbackup";
@@ -4194,6 +4220,7 @@ self: super: {
"hsdip" = dontDistribute super."hsdip";
"hsdns" = dontDistribute super."hsdns";
"hsdns-cache" = dontDistribute super."hsdns-cache";
+ "hsebaysdk" = doDistribute super."hsebaysdk_0_3_0_0";
"hsemail-ns" = dontDistribute super."hsemail-ns";
"hsenv" = dontDistribute super."hsenv";
"hserv" = dontDistribute super."hserv";
@@ -4251,6 +4278,7 @@ self: super: {
"hspec-meta" = doDistribute super."hspec-meta_2_1_7";
"hspec-monad-control" = dontDistribute super."hspec-monad-control";
"hspec-server" = dontDistribute super."hspec-server";
+ "hspec-setup" = dontDistribute super."hspec-setup";
"hspec-shouldbe" = dontDistribute super."hspec-shouldbe";
"hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0";
"hspec-snap" = doDistribute super."hspec-snap_0_3_3_0";
@@ -4346,6 +4374,7 @@ self: super: {
"http-server" = dontDistribute super."http-server";
"http-shed" = dontDistribute super."http-shed";
"http-test" = dontDistribute super."http-test";
+ "http-types" = doDistribute super."http-types_0_8_6";
"http-wget" = dontDistribute super."http-wget";
"http2" = doDistribute super."http2_1_0_4";
"httpd-shed" = dontDistribute super."httpd-shed";
@@ -4474,6 +4503,7 @@ self: super: {
"imgurder" = dontDistribute super."imgurder";
"imm" = dontDistribute super."imm";
"imparse" = dontDistribute super."imparse";
+ "imperative-edsl" = dontDistribute super."imperative-edsl";
"imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl";
"implicit" = dontDistribute super."implicit";
"implicit-params" = dontDistribute super."implicit-params";
@@ -4649,6 +4679,7 @@ self: super: {
"json-assertions" = dontDistribute super."json-assertions";
"json-autotype" = doDistribute super."json-autotype_1_0_7";
"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";
@@ -4658,6 +4689,7 @@ self: super: {
"json-rpc" = dontDistribute super."json-rpc";
"json-rpc-client" = dontDistribute super."json-rpc-client";
"json-rpc-server" = dontDistribute super."json-rpc-server";
+ "json-schema" = doDistribute super."json-schema_0_7_4_0";
"json-sop" = dontDistribute super."json-sop";
"json-state" = dontDistribute super."json-state";
"json-stream" = dontDistribute super."json-stream";
@@ -4772,6 +4804,7 @@ self: super: {
"lambdacube-examples" = dontDistribute super."lambdacube-examples";
"lambdacube-gl" = dontDistribute super."lambdacube-gl";
"lambdacube-samples" = dontDistribute super."lambdacube-samples";
+ "lambdatex" = dontDistribute super."lambdatex";
"lambdatwit" = dontDistribute super."lambdatwit";
"lambdiff" = dontDistribute super."lambdiff";
"lame-tester" = dontDistribute super."lame-tester";
@@ -4813,6 +4846,7 @@ self: super: {
"language-thrift" = dontDistribute super."language-thrift";
"language-typescript" = dontDistribute super."language-typescript";
"language-vhdl" = dontDistribute super."language-vhdl";
+ "largeword" = doDistribute super."largeword_1_2_3";
"lat" = dontDistribute super."lat";
"latest-npm-version" = dontDistribute super."latest-npm-version";
"latex" = dontDistribute super."latex";
@@ -4963,6 +4997,7 @@ self: super: {
"list-fusion-probe" = doDistribute super."list-fusion-probe_0_1_0_3";
"list-grouping" = dontDistribute super."list-grouping";
"list-mux" = dontDistribute super."list-mux";
+ "list-prompt" = dontDistribute super."list-prompt";
"list-remote-forwards" = dontDistribute super."list-remote-forwards";
"list-t-attoparsec" = dontDistribute super."list-t-attoparsec";
"list-t-html-parser" = dontDistribute super."list-t-html-parser";
@@ -5006,6 +5041,7 @@ self: super: {
"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-domain" = doDistribute super."log-domain_0_10_2";
@@ -5050,6 +5086,7 @@ self: super: {
"lub" = dontDistribute super."lub";
"lucid" = doDistribute super."lucid_2_9_2";
"lucid-foundation" = dontDistribute super."lucid-foundation";
+ "lucid-svg" = doDistribute super."lucid-svg_0_5_0_0";
"lucienne" = dontDistribute super."lucienne";
"luhn" = dontDistribute super."luhn";
"lui" = dontDistribute super."lui";
@@ -5450,6 +5487,7 @@ self: super: {
"nbt" = dontDistribute super."nbt";
"nc-indicators" = dontDistribute super."nc-indicators";
"ncurses" = dontDistribute super."ncurses";
+ "ndjson-conduit" = doDistribute super."ndjson-conduit_0_1_0_2";
"neat" = dontDistribute super."neat";
"neat-interpolation" = doDistribute super."neat-interpolation_0_2_2_1";
"needle" = dontDistribute super."needle";
@@ -5623,6 +5661,7 @@ self: super: {
"omnifmt" = dontDistribute super."omnifmt";
"on-a-horse" = dontDistribute super."on-a-horse";
"on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel";
+ "once" = dontDistribute super."once";
"one-liner" = dontDistribute super."one-liner";
"one-time-password" = dontDistribute super."one-time-password";
"oneOfN" = dontDistribute super."oneOfN";
@@ -5677,6 +5716,7 @@ self: super: {
"optimusprime" = dontDistribute super."optimusprime";
"optional" = dontDistribute super."optional";
"options-time" = dontDistribute super."options-time";
+ "optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"orc" = dontDistribute super."orc";
"orchestrate" = dontDistribute super."orchestrate";
@@ -5867,6 +5907,7 @@ self: super: {
"pgstream" = dontDistribute super."pgstream";
"phasechange" = dontDistribute super."phasechange";
"phizzle" = dontDistribute super."phizzle";
+ "phoityne" = dontDistribute super."phoityne";
"phone-numbers" = dontDistribute super."phone-numbers";
"phone-push" = dontDistribute super."phone-push";
"phonetic-code" = dontDistribute super."phonetic-code";
@@ -5887,6 +5928,7 @@ self: super: {
"pipe-enumerator" = dontDistribute super."pipe-enumerator";
"pipeclip" = dontDistribute super."pipeclip";
"pipes" = doDistribute super."pipes_4_1_6";
+ "pipes-aeson" = doDistribute super."pipes-aeson_0_4_1_4";
"pipes-async" = dontDistribute super."pipes-async";
"pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming";
"pipes-binary" = doDistribute super."pipes-binary_0_4_0_4";
@@ -5895,6 +5937,7 @@ self: super: {
"pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv";
"pipes-cereal" = dontDistribute super."pipes-cereal";
"pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus";
+ "pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_3";
"pipes-conduit" = dontDistribute super."pipes-conduit";
"pipes-core" = dontDistribute super."pipes-core";
"pipes-courier" = dontDistribute super."pipes-courier";
@@ -6005,6 +6048,7 @@ self: super: {
"possible" = dontDistribute super."possible";
"post-mess-age" = doDistribute super."post-mess-age_0_1_0_0";
"postcodes" = dontDistribute super."postcodes";
+ "postgresql-binary" = doDistribute super."postgresql-binary_0_5_2_1";
"postgresql-config" = dontDistribute super."postgresql-config";
"postgresql-connector" = dontDistribute super."postgresql-connector";
"postgresql-copy-escape" = dontDistribute super."postgresql-copy-escape";
@@ -6441,6 +6485,7 @@ self: super: {
"rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster";
"retry" = doDistribute super."retry_0_6";
"retryer" = dontDistribute super."retryer";
+ "rev-state" = doDistribute super."rev-state_0_1";
"revdectime" = dontDistribute super."revdectime";
"reverse-apply" = dontDistribute super."reverse-apply";
"reverse-geocoding" = dontDistribute super."reverse-geocoding";
@@ -6669,6 +6714,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serv" = dontDistribute super."serv";
"servant" = doDistribute super."servant_0_4_4";
"servant-JuicyPixels" = doDistribute super."servant-JuicyPixels_0_1_0_0";
"servant-blaze" = dontDistribute super."servant-blaze";
@@ -6879,6 +6925,7 @@ self: super: {
"snaplet-coffee" = dontDistribute super."snaplet-coffee";
"snaplet-css-min" = dontDistribute super."snaplet-css-min";
"snaplet-environments" = dontDistribute super."snaplet-environments";
+ "snaplet-fay" = doDistribute super."snaplet-fay_0_3_3_12";
"snaplet-ghcjs" = dontDistribute super."snaplet-ghcjs";
"snaplet-hasql" = dontDistribute super."snaplet-hasql";
"snaplet-haxl" = dontDistribute super."snaplet-haxl";
@@ -7168,6 +7215,7 @@ self: super: {
"swift-lda" = dontDistribute super."swift-lda";
"swish" = dontDistribute super."swish";
"sws" = dontDistribute super."sws";
+ "syb" = doDistribute super."syb_0_5_1";
"syb-extras" = dontDistribute super."syb-extras";
"syb-with-class" = dontDistribute super."syb-with-class";
"syb-with-class-instances-text" = dontDistribute super."syb-with-class-instances-text";
@@ -7618,6 +7666,7 @@ self: super: {
"typehash" = dontDistribute super."typehash";
"typelevel" = dontDistribute super."typelevel";
"typelevel-tensor" = dontDistribute super."typelevel-tensor";
+ "typelits-witnesses" = dontDistribute super."typelits-witnesses";
"typeof" = dontDistribute super."typeof";
"typeparams" = dontDistribute super."typeparams";
"typesafe-endian" = dontDistribute super."typesafe-endian";
@@ -7845,6 +7894,7 @@ self: super: {
"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" = dontDistribute super."vty";
diff --git a/pkgs/development/haskell-modules/configuration-lts-3.3.nix b/pkgs/development/haskell-modules/configuration-lts-3.3.nix
index 0818d564b15..5b7a20c9342 100644
--- a/pkgs/development/haskell-modules/configuration-lts-3.3.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-3.3.nix
@@ -319,6 +319,7 @@ self: super: {
"FormalGrammars" = dontDistribute super."FormalGrammars";
"Foster" = dontDistribute super."Foster";
"FpMLv53" = dontDistribute super."FpMLv53";
+ "FractalArt" = dontDistribute super."FractalArt";
"Fractaler" = dontDistribute super."Fractaler";
"Frames" = dontDistribute super."Frames";
"Frank" = dontDistribute super."Frank";
@@ -468,6 +469,7 @@ self: super: {
"HTTP-Simple" = dontDistribute super."HTTP-Simple";
"HTab" = dontDistribute super."HTab";
"HTicTacToe" = dontDistribute super."HTicTacToe";
+ "HUnit" = doDistribute super."HUnit_1_2_5_2";
"HUnit-Diff" = dontDistribute super."HUnit-Diff";
"HUnit-Plus" = dontDistribute super."HUnit-Plus";
"HUnit-approx" = dontDistribute super."HUnit-approx";
@@ -500,6 +502,7 @@ self: super: {
"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";
@@ -1389,6 +1392,7 @@ self: super: {
"authenticate-ldap" = dontDistribute super."authenticate-ldap";
"authinfo-hs" = dontDistribute super."authinfo-hs";
"authoring" = dontDistribute super."authoring";
+ "auto-update" = doDistribute super."auto-update_0_1_2_2";
"autonix-deps" = dontDistribute super."autonix-deps";
"autonix-deps-kf5" = dontDistribute super."autonix-deps-kf5";
"autoproc" = dontDistribute super."autoproc";
@@ -1452,6 +1456,8 @@ self: super: {
"base-generics" = dontDistribute super."base-generics";
"base-io-access" = dontDistribute super."base-io-access";
"base-noprelude" = dontDistribute super."base-noprelude";
+ "base-orphans" = doDistribute super."base-orphans_0_4_4";
+ "base-prelude" = doDistribute super."base-prelude_0_1_19";
"base32-bytestring" = dontDistribute super."base32-bytestring";
"base58-bytestring" = dontDistribute super."base58-bytestring";
"base58address" = dontDistribute super."base58address";
@@ -1495,6 +1501,7 @@ self: super: {
"bidirectionalization-combined" = dontDistribute super."bidirectionalization-combined";
"bidispec" = dontDistribute super."bidispec";
"bidispec-extras" = dontDistribute super."bidispec-extras";
+ "bifunctors" = doDistribute super."bifunctors_5";
"billboard-parser" = dontDistribute super."billboard-parser";
"billeksah-forms" = dontDistribute super."billeksah-forms";
"billeksah-main" = dontDistribute super."billeksah-main";
@@ -1660,6 +1667,7 @@ self: super: {
"bot" = dontDistribute super."bot";
"both" = dontDistribute super."both";
"botpp" = dontDistribute super."botpp";
+ "bound" = doDistribute super."bound_1_0_6";
"bound-gen" = dontDistribute super."bound-gen";
"bounded-tchan" = dontDistribute super."bounded-tchan";
"boundingboxes" = dontDistribute super."boundingboxes";
@@ -1683,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_0";
"buffer-builder-aeson" = dontDistribute super."buffer-builder-aeson";
"buffon" = dontDistribute super."buffon";
"bugzilla" = dontDistribute super."bugzilla";
@@ -1848,6 +1857,7 @@ self: super: {
"cef" = dontDistribute super."cef";
"ceilometer-common" = dontDistribute super."ceilometer-common";
"cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo";
+ "cerberus" = dontDistribute super."cerberus";
"cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_3";
"cereal-derive" = dontDistribute super."cereal-derive";
"cereal-enumerator" = dontDistribute super."cereal-enumerator";
@@ -1951,6 +1961,7 @@ self: super: {
"clipper" = dontDistribute super."clipper";
"clippings" = dontDistribute super."clippings";
"clist" = dontDistribute super."clist";
+ "clock" = doDistribute super."clock_0_5_1";
"clocked" = dontDistribute super."clocked";
"clogparse" = dontDistribute super."clogparse";
"clone-all" = dontDistribute super."clone-all";
@@ -2049,6 +2060,7 @@ self: super: {
"concrete-typerep" = dontDistribute super."concrete-typerep";
"concurrent-barrier" = dontDistribute super."concurrent-barrier";
"concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache";
+ "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9";
"concurrent-machines" = dontDistribute super."concurrent-machines";
"concurrent-output" = dontDistribute super."concurrent-output";
"concurrent-sa" = dontDistribute super."concurrent-sa";
@@ -2416,6 +2428,8 @@ self: super: {
"delta-h" = dontDistribute super."delta-h";
"demarcate" = dontDistribute super."demarcate";
"denominate" = dontDistribute super."denominate";
+ "dependent-map" = doDistribute super."dependent-map_0_1_1_3";
+ "dependent-sum" = doDistribute super."dependent-sum_0_2_1_0";
"depends" = dontDistribute super."depends";
"dephd" = dontDistribute super."dephd";
"dequeue" = dontDistribute super."dequeue";
@@ -2463,6 +2477,7 @@ self: super: {
"diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube";
"diagrams-svg" = doDistribute super."diagrams-svg_1_3_1_4";
"diagrams-tikz" = dontDistribute super."diagrams-tikz";
+ "dialog" = dontDistribute super."dialog";
"dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit";
"dicom" = dontDistribute super."dicom";
"dictparser" = dontDistribute super."dictparser";
@@ -2645,6 +2660,7 @@ self: super: {
"edenskel" = dontDistribute super."edenskel";
"edentv" = dontDistribute super."edentv";
"edge" = dontDistribute super."edge";
+ "edis" = dontDistribute super."edis";
"edit-distance-vector" = dontDistribute super."edit-distance-vector";
"edit-lenses" = dontDistribute super."edit-lenses";
"edit-lenses-demo" = dontDistribute super."edit-lenses-demo";
@@ -2828,6 +2844,7 @@ self: super: {
"failable-list" = dontDistribute super."failable-list";
"failure" = dontDistribute super."failure";
"fair-predicates" = dontDistribute super."fair-predicates";
+ "fake-type" = dontDistribute super."fake-type";
"faker" = dontDistribute super."faker";
"falling-turnip" = dontDistribute super."falling-turnip";
"fallingblocks" = dontDistribute super."fallingblocks";
@@ -3031,6 +3048,7 @@ self: super: {
"friday-juicypixels" = dontDistribute super."friday-juicypixels";
"friday-scale-dct" = dontDistribute super."friday-scale-dct";
"friendly-time" = dontDistribute super."friendly-time";
+ "frontmatter" = dontDistribute super."frontmatter";
"frp-arduino" = dontDistribute super."frp-arduino";
"frpnow" = dontDistribute super."frpnow";
"frpnow-gloss" = dontDistribute super."frpnow-gloss";
@@ -3241,6 +3259,7 @@ self: super: {
"gitlib-s3" = dontDistribute super."gitlib-s3";
"gitlib-sample" = dontDistribute super."gitlib-sample";
"gitlib-utils" = dontDistribute super."gitlib-utils";
+ "gitter" = dontDistribute super."gitter";
"gl-capture" = dontDistribute super."gl-capture";
"glade" = dontDistribute super."glade";
"gladexml-accessor" = dontDistribute super."gladexml-accessor";
@@ -3448,6 +3467,7 @@ self: super: {
"gstreamer" = dontDistribute super."gstreamer";
"gt-tools" = dontDistribute super."gt-tools";
"gtfs" = dontDistribute super."gtfs";
+ "gtk" = doDistribute super."gtk_0_13_9";
"gtk-helpers" = dontDistribute super."gtk-helpers";
"gtk-jsinput" = dontDistribute super."gtk-jsinput";
"gtk-largeTreeStore" = dontDistribute super."gtk-largeTreeStore";
@@ -3540,6 +3560,7 @@ self: super: {
"hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP";
"hackage-server" = dontDistribute super."hackage-server";
"hackage-sparks" = dontDistribute super."hackage-sparks";
+ "hackage-whatsnew" = dontDistribute super."hackage-whatsnew";
"hackage2hwn" = dontDistribute super."hackage2hwn";
"hackage2twitter" = dontDistribute super."hackage2twitter";
"hackager" = dontDistribute super."hackager";
@@ -3695,6 +3716,7 @@ self: super: {
"haskell-in-space" = dontDistribute super."haskell-in-space";
"haskell-modbus" = dontDistribute super."haskell-modbus";
"haskell-mpi" = dontDistribute super."haskell-mpi";
+ "haskell-names" = doDistribute super."haskell-names_0_5_3";
"haskell-neo4j-client" = doDistribute super."haskell-neo4j-client_0_3_1_4";
"haskell-openflow" = dontDistribute super."haskell-openflow";
"haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter";
@@ -3769,6 +3791,7 @@ self: super: {
"hasloGUI" = dontDistribute super."hasloGUI";
"hasparql-client" = dontDistribute super."hasparql-client";
"haspell" = dontDistribute super."haspell";
+ "hasql" = doDistribute super."hasql_0_7_4";
"hasql-pool" = dontDistribute super."hasql-pool";
"hasql-postgres" = doDistribute super."hasql-postgres_0_10_5";
"hasql-postgres-options" = dontDistribute super."hasql-postgres-options";
@@ -3982,6 +4005,8 @@ self: super: {
"hlibBladeRF" = dontDistribute super."hlibBladeRF";
"hlibev" = dontDistribute super."hlibev";
"hlibfam" = dontDistribute super."hlibfam";
+ "hlibgit2" = doDistribute super."hlibgit2_0_18_0_14";
+ "hlibsass" = doDistribute super."hlibsass_0_1_4_0";
"hlint" = doDistribute super."hlint_1_9_21";
"hlogger" = dontDistribute super."hlogger";
"hlongurl" = dontDistribute super."hlongurl";
@@ -4147,6 +4172,7 @@ self: super: {
"hsConfigure" = dontDistribute super."hsConfigure";
"hsSqlite3" = dontDistribute super."hsSqlite3";
"hsXenCtrl" = dontDistribute super."hsXenCtrl";
+ "hsass" = doDistribute super."hsass_0_3_0";
"hsay" = dontDistribute super."hsay";
"hsb2hs" = dontDistribute super."hsb2hs";
"hsbackup" = dontDistribute super."hsbackup";
@@ -4187,6 +4213,7 @@ self: super: {
"hsdip" = dontDistribute super."hsdip";
"hsdns" = dontDistribute super."hsdns";
"hsdns-cache" = dontDistribute super."hsdns-cache";
+ "hsebaysdk" = doDistribute super."hsebaysdk_0_3_0_0";
"hsemail-ns" = dontDistribute super."hsemail-ns";
"hsenv" = dontDistribute super."hsenv";
"hserv" = dontDistribute super."hserv";
@@ -4244,6 +4271,7 @@ self: super: {
"hspec-meta" = doDistribute super."hspec-meta_2_1_7";
"hspec-monad-control" = dontDistribute super."hspec-monad-control";
"hspec-server" = dontDistribute super."hspec-server";
+ "hspec-setup" = dontDistribute super."hspec-setup";
"hspec-shouldbe" = dontDistribute super."hspec-shouldbe";
"hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0";
"hspec-snap" = doDistribute super."hspec-snap_0_3_3_0";
@@ -4339,6 +4367,7 @@ self: super: {
"http-server" = dontDistribute super."http-server";
"http-shed" = dontDistribute super."http-shed";
"http-test" = dontDistribute super."http-test";
+ "http-types" = doDistribute super."http-types_0_8_6";
"http-wget" = dontDistribute super."http-wget";
"http2" = doDistribute super."http2_1_0_4";
"httpd-shed" = dontDistribute super."httpd-shed";
@@ -4467,6 +4496,7 @@ self: super: {
"imgurder" = dontDistribute super."imgurder";
"imm" = dontDistribute super."imm";
"imparse" = dontDistribute super."imparse";
+ "imperative-edsl" = dontDistribute super."imperative-edsl";
"imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl";
"implicit" = dontDistribute super."implicit";
"implicit-params" = dontDistribute super."implicit-params";
@@ -4642,6 +4672,7 @@ self: super: {
"json-assertions" = dontDistribute super."json-assertions";
"json-autotype" = doDistribute super."json-autotype_1_0_7";
"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";
@@ -4651,6 +4682,7 @@ self: super: {
"json-rpc" = dontDistribute super."json-rpc";
"json-rpc-client" = dontDistribute super."json-rpc-client";
"json-rpc-server" = dontDistribute super."json-rpc-server";
+ "json-schema" = doDistribute super."json-schema_0_7_4_0";
"json-sop" = dontDistribute super."json-sop";
"json-state" = dontDistribute super."json-state";
"json-stream" = dontDistribute super."json-stream";
@@ -4765,6 +4797,7 @@ self: super: {
"lambdacube-examples" = dontDistribute super."lambdacube-examples";
"lambdacube-gl" = dontDistribute super."lambdacube-gl";
"lambdacube-samples" = dontDistribute super."lambdacube-samples";
+ "lambdatex" = dontDistribute super."lambdatex";
"lambdatwit" = dontDistribute super."lambdatwit";
"lambdiff" = dontDistribute super."lambdiff";
"lame-tester" = dontDistribute super."lame-tester";
@@ -4806,6 +4839,7 @@ self: super: {
"language-thrift" = dontDistribute super."language-thrift";
"language-typescript" = dontDistribute super."language-typescript";
"language-vhdl" = dontDistribute super."language-vhdl";
+ "largeword" = doDistribute super."largeword_1_2_3";
"lat" = dontDistribute super."lat";
"latest-npm-version" = dontDistribute super."latest-npm-version";
"latex" = dontDistribute super."latex";
@@ -4956,6 +4990,7 @@ self: super: {
"list-fusion-probe" = doDistribute super."list-fusion-probe_0_1_0_3";
"list-grouping" = dontDistribute super."list-grouping";
"list-mux" = dontDistribute super."list-mux";
+ "list-prompt" = dontDistribute super."list-prompt";
"list-remote-forwards" = dontDistribute super."list-remote-forwards";
"list-t-attoparsec" = dontDistribute super."list-t-attoparsec";
"list-t-html-parser" = dontDistribute super."list-t-html-parser";
@@ -4999,6 +5034,7 @@ self: super: {
"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-domain" = doDistribute super."log-domain_0_10_2";
@@ -5043,6 +5079,7 @@ self: super: {
"lub" = dontDistribute super."lub";
"lucid" = doDistribute super."lucid_2_9_2";
"lucid-foundation" = dontDistribute super."lucid-foundation";
+ "lucid-svg" = doDistribute super."lucid-svg_0_5_0_0";
"lucienne" = dontDistribute super."lucienne";
"luhn" = dontDistribute super."luhn";
"lui" = dontDistribute super."lui";
@@ -5443,6 +5480,7 @@ self: super: {
"nbt" = dontDistribute super."nbt";
"nc-indicators" = dontDistribute super."nc-indicators";
"ncurses" = dontDistribute super."ncurses";
+ "ndjson-conduit" = doDistribute super."ndjson-conduit_0_1_0_2";
"neat" = dontDistribute super."neat";
"neat-interpolation" = doDistribute super."neat-interpolation_0_2_3";
"needle" = dontDistribute super."needle";
@@ -5616,6 +5654,7 @@ self: super: {
"omnifmt" = dontDistribute super."omnifmt";
"on-a-horse" = dontDistribute super."on-a-horse";
"on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel";
+ "once" = dontDistribute super."once";
"one-liner" = dontDistribute super."one-liner";
"one-time-password" = dontDistribute super."one-time-password";
"oneOfN" = dontDistribute super."oneOfN";
@@ -5670,6 +5709,7 @@ self: super: {
"optimusprime" = dontDistribute super."optimusprime";
"optional" = dontDistribute super."optional";
"options-time" = dontDistribute super."options-time";
+ "optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"orc" = dontDistribute super."orc";
"orchestrate" = dontDistribute super."orchestrate";
@@ -5860,6 +5900,7 @@ self: super: {
"pgstream" = dontDistribute super."pgstream";
"phasechange" = dontDistribute super."phasechange";
"phizzle" = dontDistribute super."phizzle";
+ "phoityne" = dontDistribute super."phoityne";
"phone-numbers" = dontDistribute super."phone-numbers";
"phone-push" = dontDistribute super."phone-push";
"phonetic-code" = dontDistribute super."phonetic-code";
@@ -5880,6 +5921,7 @@ self: super: {
"pipe-enumerator" = dontDistribute super."pipe-enumerator";
"pipeclip" = dontDistribute super."pipeclip";
"pipes" = doDistribute super."pipes_4_1_6";
+ "pipes-aeson" = doDistribute super."pipes-aeson_0_4_1_4";
"pipes-async" = dontDistribute super."pipes-async";
"pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming";
"pipes-binary" = doDistribute super."pipes-binary_0_4_0_4";
@@ -5888,6 +5930,7 @@ self: super: {
"pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv";
"pipes-cereal" = dontDistribute super."pipes-cereal";
"pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus";
+ "pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_3";
"pipes-conduit" = dontDistribute super."pipes-conduit";
"pipes-core" = dontDistribute super."pipes-core";
"pipes-courier" = dontDistribute super."pipes-courier";
@@ -5998,6 +6041,7 @@ self: super: {
"possible" = dontDistribute super."possible";
"post-mess-age" = doDistribute super."post-mess-age_0_1_0_0";
"postcodes" = dontDistribute super."postcodes";
+ "postgresql-binary" = doDistribute super."postgresql-binary_0_5_2_1";
"postgresql-config" = dontDistribute super."postgresql-config";
"postgresql-connector" = dontDistribute super."postgresql-connector";
"postgresql-copy-escape" = dontDistribute super."postgresql-copy-escape";
@@ -6433,6 +6477,7 @@ self: super: {
"rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster";
"retry" = doDistribute super."retry_0_6";
"retryer" = dontDistribute super."retryer";
+ "rev-state" = doDistribute super."rev-state_0_1";
"revdectime" = dontDistribute super."revdectime";
"reverse-apply" = dontDistribute super."reverse-apply";
"reverse-geocoding" = dontDistribute super."reverse-geocoding";
@@ -6661,6 +6706,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serv" = dontDistribute super."serv";
"servant" = doDistribute super."servant_0_4_4_2";
"servant-JuicyPixels" = doDistribute super."servant-JuicyPixels_0_1_0_0";
"servant-blaze" = dontDistribute super."servant-blaze";
@@ -6871,6 +6917,7 @@ self: super: {
"snaplet-coffee" = dontDistribute super."snaplet-coffee";
"snaplet-css-min" = dontDistribute super."snaplet-css-min";
"snaplet-environments" = dontDistribute super."snaplet-environments";
+ "snaplet-fay" = doDistribute super."snaplet-fay_0_3_3_12";
"snaplet-ghcjs" = dontDistribute super."snaplet-ghcjs";
"snaplet-hasql" = dontDistribute super."snaplet-hasql";
"snaplet-haxl" = dontDistribute super."snaplet-haxl";
@@ -7159,6 +7206,7 @@ self: super: {
"swift-lda" = dontDistribute super."swift-lda";
"swish" = dontDistribute super."swish";
"sws" = dontDistribute super."sws";
+ "syb" = doDistribute super."syb_0_5_1";
"syb-extras" = dontDistribute super."syb-extras";
"syb-with-class" = dontDistribute super."syb-with-class";
"syb-with-class-instances-text" = dontDistribute super."syb-with-class-instances-text";
@@ -7608,6 +7656,7 @@ self: super: {
"typehash" = dontDistribute super."typehash";
"typelevel" = dontDistribute super."typelevel";
"typelevel-tensor" = dontDistribute super."typelevel-tensor";
+ "typelits-witnesses" = dontDistribute super."typelits-witnesses";
"typeof" = dontDistribute super."typeof";
"typeparams" = dontDistribute super."typeparams";
"typesafe-endian" = dontDistribute super."typesafe-endian";
@@ -7834,6 +7883,7 @@ self: super: {
"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" = dontDistribute super."vty";
diff --git a/pkgs/development/haskell-modules/configuration-lts-3.4.nix b/pkgs/development/haskell-modules/configuration-lts-3.4.nix
index dc22d5aa5bf..9f50937f4f6 100644
--- a/pkgs/development/haskell-modules/configuration-lts-3.4.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-3.4.nix
@@ -319,6 +319,7 @@ self: super: {
"FormalGrammars" = dontDistribute super."FormalGrammars";
"Foster" = dontDistribute super."Foster";
"FpMLv53" = dontDistribute super."FpMLv53";
+ "FractalArt" = dontDistribute super."FractalArt";
"Fractaler" = dontDistribute super."Fractaler";
"Frames" = dontDistribute super."Frames";
"Frank" = dontDistribute super."Frank";
@@ -468,6 +469,7 @@ self: super: {
"HTTP-Simple" = dontDistribute super."HTTP-Simple";
"HTab" = dontDistribute super."HTab";
"HTicTacToe" = dontDistribute super."HTicTacToe";
+ "HUnit" = doDistribute super."HUnit_1_2_5_2";
"HUnit-Diff" = dontDistribute super."HUnit-Diff";
"HUnit-Plus" = dontDistribute super."HUnit-Plus";
"HUnit-approx" = dontDistribute super."HUnit-approx";
@@ -500,6 +502,7 @@ self: super: {
"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";
@@ -1389,6 +1392,7 @@ self: super: {
"authenticate-ldap" = dontDistribute super."authenticate-ldap";
"authinfo-hs" = dontDistribute super."authinfo-hs";
"authoring" = dontDistribute super."authoring";
+ "auto-update" = doDistribute super."auto-update_0_1_2_2";
"autonix-deps" = dontDistribute super."autonix-deps";
"autonix-deps-kf5" = dontDistribute super."autonix-deps-kf5";
"autoproc" = dontDistribute super."autoproc";
@@ -1452,6 +1456,8 @@ self: super: {
"base-generics" = dontDistribute super."base-generics";
"base-io-access" = dontDistribute super."base-io-access";
"base-noprelude" = dontDistribute super."base-noprelude";
+ "base-orphans" = doDistribute super."base-orphans_0_4_4";
+ "base-prelude" = doDistribute super."base-prelude_0_1_19";
"base32-bytestring" = dontDistribute super."base32-bytestring";
"base58-bytestring" = dontDistribute super."base58-bytestring";
"base58address" = dontDistribute super."base58address";
@@ -1495,6 +1501,7 @@ self: super: {
"bidirectionalization-combined" = dontDistribute super."bidirectionalization-combined";
"bidispec" = dontDistribute super."bidispec";
"bidispec-extras" = dontDistribute super."bidispec-extras";
+ "bifunctors" = doDistribute super."bifunctors_5";
"billboard-parser" = dontDistribute super."billboard-parser";
"billeksah-forms" = dontDistribute super."billeksah-forms";
"billeksah-main" = dontDistribute super."billeksah-main";
@@ -1660,6 +1667,7 @@ self: super: {
"bot" = dontDistribute super."bot";
"both" = dontDistribute super."both";
"botpp" = dontDistribute super."botpp";
+ "bound" = doDistribute super."bound_1_0_6";
"bound-gen" = dontDistribute super."bound-gen";
"bounded-tchan" = dontDistribute super."bounded-tchan";
"boundingboxes" = dontDistribute super."boundingboxes";
@@ -1683,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_0";
"buffer-builder-aeson" = dontDistribute super."buffer-builder-aeson";
"buffon" = dontDistribute super."buffon";
"bugzilla" = dontDistribute super."bugzilla";
@@ -1847,6 +1856,7 @@ self: super: {
"cef" = dontDistribute super."cef";
"ceilometer-common" = dontDistribute super."ceilometer-common";
"cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo";
+ "cerberus" = dontDistribute super."cerberus";
"cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_3";
"cereal-derive" = dontDistribute super."cereal-derive";
"cereal-enumerator" = dontDistribute super."cereal-enumerator";
@@ -1950,6 +1960,7 @@ self: super: {
"clipper" = dontDistribute super."clipper";
"clippings" = dontDistribute super."clippings";
"clist" = dontDistribute super."clist";
+ "clock" = doDistribute super."clock_0_5_1";
"clocked" = dontDistribute super."clocked";
"clogparse" = dontDistribute super."clogparse";
"clone-all" = dontDistribute super."clone-all";
@@ -2048,6 +2059,7 @@ self: super: {
"concrete-typerep" = dontDistribute super."concrete-typerep";
"concurrent-barrier" = dontDistribute super."concurrent-barrier";
"concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache";
+ "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9";
"concurrent-machines" = dontDistribute super."concurrent-machines";
"concurrent-output" = dontDistribute super."concurrent-output";
"concurrent-sa" = dontDistribute super."concurrent-sa";
@@ -2415,6 +2427,8 @@ self: super: {
"delta-h" = dontDistribute super."delta-h";
"demarcate" = dontDistribute super."demarcate";
"denominate" = dontDistribute super."denominate";
+ "dependent-map" = doDistribute super."dependent-map_0_1_1_3";
+ "dependent-sum" = doDistribute super."dependent-sum_0_2_1_0";
"depends" = dontDistribute super."depends";
"dephd" = dontDistribute super."dephd";
"dequeue" = dontDistribute super."dequeue";
@@ -2462,6 +2476,7 @@ self: super: {
"diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube";
"diagrams-svg" = doDistribute super."diagrams-svg_1_3_1_4";
"diagrams-tikz" = dontDistribute super."diagrams-tikz";
+ "dialog" = dontDistribute super."dialog";
"dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit";
"dicom" = dontDistribute super."dicom";
"dictparser" = dontDistribute super."dictparser";
@@ -2644,6 +2659,7 @@ self: super: {
"edenskel" = dontDistribute super."edenskel";
"edentv" = dontDistribute super."edentv";
"edge" = dontDistribute super."edge";
+ "edis" = dontDistribute super."edis";
"edit-distance-vector" = dontDistribute super."edit-distance-vector";
"edit-lenses" = dontDistribute super."edit-lenses";
"edit-lenses-demo" = dontDistribute super."edit-lenses-demo";
@@ -2827,6 +2843,7 @@ self: super: {
"failable-list" = dontDistribute super."failable-list";
"failure" = dontDistribute super."failure";
"fair-predicates" = dontDistribute super."fair-predicates";
+ "fake-type" = dontDistribute super."fake-type";
"faker" = dontDistribute super."faker";
"falling-turnip" = dontDistribute super."falling-turnip";
"fallingblocks" = dontDistribute super."fallingblocks";
@@ -3030,6 +3047,7 @@ self: super: {
"friday-juicypixels" = dontDistribute super."friday-juicypixels";
"friday-scale-dct" = dontDistribute super."friday-scale-dct";
"friendly-time" = dontDistribute super."friendly-time";
+ "frontmatter" = dontDistribute super."frontmatter";
"frp-arduino" = dontDistribute super."frp-arduino";
"frpnow" = dontDistribute super."frpnow";
"frpnow-gloss" = dontDistribute super."frpnow-gloss";
@@ -3240,6 +3258,7 @@ self: super: {
"gitlib-s3" = dontDistribute super."gitlib-s3";
"gitlib-sample" = dontDistribute super."gitlib-sample";
"gitlib-utils" = dontDistribute super."gitlib-utils";
+ "gitter" = dontDistribute super."gitter";
"gl-capture" = dontDistribute super."gl-capture";
"glade" = dontDistribute super."glade";
"gladexml-accessor" = dontDistribute super."gladexml-accessor";
@@ -3447,6 +3466,7 @@ self: super: {
"gstreamer" = dontDistribute super."gstreamer";
"gt-tools" = dontDistribute super."gt-tools";
"gtfs" = dontDistribute super."gtfs";
+ "gtk" = doDistribute super."gtk_0_13_9";
"gtk-helpers" = dontDistribute super."gtk-helpers";
"gtk-jsinput" = dontDistribute super."gtk-jsinput";
"gtk-largeTreeStore" = dontDistribute super."gtk-largeTreeStore";
@@ -3539,6 +3559,7 @@ self: super: {
"hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP";
"hackage-server" = dontDistribute super."hackage-server";
"hackage-sparks" = dontDistribute super."hackage-sparks";
+ "hackage-whatsnew" = dontDistribute super."hackage-whatsnew";
"hackage2hwn" = dontDistribute super."hackage2hwn";
"hackage2twitter" = dontDistribute super."hackage2twitter";
"hackager" = dontDistribute super."hackager";
@@ -3694,6 +3715,7 @@ self: super: {
"haskell-in-space" = dontDistribute super."haskell-in-space";
"haskell-modbus" = dontDistribute super."haskell-modbus";
"haskell-mpi" = dontDistribute super."haskell-mpi";
+ "haskell-names" = doDistribute super."haskell-names_0_5_3";
"haskell-neo4j-client" = doDistribute super."haskell-neo4j-client_0_3_1_4";
"haskell-openflow" = dontDistribute super."haskell-openflow";
"haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter";
@@ -3768,6 +3790,7 @@ self: super: {
"hasloGUI" = dontDistribute super."hasloGUI";
"hasparql-client" = dontDistribute super."hasparql-client";
"haspell" = dontDistribute super."haspell";
+ "hasql" = doDistribute super."hasql_0_7_4";
"hasql-pool" = dontDistribute super."hasql-pool";
"hasql-postgres" = doDistribute super."hasql-postgres_0_10_5";
"hasql-postgres-options" = dontDistribute super."hasql-postgres-options";
@@ -3981,6 +4004,8 @@ self: super: {
"hlibBladeRF" = dontDistribute super."hlibBladeRF";
"hlibev" = dontDistribute super."hlibev";
"hlibfam" = dontDistribute super."hlibfam";
+ "hlibgit2" = doDistribute super."hlibgit2_0_18_0_14";
+ "hlibsass" = doDistribute super."hlibsass_0_1_4_0";
"hlint" = doDistribute super."hlint_1_9_21";
"hlogger" = dontDistribute super."hlogger";
"hlongurl" = dontDistribute super."hlongurl";
@@ -4146,6 +4171,7 @@ self: super: {
"hsConfigure" = dontDistribute super."hsConfigure";
"hsSqlite3" = dontDistribute super."hsSqlite3";
"hsXenCtrl" = dontDistribute super."hsXenCtrl";
+ "hsass" = doDistribute super."hsass_0_3_0";
"hsay" = dontDistribute super."hsay";
"hsb2hs" = dontDistribute super."hsb2hs";
"hsbackup" = dontDistribute super."hsbackup";
@@ -4186,6 +4212,7 @@ self: super: {
"hsdip" = dontDistribute super."hsdip";
"hsdns" = dontDistribute super."hsdns";
"hsdns-cache" = dontDistribute super."hsdns-cache";
+ "hsebaysdk" = doDistribute super."hsebaysdk_0_3_0_0";
"hsemail-ns" = dontDistribute super."hsemail-ns";
"hsenv" = dontDistribute super."hsenv";
"hserv" = dontDistribute super."hserv";
@@ -4243,6 +4270,7 @@ self: super: {
"hspec-meta" = doDistribute super."hspec-meta_2_1_7";
"hspec-monad-control" = dontDistribute super."hspec-monad-control";
"hspec-server" = dontDistribute super."hspec-server";
+ "hspec-setup" = dontDistribute super."hspec-setup";
"hspec-shouldbe" = dontDistribute super."hspec-shouldbe";
"hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0";
"hspec-snap" = doDistribute super."hspec-snap_0_3_3_0";
@@ -4338,6 +4366,7 @@ self: super: {
"http-server" = dontDistribute super."http-server";
"http-shed" = dontDistribute super."http-shed";
"http-test" = dontDistribute super."http-test";
+ "http-types" = doDistribute super."http-types_0_8_6";
"http-wget" = dontDistribute super."http-wget";
"http2" = doDistribute super."http2_1_0_4";
"httpd-shed" = dontDistribute super."httpd-shed";
@@ -4466,6 +4495,7 @@ self: super: {
"imgurder" = dontDistribute super."imgurder";
"imm" = dontDistribute super."imm";
"imparse" = dontDistribute super."imparse";
+ "imperative-edsl" = dontDistribute super."imperative-edsl";
"imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl";
"implicit" = dontDistribute super."implicit";
"implicit-params" = dontDistribute super."implicit-params";
@@ -4641,6 +4671,7 @@ self: super: {
"json-assertions" = dontDistribute super."json-assertions";
"json-autotype" = doDistribute super."json-autotype_1_0_7";
"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";
@@ -4650,6 +4681,7 @@ self: super: {
"json-rpc" = dontDistribute super."json-rpc";
"json-rpc-client" = dontDistribute super."json-rpc-client";
"json-rpc-server" = dontDistribute super."json-rpc-server";
+ "json-schema" = doDistribute super."json-schema_0_7_4_0";
"json-sop" = dontDistribute super."json-sop";
"json-state" = dontDistribute super."json-state";
"json-stream" = dontDistribute super."json-stream";
@@ -4764,6 +4796,7 @@ self: super: {
"lambdacube-examples" = dontDistribute super."lambdacube-examples";
"lambdacube-gl" = dontDistribute super."lambdacube-gl";
"lambdacube-samples" = dontDistribute super."lambdacube-samples";
+ "lambdatex" = dontDistribute super."lambdatex";
"lambdatwit" = dontDistribute super."lambdatwit";
"lambdiff" = dontDistribute super."lambdiff";
"lame-tester" = dontDistribute super."lame-tester";
@@ -4805,6 +4838,7 @@ self: super: {
"language-thrift" = dontDistribute super."language-thrift";
"language-typescript" = dontDistribute super."language-typescript";
"language-vhdl" = dontDistribute super."language-vhdl";
+ "largeword" = doDistribute super."largeword_1_2_3";
"lat" = dontDistribute super."lat";
"latest-npm-version" = dontDistribute super."latest-npm-version";
"latex" = dontDistribute super."latex";
@@ -4955,6 +4989,7 @@ self: super: {
"list-fusion-probe" = doDistribute super."list-fusion-probe_0_1_0_3";
"list-grouping" = dontDistribute super."list-grouping";
"list-mux" = dontDistribute super."list-mux";
+ "list-prompt" = dontDistribute super."list-prompt";
"list-remote-forwards" = dontDistribute super."list-remote-forwards";
"list-t-attoparsec" = dontDistribute super."list-t-attoparsec";
"list-t-html-parser" = dontDistribute super."list-t-html-parser";
@@ -4998,6 +5033,7 @@ self: super: {
"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-domain" = doDistribute super."log-domain_0_10_2";
@@ -5042,6 +5078,7 @@ self: super: {
"lub" = dontDistribute super."lub";
"lucid" = doDistribute super."lucid_2_9_2";
"lucid-foundation" = dontDistribute super."lucid-foundation";
+ "lucid-svg" = doDistribute super."lucid-svg_0_5_0_0";
"lucienne" = dontDistribute super."lucienne";
"luhn" = dontDistribute super."luhn";
"lui" = dontDistribute super."lui";
@@ -5442,6 +5479,7 @@ self: super: {
"nbt" = dontDistribute super."nbt";
"nc-indicators" = dontDistribute super."nc-indicators";
"ncurses" = dontDistribute super."ncurses";
+ "ndjson-conduit" = doDistribute super."ndjson-conduit_0_1_0_2";
"neat" = dontDistribute super."neat";
"neat-interpolation" = doDistribute super."neat-interpolation_0_2_3";
"needle" = dontDistribute super."needle";
@@ -5615,6 +5653,7 @@ self: super: {
"omnifmt" = dontDistribute super."omnifmt";
"on-a-horse" = dontDistribute super."on-a-horse";
"on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel";
+ "once" = dontDistribute super."once";
"one-liner" = dontDistribute super."one-liner";
"one-time-password" = dontDistribute super."one-time-password";
"oneOfN" = dontDistribute super."oneOfN";
@@ -5669,6 +5708,7 @@ self: super: {
"optimusprime" = dontDistribute super."optimusprime";
"optional" = dontDistribute super."optional";
"options-time" = dontDistribute super."options-time";
+ "optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"orc" = dontDistribute super."orc";
"orchestrate" = dontDistribute super."orchestrate";
@@ -5859,6 +5899,7 @@ self: super: {
"pgstream" = dontDistribute super."pgstream";
"phasechange" = dontDistribute super."phasechange";
"phizzle" = dontDistribute super."phizzle";
+ "phoityne" = dontDistribute super."phoityne";
"phone-numbers" = dontDistribute super."phone-numbers";
"phone-push" = dontDistribute super."phone-push";
"phonetic-code" = dontDistribute super."phonetic-code";
@@ -5879,6 +5920,7 @@ self: super: {
"pipe-enumerator" = dontDistribute super."pipe-enumerator";
"pipeclip" = dontDistribute super."pipeclip";
"pipes" = doDistribute super."pipes_4_1_6";
+ "pipes-aeson" = doDistribute super."pipes-aeson_0_4_1_4";
"pipes-async" = dontDistribute super."pipes-async";
"pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming";
"pipes-binary" = doDistribute super."pipes-binary_0_4_0_4";
@@ -5887,6 +5929,7 @@ self: super: {
"pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv";
"pipes-cereal" = dontDistribute super."pipes-cereal";
"pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus";
+ "pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_3";
"pipes-conduit" = dontDistribute super."pipes-conduit";
"pipes-core" = dontDistribute super."pipes-core";
"pipes-courier" = dontDistribute super."pipes-courier";
@@ -5997,6 +6040,7 @@ self: super: {
"possible" = dontDistribute super."possible";
"post-mess-age" = doDistribute super."post-mess-age_0_1_0_0";
"postcodes" = dontDistribute super."postcodes";
+ "postgresql-binary" = doDistribute super."postgresql-binary_0_5_2_1";
"postgresql-config" = dontDistribute super."postgresql-config";
"postgresql-connector" = dontDistribute super."postgresql-connector";
"postgresql-copy-escape" = dontDistribute super."postgresql-copy-escape";
@@ -6432,6 +6476,7 @@ self: super: {
"rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster";
"retry" = doDistribute super."retry_0_6";
"retryer" = dontDistribute super."retryer";
+ "rev-state" = doDistribute super."rev-state_0_1";
"revdectime" = dontDistribute super."revdectime";
"reverse-apply" = dontDistribute super."reverse-apply";
"reverse-geocoding" = dontDistribute super."reverse-geocoding";
@@ -6659,6 +6704,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serv" = dontDistribute super."serv";
"servant" = doDistribute super."servant_0_4_4_2";
"servant-JuicyPixels" = doDistribute super."servant-JuicyPixels_0_1_0_0";
"servant-blaze" = dontDistribute super."servant-blaze";
@@ -6869,6 +6915,7 @@ self: super: {
"snaplet-coffee" = dontDistribute super."snaplet-coffee";
"snaplet-css-min" = dontDistribute super."snaplet-css-min";
"snaplet-environments" = dontDistribute super."snaplet-environments";
+ "snaplet-fay" = doDistribute super."snaplet-fay_0_3_3_12";
"snaplet-ghcjs" = dontDistribute super."snaplet-ghcjs";
"snaplet-hasql" = dontDistribute super."snaplet-hasql";
"snaplet-haxl" = dontDistribute super."snaplet-haxl";
@@ -7156,6 +7203,7 @@ self: super: {
"swift-lda" = dontDistribute super."swift-lda";
"swish" = dontDistribute super."swish";
"sws" = dontDistribute super."sws";
+ "syb" = doDistribute super."syb_0_5_1";
"syb-extras" = dontDistribute super."syb-extras";
"syb-with-class" = dontDistribute super."syb-with-class";
"syb-with-class-instances-text" = dontDistribute super."syb-with-class-instances-text";
@@ -7605,6 +7653,7 @@ self: super: {
"typehash" = dontDistribute super."typehash";
"typelevel" = dontDistribute super."typelevel";
"typelevel-tensor" = dontDistribute super."typelevel-tensor";
+ "typelits-witnesses" = dontDistribute super."typelits-witnesses";
"typeof" = dontDistribute super."typeof";
"typeparams" = dontDistribute super."typeparams";
"typesafe-endian" = dontDistribute super."typesafe-endian";
@@ -7831,6 +7880,7 @@ self: super: {
"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" = dontDistribute super."vty";
diff --git a/pkgs/development/haskell-modules/configuration-lts-3.5.nix b/pkgs/development/haskell-modules/configuration-lts-3.5.nix
index ad76072710f..386c865253d 100644
--- a/pkgs/development/haskell-modules/configuration-lts-3.5.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-3.5.nix
@@ -319,6 +319,7 @@ self: super: {
"FormalGrammars" = dontDistribute super."FormalGrammars";
"Foster" = dontDistribute super."Foster";
"FpMLv53" = dontDistribute super."FpMLv53";
+ "FractalArt" = dontDistribute super."FractalArt";
"Fractaler" = dontDistribute super."Fractaler";
"Frames" = dontDistribute super."Frames";
"Frank" = dontDistribute super."Frank";
@@ -468,6 +469,7 @@ self: super: {
"HTTP-Simple" = dontDistribute super."HTTP-Simple";
"HTab" = dontDistribute super."HTab";
"HTicTacToe" = dontDistribute super."HTicTacToe";
+ "HUnit" = doDistribute super."HUnit_1_2_5_2";
"HUnit-Diff" = dontDistribute super."HUnit-Diff";
"HUnit-Plus" = dontDistribute super."HUnit-Plus";
"HUnit-approx" = dontDistribute super."HUnit-approx";
@@ -500,6 +502,7 @@ self: super: {
"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";
@@ -1388,6 +1391,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_2_2";
"autonix-deps" = dontDistribute super."autonix-deps";
"autonix-deps-kf5" = dontDistribute super."autonix-deps-kf5";
"autoproc" = dontDistribute super."autoproc";
@@ -1451,6 +1455,8 @@ self: super: {
"base-generics" = dontDistribute super."base-generics";
"base-io-access" = dontDistribute super."base-io-access";
"base-noprelude" = dontDistribute super."base-noprelude";
+ "base-orphans" = doDistribute super."base-orphans_0_4_4";
+ "base-prelude" = doDistribute super."base-prelude_0_1_19";
"base32-bytestring" = dontDistribute super."base32-bytestring";
"base58-bytestring" = dontDistribute super."base58-bytestring";
"base58address" = dontDistribute super."base58address";
@@ -1494,6 +1500,7 @@ self: super: {
"bidirectionalization-combined" = dontDistribute super."bidirectionalization-combined";
"bidispec" = dontDistribute super."bidispec";
"bidispec-extras" = dontDistribute super."bidispec-extras";
+ "bifunctors" = doDistribute super."bifunctors_5";
"billboard-parser" = dontDistribute super."billboard-parser";
"billeksah-forms" = dontDistribute super."billeksah-forms";
"billeksah-main" = dontDistribute super."billeksah-main";
@@ -1659,6 +1666,7 @@ self: super: {
"bot" = dontDistribute super."bot";
"both" = dontDistribute super."both";
"botpp" = dontDistribute super."botpp";
+ "bound" = doDistribute super."bound_1_0_6";
"bound-gen" = dontDistribute super."bound-gen";
"bounded-tchan" = dontDistribute super."bounded-tchan";
"boundingboxes" = dontDistribute super."boundingboxes";
@@ -1682,6 +1690,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_0";
"buffer-builder-aeson" = dontDistribute super."buffer-builder-aeson";
"buffon" = dontDistribute super."buffon";
"bugzilla" = dontDistribute super."bugzilla";
@@ -1845,6 +1854,7 @@ self: super: {
"cef" = dontDistribute super."cef";
"ceilometer-common" = dontDistribute super."ceilometer-common";
"cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo";
+ "cerberus" = dontDistribute super."cerberus";
"cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_3";
"cereal-derive" = dontDistribute super."cereal-derive";
"cereal-enumerator" = dontDistribute super."cereal-enumerator";
@@ -1948,6 +1958,7 @@ self: super: {
"clipper" = dontDistribute super."clipper";
"clippings" = dontDistribute super."clippings";
"clist" = dontDistribute super."clist";
+ "clock" = doDistribute super."clock_0_5_1";
"clocked" = dontDistribute super."clocked";
"clogparse" = dontDistribute super."clogparse";
"clone-all" = dontDistribute super."clone-all";
@@ -2046,6 +2057,7 @@ self: super: {
"concrete-typerep" = dontDistribute super."concrete-typerep";
"concurrent-barrier" = dontDistribute super."concurrent-barrier";
"concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache";
+ "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9";
"concurrent-machines" = dontDistribute super."concurrent-machines";
"concurrent-output" = dontDistribute super."concurrent-output";
"concurrent-sa" = dontDistribute super."concurrent-sa";
@@ -2412,6 +2424,8 @@ self: super: {
"delta-h" = dontDistribute super."delta-h";
"demarcate" = dontDistribute super."demarcate";
"denominate" = dontDistribute super."denominate";
+ "dependent-map" = doDistribute super."dependent-map_0_1_1_3";
+ "dependent-sum" = doDistribute super."dependent-sum_0_2_1_0";
"depends" = dontDistribute super."depends";
"dephd" = dontDistribute super."dephd";
"dequeue" = dontDistribute super."dequeue";
@@ -2459,6 +2473,7 @@ self: super: {
"diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube";
"diagrams-svg" = doDistribute super."diagrams-svg_1_3_1_4";
"diagrams-tikz" = dontDistribute super."diagrams-tikz";
+ "dialog" = dontDistribute super."dialog";
"dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit";
"dicom" = dontDistribute super."dicom";
"dictparser" = dontDistribute super."dictparser";
@@ -2641,6 +2656,7 @@ self: super: {
"edenskel" = dontDistribute super."edenskel";
"edentv" = dontDistribute super."edentv";
"edge" = dontDistribute super."edge";
+ "edis" = dontDistribute super."edis";
"edit-distance-vector" = dontDistribute super."edit-distance-vector";
"edit-lenses" = dontDistribute super."edit-lenses";
"edit-lenses-demo" = dontDistribute super."edit-lenses-demo";
@@ -2824,6 +2840,7 @@ self: super: {
"failable-list" = dontDistribute super."failable-list";
"failure" = dontDistribute super."failure";
"fair-predicates" = dontDistribute super."fair-predicates";
+ "fake-type" = dontDistribute super."fake-type";
"faker" = dontDistribute super."faker";
"falling-turnip" = dontDistribute super."falling-turnip";
"fallingblocks" = dontDistribute super."fallingblocks";
@@ -3025,6 +3042,7 @@ self: super: {
"friday-juicypixels" = dontDistribute super."friday-juicypixels";
"friday-scale-dct" = dontDistribute super."friday-scale-dct";
"friendly-time" = dontDistribute super."friendly-time";
+ "frontmatter" = dontDistribute super."frontmatter";
"frp-arduino" = dontDistribute super."frp-arduino";
"frpnow" = dontDistribute super."frpnow";
"frpnow-gloss" = dontDistribute super."frpnow-gloss";
@@ -3235,6 +3253,7 @@ self: super: {
"gitlib-s3" = dontDistribute super."gitlib-s3";
"gitlib-sample" = dontDistribute super."gitlib-sample";
"gitlib-utils" = dontDistribute super."gitlib-utils";
+ "gitter" = dontDistribute super."gitter";
"gl-capture" = dontDistribute super."gl-capture";
"glade" = dontDistribute super."glade";
"gladexml-accessor" = dontDistribute super."gladexml-accessor";
@@ -3442,6 +3461,7 @@ self: super: {
"gstreamer" = dontDistribute super."gstreamer";
"gt-tools" = dontDistribute super."gt-tools";
"gtfs" = dontDistribute super."gtfs";
+ "gtk" = doDistribute super."gtk_0_13_9";
"gtk-helpers" = dontDistribute super."gtk-helpers";
"gtk-jsinput" = dontDistribute super."gtk-jsinput";
"gtk-largeTreeStore" = dontDistribute super."gtk-largeTreeStore";
@@ -3534,6 +3554,7 @@ self: super: {
"hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP";
"hackage-server" = dontDistribute super."hackage-server";
"hackage-sparks" = dontDistribute super."hackage-sparks";
+ "hackage-whatsnew" = dontDistribute super."hackage-whatsnew";
"hackage2hwn" = dontDistribute super."hackage2hwn";
"hackage2twitter" = dontDistribute super."hackage2twitter";
"hackager" = dontDistribute super."hackager";
@@ -3689,6 +3710,7 @@ self: super: {
"haskell-in-space" = dontDistribute super."haskell-in-space";
"haskell-modbus" = dontDistribute super."haskell-modbus";
"haskell-mpi" = dontDistribute super."haskell-mpi";
+ "haskell-names" = doDistribute super."haskell-names_0_5_3";
"haskell-openflow" = dontDistribute super."haskell-openflow";
"haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter";
"haskell-platform-test" = dontDistribute super."haskell-platform-test";
@@ -3762,6 +3784,7 @@ self: super: {
"hasloGUI" = dontDistribute super."hasloGUI";
"hasparql-client" = dontDistribute super."hasparql-client";
"haspell" = dontDistribute super."haspell";
+ "hasql" = doDistribute super."hasql_0_7_4";
"hasql-pool" = dontDistribute super."hasql-pool";
"hasql-postgres" = doDistribute super."hasql-postgres_0_10_5";
"hasql-postgres-options" = dontDistribute super."hasql-postgres-options";
@@ -3974,6 +3997,8 @@ self: super: {
"hlibBladeRF" = dontDistribute super."hlibBladeRF";
"hlibev" = dontDistribute super."hlibev";
"hlibfam" = dontDistribute super."hlibfam";
+ "hlibgit2" = doDistribute super."hlibgit2_0_18_0_14";
+ "hlibsass" = doDistribute super."hlibsass_0_1_4_0";
"hlint" = doDistribute super."hlint_1_9_21";
"hlogger" = dontDistribute super."hlogger";
"hlongurl" = dontDistribute super."hlongurl";
@@ -4139,6 +4164,7 @@ self: super: {
"hsConfigure" = dontDistribute super."hsConfigure";
"hsSqlite3" = dontDistribute super."hsSqlite3";
"hsXenCtrl" = dontDistribute super."hsXenCtrl";
+ "hsass" = doDistribute super."hsass_0_3_0";
"hsay" = dontDistribute super."hsay";
"hsb2hs" = dontDistribute super."hsb2hs";
"hsbackup" = dontDistribute super."hsbackup";
@@ -4179,6 +4205,7 @@ self: super: {
"hsdip" = dontDistribute super."hsdip";
"hsdns" = dontDistribute super."hsdns";
"hsdns-cache" = dontDistribute super."hsdns-cache";
+ "hsebaysdk" = doDistribute super."hsebaysdk_0_3_0_0";
"hsemail-ns" = dontDistribute super."hsemail-ns";
"hsenv" = dontDistribute super."hsenv";
"hserv" = dontDistribute super."hserv";
@@ -4235,6 +4262,7 @@ self: super: {
"hspec-meta" = doDistribute super."hspec-meta_2_1_7";
"hspec-monad-control" = dontDistribute super."hspec-monad-control";
"hspec-server" = dontDistribute super."hspec-server";
+ "hspec-setup" = dontDistribute super."hspec-setup";
"hspec-shouldbe" = dontDistribute super."hspec-shouldbe";
"hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0";
"hspec-snap" = doDistribute super."hspec-snap_0_3_3_0";
@@ -4330,6 +4358,7 @@ self: super: {
"http-server" = dontDistribute super."http-server";
"http-shed" = dontDistribute super."http-shed";
"http-test" = dontDistribute super."http-test";
+ "http-types" = doDistribute super."http-types_0_8_6";
"http-wget" = dontDistribute super."http-wget";
"http2" = doDistribute super."http2_1_0_4";
"httpd-shed" = dontDistribute super."httpd-shed";
@@ -4456,6 +4485,7 @@ self: super: {
"imgurder" = dontDistribute super."imgurder";
"imm" = dontDistribute super."imm";
"imparse" = dontDistribute super."imparse";
+ "imperative-edsl" = dontDistribute super."imperative-edsl";
"imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl";
"implicit" = dontDistribute super."implicit";
"implicit-params" = dontDistribute super."implicit-params";
@@ -4630,6 +4660,7 @@ self: super: {
"json-assertions" = dontDistribute super."json-assertions";
"json-autotype" = doDistribute super."json-autotype_1_0_7";
"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";
@@ -4639,6 +4670,7 @@ self: super: {
"json-rpc" = dontDistribute super."json-rpc";
"json-rpc-client" = dontDistribute super."json-rpc-client";
"json-rpc-server" = dontDistribute super."json-rpc-server";
+ "json-schema" = doDistribute super."json-schema_0_7_4_0";
"json-sop" = dontDistribute super."json-sop";
"json-state" = dontDistribute super."json-state";
"json-stream" = dontDistribute super."json-stream";
@@ -4753,6 +4785,7 @@ self: super: {
"lambdacube-examples" = dontDistribute super."lambdacube-examples";
"lambdacube-gl" = dontDistribute super."lambdacube-gl";
"lambdacube-samples" = dontDistribute super."lambdacube-samples";
+ "lambdatex" = dontDistribute super."lambdatex";
"lambdatwit" = dontDistribute super."lambdatwit";
"lambdiff" = dontDistribute super."lambdiff";
"lame-tester" = dontDistribute super."lame-tester";
@@ -4794,6 +4827,7 @@ self: super: {
"language-thrift" = dontDistribute super."language-thrift";
"language-typescript" = dontDistribute super."language-typescript";
"language-vhdl" = dontDistribute super."language-vhdl";
+ "largeword" = doDistribute super."largeword_1_2_3";
"lat" = dontDistribute super."lat";
"latest-npm-version" = dontDistribute super."latest-npm-version";
"latex" = dontDistribute super."latex";
@@ -4941,8 +4975,10 @@ self: super: {
"liquidhaskell" = dontDistribute super."liquidhaskell";
"lispparser" = dontDistribute super."lispparser";
"list-extras" = dontDistribute super."list-extras";
+ "list-fusion-probe" = doDistribute super."list-fusion-probe_0_1_0_4";
"list-grouping" = dontDistribute super."list-grouping";
"list-mux" = dontDistribute super."list-mux";
+ "list-prompt" = dontDistribute super."list-prompt";
"list-remote-forwards" = dontDistribute super."list-remote-forwards";
"list-t-attoparsec" = dontDistribute super."list-t-attoparsec";
"list-t-html-parser" = dontDistribute super."list-t-html-parser";
@@ -4986,6 +5022,7 @@ self: super: {
"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-domain" = doDistribute super."log-domain_0_10_2_1";
@@ -5030,6 +5067,7 @@ self: super: {
"lub" = dontDistribute super."lub";
"lucid" = doDistribute super."lucid_2_9_2";
"lucid-foundation" = dontDistribute super."lucid-foundation";
+ "lucid-svg" = doDistribute super."lucid-svg_0_5_0_0";
"lucienne" = dontDistribute super."lucienne";
"luhn" = dontDistribute super."luhn";
"lui" = dontDistribute super."lui";
@@ -5429,6 +5467,7 @@ self: super: {
"nbt" = dontDistribute super."nbt";
"nc-indicators" = dontDistribute super."nc-indicators";
"ncurses" = dontDistribute super."ncurses";
+ "ndjson-conduit" = doDistribute super."ndjson-conduit_0_1_0_2";
"neat" = dontDistribute super."neat";
"neat-interpolation" = doDistribute super."neat-interpolation_0_2_3";
"needle" = dontDistribute super."needle";
@@ -5602,6 +5641,7 @@ self: super: {
"omnifmt" = dontDistribute super."omnifmt";
"on-a-horse" = dontDistribute super."on-a-horse";
"on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel";
+ "once" = dontDistribute super."once";
"one-liner" = dontDistribute super."one-liner";
"one-time-password" = dontDistribute super."one-time-password";
"oneOfN" = dontDistribute super."oneOfN";
@@ -5656,6 +5696,7 @@ self: super: {
"optimusprime" = dontDistribute super."optimusprime";
"optional" = dontDistribute super."optional";
"options-time" = dontDistribute super."options-time";
+ "optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"orc" = dontDistribute super."orc";
"orchestrate" = dontDistribute super."orchestrate";
@@ -5845,6 +5886,7 @@ self: super: {
"pgstream" = dontDistribute super."pgstream";
"phasechange" = dontDistribute super."phasechange";
"phizzle" = dontDistribute super."phizzle";
+ "phoityne" = dontDistribute super."phoityne";
"phone-numbers" = dontDistribute super."phone-numbers";
"phone-push" = dontDistribute super."phone-push";
"phonetic-code" = dontDistribute super."phonetic-code";
@@ -5865,6 +5907,7 @@ self: super: {
"pipe-enumerator" = dontDistribute super."pipe-enumerator";
"pipeclip" = dontDistribute super."pipeclip";
"pipes" = doDistribute super."pipes_4_1_6";
+ "pipes-aeson" = doDistribute super."pipes-aeson_0_4_1_4";
"pipes-async" = dontDistribute super."pipes-async";
"pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming";
"pipes-binary" = doDistribute super."pipes-binary_0_4_0_4";
@@ -5873,6 +5916,7 @@ self: super: {
"pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv";
"pipes-cereal" = dontDistribute super."pipes-cereal";
"pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus";
+ "pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_3";
"pipes-conduit" = dontDistribute super."pipes-conduit";
"pipes-core" = dontDistribute super."pipes-core";
"pipes-courier" = dontDistribute super."pipes-courier";
@@ -5982,6 +6026,7 @@ self: super: {
"possible" = dontDistribute super."possible";
"post-mess-age" = doDistribute super."post-mess-age_0_1_0_0";
"postcodes" = dontDistribute super."postcodes";
+ "postgresql-binary" = doDistribute super."postgresql-binary_0_5_2_1";
"postgresql-config" = dontDistribute super."postgresql-config";
"postgresql-connector" = dontDistribute super."postgresql-connector";
"postgresql-copy-escape" = dontDistribute super."postgresql-copy-escape";
@@ -6415,6 +6460,7 @@ self: super: {
"rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster";
"retry" = doDistribute super."retry_0_6";
"retryer" = dontDistribute super."retryer";
+ "rev-state" = doDistribute super."rev-state_0_1";
"revdectime" = dontDistribute super."revdectime";
"reverse-apply" = dontDistribute super."reverse-apply";
"reverse-geocoding" = dontDistribute super."reverse-geocoding";
@@ -6642,6 +6688,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serv" = dontDistribute super."serv";
"servant" = doDistribute super."servant_0_4_4_2";
"servant-JuicyPixels" = doDistribute super."servant-JuicyPixels_0_1_0_0";
"servant-blaze" = dontDistribute super."servant-blaze";
@@ -6851,6 +6898,7 @@ self: super: {
"snaplet-coffee" = dontDistribute super."snaplet-coffee";
"snaplet-css-min" = dontDistribute super."snaplet-css-min";
"snaplet-environments" = dontDistribute super."snaplet-environments";
+ "snaplet-fay" = doDistribute super."snaplet-fay_0_3_3_12";
"snaplet-ghcjs" = dontDistribute super."snaplet-ghcjs";
"snaplet-hasql" = dontDistribute super."snaplet-hasql";
"snaplet-haxl" = dontDistribute super."snaplet-haxl";
@@ -7138,6 +7186,7 @@ self: super: {
"swift-lda" = dontDistribute super."swift-lda";
"swish" = dontDistribute super."swish";
"sws" = dontDistribute super."sws";
+ "syb" = doDistribute super."syb_0_5_1";
"syb-extras" = dontDistribute super."syb-extras";
"syb-with-class" = dontDistribute super."syb-with-class";
"syb-with-class-instances-text" = dontDistribute super."syb-with-class-instances-text";
@@ -7584,6 +7633,7 @@ self: super: {
"typehash" = dontDistribute super."typehash";
"typelevel" = dontDistribute super."typelevel";
"typelevel-tensor" = dontDistribute super."typelevel-tensor";
+ "typelits-witnesses" = dontDistribute super."typelits-witnesses";
"typeof" = dontDistribute super."typeof";
"typeparams" = dontDistribute super."typeparams";
"typesafe-endian" = dontDistribute super."typesafe-endian";
@@ -7810,6 +7860,7 @@ self: super: {
"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" = dontDistribute super."vty";
@@ -7998,6 +8049,7 @@ self: super: {
"x11-xim" = dontDistribute super."x11-xim";
"x11-xinput" = dontDistribute super."x11-xinput";
"x509" = doDistribute super."x509_1_6_1";
+ "x509-system" = doDistribute super."x509-system_1_6_1";
"x509-util" = dontDistribute super."x509-util";
"x509-validation" = doDistribute super."x509-validation_1_6_2";
"xattr" = dontDistribute super."xattr";
diff --git a/pkgs/development/haskell-modules/configuration-lts-3.6.nix b/pkgs/development/haskell-modules/configuration-lts-3.6.nix
index a8f64fef71b..8b9e2b4b2d5 100644
--- a/pkgs/development/haskell-modules/configuration-lts-3.6.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-3.6.nix
@@ -319,6 +319,7 @@ self: super: {
"FormalGrammars" = dontDistribute super."FormalGrammars";
"Foster" = dontDistribute super."Foster";
"FpMLv53" = dontDistribute super."FpMLv53";
+ "FractalArt" = dontDistribute super."FractalArt";
"Fractaler" = dontDistribute super."Fractaler";
"Frames" = dontDistribute super."Frames";
"Frank" = dontDistribute super."Frank";
@@ -468,6 +469,7 @@ self: super: {
"HTTP-Simple" = dontDistribute super."HTTP-Simple";
"HTab" = dontDistribute super."HTab";
"HTicTacToe" = dontDistribute super."HTicTacToe";
+ "HUnit" = doDistribute super."HUnit_1_2_5_2";
"HUnit-Diff" = dontDistribute super."HUnit-Diff";
"HUnit-Plus" = dontDistribute super."HUnit-Plus";
"HUnit-approx" = dontDistribute super."HUnit-approx";
@@ -500,6 +502,7 @@ self: super: {
"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";
@@ -1387,6 +1390,7 @@ self: super: {
"authenticate-ldap" = dontDistribute super."authenticate-ldap";
"authinfo-hs" = dontDistribute super."authinfo-hs";
"authoring" = dontDistribute super."authoring";
+ "auto-update" = doDistribute super."auto-update_0_1_2_2";
"autonix-deps" = dontDistribute super."autonix-deps";
"autonix-deps-kf5" = dontDistribute super."autonix-deps-kf5";
"autoproc" = dontDistribute super."autoproc";
@@ -1450,6 +1454,8 @@ self: super: {
"base-generics" = dontDistribute super."base-generics";
"base-io-access" = dontDistribute super."base-io-access";
"base-noprelude" = dontDistribute super."base-noprelude";
+ "base-orphans" = doDistribute super."base-orphans_0_4_4";
+ "base-prelude" = doDistribute super."base-prelude_0_1_19";
"base32-bytestring" = dontDistribute super."base32-bytestring";
"base58-bytestring" = dontDistribute super."base58-bytestring";
"base58address" = dontDistribute super."base58address";
@@ -1493,6 +1499,7 @@ self: super: {
"bidirectionalization-combined" = dontDistribute super."bidirectionalization-combined";
"bidispec" = dontDistribute super."bidispec";
"bidispec-extras" = dontDistribute super."bidispec-extras";
+ "bifunctors" = doDistribute super."bifunctors_5";
"billboard-parser" = dontDistribute super."billboard-parser";
"billeksah-forms" = dontDistribute super."billeksah-forms";
"billeksah-main" = dontDistribute super."billeksah-main";
@@ -1658,6 +1665,7 @@ self: super: {
"bot" = dontDistribute super."bot";
"both" = dontDistribute super."both";
"botpp" = dontDistribute super."botpp";
+ "bound" = doDistribute super."bound_1_0_6";
"bound-gen" = dontDistribute super."bound-gen";
"bounded-tchan" = dontDistribute super."bounded-tchan";
"boundingboxes" = dontDistribute super."boundingboxes";
@@ -1681,6 +1689,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_0";
"buffer-builder-aeson" = dontDistribute super."buffer-builder-aeson";
"buffon" = dontDistribute super."buffon";
"bugzilla" = dontDistribute super."bugzilla";
@@ -1843,6 +1852,7 @@ self: super: {
"cef" = dontDistribute super."cef";
"ceilometer-common" = dontDistribute super."ceilometer-common";
"cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo";
+ "cerberus" = dontDistribute super."cerberus";
"cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_3";
"cereal-derive" = dontDistribute super."cereal-derive";
"cereal-enumerator" = dontDistribute super."cereal-enumerator";
@@ -1946,6 +1956,7 @@ self: super: {
"clipper" = dontDistribute super."clipper";
"clippings" = dontDistribute super."clippings";
"clist" = dontDistribute super."clist";
+ "clock" = doDistribute super."clock_0_5_1";
"clocked" = dontDistribute super."clocked";
"clogparse" = dontDistribute super."clogparse";
"clone-all" = dontDistribute super."clone-all";
@@ -2044,6 +2055,7 @@ self: super: {
"concrete-typerep" = dontDistribute super."concrete-typerep";
"concurrent-barrier" = dontDistribute super."concurrent-barrier";
"concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache";
+ "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9";
"concurrent-machines" = dontDistribute super."concurrent-machines";
"concurrent-output" = dontDistribute super."concurrent-output";
"concurrent-sa" = dontDistribute super."concurrent-sa";
@@ -2410,6 +2422,8 @@ self: super: {
"delta-h" = dontDistribute super."delta-h";
"demarcate" = dontDistribute super."demarcate";
"denominate" = dontDistribute super."denominate";
+ "dependent-map" = doDistribute super."dependent-map_0_1_1_3";
+ "dependent-sum" = doDistribute super."dependent-sum_0_2_1_0";
"depends" = dontDistribute super."depends";
"dephd" = dontDistribute super."dephd";
"dequeue" = dontDistribute super."dequeue";
@@ -2457,6 +2471,7 @@ self: super: {
"diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube";
"diagrams-svg" = doDistribute super."diagrams-svg_1_3_1_4";
"diagrams-tikz" = dontDistribute super."diagrams-tikz";
+ "dialog" = dontDistribute super."dialog";
"dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit";
"dicom" = dontDistribute super."dicom";
"dictparser" = dontDistribute super."dictparser";
@@ -2639,6 +2654,7 @@ self: super: {
"edenskel" = dontDistribute super."edenskel";
"edentv" = dontDistribute super."edentv";
"edge" = dontDistribute super."edge";
+ "edis" = dontDistribute super."edis";
"edit-distance-vector" = dontDistribute super."edit-distance-vector";
"edit-lenses" = dontDistribute super."edit-lenses";
"edit-lenses-demo" = dontDistribute super."edit-lenses-demo";
@@ -2820,6 +2836,7 @@ self: super: {
"failable-list" = dontDistribute super."failable-list";
"failure" = dontDistribute super."failure";
"fair-predicates" = dontDistribute super."fair-predicates";
+ "fake-type" = dontDistribute super."fake-type";
"faker" = dontDistribute super."faker";
"falling-turnip" = dontDistribute super."falling-turnip";
"fallingblocks" = dontDistribute super."fallingblocks";
@@ -3020,6 +3037,7 @@ self: super: {
"friday-juicypixels" = dontDistribute super."friday-juicypixels";
"friday-scale-dct" = dontDistribute super."friday-scale-dct";
"friendly-time" = dontDistribute super."friendly-time";
+ "frontmatter" = dontDistribute super."frontmatter";
"frp-arduino" = dontDistribute super."frp-arduino";
"frpnow" = dontDistribute super."frpnow";
"frpnow-gloss" = dontDistribute super."frpnow-gloss";
@@ -3228,6 +3246,7 @@ self: super: {
"gitlib-s3" = dontDistribute super."gitlib-s3";
"gitlib-sample" = dontDistribute super."gitlib-sample";
"gitlib-utils" = dontDistribute super."gitlib-utils";
+ "gitter" = dontDistribute super."gitter";
"gl-capture" = dontDistribute super."gl-capture";
"glade" = dontDistribute super."glade";
"gladexml-accessor" = dontDistribute super."gladexml-accessor";
@@ -3435,6 +3454,7 @@ self: super: {
"gstreamer" = dontDistribute super."gstreamer";
"gt-tools" = dontDistribute super."gt-tools";
"gtfs" = dontDistribute super."gtfs";
+ "gtk" = doDistribute super."gtk_0_13_9";
"gtk-helpers" = dontDistribute super."gtk-helpers";
"gtk-jsinput" = dontDistribute super."gtk-jsinput";
"gtk-largeTreeStore" = dontDistribute super."gtk-largeTreeStore";
@@ -3527,6 +3547,7 @@ self: super: {
"hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP";
"hackage-server" = dontDistribute super."hackage-server";
"hackage-sparks" = dontDistribute super."hackage-sparks";
+ "hackage-whatsnew" = dontDistribute super."hackage-whatsnew";
"hackage2hwn" = dontDistribute super."hackage2hwn";
"hackage2twitter" = dontDistribute super."hackage2twitter";
"hackager" = dontDistribute super."hackager";
@@ -3682,6 +3703,7 @@ self: super: {
"haskell-in-space" = dontDistribute super."haskell-in-space";
"haskell-modbus" = dontDistribute super."haskell-modbus";
"haskell-mpi" = dontDistribute super."haskell-mpi";
+ "haskell-names" = doDistribute super."haskell-names_0_5_3";
"haskell-openflow" = dontDistribute super."haskell-openflow";
"haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter";
"haskell-platform-test" = dontDistribute super."haskell-platform-test";
@@ -3755,6 +3777,7 @@ self: super: {
"hasloGUI" = dontDistribute super."hasloGUI";
"hasparql-client" = dontDistribute super."hasparql-client";
"haspell" = dontDistribute super."haspell";
+ "hasql" = doDistribute super."hasql_0_7_4";
"hasql-pool" = dontDistribute super."hasql-pool";
"hasql-postgres" = doDistribute super."hasql-postgres_0_10_5";
"hasql-postgres-options" = dontDistribute super."hasql-postgres-options";
@@ -3967,6 +3990,8 @@ self: super: {
"hlibBladeRF" = dontDistribute super."hlibBladeRF";
"hlibev" = dontDistribute super."hlibev";
"hlibfam" = dontDistribute super."hlibfam";
+ "hlibgit2" = doDistribute super."hlibgit2_0_18_0_14";
+ "hlibsass" = doDistribute super."hlibsass_0_1_4_0";
"hlint" = doDistribute super."hlint_1_9_21";
"hlogger" = dontDistribute super."hlogger";
"hlongurl" = dontDistribute super."hlongurl";
@@ -4132,6 +4157,7 @@ self: super: {
"hsConfigure" = dontDistribute super."hsConfigure";
"hsSqlite3" = dontDistribute super."hsSqlite3";
"hsXenCtrl" = dontDistribute super."hsXenCtrl";
+ "hsass" = doDistribute super."hsass_0_3_0";
"hsay" = dontDistribute super."hsay";
"hsb2hs" = dontDistribute super."hsb2hs";
"hsbackup" = dontDistribute super."hsbackup";
@@ -4172,6 +4198,7 @@ self: super: {
"hsdip" = dontDistribute super."hsdip";
"hsdns" = dontDistribute super."hsdns";
"hsdns-cache" = dontDistribute super."hsdns-cache";
+ "hsebaysdk" = doDistribute super."hsebaysdk_0_3_0_0";
"hsemail-ns" = dontDistribute super."hsemail-ns";
"hsenv" = dontDistribute super."hsenv";
"hserv" = dontDistribute super."hserv";
@@ -4228,6 +4255,7 @@ self: super: {
"hspec-meta" = doDistribute super."hspec-meta_2_1_7";
"hspec-monad-control" = dontDistribute super."hspec-monad-control";
"hspec-server" = dontDistribute super."hspec-server";
+ "hspec-setup" = dontDistribute super."hspec-setup";
"hspec-shouldbe" = dontDistribute super."hspec-shouldbe";
"hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0";
"hspec-snap" = doDistribute super."hspec-snap_0_3_3_0";
@@ -4323,6 +4351,7 @@ self: super: {
"http-server" = dontDistribute super."http-server";
"http-shed" = dontDistribute super."http-shed";
"http-test" = dontDistribute super."http-test";
+ "http-types" = doDistribute super."http-types_0_8_6";
"http-wget" = dontDistribute super."http-wget";
"http2" = doDistribute super."http2_1_0_4";
"httpd-shed" = dontDistribute super."httpd-shed";
@@ -4449,6 +4478,7 @@ self: super: {
"imgurder" = dontDistribute super."imgurder";
"imm" = dontDistribute super."imm";
"imparse" = dontDistribute super."imparse";
+ "imperative-edsl" = dontDistribute super."imperative-edsl";
"imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl";
"implicit" = dontDistribute super."implicit";
"implicit-params" = dontDistribute super."implicit-params";
@@ -4622,6 +4652,7 @@ self: super: {
"json-assertions" = dontDistribute super."json-assertions";
"json-autotype" = doDistribute super."json-autotype_1_0_7";
"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";
@@ -4631,6 +4662,7 @@ self: super: {
"json-rpc" = dontDistribute super."json-rpc";
"json-rpc-client" = dontDistribute super."json-rpc-client";
"json-rpc-server" = dontDistribute super."json-rpc-server";
+ "json-schema" = doDistribute super."json-schema_0_7_4_0";
"json-sop" = dontDistribute super."json-sop";
"json-state" = dontDistribute super."json-state";
"json-stream" = dontDistribute super."json-stream";
@@ -4743,6 +4775,7 @@ self: super: {
"lambdacube-examples" = dontDistribute super."lambdacube-examples";
"lambdacube-gl" = dontDistribute super."lambdacube-gl";
"lambdacube-samples" = dontDistribute super."lambdacube-samples";
+ "lambdatex" = dontDistribute super."lambdatex";
"lambdatwit" = dontDistribute super."lambdatwit";
"lambdiff" = dontDistribute super."lambdiff";
"lame-tester" = dontDistribute super."lame-tester";
@@ -4784,6 +4817,7 @@ self: super: {
"language-thrift" = dontDistribute super."language-thrift";
"language-typescript" = dontDistribute super."language-typescript";
"language-vhdl" = dontDistribute super."language-vhdl";
+ "largeword" = doDistribute super."largeword_1_2_3";
"lat" = dontDistribute super."lat";
"latest-npm-version" = dontDistribute super."latest-npm-version";
"latex" = dontDistribute super."latex";
@@ -4930,8 +4964,10 @@ self: super: {
"liquidhaskell" = dontDistribute super."liquidhaskell";
"lispparser" = dontDistribute super."lispparser";
"list-extras" = dontDistribute super."list-extras";
+ "list-fusion-probe" = doDistribute super."list-fusion-probe_0_1_0_4";
"list-grouping" = dontDistribute super."list-grouping";
"list-mux" = dontDistribute super."list-mux";
+ "list-prompt" = dontDistribute super."list-prompt";
"list-remote-forwards" = dontDistribute super."list-remote-forwards";
"list-t-attoparsec" = dontDistribute super."list-t-attoparsec";
"list-t-html-parser" = dontDistribute super."list-t-html-parser";
@@ -4975,6 +5011,7 @@ self: super: {
"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-domain" = doDistribute super."log-domain_0_10_3";
@@ -5019,6 +5056,7 @@ self: super: {
"lub" = dontDistribute super."lub";
"lucid" = doDistribute super."lucid_2_9_2";
"lucid-foundation" = dontDistribute super."lucid-foundation";
+ "lucid-svg" = doDistribute super."lucid-svg_0_5_0_0";
"lucienne" = dontDistribute super."lucienne";
"luhn" = dontDistribute super."luhn";
"lui" = dontDistribute super."lui";
@@ -5417,6 +5455,7 @@ self: super: {
"nbt" = dontDistribute super."nbt";
"nc-indicators" = dontDistribute super."nc-indicators";
"ncurses" = dontDistribute super."ncurses";
+ "ndjson-conduit" = doDistribute super."ndjson-conduit_0_1_0_2";
"neat" = dontDistribute super."neat";
"neat-interpolation" = doDistribute super."neat-interpolation_0_2_3";
"needle" = dontDistribute super."needle";
@@ -5590,6 +5629,7 @@ self: super: {
"omnifmt" = dontDistribute super."omnifmt";
"on-a-horse" = dontDistribute super."on-a-horse";
"on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel";
+ "once" = dontDistribute super."once";
"one-liner" = dontDistribute super."one-liner";
"one-time-password" = dontDistribute super."one-time-password";
"oneOfN" = dontDistribute super."oneOfN";
@@ -5644,6 +5684,7 @@ self: super: {
"optimusprime" = dontDistribute super."optimusprime";
"optional" = dontDistribute super."optional";
"options-time" = dontDistribute super."options-time";
+ "optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"orc" = dontDistribute super."orc";
"orchestrate" = dontDistribute super."orchestrate";
@@ -5833,6 +5874,7 @@ self: super: {
"pgstream" = dontDistribute super."pgstream";
"phasechange" = dontDistribute super."phasechange";
"phizzle" = dontDistribute super."phizzle";
+ "phoityne" = dontDistribute super."phoityne";
"phone-numbers" = dontDistribute super."phone-numbers";
"phone-push" = dontDistribute super."phone-push";
"phonetic-code" = dontDistribute super."phonetic-code";
@@ -5853,6 +5895,7 @@ self: super: {
"pipe-enumerator" = dontDistribute super."pipe-enumerator";
"pipeclip" = dontDistribute super."pipeclip";
"pipes" = doDistribute super."pipes_4_1_6";
+ "pipes-aeson" = doDistribute super."pipes-aeson_0_4_1_4";
"pipes-async" = dontDistribute super."pipes-async";
"pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming";
"pipes-cacophony" = dontDistribute super."pipes-cacophony";
@@ -5860,6 +5903,7 @@ self: super: {
"pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv";
"pipes-cereal" = dontDistribute super."pipes-cereal";
"pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus";
+ "pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_3";
"pipes-conduit" = dontDistribute super."pipes-conduit";
"pipes-core" = dontDistribute super."pipes-core";
"pipes-courier" = dontDistribute super."pipes-courier";
@@ -5969,6 +6013,7 @@ self: super: {
"possible" = dontDistribute super."possible";
"post-mess-age" = doDistribute super."post-mess-age_0_1_0_0";
"postcodes" = dontDistribute super."postcodes";
+ "postgresql-binary" = doDistribute super."postgresql-binary_0_5_2_1";
"postgresql-config" = dontDistribute super."postgresql-config";
"postgresql-connector" = dontDistribute super."postgresql-connector";
"postgresql-copy-escape" = dontDistribute super."postgresql-copy-escape";
@@ -6402,6 +6447,7 @@ self: super: {
"rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster";
"retry" = doDistribute super."retry_0_6";
"retryer" = dontDistribute super."retryer";
+ "rev-state" = doDistribute super."rev-state_0_1";
"revdectime" = dontDistribute super."revdectime";
"reverse-apply" = dontDistribute super."reverse-apply";
"reverse-geocoding" = dontDistribute super."reverse-geocoding";
@@ -6629,6 +6675,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serv" = dontDistribute super."serv";
"servant" = doDistribute super."servant_0_4_4_2";
"servant-JuicyPixels" = doDistribute super."servant-JuicyPixels_0_1_0_0";
"servant-blaze" = dontDistribute super."servant-blaze";
@@ -6838,6 +6885,7 @@ self: super: {
"snaplet-coffee" = dontDistribute super."snaplet-coffee";
"snaplet-css-min" = dontDistribute super."snaplet-css-min";
"snaplet-environments" = dontDistribute super."snaplet-environments";
+ "snaplet-fay" = doDistribute super."snaplet-fay_0_3_3_12";
"snaplet-ghcjs" = dontDistribute super."snaplet-ghcjs";
"snaplet-hasql" = dontDistribute super."snaplet-hasql";
"snaplet-haxl" = dontDistribute super."snaplet-haxl";
@@ -7125,6 +7173,7 @@ self: super: {
"swift-lda" = dontDistribute super."swift-lda";
"swish" = dontDistribute super."swish";
"sws" = dontDistribute super."sws";
+ "syb" = doDistribute super."syb_0_5_1";
"syb-extras" = dontDistribute super."syb-extras";
"syb-with-class" = dontDistribute super."syb-with-class";
"syb-with-class-instances-text" = dontDistribute super."syb-with-class-instances-text";
@@ -7570,6 +7619,7 @@ self: super: {
"typehash" = dontDistribute super."typehash";
"typelevel" = dontDistribute super."typelevel";
"typelevel-tensor" = dontDistribute super."typelevel-tensor";
+ "typelits-witnesses" = dontDistribute super."typelits-witnesses";
"typeof" = dontDistribute super."typeof";
"typeparams" = dontDistribute super."typeparams";
"typesafe-endian" = dontDistribute super."typesafe-endian";
@@ -7795,6 +7845,7 @@ self: super: {
"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" = dontDistribute super."vty";
@@ -7982,6 +8033,7 @@ self: super: {
"x11-xim" = dontDistribute super."x11-xim";
"x11-xinput" = dontDistribute super."x11-xinput";
"x509" = doDistribute super."x509_1_6_1";
+ "x509-system" = doDistribute super."x509-system_1_6_1";
"x509-util" = dontDistribute super."x509-util";
"x509-validation" = doDistribute super."x509-validation_1_6_2";
"xattr" = dontDistribute super."xattr";
diff --git a/pkgs/development/haskell-modules/configuration-lts-3.7.nix b/pkgs/development/haskell-modules/configuration-lts-3.7.nix
index 157dcb22bfa..9078c3be23c 100644
--- a/pkgs/development/haskell-modules/configuration-lts-3.7.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-3.7.nix
@@ -71,6 +71,7 @@ self: super: {
"Advgame" = dontDistribute super."Advgame";
"AesonBson" = dontDistribute super."AesonBson";
"Agata" = dontDistribute super."Agata";
+ "Agda" = doDistribute super."Agda_2_4_2_4";
"Agda-executable" = dontDistribute super."Agda-executable";
"AhoCorasick" = dontDistribute super."AhoCorasick";
"AlgorithmW" = dontDistribute super."AlgorithmW";
@@ -318,6 +319,7 @@ self: super: {
"FormalGrammars" = dontDistribute super."FormalGrammars";
"Foster" = dontDistribute super."Foster";
"FpMLv53" = dontDistribute super."FpMLv53";
+ "FractalArt" = dontDistribute super."FractalArt";
"Fractaler" = dontDistribute super."Fractaler";
"Frames" = dontDistribute super."Frames";
"Frank" = dontDistribute super."Frank";
@@ -467,6 +469,7 @@ self: super: {
"HTTP-Simple" = dontDistribute super."HTTP-Simple";
"HTab" = dontDistribute super."HTab";
"HTicTacToe" = dontDistribute super."HTicTacToe";
+ "HUnit" = doDistribute super."HUnit_1_2_5_2";
"HUnit-Diff" = dontDistribute super."HUnit-Diff";
"HUnit-Plus" = dontDistribute super."HUnit-Plus";
"HUnit-approx" = dontDistribute super."HUnit-approx";
@@ -499,6 +502,7 @@ self: super: {
"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";
@@ -1327,6 +1331,7 @@ self: super: {
"asic" = dontDistribute super."asic";
"asil" = dontDistribute super."asil";
"asn1-data" = dontDistribute super."asn1-data";
+ "asn1-types" = doDistribute super."asn1-types_0_3_1";
"asn1dump" = dontDistribute super."asn1dump";
"assembler" = dontDistribute super."assembler";
"assert" = dontDistribute super."assert";
@@ -1382,6 +1387,7 @@ self: super: {
"authenticate-ldap" = dontDistribute super."authenticate-ldap";
"authinfo-hs" = dontDistribute super."authinfo-hs";
"authoring" = dontDistribute super."authoring";
+ "auto-update" = doDistribute super."auto-update_0_1_2_2";
"autonix-deps" = dontDistribute super."autonix-deps";
"autonix-deps-kf5" = dontDistribute super."autonix-deps-kf5";
"autoproc" = dontDistribute super."autoproc";
@@ -1445,6 +1451,8 @@ self: super: {
"base-generics" = dontDistribute super."base-generics";
"base-io-access" = dontDistribute super."base-io-access";
"base-noprelude" = dontDistribute super."base-noprelude";
+ "base-orphans" = doDistribute super."base-orphans_0_4_4";
+ "base-prelude" = doDistribute super."base-prelude_0_1_19";
"base32-bytestring" = dontDistribute super."base32-bytestring";
"base58-bytestring" = dontDistribute super."base58-bytestring";
"base58address" = dontDistribute super."base58address";
@@ -1488,6 +1496,7 @@ self: super: {
"bidirectionalization-combined" = dontDistribute super."bidirectionalization-combined";
"bidispec" = dontDistribute super."bidispec";
"bidispec-extras" = dontDistribute super."bidispec-extras";
+ "bifunctors" = doDistribute super."bifunctors_5";
"billboard-parser" = dontDistribute super."billboard-parser";
"billeksah-forms" = dontDistribute super."billeksah-forms";
"billeksah-main" = dontDistribute super."billeksah-main";
@@ -1653,6 +1662,7 @@ self: super: {
"bot" = dontDistribute super."bot";
"both" = dontDistribute super."both";
"botpp" = dontDistribute super."botpp";
+ "bound" = doDistribute super."bound_1_0_6";
"bound-gen" = dontDistribute super."bound-gen";
"bounded-tchan" = dontDistribute super."bounded-tchan";
"boundingboxes" = dontDistribute super."boundingboxes";
@@ -1676,6 +1686,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_0";
"buffer-builder-aeson" = dontDistribute super."buffer-builder-aeson";
"buffon" = dontDistribute super."buffon";
"bugzilla" = dontDistribute super."bugzilla";
@@ -1838,6 +1849,7 @@ self: super: {
"cef" = dontDistribute super."cef";
"ceilometer-common" = dontDistribute super."ceilometer-common";
"cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo";
+ "cerberus" = dontDistribute super."cerberus";
"cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_3";
"cereal-derive" = dontDistribute super."cereal-derive";
"cereal-enumerator" = dontDistribute super."cereal-enumerator";
@@ -1941,6 +1953,7 @@ self: super: {
"clipper" = dontDistribute super."clipper";
"clippings" = dontDistribute super."clippings";
"clist" = dontDistribute super."clist";
+ "clock" = doDistribute super."clock_0_5_1";
"clocked" = dontDistribute super."clocked";
"clogparse" = dontDistribute super."clogparse";
"clone-all" = dontDistribute super."clone-all";
@@ -2039,6 +2052,7 @@ self: super: {
"concrete-typerep" = dontDistribute super."concrete-typerep";
"concurrent-barrier" = dontDistribute super."concurrent-barrier";
"concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache";
+ "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9";
"concurrent-machines" = dontDistribute super."concurrent-machines";
"concurrent-output" = dontDistribute super."concurrent-output";
"concurrent-sa" = dontDistribute super."concurrent-sa";
@@ -2404,6 +2418,8 @@ self: super: {
"delta-h" = dontDistribute super."delta-h";
"demarcate" = dontDistribute super."demarcate";
"denominate" = dontDistribute super."denominate";
+ "dependent-map" = doDistribute super."dependent-map_0_1_1_3";
+ "dependent-sum" = doDistribute super."dependent-sum_0_2_1_0";
"depends" = dontDistribute super."depends";
"dephd" = dontDistribute super."dephd";
"dequeue" = dontDistribute super."dequeue";
@@ -2451,6 +2467,7 @@ self: super: {
"diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube";
"diagrams-svg" = doDistribute super."diagrams-svg_1_3_1_5";
"diagrams-tikz" = dontDistribute super."diagrams-tikz";
+ "dialog" = dontDistribute super."dialog";
"dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit";
"dicom" = dontDistribute super."dicom";
"dictparser" = dontDistribute super."dictparser";
@@ -2632,6 +2649,7 @@ self: super: {
"edenskel" = dontDistribute super."edenskel";
"edentv" = dontDistribute super."edentv";
"edge" = dontDistribute super."edge";
+ "edis" = dontDistribute super."edis";
"edit-distance-vector" = dontDistribute super."edit-distance-vector";
"edit-lenses" = dontDistribute super."edit-lenses";
"edit-lenses-demo" = dontDistribute super."edit-lenses-demo";
@@ -2813,6 +2831,7 @@ self: super: {
"failable-list" = dontDistribute super."failable-list";
"failure" = dontDistribute super."failure";
"fair-predicates" = dontDistribute super."fair-predicates";
+ "fake-type" = dontDistribute super."fake-type";
"faker" = dontDistribute super."faker";
"falling-turnip" = dontDistribute super."falling-turnip";
"fallingblocks" = dontDistribute super."fallingblocks";
@@ -3011,6 +3030,7 @@ self: super: {
"friday-juicypixels" = dontDistribute super."friday-juicypixels";
"friday-scale-dct" = dontDistribute super."friday-scale-dct";
"friendly-time" = dontDistribute super."friendly-time";
+ "frontmatter" = dontDistribute super."frontmatter";
"frp-arduino" = dontDistribute super."frp-arduino";
"frpnow" = dontDistribute super."frpnow";
"frpnow-gloss" = dontDistribute super."frpnow-gloss";
@@ -3219,6 +3239,7 @@ self: super: {
"gitlib-s3" = dontDistribute super."gitlib-s3";
"gitlib-sample" = dontDistribute super."gitlib-sample";
"gitlib-utils" = dontDistribute super."gitlib-utils";
+ "gitter" = dontDistribute super."gitter";
"gl-capture" = dontDistribute super."gl-capture";
"glade" = dontDistribute super."glade";
"gladexml-accessor" = dontDistribute super."gladexml-accessor";
@@ -3426,6 +3447,7 @@ self: super: {
"gstreamer" = dontDistribute super."gstreamer";
"gt-tools" = dontDistribute super."gt-tools";
"gtfs" = dontDistribute super."gtfs";
+ "gtk" = doDistribute super."gtk_0_13_9";
"gtk-helpers" = dontDistribute super."gtk-helpers";
"gtk-jsinput" = dontDistribute super."gtk-jsinput";
"gtk-largeTreeStore" = dontDistribute super."gtk-largeTreeStore";
@@ -3518,6 +3540,7 @@ self: super: {
"hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP";
"hackage-server" = dontDistribute super."hackage-server";
"hackage-sparks" = dontDistribute super."hackage-sparks";
+ "hackage-whatsnew" = dontDistribute super."hackage-whatsnew";
"hackage2hwn" = dontDistribute super."hackage2hwn";
"hackage2twitter" = dontDistribute super."hackage2twitter";
"hackager" = dontDistribute super."hackager";
@@ -3673,6 +3696,7 @@ self: super: {
"haskell-in-space" = dontDistribute super."haskell-in-space";
"haskell-modbus" = dontDistribute super."haskell-modbus";
"haskell-mpi" = dontDistribute super."haskell-mpi";
+ "haskell-names" = doDistribute super."haskell-names_0_5_3";
"haskell-openflow" = dontDistribute super."haskell-openflow";
"haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter";
"haskell-platform-test" = dontDistribute super."haskell-platform-test";
@@ -3746,6 +3770,7 @@ self: super: {
"hasloGUI" = dontDistribute super."hasloGUI";
"hasparql-client" = dontDistribute super."hasparql-client";
"haspell" = dontDistribute super."haspell";
+ "hasql" = doDistribute super."hasql_0_7_4";
"hasql-pool" = dontDistribute super."hasql-pool";
"hasql-postgres-options" = dontDistribute super."hasql-postgres-options";
"hasql-th" = dontDistribute super."hasql-th";
@@ -3956,6 +3981,8 @@ self: super: {
"hlibBladeRF" = dontDistribute super."hlibBladeRF";
"hlibev" = dontDistribute super."hlibev";
"hlibfam" = dontDistribute super."hlibfam";
+ "hlibgit2" = doDistribute super."hlibgit2_0_18_0_14";
+ "hlibsass" = doDistribute super."hlibsass_0_1_4_0";
"hlint" = doDistribute super."hlint_1_9_21";
"hlogger" = dontDistribute super."hlogger";
"hlongurl" = dontDistribute super."hlongurl";
@@ -4121,6 +4148,7 @@ self: super: {
"hsConfigure" = dontDistribute super."hsConfigure";
"hsSqlite3" = dontDistribute super."hsSqlite3";
"hsXenCtrl" = dontDistribute super."hsXenCtrl";
+ "hsass" = doDistribute super."hsass_0_3_0";
"hsay" = dontDistribute super."hsay";
"hsb2hs" = dontDistribute super."hsb2hs";
"hsbackup" = dontDistribute super."hsbackup";
@@ -4161,6 +4189,7 @@ self: super: {
"hsdip" = dontDistribute super."hsdip";
"hsdns" = dontDistribute super."hsdns";
"hsdns-cache" = dontDistribute super."hsdns-cache";
+ "hsebaysdk" = doDistribute super."hsebaysdk_0_3_0_0";
"hsemail-ns" = dontDistribute super."hsemail-ns";
"hsenv" = dontDistribute super."hsenv";
"hserv" = dontDistribute super."hserv";
@@ -4217,6 +4246,7 @@ self: super: {
"hspec-meta" = doDistribute super."hspec-meta_2_1_7";
"hspec-monad-control" = dontDistribute super."hspec-monad-control";
"hspec-server" = dontDistribute super."hspec-server";
+ "hspec-setup" = dontDistribute super."hspec-setup";
"hspec-shouldbe" = dontDistribute super."hspec-shouldbe";
"hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0";
"hspec-snap" = doDistribute super."hspec-snap_0_3_3_0";
@@ -4312,6 +4342,7 @@ self: super: {
"http-server" = dontDistribute super."http-server";
"http-shed" = dontDistribute super."http-shed";
"http-test" = dontDistribute super."http-test";
+ "http-types" = doDistribute super."http-types_0_8_6";
"http-wget" = dontDistribute super."http-wget";
"http2" = doDistribute super."http2_1_0_4";
"httpd-shed" = dontDistribute super."httpd-shed";
@@ -4438,6 +4469,7 @@ self: super: {
"imgurder" = dontDistribute super."imgurder";
"imm" = dontDistribute super."imm";
"imparse" = dontDistribute super."imparse";
+ "imperative-edsl" = dontDistribute super."imperative-edsl";
"imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl";
"implicit" = dontDistribute super."implicit";
"implicit-params" = dontDistribute super."implicit-params";
@@ -4610,6 +4642,7 @@ self: super: {
"jsmw" = dontDistribute super."jsmw";
"json-assertions" = dontDistribute super."json-assertions";
"json-b" = dontDistribute super."json-b";
+ "json-encoder" = dontDistribute super."json-encoder";
"json-enumerator" = dontDistribute super."json-enumerator";
"json-extra" = dontDistribute super."json-extra";
"json-fu" = dontDistribute super."json-fu";
@@ -4619,6 +4652,7 @@ self: super: {
"json-rpc" = dontDistribute super."json-rpc";
"json-rpc-client" = dontDistribute super."json-rpc-client";
"json-rpc-server" = dontDistribute super."json-rpc-server";
+ "json-schema" = doDistribute super."json-schema_0_7_4_0";
"json-sop" = dontDistribute super."json-sop";
"json-state" = dontDistribute super."json-state";
"json-stream" = dontDistribute super."json-stream";
@@ -4731,6 +4765,7 @@ self: super: {
"lambdacube-examples" = dontDistribute super."lambdacube-examples";
"lambdacube-gl" = dontDistribute super."lambdacube-gl";
"lambdacube-samples" = dontDistribute super."lambdacube-samples";
+ "lambdatex" = dontDistribute super."lambdatex";
"lambdatwit" = dontDistribute super."lambdatwit";
"lambdiff" = dontDistribute super."lambdiff";
"lame-tester" = dontDistribute super."lame-tester";
@@ -4772,6 +4807,7 @@ self: super: {
"language-thrift" = dontDistribute super."language-thrift";
"language-typescript" = dontDistribute super."language-typescript";
"language-vhdl" = dontDistribute super."language-vhdl";
+ "largeword" = doDistribute super."largeword_1_2_3";
"lat" = dontDistribute super."lat";
"latest-npm-version" = dontDistribute super."latest-npm-version";
"latex" = dontDistribute super."latex";
@@ -4918,8 +4954,10 @@ self: super: {
"liquidhaskell" = dontDistribute super."liquidhaskell";
"lispparser" = dontDistribute super."lispparser";
"list-extras" = dontDistribute super."list-extras";
+ "list-fusion-probe" = doDistribute super."list-fusion-probe_0_1_0_4";
"list-grouping" = dontDistribute super."list-grouping";
"list-mux" = dontDistribute super."list-mux";
+ "list-prompt" = dontDistribute super."list-prompt";
"list-remote-forwards" = dontDistribute super."list-remote-forwards";
"list-t-attoparsec" = dontDistribute super."list-t-attoparsec";
"list-t-html-parser" = dontDistribute super."list-t-html-parser";
@@ -4963,6 +5001,7 @@ self: super: {
"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-domain" = doDistribute super."log-domain_0_10_3";
@@ -5007,6 +5046,7 @@ self: super: {
"lub" = dontDistribute super."lub";
"lucid" = doDistribute super."lucid_2_9_2";
"lucid-foundation" = dontDistribute super."lucid-foundation";
+ "lucid-svg" = doDistribute super."lucid-svg_0_5_0_0";
"lucienne" = dontDistribute super."lucienne";
"luhn" = dontDistribute super."luhn";
"lui" = dontDistribute super."lui";
@@ -5403,6 +5443,7 @@ self: super: {
"nbt" = dontDistribute super."nbt";
"nc-indicators" = dontDistribute super."nc-indicators";
"ncurses" = dontDistribute super."ncurses";
+ "ndjson-conduit" = doDistribute super."ndjson-conduit_0_1_0_2";
"neat" = dontDistribute super."neat";
"neat-interpolation" = doDistribute super."neat-interpolation_0_2_3";
"needle" = dontDistribute super."needle";
@@ -5576,6 +5617,7 @@ self: super: {
"omnifmt" = dontDistribute super."omnifmt";
"on-a-horse" = dontDistribute super."on-a-horse";
"on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel";
+ "once" = dontDistribute super."once";
"one-liner" = dontDistribute super."one-liner";
"one-time-password" = dontDistribute super."one-time-password";
"oneOfN" = dontDistribute super."oneOfN";
@@ -5630,6 +5672,7 @@ self: super: {
"optimusprime" = dontDistribute super."optimusprime";
"optional" = dontDistribute super."optional";
"options-time" = dontDistribute super."options-time";
+ "optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"orc" = dontDistribute super."orc";
"orchestrate" = dontDistribute super."orchestrate";
@@ -5818,6 +5861,7 @@ self: super: {
"pgstream" = dontDistribute super."pgstream";
"phasechange" = dontDistribute super."phasechange";
"phizzle" = dontDistribute super."phizzle";
+ "phoityne" = dontDistribute super."phoityne";
"phone-numbers" = dontDistribute super."phone-numbers";
"phone-push" = dontDistribute super."phone-push";
"phonetic-code" = dontDistribute super."phonetic-code";
@@ -5838,6 +5882,7 @@ self: super: {
"pipe-enumerator" = dontDistribute super."pipe-enumerator";
"pipeclip" = dontDistribute super."pipeclip";
"pipes" = doDistribute super."pipes_4_1_6";
+ "pipes-aeson" = doDistribute super."pipes-aeson_0_4_1_4";
"pipes-async" = dontDistribute super."pipes-async";
"pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming";
"pipes-cacophony" = dontDistribute super."pipes-cacophony";
@@ -5845,6 +5890,7 @@ self: super: {
"pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv";
"pipes-cereal" = dontDistribute super."pipes-cereal";
"pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus";
+ "pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_3";
"pipes-conduit" = dontDistribute super."pipes-conduit";
"pipes-core" = dontDistribute super."pipes-core";
"pipes-courier" = dontDistribute super."pipes-courier";
@@ -5953,6 +5999,7 @@ self: super: {
"possible" = dontDistribute super."possible";
"post-mess-age" = doDistribute super."post-mess-age_0_1_0_0";
"postcodes" = dontDistribute super."postcodes";
+ "postgresql-binary" = doDistribute super."postgresql-binary_0_5_2_1";
"postgresql-config" = dontDistribute super."postgresql-config";
"postgresql-connector" = dontDistribute super."postgresql-connector";
"postgresql-copy-escape" = dontDistribute super."postgresql-copy-escape";
@@ -6383,6 +6430,7 @@ self: super: {
"rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster";
"retry" = doDistribute super."retry_0_6";
"retryer" = dontDistribute super."retryer";
+ "rev-state" = doDistribute super."rev-state_0_1";
"revdectime" = dontDistribute super."revdectime";
"reverse-apply" = dontDistribute super."reverse-apply";
"reverse-geocoding" = dontDistribute super."reverse-geocoding";
@@ -6610,6 +6658,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serv" = dontDistribute super."serv";
"servant" = doDistribute super."servant_0_4_4_4";
"servant-JuicyPixels" = doDistribute super."servant-JuicyPixels_0_1_0_0";
"servant-blaze" = dontDistribute super."servant-blaze";
@@ -6818,6 +6867,7 @@ self: super: {
"snaplet-coffee" = dontDistribute super."snaplet-coffee";
"snaplet-css-min" = dontDistribute super."snaplet-css-min";
"snaplet-environments" = dontDistribute super."snaplet-environments";
+ "snaplet-fay" = doDistribute super."snaplet-fay_0_3_3_12";
"snaplet-ghcjs" = dontDistribute super."snaplet-ghcjs";
"snaplet-hasql" = dontDistribute super."snaplet-hasql";
"snaplet-haxl" = dontDistribute super."snaplet-haxl";
@@ -7104,6 +7154,7 @@ self: super: {
"swift-lda" = dontDistribute super."swift-lda";
"swish" = dontDistribute super."swish";
"sws" = dontDistribute super."sws";
+ "syb" = doDistribute super."syb_0_5_1";
"syb-extras" = dontDistribute super."syb-extras";
"syb-with-class" = dontDistribute super."syb-with-class";
"syb-with-class-instances-text" = dontDistribute super."syb-with-class-instances-text";
@@ -7548,6 +7599,7 @@ self: super: {
"typehash" = dontDistribute super."typehash";
"typelevel" = dontDistribute super."typelevel";
"typelevel-tensor" = dontDistribute super."typelevel-tensor";
+ "typelits-witnesses" = dontDistribute super."typelits-witnesses";
"typeof" = dontDistribute super."typeof";
"typeparams" = dontDistribute super."typeparams";
"typesafe-endian" = dontDistribute super."typesafe-endian";
@@ -7773,6 +7825,7 @@ self: super: {
"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" = dontDistribute super."vty";
@@ -7959,6 +8012,7 @@ self: super: {
"x-dsp" = dontDistribute super."x-dsp";
"x11-xim" = dontDistribute super."x11-xim";
"x11-xinput" = dontDistribute super."x11-xinput";
+ "x509-system" = doDistribute super."x509-system_1_6_1";
"x509-util" = dontDistribute super."x509-util";
"xattr" = dontDistribute super."xattr";
"xbattbar" = dontDistribute super."xbattbar";
diff --git a/pkgs/development/haskell-modules/configuration-lts-3.8.nix b/pkgs/development/haskell-modules/configuration-lts-3.8.nix
index 900e14b8aef..3a476ae5983 100644
--- a/pkgs/development/haskell-modules/configuration-lts-3.8.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-3.8.nix
@@ -71,6 +71,7 @@ self: super: {
"Advgame" = dontDistribute super."Advgame";
"AesonBson" = dontDistribute super."AesonBson";
"Agata" = dontDistribute super."Agata";
+ "Agda" = doDistribute super."Agda_2_4_2_4";
"Agda-executable" = dontDistribute super."Agda-executable";
"AhoCorasick" = dontDistribute super."AhoCorasick";
"AlgorithmW" = dontDistribute super."AlgorithmW";
@@ -318,6 +319,7 @@ self: super: {
"FormalGrammars" = dontDistribute super."FormalGrammars";
"Foster" = dontDistribute super."Foster";
"FpMLv53" = dontDistribute super."FpMLv53";
+ "FractalArt" = dontDistribute super."FractalArt";
"Fractaler" = dontDistribute super."Fractaler";
"Frames" = dontDistribute super."Frames";
"Frank" = dontDistribute super."Frank";
@@ -467,6 +469,7 @@ self: super: {
"HTTP-Simple" = dontDistribute super."HTTP-Simple";
"HTab" = dontDistribute super."HTab";
"HTicTacToe" = dontDistribute super."HTicTacToe";
+ "HUnit" = doDistribute super."HUnit_1_2_5_2";
"HUnit-Diff" = dontDistribute super."HUnit-Diff";
"HUnit-Plus" = dontDistribute super."HUnit-Plus";
"HUnit-approx" = dontDistribute super."HUnit-approx";
@@ -499,6 +502,7 @@ self: super: {
"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";
@@ -1327,6 +1331,7 @@ self: super: {
"asic" = dontDistribute super."asic";
"asil" = dontDistribute super."asil";
"asn1-data" = dontDistribute super."asn1-data";
+ "asn1-types" = doDistribute super."asn1-types_0_3_1";
"asn1dump" = dontDistribute super."asn1dump";
"assembler" = dontDistribute super."assembler";
"assert" = dontDistribute super."assert";
@@ -1382,6 +1387,7 @@ self: super: {
"authenticate-ldap" = dontDistribute super."authenticate-ldap";
"authinfo-hs" = dontDistribute super."authinfo-hs";
"authoring" = dontDistribute super."authoring";
+ "auto-update" = doDistribute super."auto-update_0_1_2_2";
"autonix-deps" = dontDistribute super."autonix-deps";
"autonix-deps-kf5" = dontDistribute super."autonix-deps-kf5";
"autoproc" = dontDistribute super."autoproc";
@@ -1445,6 +1451,8 @@ self: super: {
"base-generics" = dontDistribute super."base-generics";
"base-io-access" = dontDistribute super."base-io-access";
"base-noprelude" = dontDistribute super."base-noprelude";
+ "base-orphans" = doDistribute super."base-orphans_0_4_4";
+ "base-prelude" = doDistribute super."base-prelude_0_1_19";
"base32-bytestring" = dontDistribute super."base32-bytestring";
"base58-bytestring" = dontDistribute super."base58-bytestring";
"base58address" = dontDistribute super."base58address";
@@ -1488,6 +1496,7 @@ self: super: {
"bidirectionalization-combined" = dontDistribute super."bidirectionalization-combined";
"bidispec" = dontDistribute super."bidispec";
"bidispec-extras" = dontDistribute super."bidispec-extras";
+ "bifunctors" = doDistribute super."bifunctors_5";
"billboard-parser" = dontDistribute super."billboard-parser";
"billeksah-forms" = dontDistribute super."billeksah-forms";
"billeksah-main" = dontDistribute super."billeksah-main";
@@ -1650,6 +1659,7 @@ self: super: {
"bot" = dontDistribute super."bot";
"both" = dontDistribute super."both";
"botpp" = dontDistribute super."botpp";
+ "bound" = doDistribute super."bound_1_0_6";
"bound-gen" = dontDistribute super."bound-gen";
"bounded-tchan" = dontDistribute super."bounded-tchan";
"boundingboxes" = dontDistribute super."boundingboxes";
@@ -1673,6 +1683,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_0";
"buffer-builder-aeson" = dontDistribute super."buffer-builder-aeson";
"buffon" = dontDistribute super."buffon";
"bugzilla" = dontDistribute super."bugzilla";
@@ -1834,6 +1845,7 @@ self: super: {
"cef" = dontDistribute super."cef";
"ceilometer-common" = dontDistribute super."ceilometer-common";
"cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo";
+ "cerberus" = dontDistribute super."cerberus";
"cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_3";
"cereal-derive" = dontDistribute super."cereal-derive";
"cereal-enumerator" = dontDistribute super."cereal-enumerator";
@@ -1937,6 +1949,7 @@ self: super: {
"clipper" = dontDistribute super."clipper";
"clippings" = dontDistribute super."clippings";
"clist" = dontDistribute super."clist";
+ "clock" = doDistribute super."clock_0_5_1";
"clocked" = dontDistribute super."clocked";
"clogparse" = dontDistribute super."clogparse";
"clone-all" = dontDistribute super."clone-all";
@@ -2034,6 +2047,7 @@ self: super: {
"concrete-typerep" = dontDistribute super."concrete-typerep";
"concurrent-barrier" = dontDistribute super."concurrent-barrier";
"concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache";
+ "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9";
"concurrent-machines" = dontDistribute super."concurrent-machines";
"concurrent-output" = dontDistribute super."concurrent-output";
"concurrent-sa" = dontDistribute super."concurrent-sa";
@@ -2398,6 +2412,8 @@ self: super: {
"delta-h" = dontDistribute super."delta-h";
"demarcate" = dontDistribute super."demarcate";
"denominate" = dontDistribute super."denominate";
+ "dependent-map" = doDistribute super."dependent-map_0_1_1_3";
+ "dependent-sum" = doDistribute super."dependent-sum_0_2_1_0";
"depends" = dontDistribute super."depends";
"dephd" = dontDistribute super."dephd";
"dequeue" = dontDistribute super."dequeue";
@@ -2442,6 +2458,7 @@ self: super: {
"diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube";
"diagrams-svg" = doDistribute super."diagrams-svg_1_3_1_6";
"diagrams-tikz" = dontDistribute super."diagrams-tikz";
+ "dialog" = dontDistribute super."dialog";
"dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit";
"dicom" = dontDistribute super."dicom";
"dictparser" = dontDistribute super."dictparser";
@@ -2621,6 +2638,7 @@ self: super: {
"edenskel" = dontDistribute super."edenskel";
"edentv" = dontDistribute super."edentv";
"edge" = dontDistribute super."edge";
+ "edis" = dontDistribute super."edis";
"edit-distance-vector" = dontDistribute super."edit-distance-vector";
"edit-lenses" = dontDistribute super."edit-lenses";
"edit-lenses-demo" = dontDistribute super."edit-lenses-demo";
@@ -2802,6 +2820,7 @@ self: super: {
"failable-list" = dontDistribute super."failable-list";
"failure" = dontDistribute super."failure";
"fair-predicates" = dontDistribute super."fair-predicates";
+ "fake-type" = dontDistribute super."fake-type";
"faker" = dontDistribute super."faker";
"falling-turnip" = dontDistribute super."falling-turnip";
"fallingblocks" = dontDistribute super."fallingblocks";
@@ -3000,6 +3019,7 @@ self: super: {
"friday-juicypixels" = dontDistribute super."friday-juicypixels";
"friday-scale-dct" = dontDistribute super."friday-scale-dct";
"friendly-time" = dontDistribute super."friendly-time";
+ "frontmatter" = dontDistribute super."frontmatter";
"frp-arduino" = dontDistribute super."frp-arduino";
"frpnow" = dontDistribute super."frpnow";
"frpnow-gloss" = dontDistribute super."frpnow-gloss";
@@ -3208,6 +3228,7 @@ self: super: {
"gitlib-s3" = dontDistribute super."gitlib-s3";
"gitlib-sample" = dontDistribute super."gitlib-sample";
"gitlib-utils" = dontDistribute super."gitlib-utils";
+ "gitter" = dontDistribute super."gitter";
"gl-capture" = dontDistribute super."gl-capture";
"glade" = dontDistribute super."glade";
"gladexml-accessor" = dontDistribute super."gladexml-accessor";
@@ -3415,6 +3436,7 @@ self: super: {
"gstreamer" = dontDistribute super."gstreamer";
"gt-tools" = dontDistribute super."gt-tools";
"gtfs" = dontDistribute super."gtfs";
+ "gtk" = doDistribute super."gtk_0_13_9";
"gtk-helpers" = dontDistribute super."gtk-helpers";
"gtk-jsinput" = dontDistribute super."gtk-jsinput";
"gtk-largeTreeStore" = dontDistribute super."gtk-largeTreeStore";
@@ -3507,6 +3529,7 @@ self: super: {
"hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP";
"hackage-server" = dontDistribute super."hackage-server";
"hackage-sparks" = dontDistribute super."hackage-sparks";
+ "hackage-whatsnew" = dontDistribute super."hackage-whatsnew";
"hackage2hwn" = dontDistribute super."hackage2hwn";
"hackage2twitter" = dontDistribute super."hackage2twitter";
"hackager" = dontDistribute super."hackager";
@@ -3662,6 +3685,7 @@ self: super: {
"haskell-in-space" = dontDistribute super."haskell-in-space";
"haskell-modbus" = dontDistribute super."haskell-modbus";
"haskell-mpi" = dontDistribute super."haskell-mpi";
+ "haskell-names" = doDistribute super."haskell-names_0_5_3";
"haskell-openflow" = dontDistribute super."haskell-openflow";
"haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter";
"haskell-platform-test" = dontDistribute super."haskell-platform-test";
@@ -3735,6 +3759,7 @@ self: super: {
"hasloGUI" = dontDistribute super."hasloGUI";
"hasparql-client" = dontDistribute super."hasparql-client";
"haspell" = dontDistribute super."haspell";
+ "hasql" = doDistribute super."hasql_0_7_4";
"hasql-pool" = dontDistribute super."hasql-pool";
"hasql-postgres-options" = dontDistribute super."hasql-postgres-options";
"hasql-th" = dontDistribute super."hasql-th";
@@ -3945,6 +3970,8 @@ self: super: {
"hlibBladeRF" = dontDistribute super."hlibBladeRF";
"hlibev" = dontDistribute super."hlibev";
"hlibfam" = dontDistribute super."hlibfam";
+ "hlibgit2" = doDistribute super."hlibgit2_0_18_0_14";
+ "hlibsass" = doDistribute super."hlibsass_0_1_4_0";
"hlint" = doDistribute super."hlint_1_9_21";
"hlogger" = dontDistribute super."hlogger";
"hlongurl" = dontDistribute super."hlongurl";
@@ -4110,6 +4137,7 @@ self: super: {
"hsConfigure" = dontDistribute super."hsConfigure";
"hsSqlite3" = dontDistribute super."hsSqlite3";
"hsXenCtrl" = dontDistribute super."hsXenCtrl";
+ "hsass" = doDistribute super."hsass_0_3_0";
"hsay" = dontDistribute super."hsay";
"hsb2hs" = dontDistribute super."hsb2hs";
"hsbackup" = dontDistribute super."hsbackup";
@@ -4150,6 +4178,7 @@ self: super: {
"hsdip" = dontDistribute super."hsdip";
"hsdns" = dontDistribute super."hsdns";
"hsdns-cache" = dontDistribute super."hsdns-cache";
+ "hsebaysdk" = doDistribute super."hsebaysdk_0_3_0_0";
"hsemail-ns" = dontDistribute super."hsemail-ns";
"hsenv" = dontDistribute super."hsenv";
"hserv" = dontDistribute super."hserv";
@@ -4206,6 +4235,7 @@ self: super: {
"hspec-meta" = doDistribute super."hspec-meta_2_1_7";
"hspec-monad-control" = dontDistribute super."hspec-monad-control";
"hspec-server" = dontDistribute super."hspec-server";
+ "hspec-setup" = dontDistribute super."hspec-setup";
"hspec-shouldbe" = dontDistribute super."hspec-shouldbe";
"hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0";
"hspec-snap" = doDistribute super."hspec-snap_0_3_3_0";
@@ -4301,6 +4331,7 @@ self: super: {
"http-server" = dontDistribute super."http-server";
"http-shed" = dontDistribute super."http-shed";
"http-test" = dontDistribute super."http-test";
+ "http-types" = doDistribute super."http-types_0_8_6";
"http-wget" = dontDistribute super."http-wget";
"http2" = doDistribute super."http2_1_0_4";
"httpd-shed" = dontDistribute super."httpd-shed";
@@ -4427,6 +4458,7 @@ self: super: {
"imgurder" = dontDistribute super."imgurder";
"imm" = dontDistribute super."imm";
"imparse" = dontDistribute super."imparse";
+ "imperative-edsl" = dontDistribute super."imperative-edsl";
"imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl";
"implicit" = dontDistribute super."implicit";
"implicit-params" = dontDistribute super."implicit-params";
@@ -4599,6 +4631,7 @@ self: super: {
"jsmw" = dontDistribute super."jsmw";
"json-assertions" = dontDistribute super."json-assertions";
"json-b" = dontDistribute super."json-b";
+ "json-encoder" = dontDistribute super."json-encoder";
"json-enumerator" = dontDistribute super."json-enumerator";
"json-extra" = dontDistribute super."json-extra";
"json-fu" = dontDistribute super."json-fu";
@@ -4608,6 +4641,7 @@ self: super: {
"json-rpc" = dontDistribute super."json-rpc";
"json-rpc-client" = dontDistribute super."json-rpc-client";
"json-rpc-server" = dontDistribute super."json-rpc-server";
+ "json-schema" = doDistribute super."json-schema_0_7_4_0";
"json-sop" = dontDistribute super."json-sop";
"json-state" = dontDistribute super."json-state";
"json-stream" = dontDistribute super."json-stream";
@@ -4720,6 +4754,7 @@ self: super: {
"lambdacube-examples" = dontDistribute super."lambdacube-examples";
"lambdacube-gl" = dontDistribute super."lambdacube-gl";
"lambdacube-samples" = dontDistribute super."lambdacube-samples";
+ "lambdatex" = dontDistribute super."lambdatex";
"lambdatwit" = dontDistribute super."lambdatwit";
"lambdiff" = dontDistribute super."lambdiff";
"lame-tester" = dontDistribute super."lame-tester";
@@ -4761,6 +4796,7 @@ self: super: {
"language-thrift" = dontDistribute super."language-thrift";
"language-typescript" = dontDistribute super."language-typescript";
"language-vhdl" = dontDistribute super."language-vhdl";
+ "largeword" = doDistribute super."largeword_1_2_3";
"lat" = dontDistribute super."lat";
"latest-npm-version" = dontDistribute super."latest-npm-version";
"latex" = dontDistribute super."latex";
@@ -4907,8 +4943,10 @@ self: super: {
"liquidhaskell" = dontDistribute super."liquidhaskell";
"lispparser" = dontDistribute super."lispparser";
"list-extras" = dontDistribute super."list-extras";
+ "list-fusion-probe" = doDistribute super."list-fusion-probe_0_1_0_4";
"list-grouping" = dontDistribute super."list-grouping";
"list-mux" = dontDistribute super."list-mux";
+ "list-prompt" = dontDistribute super."list-prompt";
"list-remote-forwards" = dontDistribute super."list-remote-forwards";
"list-t-attoparsec" = dontDistribute super."list-t-attoparsec";
"list-t-html-parser" = dontDistribute super."list-t-html-parser";
@@ -4952,6 +4990,7 @@ self: super: {
"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-domain" = doDistribute super."log-domain_0_10_3";
@@ -4996,6 +5035,7 @@ self: super: {
"lub" = dontDistribute super."lub";
"lucid" = doDistribute super."lucid_2_9_2";
"lucid-foundation" = dontDistribute super."lucid-foundation";
+ "lucid-svg" = doDistribute super."lucid-svg_0_5_0_0";
"lucienne" = dontDistribute super."lucienne";
"luhn" = dontDistribute super."luhn";
"lui" = dontDistribute super."lui";
@@ -5390,6 +5430,7 @@ self: super: {
"nbt" = dontDistribute super."nbt";
"nc-indicators" = dontDistribute super."nc-indicators";
"ncurses" = dontDistribute super."ncurses";
+ "ndjson-conduit" = doDistribute super."ndjson-conduit_0_1_0_2";
"neat" = dontDistribute super."neat";
"neat-interpolation" = doDistribute super."neat-interpolation_0_2_3";
"needle" = dontDistribute super."needle";
@@ -5563,6 +5604,7 @@ self: super: {
"omnifmt" = dontDistribute super."omnifmt";
"on-a-horse" = dontDistribute super."on-a-horse";
"on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel";
+ "once" = dontDistribute super."once";
"one-liner" = dontDistribute super."one-liner";
"one-time-password" = dontDistribute super."one-time-password";
"oneOfN" = dontDistribute super."oneOfN";
@@ -5617,6 +5659,7 @@ self: super: {
"optimusprime" = dontDistribute super."optimusprime";
"optional" = dontDistribute super."optional";
"options-time" = dontDistribute super."options-time";
+ "optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"orc" = dontDistribute super."orc";
"orchestrate" = dontDistribute super."orchestrate";
@@ -5805,6 +5848,7 @@ self: super: {
"pgstream" = dontDistribute super."pgstream";
"phasechange" = dontDistribute super."phasechange";
"phizzle" = dontDistribute super."phizzle";
+ "phoityne" = dontDistribute super."phoityne";
"phone-numbers" = dontDistribute super."phone-numbers";
"phone-push" = dontDistribute super."phone-push";
"phonetic-code" = dontDistribute super."phonetic-code";
@@ -5825,6 +5869,7 @@ self: super: {
"pipe-enumerator" = dontDistribute super."pipe-enumerator";
"pipeclip" = dontDistribute super."pipeclip";
"pipes" = doDistribute super."pipes_4_1_6";
+ "pipes-aeson" = doDistribute super."pipes-aeson_0_4_1_4";
"pipes-async" = dontDistribute super."pipes-async";
"pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming";
"pipes-cacophony" = dontDistribute super."pipes-cacophony";
@@ -5832,6 +5877,7 @@ self: super: {
"pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv";
"pipes-cereal" = dontDistribute super."pipes-cereal";
"pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus";
+ "pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_3";
"pipes-conduit" = dontDistribute super."pipes-conduit";
"pipes-core" = dontDistribute super."pipes-core";
"pipes-courier" = dontDistribute super."pipes-courier";
@@ -5940,6 +5986,7 @@ self: super: {
"possible" = dontDistribute super."possible";
"post-mess-age" = doDistribute super."post-mess-age_0_1_0_0";
"postcodes" = dontDistribute super."postcodes";
+ "postgresql-binary" = doDistribute super."postgresql-binary_0_5_2_1";
"postgresql-config" = dontDistribute super."postgresql-config";
"postgresql-connector" = dontDistribute super."postgresql-connector";
"postgresql-copy-escape" = dontDistribute super."postgresql-copy-escape";
@@ -6367,6 +6414,7 @@ self: super: {
"rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster";
"retry" = doDistribute super."retry_0_6";
"retryer" = dontDistribute super."retryer";
+ "rev-state" = doDistribute super."rev-state_0_1";
"revdectime" = dontDistribute super."revdectime";
"reverse-apply" = dontDistribute super."reverse-apply";
"reverse-geocoding" = dontDistribute super."reverse-geocoding";
@@ -6594,6 +6642,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serv" = dontDistribute super."serv";
"servant" = doDistribute super."servant_0_4_4_4";
"servant-JuicyPixels" = doDistribute super."servant-JuicyPixels_0_1_0_0";
"servant-blaze" = dontDistribute super."servant-blaze";
@@ -6802,6 +6851,7 @@ self: super: {
"snaplet-coffee" = dontDistribute super."snaplet-coffee";
"snaplet-css-min" = dontDistribute super."snaplet-css-min";
"snaplet-environments" = dontDistribute super."snaplet-environments";
+ "snaplet-fay" = doDistribute super."snaplet-fay_0_3_3_12";
"snaplet-ghcjs" = dontDistribute super."snaplet-ghcjs";
"snaplet-hasql" = dontDistribute super."snaplet-hasql";
"snaplet-haxl" = dontDistribute super."snaplet-haxl";
@@ -7088,6 +7138,7 @@ self: super: {
"swift-lda" = dontDistribute super."swift-lda";
"swish" = dontDistribute super."swish";
"sws" = dontDistribute super."sws";
+ "syb" = doDistribute super."syb_0_5_1";
"syb-extras" = dontDistribute super."syb-extras";
"syb-with-class" = dontDistribute super."syb-with-class";
"syb-with-class-instances-text" = dontDistribute super."syb-with-class-instances-text";
@@ -7531,6 +7582,7 @@ self: super: {
"typehash" = dontDistribute super."typehash";
"typelevel" = dontDistribute super."typelevel";
"typelevel-tensor" = dontDistribute super."typelevel-tensor";
+ "typelits-witnesses" = dontDistribute super."typelits-witnesses";
"typeof" = dontDistribute super."typeof";
"typeparams" = dontDistribute super."typeparams";
"typesafe-endian" = dontDistribute super."typesafe-endian";
@@ -7756,6 +7808,7 @@ self: super: {
"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" = dontDistribute super."vty";
@@ -7942,6 +7995,7 @@ self: super: {
"x-dsp" = dontDistribute super."x-dsp";
"x11-xim" = dontDistribute super."x11-xim";
"x11-xinput" = dontDistribute super."x11-xinput";
+ "x509-system" = doDistribute super."x509-system_1_6_1";
"x509-util" = dontDistribute super."x509-util";
"xattr" = dontDistribute super."xattr";
"xbattbar" = dontDistribute super."xbattbar";
@@ -7969,6 +8023,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_2";
"xml-conduit-parse" = dontDistribute super."xml-conduit-parse";
"xml-conduit-writer" = dontDistribute super."xml-conduit-writer";
"xml-enumerator" = dontDistribute super."xml-enumerator";
diff --git a/pkgs/development/haskell-modules/configuration-lts-3.9.nix b/pkgs/development/haskell-modules/configuration-lts-3.9.nix
index 66de270065c..f3f2fec1982 100644
--- a/pkgs/development/haskell-modules/configuration-lts-3.9.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-3.9.nix
@@ -71,6 +71,7 @@ self: super: {
"Advgame" = dontDistribute super."Advgame";
"AesonBson" = dontDistribute super."AesonBson";
"Agata" = dontDistribute super."Agata";
+ "Agda" = doDistribute super."Agda_2_4_2_4";
"Agda-executable" = dontDistribute super."Agda-executable";
"AhoCorasick" = dontDistribute super."AhoCorasick";
"AlgorithmW" = dontDistribute super."AlgorithmW";
@@ -318,6 +319,7 @@ self: super: {
"FormalGrammars" = dontDistribute super."FormalGrammars";
"Foster" = dontDistribute super."Foster";
"FpMLv53" = dontDistribute super."FpMLv53";
+ "FractalArt" = dontDistribute super."FractalArt";
"Fractaler" = dontDistribute super."Fractaler";
"Frames" = dontDistribute super."Frames";
"Frank" = dontDistribute super."Frank";
@@ -467,6 +469,7 @@ self: super: {
"HTTP-Simple" = dontDistribute super."HTTP-Simple";
"HTab" = dontDistribute super."HTab";
"HTicTacToe" = dontDistribute super."HTicTacToe";
+ "HUnit" = doDistribute super."HUnit_1_2_5_2";
"HUnit-Diff" = dontDistribute super."HUnit-Diff";
"HUnit-Plus" = dontDistribute super."HUnit-Plus";
"HUnit-approx" = dontDistribute super."HUnit-approx";
@@ -498,6 +501,7 @@ self: super: {
"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";
@@ -1325,6 +1329,7 @@ self: super: {
"asic" = dontDistribute super."asic";
"asil" = dontDistribute super."asil";
"asn1-data" = dontDistribute super."asn1-data";
+ "asn1-types" = doDistribute super."asn1-types_0_3_1";
"asn1dump" = dontDistribute super."asn1dump";
"assembler" = dontDistribute super."assembler";
"assert" = dontDistribute super."assert";
@@ -1380,6 +1385,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_2_2";
"autonix-deps" = dontDistribute super."autonix-deps";
"autonix-deps-kf5" = dontDistribute super."autonix-deps-kf5";
"autoproc" = dontDistribute super."autoproc";
@@ -1443,6 +1449,8 @@ self: super: {
"base-generics" = dontDistribute super."base-generics";
"base-io-access" = dontDistribute super."base-io-access";
"base-noprelude" = dontDistribute super."base-noprelude";
+ "base-orphans" = doDistribute super."base-orphans_0_4_4";
+ "base-prelude" = doDistribute super."base-prelude_0_1_19";
"base32-bytestring" = dontDistribute super."base32-bytestring";
"base58-bytestring" = dontDistribute super."base58-bytestring";
"base58address" = dontDistribute super."base58address";
@@ -1486,6 +1494,7 @@ self: super: {
"bidirectionalization-combined" = dontDistribute super."bidirectionalization-combined";
"bidispec" = dontDistribute super."bidispec";
"bidispec-extras" = dontDistribute super."bidispec-extras";
+ "bifunctors" = doDistribute super."bifunctors_5";
"billboard-parser" = dontDistribute super."billboard-parser";
"billeksah-forms" = dontDistribute super."billeksah-forms";
"billeksah-main" = dontDistribute super."billeksah-main";
@@ -1647,6 +1656,7 @@ self: super: {
"bot" = dontDistribute super."bot";
"both" = dontDistribute super."both";
"botpp" = dontDistribute super."botpp";
+ "bound" = doDistribute super."bound_1_0_6";
"bound-gen" = dontDistribute super."bound-gen";
"bounded-tchan" = dontDistribute super."bounded-tchan";
"boundingboxes" = dontDistribute super."boundingboxes";
@@ -1670,6 +1680,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_0";
"buffer-builder-aeson" = dontDistribute super."buffer-builder-aeson";
"buffon" = dontDistribute super."buffon";
"bugzilla" = dontDistribute super."bugzilla";
@@ -1830,6 +1841,7 @@ self: super: {
"cef" = dontDistribute super."cef";
"ceilometer-common" = dontDistribute super."ceilometer-common";
"cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo";
+ "cerberus" = dontDistribute super."cerberus";
"cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_3";
"cereal-derive" = dontDistribute super."cereal-derive";
"cereal-enumerator" = dontDistribute super."cereal-enumerator";
@@ -1933,6 +1945,7 @@ self: super: {
"clipper" = dontDistribute super."clipper";
"clippings" = dontDistribute super."clippings";
"clist" = dontDistribute super."clist";
+ "clock" = doDistribute super."clock_0_5_1";
"clocked" = dontDistribute super."clocked";
"clogparse" = dontDistribute super."clogparse";
"clone-all" = dontDistribute super."clone-all";
@@ -2030,6 +2043,7 @@ self: super: {
"concrete-typerep" = dontDistribute super."concrete-typerep";
"concurrent-barrier" = dontDistribute super."concurrent-barrier";
"concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache";
+ "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9";
"concurrent-machines" = dontDistribute super."concurrent-machines";
"concurrent-output" = dontDistribute super."concurrent-output";
"concurrent-sa" = dontDistribute super."concurrent-sa";
@@ -2393,6 +2407,8 @@ self: super: {
"delta-h" = dontDistribute super."delta-h";
"demarcate" = dontDistribute super."demarcate";
"denominate" = dontDistribute super."denominate";
+ "dependent-map" = doDistribute super."dependent-map_0_1_1_3";
+ "dependent-sum" = doDistribute super."dependent-sum_0_2_1_0";
"depends" = dontDistribute super."depends";
"dephd" = dontDistribute super."dephd";
"dequeue" = dontDistribute super."dequeue";
@@ -2437,6 +2453,7 @@ self: super: {
"diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube";
"diagrams-svg" = doDistribute super."diagrams-svg_1_3_1_6";
"diagrams-tikz" = dontDistribute super."diagrams-tikz";
+ "dialog" = dontDistribute super."dialog";
"dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit";
"dicom" = dontDistribute super."dicom";
"dictparser" = dontDistribute super."dictparser";
@@ -2615,6 +2632,7 @@ self: super: {
"edenskel" = dontDistribute super."edenskel";
"edentv" = dontDistribute super."edentv";
"edge" = dontDistribute super."edge";
+ "edis" = dontDistribute super."edis";
"edit-distance-vector" = dontDistribute super."edit-distance-vector";
"edit-lenses" = dontDistribute super."edit-lenses";
"edit-lenses-demo" = dontDistribute super."edit-lenses-demo";
@@ -2795,6 +2813,7 @@ self: super: {
"failable-list" = dontDistribute super."failable-list";
"failure" = dontDistribute super."failure";
"fair-predicates" = dontDistribute super."fair-predicates";
+ "fake-type" = dontDistribute super."fake-type";
"faker" = dontDistribute super."faker";
"falling-turnip" = dontDistribute super."falling-turnip";
"fallingblocks" = dontDistribute super."fallingblocks";
@@ -2992,6 +3011,7 @@ self: super: {
"friday-juicypixels" = dontDistribute super."friday-juicypixels";
"friday-scale-dct" = dontDistribute super."friday-scale-dct";
"friendly-time" = dontDistribute super."friendly-time";
+ "frontmatter" = dontDistribute super."frontmatter";
"frp-arduino" = dontDistribute super."frp-arduino";
"frpnow" = dontDistribute super."frpnow";
"frpnow-gloss" = dontDistribute super."frpnow-gloss";
@@ -3200,6 +3220,7 @@ self: super: {
"gitlib-s3" = dontDistribute super."gitlib-s3";
"gitlib-sample" = dontDistribute super."gitlib-sample";
"gitlib-utils" = dontDistribute super."gitlib-utils";
+ "gitter" = dontDistribute super."gitter";
"gl-capture" = dontDistribute super."gl-capture";
"glade" = dontDistribute super."glade";
"gladexml-accessor" = dontDistribute super."gladexml-accessor";
@@ -3407,6 +3428,7 @@ self: super: {
"gstreamer" = dontDistribute super."gstreamer";
"gt-tools" = dontDistribute super."gt-tools";
"gtfs" = dontDistribute super."gtfs";
+ "gtk" = doDistribute super."gtk_0_13_9";
"gtk-helpers" = dontDistribute super."gtk-helpers";
"gtk-jsinput" = dontDistribute super."gtk-jsinput";
"gtk-largeTreeStore" = dontDistribute super."gtk-largeTreeStore";
@@ -3499,6 +3521,7 @@ self: super: {
"hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP";
"hackage-server" = dontDistribute super."hackage-server";
"hackage-sparks" = dontDistribute super."hackage-sparks";
+ "hackage-whatsnew" = dontDistribute super."hackage-whatsnew";
"hackage2hwn" = dontDistribute super."hackage2hwn";
"hackage2twitter" = dontDistribute super."hackage2twitter";
"hackager" = dontDistribute super."hackager";
@@ -3654,6 +3677,7 @@ self: super: {
"haskell-in-space" = dontDistribute super."haskell-in-space";
"haskell-modbus" = dontDistribute super."haskell-modbus";
"haskell-mpi" = dontDistribute super."haskell-mpi";
+ "haskell-names" = doDistribute super."haskell-names_0_5_3";
"haskell-openflow" = dontDistribute super."haskell-openflow";
"haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter";
"haskell-platform-test" = dontDistribute super."haskell-platform-test";
@@ -3727,6 +3751,7 @@ self: super: {
"hasloGUI" = dontDistribute super."hasloGUI";
"hasparql-client" = dontDistribute super."hasparql-client";
"haspell" = dontDistribute super."haspell";
+ "hasql" = doDistribute super."hasql_0_7_4";
"hasql-pool" = dontDistribute super."hasql-pool";
"hasql-postgres-options" = dontDistribute super."hasql-postgres-options";
"hasql-th" = dontDistribute super."hasql-th";
@@ -3937,6 +3962,8 @@ self: super: {
"hlibBladeRF" = dontDistribute super."hlibBladeRF";
"hlibev" = dontDistribute super."hlibev";
"hlibfam" = dontDistribute super."hlibfam";
+ "hlibgit2" = doDistribute super."hlibgit2_0_18_0_14";
+ "hlibsass" = doDistribute super."hlibsass_0_1_4_0";
"hlint" = doDistribute super."hlint_1_9_21";
"hlogger" = dontDistribute super."hlogger";
"hlongurl" = dontDistribute super."hlongurl";
@@ -4102,6 +4129,7 @@ self: super: {
"hsConfigure" = dontDistribute super."hsConfigure";
"hsSqlite3" = dontDistribute super."hsSqlite3";
"hsXenCtrl" = dontDistribute super."hsXenCtrl";
+ "hsass" = doDistribute super."hsass_0_3_0";
"hsay" = dontDistribute super."hsay";
"hsb2hs" = dontDistribute super."hsb2hs";
"hsbackup" = dontDistribute super."hsbackup";
@@ -4142,6 +4170,7 @@ self: super: {
"hsdip" = dontDistribute super."hsdip";
"hsdns" = dontDistribute super."hsdns";
"hsdns-cache" = dontDistribute super."hsdns-cache";
+ "hsebaysdk" = doDistribute super."hsebaysdk_0_3_0_0";
"hsemail-ns" = dontDistribute super."hsemail-ns";
"hsenv" = dontDistribute super."hsenv";
"hserv" = dontDistribute super."hserv";
@@ -4198,6 +4227,7 @@ self: super: {
"hspec-meta" = doDistribute super."hspec-meta_2_1_7";
"hspec-monad-control" = dontDistribute super."hspec-monad-control";
"hspec-server" = dontDistribute super."hspec-server";
+ "hspec-setup" = dontDistribute super."hspec-setup";
"hspec-shouldbe" = dontDistribute super."hspec-shouldbe";
"hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0";
"hspec-snap" = doDistribute super."hspec-snap_0_3_3_0";
@@ -4293,6 +4323,7 @@ self: super: {
"http-server" = dontDistribute super."http-server";
"http-shed" = dontDistribute super."http-shed";
"http-test" = dontDistribute super."http-test";
+ "http-types" = doDistribute super."http-types_0_8_6";
"http-wget" = dontDistribute super."http-wget";
"http2" = doDistribute super."http2_1_0_4";
"httpd-shed" = dontDistribute super."httpd-shed";
@@ -4419,6 +4450,7 @@ self: super: {
"imgurder" = dontDistribute super."imgurder";
"imm" = dontDistribute super."imm";
"imparse" = dontDistribute super."imparse";
+ "imperative-edsl" = dontDistribute super."imperative-edsl";
"imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl";
"implicit" = dontDistribute super."implicit";
"implicit-params" = dontDistribute super."implicit-params";
@@ -4591,6 +4623,7 @@ self: super: {
"jsmw" = dontDistribute super."jsmw";
"json-assertions" = dontDistribute super."json-assertions";
"json-b" = dontDistribute super."json-b";
+ "json-encoder" = dontDistribute super."json-encoder";
"json-enumerator" = dontDistribute super."json-enumerator";
"json-extra" = dontDistribute super."json-extra";
"json-fu" = dontDistribute super."json-fu";
@@ -4600,6 +4633,7 @@ self: super: {
"json-rpc" = dontDistribute super."json-rpc";
"json-rpc-client" = dontDistribute super."json-rpc-client";
"json-rpc-server" = dontDistribute super."json-rpc-server";
+ "json-schema" = doDistribute super."json-schema_0_7_4_0";
"json-sop" = dontDistribute super."json-sop";
"json-state" = dontDistribute super."json-state";
"json-stream" = dontDistribute super."json-stream";
@@ -4712,6 +4746,7 @@ self: super: {
"lambdacube-examples" = dontDistribute super."lambdacube-examples";
"lambdacube-gl" = dontDistribute super."lambdacube-gl";
"lambdacube-samples" = dontDistribute super."lambdacube-samples";
+ "lambdatex" = dontDistribute super."lambdatex";
"lambdatwit" = dontDistribute super."lambdatwit";
"lambdiff" = dontDistribute super."lambdiff";
"lame-tester" = dontDistribute super."lame-tester";
@@ -4753,6 +4788,7 @@ self: super: {
"language-thrift" = dontDistribute super."language-thrift";
"language-typescript" = dontDistribute super."language-typescript";
"language-vhdl" = dontDistribute super."language-vhdl";
+ "largeword" = doDistribute super."largeword_1_2_3";
"lat" = dontDistribute super."lat";
"latest-npm-version" = dontDistribute super."latest-npm-version";
"latex" = dontDistribute super."latex";
@@ -4899,8 +4935,10 @@ self: super: {
"liquidhaskell" = dontDistribute super."liquidhaskell";
"lispparser" = dontDistribute super."lispparser";
"list-extras" = dontDistribute super."list-extras";
+ "list-fusion-probe" = doDistribute super."list-fusion-probe_0_1_0_4";
"list-grouping" = dontDistribute super."list-grouping";
"list-mux" = dontDistribute super."list-mux";
+ "list-prompt" = dontDistribute super."list-prompt";
"list-remote-forwards" = dontDistribute super."list-remote-forwards";
"list-t-attoparsec" = dontDistribute super."list-t-attoparsec";
"list-t-html-parser" = dontDistribute super."list-t-html-parser";
@@ -4944,6 +4982,7 @@ self: super: {
"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-domain" = doDistribute super."log-domain_0_10_3";
@@ -4988,6 +5027,7 @@ self: super: {
"lub" = dontDistribute super."lub";
"lucid" = doDistribute super."lucid_2_9_2";
"lucid-foundation" = dontDistribute super."lucid-foundation";
+ "lucid-svg" = doDistribute super."lucid-svg_0_5_0_0";
"lucienne" = dontDistribute super."lucienne";
"luhn" = dontDistribute super."luhn";
"lui" = dontDistribute super."lui";
@@ -5382,6 +5422,7 @@ self: super: {
"nbt" = dontDistribute super."nbt";
"nc-indicators" = dontDistribute super."nc-indicators";
"ncurses" = dontDistribute super."ncurses";
+ "ndjson-conduit" = doDistribute super."ndjson-conduit_0_1_0_2";
"neat" = dontDistribute super."neat";
"neat-interpolation" = doDistribute super."neat-interpolation_0_2_3";
"needle" = dontDistribute super."needle";
@@ -5555,6 +5596,7 @@ self: super: {
"omnifmt" = dontDistribute super."omnifmt";
"on-a-horse" = dontDistribute super."on-a-horse";
"on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel";
+ "once" = dontDistribute super."once";
"one-liner" = dontDistribute super."one-liner";
"one-time-password" = dontDistribute super."one-time-password";
"oneOfN" = dontDistribute super."oneOfN";
@@ -5608,6 +5650,7 @@ self: super: {
"optimusprime" = dontDistribute super."optimusprime";
"optional" = dontDistribute super."optional";
"options-time" = dontDistribute super."options-time";
+ "optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"orc" = dontDistribute super."orc";
"orchestrate" = dontDistribute super."orchestrate";
@@ -5796,6 +5839,7 @@ self: super: {
"pgstream" = dontDistribute super."pgstream";
"phasechange" = dontDistribute super."phasechange";
"phizzle" = dontDistribute super."phizzle";
+ "phoityne" = dontDistribute super."phoityne";
"phone-numbers" = dontDistribute super."phone-numbers";
"phone-push" = dontDistribute super."phone-push";
"phonetic-code" = dontDistribute super."phonetic-code";
@@ -5816,6 +5860,7 @@ self: super: {
"pipe-enumerator" = dontDistribute super."pipe-enumerator";
"pipeclip" = dontDistribute super."pipeclip";
"pipes" = doDistribute super."pipes_4_1_6";
+ "pipes-aeson" = doDistribute super."pipes-aeson_0_4_1_4";
"pipes-async" = dontDistribute super."pipes-async";
"pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming";
"pipes-cacophony" = dontDistribute super."pipes-cacophony";
@@ -5823,6 +5868,7 @@ self: super: {
"pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv";
"pipes-cereal" = dontDistribute super."pipes-cereal";
"pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus";
+ "pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_3";
"pipes-conduit" = dontDistribute super."pipes-conduit";
"pipes-core" = dontDistribute super."pipes-core";
"pipes-courier" = dontDistribute super."pipes-courier";
@@ -5931,6 +5977,7 @@ self: super: {
"possible" = dontDistribute super."possible";
"post-mess-age" = doDistribute super."post-mess-age_0_1_0_0";
"postcodes" = dontDistribute super."postcodes";
+ "postgresql-binary" = doDistribute super."postgresql-binary_0_5_2_1";
"postgresql-config" = dontDistribute super."postgresql-config";
"postgresql-connector" = dontDistribute super."postgresql-connector";
"postgresql-copy-escape" = dontDistribute super."postgresql-copy-escape";
@@ -6358,6 +6405,7 @@ self: super: {
"rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster";
"retry" = doDistribute super."retry_0_6";
"retryer" = dontDistribute super."retryer";
+ "rev-state" = doDistribute super."rev-state_0_1";
"revdectime" = dontDistribute super."revdectime";
"reverse-apply" = dontDistribute super."reverse-apply";
"reverse-geocoding" = dontDistribute super."reverse-geocoding";
@@ -6585,6 +6633,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serv" = dontDistribute super."serv";
"servant" = doDistribute super."servant_0_4_4_4";
"servant-JuicyPixels" = doDistribute super."servant-JuicyPixels_0_1_0_0";
"servant-blaze" = dontDistribute super."servant-blaze";
@@ -6793,6 +6842,7 @@ self: super: {
"snaplet-coffee" = dontDistribute super."snaplet-coffee";
"snaplet-css-min" = dontDistribute super."snaplet-css-min";
"snaplet-environments" = dontDistribute super."snaplet-environments";
+ "snaplet-fay" = doDistribute super."snaplet-fay_0_3_3_12";
"snaplet-ghcjs" = dontDistribute super."snaplet-ghcjs";
"snaplet-hasql" = dontDistribute super."snaplet-hasql";
"snaplet-haxl" = dontDistribute super."snaplet-haxl";
@@ -7079,6 +7129,7 @@ self: super: {
"swift-lda" = dontDistribute super."swift-lda";
"swish" = dontDistribute super."swish";
"sws" = dontDistribute super."sws";
+ "syb" = doDistribute super."syb_0_5_1";
"syb-extras" = dontDistribute super."syb-extras";
"syb-with-class" = dontDistribute super."syb-with-class";
"syb-with-class-instances-text" = dontDistribute super."syb-with-class-instances-text";
@@ -7522,6 +7573,7 @@ self: super: {
"typehash" = dontDistribute super."typehash";
"typelevel" = dontDistribute super."typelevel";
"typelevel-tensor" = dontDistribute super."typelevel-tensor";
+ "typelits-witnesses" = dontDistribute super."typelits-witnesses";
"typeof" = dontDistribute super."typeof";
"typeparams" = dontDistribute super."typeparams";
"typesafe-endian" = dontDistribute super."typesafe-endian";
@@ -7747,6 +7799,7 @@ self: super: {
"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" = dontDistribute super."vty";
@@ -7933,6 +7986,7 @@ self: super: {
"x-dsp" = dontDistribute super."x-dsp";
"x11-xim" = dontDistribute super."x11-xim";
"x11-xinput" = dontDistribute super."x11-xinput";
+ "x509-system" = doDistribute super."x509-system_1_6_1";
"x509-util" = dontDistribute super."x509-util";
"xattr" = dontDistribute super."xattr";
"xbattbar" = dontDistribute super."xbattbar";
@@ -7960,6 +8014,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_2";
"xml-conduit-parse" = dontDistribute super."xml-conduit-parse";
"xml-conduit-writer" = dontDistribute super."xml-conduit-writer";
"xml-enumerator" = dontDistribute super."xml-enumerator";
diff --git a/pkgs/development/haskell-modules/hackage-packages.nix b/pkgs/development/haskell-modules/hackage-packages.nix
index f1a0e64c4e9..ddbc2109dd5 100644
--- a/pkgs/development/haskell-modules/hackage-packages.nix
+++ b/pkgs/development/haskell-modules/hackage-packages.nix
@@ -457,8 +457,8 @@ self: {
({ mkDerivation, base, freealut, OpenAL, StateVar, transformers }:
mkDerivation {
pname = "ALUT";
- version = "2.4.0.0";
- sha256 = "0f5cf9362ace34a9739cd3a45015782a0102015e62c8dd8e290d7952e6ff193d";
+ version = "2.4.0.1";
+ sha256 = "fcf517a673b0ad2bd6b83033a33f77603b36f293ad651d5ede92c4d30225b56b";
libraryHaskellDepends = [ base OpenAL StateVar transformers ];
librarySystemDepends = [ freealut ];
homepage = "https://github.com/haskell-openal/ALUT";
@@ -722,7 +722,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {inherit (pkgs) emacs;};
- "Agda" = callPackage
+ "Agda_2_4_2_4" = callPackage
({ mkDerivation, alex, array, base, binary, boxes, bytestring
, containers, cpphs, data-hash, deepseq, directory, edit-distance
, emacs, equivalence, filepath, geniplate-mirror, happy, hashable
@@ -755,6 +755,41 @@ self: {
homepage = "http://wiki.portal.chalmers.se/agda/";
description = "A dependently typed functional programming language and proof assistant";
license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {inherit (pkgs) emacs;};
+
+ "Agda" = callPackage
+ ({ mkDerivation, alex, array, base, binary, boxes, bytestring
+ , containers, cpphs, data-hash, deepseq, directory, edit-distance
+ , emacs, equivalence, filepath, geniplate-mirror, happy, hashable
+ , hashtables, haskeline, haskell-src-exts, mtl, parallel, pretty
+ , process, QuickCheck, strict, template-haskell, text, time
+ , transformers, transformers-compat, unordered-containers, xhtml
+ , zlib
+ }:
+ mkDerivation {
+ pname = "Agda";
+ version = "2.4.2.5";
+ sha256 = "959658a372d93b735d92191b372d221461026c98de4f92e56d198b576dfb67ee";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [
+ array base binary boxes bytestring containers data-hash deepseq
+ directory edit-distance equivalence filepath geniplate-mirror
+ hashable hashtables haskeline haskell-src-exts mtl parallel pretty
+ process QuickCheck strict template-haskell text time transformers
+ transformers-compat unordered-containers xhtml zlib
+ ];
+ libraryToolDepends = [ alex cpphs happy ];
+ executableHaskellDepends = [ base directory filepath process ];
+ executableToolDepends = [ emacs ];
+ postInstall = ''
+ $out/bin/agda -c --no-main $(find $out/share -name Primitive.agda)
+ $out/bin/agda-mode compile
+ '';
+ homepage = "http://wiki.portal.chalmers.se/agda/";
+ description = "A dependently typed functional programming language and proof assistant";
+ license = "unknown";
}) {inherit (pkgs) emacs;};
"Agda-executable" = callPackage
@@ -2568,6 +2603,7 @@ self: {
version = "0.2.0.0";
sha256 = "8b0484241f389a9b83225f97ca0d903b7e5d3b0d98c34f5a526a0c7c3b934b45";
libraryHaskellDepends = [ base lens template-haskell ];
+ jailbreak = true;
description = "Coordinate systems";
license = stdenv.lib.licenses.mit;
}) {};
@@ -2810,6 +2846,7 @@ self: {
diagrams-svg lens lucid-svg mtl old-locale operational SVGFonts
text time
];
+ jailbreak = true;
homepage = "https://github.com/timbod7/haskell-chart/wiki";
description = "Diagrams backend for Charts";
license = stdenv.lib.licenses.bsd3;
@@ -3944,7 +3981,6 @@ self: {
HUnit integer-gmp QuickCheck SHA tagged test-framework
test-framework-hunit test-framework-quickcheck2
];
- jailbreak = true;
description = "Implementation of DSA, based on the description of FIPS 186-4";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -4445,6 +4481,7 @@ self: {
sha256 = "71b3cfb410c08cf1692d4aa484b3190cc0840245adc23ea7ed8bb3e109a41c88";
libraryHaskellDepends = [ base containers MonadRandom ];
testHaskellDepends = [ base containers MonadRandom ];
+ jailbreak = true;
homepage = "https://github.com/wyager/Dist";
description = "A Haskell library for probability distributions";
license = stdenv.lib.licenses.mit;
@@ -5903,6 +5940,29 @@ self: {
license = "LGPL";
}) {};
+ "FractalArt" = callPackage
+ ({ mkDerivation, base, directory, filepath, JuicyPixels, libX11
+ , mwc-random, primitive, random, vector
+ }:
+ mkDerivation {
+ pname = "FractalArt";
+ version = "0.2.0.0";
+ sha256 = "011d310a8ba7d5e891bf8a6c0f567ccda609324df792d8533475e4f28a4c2097";
+ revision = "2";
+ editedCabalFile = "5ce975b8ccd2d1ed165abada3d4b8af27d8bac02783595343aac28a6d7617b74";
+ isLibrary = false;
+ isExecutable = true;
+ executableHaskellDepends = [
+ base directory filepath JuicyPixels mwc-random primitive random
+ vector
+ ];
+ executableSystemDepends = [ libX11 ];
+ jailbreak = true;
+ homepage = "https://github.com/TomSmeets/FractalArt";
+ description = "Generates colorful wallpapers";
+ license = stdenv.lib.licenses.mit;
+ }) {inherit (pkgs.xorg) libX11;};
+
"Fractaler" = callPackage
({ mkDerivation, base, FTGL, GLFW-b, OpenGLRaw, parallel, random
, time
@@ -5916,6 +5976,7 @@ self: {
executableHaskellDepends = [
base FTGL GLFW-b OpenGLRaw parallel random time
];
+ jailbreak = true;
license = stdenv.lib.licenses.mit;
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
@@ -6086,6 +6147,7 @@ self: {
testHaskellDepends = [
base bindings-GLFW HUnit test-framework test-framework-hunit
];
+ jailbreak = true;
doCheck = false;
description = "Bindings to GLFW OpenGL library";
license = stdenv.lib.licenses.bsd3;
@@ -6254,6 +6316,20 @@ self: {
hydraPlatforms = [ "i686-linux" "x86_64-linux" ];
}) {inherit (pkgs) freeglut; inherit (pkgs) mesa;};
+ "GLURaw_1_5_0_3" = callPackage
+ ({ mkDerivation, base, freeglut, mesa, OpenGLRaw, transformers }:
+ mkDerivation {
+ pname = "GLURaw";
+ version = "1.5.0.3";
+ sha256 = "066134b3c68442e074e67299f500d67cd769de7853e98ea01b89b19cd8c00b47";
+ 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;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {inherit (pkgs) freeglut; inherit (pkgs) mesa;};
+
"GLUT_2_5_1_1" = callPackage
({ mkDerivation, array, base, containers, freeglut, mesa, OpenGL
, OpenGLRaw
@@ -6328,9 +6404,27 @@ self: {
hydraPlatforms = [ "i686-linux" "x86_64-linux" ];
}) {inherit (pkgs) freeglut; inherit (pkgs) mesa;};
+ "GLUT_2_7_0_4" = callPackage
+ ({ mkDerivation, array, base, containers, freeglut, mesa, OpenGL
+ , OpenGLRaw, StateVar, transformers
+ }:
+ mkDerivation {
+ pname = "GLUT";
+ version = "2.7.0.4";
+ sha256 = "44e80e79895659e00e25033dfc29819f55226046ca6ca46b3373e031262b934c";
+ libraryHaskellDepends = [
+ array base containers OpenGL OpenGLRaw StateVar transformers
+ ];
+ librarySystemDepends = [ freeglut mesa ];
+ 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;};
+
"GLUtil" = callPackage
- ({ mkDerivation, array, base, bytestring, containers, cpphs
- , directory, filepath, JuicyPixels, linear, OpenGL, OpenGLRaw
+ ({ mkDerivation, array, base, bytestring, containers, directory
+ , filepath, hpp, JuicyPixels, linear, OpenGL, OpenGLRaw
, transformers, vector
}:
mkDerivation {
@@ -6338,10 +6432,9 @@ self: {
version = "0.8.8";
sha256 = "2ceb807d97c1c599d26be80d4bae98321cdbd59cff3af0dd68d1daa27615c7d4";
libraryHaskellDepends = [
- array base bytestring containers directory filepath JuicyPixels
+ array base bytestring containers directory filepath hpp JuicyPixels
linear OpenGL OpenGLRaw transformers vector
];
- libraryToolDepends = [ cpphs ];
description = "Miscellaneous OpenGL utilities";
license = stdenv.lib.licenses.bsd3;
hydraPlatforms = stdenv.lib.platforms.none;
@@ -7541,6 +7634,7 @@ self: {
messagepack text vect
];
librarySystemDepends = [ hgamer3d062 Urho3D ];
+ jailbreak = true;
homepage = "http://www.hgamer3d.org";
description = "Toolset for the Haskell Game Programmer";
license = "unknown";
@@ -8910,7 +9004,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "HUnit" = callPackage
+ "HUnit_1_2_5_2" = callPackage
({ mkDerivation, base, deepseq }:
mkDerivation {
pname = "HUnit";
@@ -8920,9 +9014,10 @@ self: {
homepage = "http://hunit.sourceforge.net/";
description = "A unit testing framework for Haskell";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "HUnit_1_3_0_0" = callPackage
+ "HUnit" = callPackage
({ mkDerivation, base, deepseq, filepath }:
mkDerivation {
pname = "HUnit";
@@ -8933,7 +9028,6 @@ self: {
homepage = "http://hunit.sourceforge.net/";
description = "A unit testing framework for Haskell";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"HUnit-Diff" = callPackage
@@ -9795,6 +9889,31 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "Hate" = callPackage
+ ({ mkDerivation, base, bytestring, GLFW-b, GLUtil, hpp, JuicyPixels
+ , JuicyPixels-util, lens, mtl, multimap, OpenGL, random, stm
+ , transformers, vect, vect-opengl, vector
+ }:
+ mkDerivation {
+ pname = "Hate";
+ version = "0.1.4.3";
+ sha256 = "527920c3f401113cf4123486fb578447916eae928923e7bb857ac14442f34e6e";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [
+ base bytestring GLFW-b GLUtil hpp JuicyPixels JuicyPixels-util mtl
+ multimap OpenGL stm transformers vect vect-opengl vector
+ ];
+ executableHaskellDepends = [
+ base GLFW-b GLUtil JuicyPixels JuicyPixels-util lens mtl OpenGL
+ random transformers vect vect-opengl vector
+ ];
+ jailbreak = true;
+ homepage = "http://github.com/bananu7/Hate";
+ description = "A small 2D game framework";
+ license = stdenv.lib.licenses.mit;
+ }) {};
+
"Hawk" = callPackage
({ mkDerivation, base, bytestring, bytestring-trie, cgi, containers
, convertible, data-default, dataenc, directory, filepath, hack
@@ -9998,8 +10117,8 @@ self: {
}:
mkDerivation {
pname = "Hish";
- version = "0.1.2.1";
- sha256 = "fd3d404e8ea165e3011f5580d4f6556a596d7a24e6510e2ce5902779e29b6ca4";
+ version = "0.1.2.2";
+ sha256 = "5094eee275eb1d9dba7929c1bd812cb1b299dce18be5eefcfde3b2cd48d5365a";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -10310,20 +10429,22 @@ self: {
}) {Judy = null;};
"HsOpenSSL" = callPackage
- ({ mkDerivation, base, bytestring, HUnit, network, old-locale
- , openssl, test-framework, test-framework-hunit, time
+ ({ mkDerivation, base, bytestring, HUnit, integer-gmp, network
+ , old-locale, openssl, test-framework, test-framework-hunit, time
}:
mkDerivation {
pname = "HsOpenSSL";
version = "0.11.1.1";
sha256 = "4a61e074e968a9863e0f3440b3be8ac131457b3d34eb983ca8102122d8ebc4c1";
libraryHaskellDepends = [
- base bytestring network old-locale time
+ base bytestring integer-gmp network old-locale time
];
librarySystemDepends = [ openssl ];
testHaskellDepends = [
base bytestring HUnit test-framework test-framework-hunit
];
+ jailbreak = true;
+ doCheck = false;
homepage = "https://github.com/phonohawk/HsOpenSSL";
description = "Partial OpenSSL binding for Haskell";
license = stdenv.lib.licenses.publicDomain;
@@ -10459,6 +10580,7 @@ self: {
libraryHaskellDepends = [
aeson base containers lens lens-aeson mtl transformers wreq
];
+ jailbreak = true;
homepage = "https://github.com/sjoerdvisscher/HueAPI";
description = "API for controlling Philips Hue lights";
license = stdenv.lib.licenses.bsd3;
@@ -11650,6 +11772,7 @@ self: {
template-haskell text transformers unordered-containers vector
vector-binary-instances zlib
];
+ jailbreak = true;
homepage = "http://github.com/LambdaHack/LambdaHack";
description = "A game engine library for roguelike dungeon crawlers";
license = stdenv.lib.licenses.bsd3;
@@ -12502,16 +12625,15 @@ self: {
}) {};
"MemoTrie" = callPackage
- ({ mkDerivation, base, void }:
+ ({ mkDerivation, base }:
mkDerivation {
pname = "MemoTrie";
version = "0.6.4";
sha256 = "4238c8f7ea1ecd2497d0a948493acbdc47728b2528b6e7841ef064b783d68b1c";
isLibrary = true;
isExecutable = true;
- libraryHaskellDepends = [ base void ];
+ libraryHaskellDepends = [ base ];
executableHaskellDepends = [ base ];
- jailbreak = true;
homepage = "https://github.com/conal/MemoTrie";
description = "Trie-based memo functions";
license = stdenv.lib.licenses.bsd3;
@@ -12589,7 +12711,7 @@ self: {
base bytestring containers GLUtil lens linear OpenGL OpenGLRaw
WaveFront
];
- doHaddock = false;
+ jailbreak = true;
description = "OpenGL for dummies";
license = stdenv.lib.licenses.mit;
hydraPlatforms = stdenv.lib.platforms.none;
@@ -13407,6 +13529,7 @@ self: {
base bytestring cereal containers directory hashable messagepack
network stm vector
];
+ jailbreak = true;
description = "Simple networked key/value store";
license = stdenv.lib.licenses.mit;
}) {};
@@ -13876,6 +13999,19 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "ObjectName_1_1_0_1" = callPackage
+ ({ mkDerivation, base, transformers }:
+ mkDerivation {
+ pname = "ObjectName";
+ version = "1.1.0.1";
+ sha256 = "72dbef237580fd4e8567de2de752835bbadd3629f486d1586486d49a49aad210";
+ libraryHaskellDepends = [ base transformers ];
+ homepage = "https://github.com/svenpanne/ObjectName";
+ description = "Explicitly handled object names";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"Obsidian" = callPackage
({ mkDerivation, base, containers, cuda, language-c-quote
, mainland-pretty, mtl, mwc-random, process, rdtsc, text
@@ -14029,8 +14165,8 @@ self: {
}:
mkDerivation {
pname = "OpenAL";
- version = "1.7.0.1";
- sha256 = "671987cb52152317e6bed01b20e09c031a20066ff3f76aa450965ec162971750";
+ version = "1.7.0.2";
+ sha256 = "72fe6db9ae0449df5bdb674fde9b3bfb5a1544261ba6a32dadc5396dd95064af";
libraryHaskellDepends = [
base ObjectName OpenGL StateVar transformers
];
@@ -14145,8 +14281,8 @@ self: {
}:
mkDerivation {
pname = "OpenGL";
- version = "2.13.1.1";
- sha256 = "6db5b3530e234bc643e3279ccbc78992b5e8f462f618593e2cebc80aa9abe0a6";
+ version = "2.13.2.0";
+ sha256 = "512573572b89242ecf834ca7669c18a689d6a694594ca94bb725ef1db37f46f2";
libraryHaskellDepends = [
base bytestring containers GLURaw ObjectName OpenGLRaw StateVar
text transformers
@@ -14157,6 +14293,24 @@ self: {
hydraPlatforms = [ "i686-linux" "x86_64-linux" ];
}) {};
+ "OpenGL_2_13_2_1" = callPackage
+ ({ mkDerivation, base, bytestring, containers, GLURaw, ObjectName
+ , OpenGLRaw, StateVar, text, transformers
+ }:
+ mkDerivation {
+ pname = "OpenGL";
+ version = "2.13.2.1";
+ sha256 = "bc28e7e83bcf40c8654b74a35146a8d1a48fea76ea148c507b681c6d255f5734";
+ libraryHaskellDepends = [
+ base bytestring containers GLURaw ObjectName OpenGLRaw StateVar
+ text transformers
+ ];
+ 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;
+ }) {};
+
"OpenGLCheck" = callPackage
({ mkDerivation, base, checkers, haskell98, OpenGL, QuickCheck }:
mkDerivation {
@@ -14230,6 +14384,24 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {inherit (pkgs) mesa;};
+ "OpenGLRaw_2_6_1_1" = callPackage
+ ({ mkDerivation, base, bytestring, containers, half, mesa, text
+ , transformers
+ }:
+ mkDerivation {
+ pname = "OpenGLRaw";
+ version = "2.6.1.1";
+ sha256 = "bac2633ab2ae04ecaa26319aded375ad1c678fa33d9897ecd8c7d58998de183b";
+ libraryHaskellDepends = [
+ base bytestring containers 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 = stdenv.lib.platforms.none;
+ }) {inherit (pkgs) mesa;};
+
"OpenGLRaw21" = callPackage
({ mkDerivation, OpenGLRaw }:
mkDerivation {
@@ -14816,17 +14988,17 @@ self: {
"Plot-ho-matic" = callPackage
({ mkDerivation, base, cairo, Chart, Chart-cairo, containers
, data-default-class, generic-accessors, glib, gtk, lens, text
- , time
+ , time, vector
}:
mkDerivation {
pname = "Plot-ho-matic";
- version = "0.6.0.0";
- sha256 = "b78ef18527546825ba965ae6373b6d999a2ba7140b64517869273619abaaf73b";
+ version = "0.7.0.0";
+ sha256 = "8fb8ca89074e10f325c7c0107a405718455bf6120e74140623252b9347aa2c97";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
base cairo Chart Chart-cairo containers data-default-class
- generic-accessors glib gtk lens text time
+ generic-accessors glib gtk lens text time vector
];
executableHaskellDepends = [ base containers generic-accessors ];
description = "Real-time line plotter for generic data";
@@ -15238,6 +15410,8 @@ self: {
pname = "QuickCheck";
version = "2.7.6";
sha256 = "80d8970a0c1dfcb714215cf11f2bf0f79339f70c01999dae2c31516100a0c527";
+ revision = "1";
+ editedCabalFile = "45ff46338dca0616041adade28d6b49d6a3ea810ba5dff619b2abdcbe7c93035";
libraryHaskellDepends = [
base random template-haskell tf-random transformers
];
@@ -15257,6 +15431,8 @@ self: {
pname = "QuickCheck";
version = "2.8.1";
sha256 = "7073aa3635660476aa31df7cf0476926a1ac0231235020122eb276070675763b";
+ revision = "1";
+ editedCabalFile = "f8c84fee9ea7efc5d033cde7e4cd2ade67a30bb832f08e62394353481e16b4b7";
libraryHaskellDepends = [
base containers random template-haskell tf-random transformers
];
@@ -17620,6 +17796,19 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "StateVar_1_1_0_2" = callPackage
+ ({ mkDerivation, base, stm, transformers }:
+ mkDerivation {
+ pname = "StateVar";
+ version = "1.1.0.2";
+ sha256 = "051c4b98bc4456afe4eb26f775ab0aa370e9e12b1588d5865abd5b0aea83c3f9";
+ libraryHaskellDepends = [ base stm transformers ];
+ homepage = "https://github.com/haskell-opengl/StateVar";
+ description = "State variables";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"StateVar-transformer" = callPackage
({ mkDerivation, base, mtl, transformers }:
mkDerivation {
@@ -18976,6 +19165,7 @@ self: {
libraryHaskellDepends = [
base containers filepath GLUtil lens linear OpenGL
];
+ jailbreak = true;
description = "Parsers and utilities for the OBJ WaveFront 3D model format";
license = stdenv.lib.licenses.mit;
hydraPlatforms = stdenv.lib.platforms.none;
@@ -19605,6 +19795,7 @@ self: {
executableHaskellDepends = [
base cgi containers hsparql pretty rdf4h text
];
+ jailbreak = true;
homepage = "http://hafiz.myweb.cs.uwindsor.ca/proHome.html";
description = "An implementation of a polynomial-time top-down parser suitable for NLP";
license = stdenv.lib.licenses.bsd3;
@@ -21213,6 +21404,7 @@ self: {
testHaskellDepends = [
base lens linear QuickCheck semigroupoids semigroups vector
];
+ jailbreak = true;
description = "Abstractions for animation";
license = stdenv.lib.licenses.bsd3;
hydraPlatforms = stdenv.lib.platforms.none;
@@ -21705,32 +21897,6 @@ self: {
}) {};
"aeson" = callPackage
- ({ mkDerivation, attoparsec, base, bytestring, containers, deepseq
- , dlist, ghc-prim, hashable, HUnit, mtl, QuickCheck, scientific
- , syb, template-haskell, test-framework, test-framework-hunit
- , test-framework-quickcheck2, text, time, transformers
- , unordered-containers, vector
- }:
- mkDerivation {
- pname = "aeson";
- version = "0.9.0.1";
- sha256 = "92b97dbc4968a2af6bc13b499629118f85b22efe113a4d60e578fbfb0f6ef8bc";
- libraryHaskellDepends = [
- attoparsec base bytestring containers deepseq dlist ghc-prim
- hashable mtl scientific syb template-haskell text time transformers
- unordered-containers vector
- ];
- testHaskellDepends = [
- attoparsec base bytestring containers ghc-prim HUnit QuickCheck
- template-haskell test-framework test-framework-hunit
- test-framework-quickcheck2 text time unordered-containers vector
- ];
- homepage = "https://github.com/bos/aeson";
- description = "Fast JSON parsing and encoding";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "aeson_0_10_0_0" = callPackage
({ mkDerivation, attoparsec, base, bytestring, containers, deepseq
, dlist, ghc-prim, hashable, HUnit, mtl, QuickCheck, scientific
, syb, template-haskell, test-framework, test-framework-hunit
@@ -21751,10 +21917,10 @@ self: {
template-haskell test-framework test-framework-hunit
test-framework-quickcheck2 text time unordered-containers vector
];
+ doCheck = false;
homepage = "https://github.com/bos/aeson";
description = "Fast JSON parsing and encoding";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"aeson-applicative" = callPackage
@@ -21818,7 +21984,6 @@ self: {
testHaskellDepends = [
aeson base tasty tasty-hunit tasty-quickcheck tasty-th
];
- doHaddock = false;
description = "Tools to change the formatting of field names in Aeson instances";
license = stdenv.lib.licenses.mit;
}) {};
@@ -21846,6 +22011,7 @@ self: {
aeson base QuickCheck quickcheck-instances text
unordered-containers vector
];
+ jailbreak = true;
homepage = "https://github.com/thsutton/aeson-diff";
description = "Extract and apply patches to JSON documents";
license = stdenv.lib.licenses.bsd3;
@@ -22006,7 +22172,6 @@ self: {
libraryHaskellDepends = [
aeson base parsec scientific text unordered-containers vector
];
- jailbreak = true;
homepage = "https://github.com/FPBrno/aeson-parsec-picky";
description = "Alternative JSON parser based on Parsec and Aeson";
license = stdenv.lib.licenses.bsd3;
@@ -22122,6 +22287,7 @@ self: {
template-haskell temporary test-framework test-framework-hunit
test-framework-quickcheck2 text unordered-containers vector
];
+ jailbreak = true;
homepage = "https://github.com/timjb/aeson-schema";
description = "Haskell JSON schema validator and parser generator";
license = stdenv.lib.licenses.mit;
@@ -22151,6 +22317,7 @@ self: {
template-haskell temporary test-framework test-framework-hunit
test-framework-quickcheck2 text unordered-containers vector
];
+ jailbreak = true;
homepage = "https://github.com/Fuuzetsu/aeson-schema";
description = "Haskell JSON schema validator and parser generator";
license = stdenv.lib.licenses.mit;
@@ -22427,6 +22594,7 @@ self: {
Agda base containers mtl network-uri xhtml
];
executableHaskellDepends = [ Agda base network-uri ];
+ jailbreak = true;
homepage = "http://github.com/liamoc/agda-snippets#readme";
description = "Render just the Agda snippets of a literate Agda file to HTML";
license = stdenv.lib.licenses.bsd3;
@@ -23559,17 +23727,17 @@ self: {
"amazonka" = callPackage
({ mkDerivation, amazonka-core, base, bytestring, conduit
- , conduit-extra, directory, exceptions, http-conduit, ini, lens
- , mmorph, monad-control, mtl, resourcet, retry, tasty, tasty-hunit
- , text, time, transformers, transformers-base, transformers-compat
+ , 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.3.6";
- sha256 = "2b6a1bd4594db524f387a23d916059d973b4640eb4f6e4fa64571bd96df09d96";
+ version = "1.3.7";
+ sha256 = "4eb5be39c07f4638cc050e97905c31409aa0555650c2d3c055d0c9e117685797";
libraryHaskellDepends = [
amazonka-core base bytestring conduit conduit-extra directory
- exceptions http-conduit ini lens mmorph monad-control mtl resourcet
+ exceptions http-conduit ini mmorph monad-control mtl resourcet
retry text time transformers transformers-base transformers-compat
];
testHaskellDepends = [ base tasty tasty-hunit ];
@@ -23580,16 +23748,16 @@ self: {
"amazonka-apigateway" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
- , lens, tasty, tasty-hunit, text, time, unordered-containers
+ , tasty, tasty-hunit, text, time, unordered-containers
}:
mkDerivation {
pname = "amazonka-apigateway";
- version = "1.3.6";
- sha256 = "21d30940c168597d8c1dde700bc420ad87eadb2f512f78d5b05c39363755ae58";
+ version = "1.3.7";
+ sha256 = "69dc8132895383cee52625053c5a26d00522592441b86382425e2ad717113953";
libraryHaskellDepends = [ amazonka-core base ];
testHaskellDepends = [
- amazonka-core amazonka-test base bytestring lens tasty tasty-hunit
- text time unordered-containers
+ amazonka-core amazonka-test base bytestring tasty tasty-hunit text
+ time unordered-containers
];
homepage = "https://github.com/brendanhay/amazonka";
description = "Amazon API Gateway SDK";
@@ -23640,16 +23808,16 @@ self: {
"amazonka-autoscaling" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
- , lens, tasty, tasty-hunit, text, time, unordered-containers
+ , tasty, tasty-hunit, text, time, unordered-containers
}:
mkDerivation {
pname = "amazonka-autoscaling";
- version = "1.3.6";
- sha256 = "e37b8aff470f3b2e04b9066aecf7f1d160bf120bcddbdd849428c32aa84b7c85";
+ version = "1.3.7";
+ sha256 = "cb9c27d105c147cf6d2bc2bf7207f4a6f9b4a13b4231a05487a6bf0cfe36d824";
libraryHaskellDepends = [ amazonka-core base ];
testHaskellDepends = [
- amazonka-core amazonka-test base bytestring lens tasty tasty-hunit
- text time unordered-containers
+ amazonka-core amazonka-test base bytestring tasty tasty-hunit text
+ time unordered-containers
];
homepage = "https://github.com/brendanhay/amazonka";
description = "Amazon Auto Scaling SDK";
@@ -23700,16 +23868,16 @@ self: {
"amazonka-cloudformation" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
- , lens, tasty, tasty-hunit, text, time, unordered-containers
+ , tasty, tasty-hunit, text, time, unordered-containers
}:
mkDerivation {
pname = "amazonka-cloudformation";
- version = "1.3.6";
- sha256 = "5ad92a91c4a9def47c5700ce5c573f40cd6b87e8f250f1502d7dc1cad6b6577b";
+ version = "1.3.7";
+ sha256 = "320c72348c550a03ed080922f70865ea1fc9e48307932157d6872cb5c882be0d";
libraryHaskellDepends = [ amazonka-core base ];
testHaskellDepends = [
- amazonka-core amazonka-test base bytestring lens tasty tasty-hunit
- text time unordered-containers
+ amazonka-core amazonka-test base bytestring tasty tasty-hunit text
+ time unordered-containers
];
homepage = "https://github.com/brendanhay/amazonka";
description = "Amazon CloudFormation SDK";
@@ -23760,16 +23928,16 @@ self: {
"amazonka-cloudfront" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
- , lens, tasty, tasty-hunit, text, time, unordered-containers
+ , tasty, tasty-hunit, text, time, unordered-containers
}:
mkDerivation {
pname = "amazonka-cloudfront";
- version = "1.3.6";
- sha256 = "e01ddbe47cad14d8dd47a42bf41d7598f119d0c01aab466aa3f25dcad3764994";
+ version = "1.3.7";
+ sha256 = "4bdfe01425a6508a224975a9137d816bf76455b1e8d2908cff75c896c86b3c5a";
libraryHaskellDepends = [ amazonka-core base ];
testHaskellDepends = [
- amazonka-core amazonka-test base bytestring lens tasty tasty-hunit
- text time unordered-containers
+ amazonka-core amazonka-test base bytestring tasty tasty-hunit text
+ time unordered-containers
];
homepage = "https://github.com/brendanhay/amazonka";
description = "Amazon CloudFront SDK";
@@ -23820,16 +23988,16 @@ self: {
"amazonka-cloudhsm" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
- , lens, tasty, tasty-hunit, text, time, unordered-containers
+ , tasty, tasty-hunit, text, time, unordered-containers
}:
mkDerivation {
pname = "amazonka-cloudhsm";
- version = "1.3.6";
- sha256 = "e5946f07605a58dfabdef84212cd663ace14d7b2a274276a06394576c6e8db4a";
+ version = "1.3.7";
+ sha256 = "1ddff0ccf07e8961ddf0c8e186f2ff420ab0a03e20c0450bf71ca5c16e8791fa";
libraryHaskellDepends = [ amazonka-core base ];
testHaskellDepends = [
- amazonka-core amazonka-test base bytestring lens tasty tasty-hunit
- text time unordered-containers
+ amazonka-core amazonka-test base bytestring tasty tasty-hunit text
+ time unordered-containers
];
homepage = "https://github.com/brendanhay/amazonka";
description = "Amazon CloudHSM SDK";
@@ -23880,16 +24048,16 @@ self: {
"amazonka-cloudsearch" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
- , lens, tasty, tasty-hunit, text, time, unordered-containers
+ , tasty, tasty-hunit, text, time, unordered-containers
}:
mkDerivation {
pname = "amazonka-cloudsearch";
- version = "1.3.6";
- sha256 = "b40816be3743f3be9c5a0c0b2d686f8cdc4e86adc62296af3f372dd9f5c7493e";
+ version = "1.3.7";
+ sha256 = "8d25ff01dc964a28250004ac1d94c3352f08d187893f53d9718399dcac0eb4f6";
libraryHaskellDepends = [ amazonka-core base ];
testHaskellDepends = [
- amazonka-core amazonka-test base bytestring lens tasty tasty-hunit
- text time unordered-containers
+ amazonka-core amazonka-test base bytestring tasty tasty-hunit text
+ time unordered-containers
];
homepage = "https://github.com/brendanhay/amazonka";
description = "Amazon CloudSearch SDK";
@@ -23940,16 +24108,16 @@ self: {
"amazonka-cloudsearch-domains" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
- , lens, tasty, tasty-hunit, text, time, unordered-containers
+ , tasty, tasty-hunit, text, time, unordered-containers
}:
mkDerivation {
pname = "amazonka-cloudsearch-domains";
- version = "1.3.6";
- sha256 = "2e291315720e6cd3fe8e6f25252b70408aa94f3bc580812a611e1be1efd4dae8";
+ version = "1.3.7";
+ sha256 = "36a6b4c1320b8b796e013f2ed9007dd411649f4f5f328ae74fd2b32b34bd385d";
libraryHaskellDepends = [ amazonka-core base ];
testHaskellDepends = [
- amazonka-core amazonka-test base bytestring lens tasty tasty-hunit
- text time unordered-containers
+ amazonka-core amazonka-test base bytestring tasty tasty-hunit text
+ time unordered-containers
];
homepage = "https://github.com/brendanhay/amazonka";
description = "Amazon CloudSearch Domain SDK";
@@ -24000,16 +24168,16 @@ self: {
"amazonka-cloudtrail" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
- , lens, tasty, tasty-hunit, text, time, unordered-containers
+ , tasty, tasty-hunit, text, time, unordered-containers
}:
mkDerivation {
pname = "amazonka-cloudtrail";
- version = "1.3.6";
- sha256 = "e49e9178707fbe296dc0e8e5fb03e0876fc41306cb0b07a64cca4ccdd1be3b95";
+ version = "1.3.7";
+ sha256 = "f1a2c200001d876154cb526066d7dd41928000391b46bf2071e685f2e2f47ab1";
libraryHaskellDepends = [ amazonka-core base ];
testHaskellDepends = [
- amazonka-core amazonka-test base bytestring lens tasty tasty-hunit
- text time unordered-containers
+ amazonka-core amazonka-test base bytestring tasty tasty-hunit text
+ time unordered-containers
];
homepage = "https://github.com/brendanhay/amazonka";
description = "Amazon CloudTrail SDK";
@@ -24060,16 +24228,16 @@ self: {
"amazonka-cloudwatch" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
- , lens, tasty, tasty-hunit, text, time, unordered-containers
+ , tasty, tasty-hunit, text, time, unordered-containers
}:
mkDerivation {
pname = "amazonka-cloudwatch";
- version = "1.3.6";
- sha256 = "a568286907b7f72fcc7089015727141b231a082fc22f9192f02c86df4baddd76";
+ version = "1.3.7";
+ sha256 = "7ca782f158f95e2cd68f60de45aeeac9404ff55743a02b490f6be2ac5a3c35e0";
libraryHaskellDepends = [ amazonka-core base ];
testHaskellDepends = [
- amazonka-core amazonka-test base bytestring lens tasty tasty-hunit
- text time unordered-containers
+ amazonka-core amazonka-test base bytestring tasty tasty-hunit text
+ time unordered-containers
];
homepage = "https://github.com/brendanhay/amazonka";
description = "Amazon CloudWatch SDK";
@@ -24120,16 +24288,16 @@ self: {
"amazonka-cloudwatch-logs" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
- , lens, tasty, tasty-hunit, text, time, unordered-containers
+ , tasty, tasty-hunit, text, time, unordered-containers
}:
mkDerivation {
pname = "amazonka-cloudwatch-logs";
- version = "1.3.6";
- sha256 = "cd616e54162460bd887c2e141baacf6c28628d5397f1da4ee21c33abebbc6c31";
+ version = "1.3.7";
+ sha256 = "479dab55226364dc4f109e5189906ee782d7d8d114ab2754278b22b15bf28025";
libraryHaskellDepends = [ amazonka-core base ];
testHaskellDepends = [
- amazonka-core amazonka-test base bytestring lens tasty tasty-hunit
- text time unordered-containers
+ amazonka-core amazonka-test base bytestring tasty tasty-hunit text
+ time unordered-containers
];
homepage = "https://github.com/brendanhay/amazonka";
description = "Amazon CloudWatch Logs SDK";
@@ -24138,16 +24306,16 @@ self: {
"amazonka-codecommit" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
- , lens, tasty, tasty-hunit, text, time, unordered-containers
+ , tasty, tasty-hunit, text, time, unordered-containers
}:
mkDerivation {
pname = "amazonka-codecommit";
- version = "1.3.6";
- sha256 = "0140e1c7353c1db7e468194465989f61498eb58a46bc270478fc842d9128acd2";
+ version = "1.3.7";
+ sha256 = "71d52bd60f5d5b7a04e33b9c41aedef5d34cfd0587af16cbce5c8b7346519bb7";
libraryHaskellDepends = [ amazonka-core base ];
testHaskellDepends = [
- amazonka-core amazonka-test base bytestring lens tasty tasty-hunit
- text time unordered-containers
+ amazonka-core amazonka-test base bytestring tasty tasty-hunit text
+ time unordered-containers
];
homepage = "https://github.com/brendanhay/amazonka";
description = "Amazon CodeCommit SDK";
@@ -24198,16 +24366,16 @@ self: {
"amazonka-codedeploy" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
- , lens, tasty, tasty-hunit, text, time, unordered-containers
+ , tasty, tasty-hunit, text, time, unordered-containers
}:
mkDerivation {
pname = "amazonka-codedeploy";
- version = "1.3.6";
- sha256 = "385b0d54be768c63d218173be424cca08e895ec695b18ab3468339a819c25926";
+ version = "1.3.7";
+ sha256 = "114b48813df24301ac27bcd3f6f2933c925616d5f155b55459dec3c8f836c842";
libraryHaskellDepends = [ amazonka-core base ];
testHaskellDepends = [
- amazonka-core amazonka-test base bytestring lens tasty tasty-hunit
- text time unordered-containers
+ amazonka-core amazonka-test base bytestring tasty tasty-hunit text
+ time unordered-containers
];
homepage = "https://github.com/brendanhay/amazonka";
description = "Amazon CodeDeploy SDK";
@@ -24216,16 +24384,16 @@ self: {
"amazonka-codepipeline" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
- , lens, tasty, tasty-hunit, text, time, unordered-containers
+ , tasty, tasty-hunit, text, time, unordered-containers
}:
mkDerivation {
pname = "amazonka-codepipeline";
- version = "1.3.6";
- sha256 = "eb4ff01933e3b4e2abff5c249548ece6906d13442a45fd3aafa07050a4af55ad";
+ version = "1.3.7";
+ sha256 = "9b113de6a18eac005182c85e37a21c59cf077d78debcf229e0c175b93b6686cb";
libraryHaskellDepends = [ amazonka-core base ];
testHaskellDepends = [
- amazonka-core amazonka-test base bytestring lens tasty tasty-hunit
- text time unordered-containers
+ amazonka-core amazonka-test base bytestring tasty tasty-hunit text
+ time unordered-containers
];
homepage = "https://github.com/brendanhay/amazonka";
description = "Amazon CodePipeline SDK";
@@ -24276,16 +24444,16 @@ self: {
"amazonka-cognito-identity" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
- , lens, tasty, tasty-hunit, text, time, unordered-containers
+ , tasty, tasty-hunit, text, time, unordered-containers
}:
mkDerivation {
pname = "amazonka-cognito-identity";
- version = "1.3.6";
- sha256 = "227caccb006bc242ca57d629a1ba2453ecb032fdfe0971a5d70c9957ec53abd7";
+ version = "1.3.7";
+ sha256 = "78b0cf4e3d7aed0c82fd11016baf1e7bf2a33207a012a3229cbec2fdd7853641";
libraryHaskellDepends = [ amazonka-core base ];
testHaskellDepends = [
- amazonka-core amazonka-test base bytestring lens tasty tasty-hunit
- text time unordered-containers
+ amazonka-core amazonka-test base bytestring tasty tasty-hunit text
+ time unordered-containers
];
homepage = "https://github.com/brendanhay/amazonka";
description = "Amazon Cognito Identity SDK";
@@ -24336,16 +24504,16 @@ self: {
"amazonka-cognito-sync" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
- , lens, tasty, tasty-hunit, text, time, unordered-containers
+ , tasty, tasty-hunit, text, time, unordered-containers
}:
mkDerivation {
pname = "amazonka-cognito-sync";
- version = "1.3.6";
- sha256 = "29821f6e4f4a9b59ff3612a2097f715df66d513833989c88c01c6cf9d29d1639";
+ version = "1.3.7";
+ sha256 = "5f0a9a438bad4739e364804e5326ad18ca2a4792f799098b098a9192836f5577";
libraryHaskellDepends = [ amazonka-core base ];
testHaskellDepends = [
- amazonka-core amazonka-test base bytestring lens tasty tasty-hunit
- text time unordered-containers
+ amazonka-core amazonka-test base bytestring tasty tasty-hunit text
+ time unordered-containers
];
homepage = "https://github.com/brendanhay/amazonka";
description = "Amazon Cognito Sync SDK";
@@ -24396,16 +24564,16 @@ self: {
"amazonka-config" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
- , lens, tasty, tasty-hunit, text, time, unordered-containers
+ , tasty, tasty-hunit, text, time, unordered-containers
}:
mkDerivation {
pname = "amazonka-config";
- version = "1.3.6";
- sha256 = "dd257f9c707bc5218cd5b64d0adda1ecdd47a7e67282b12ad0d590101b362b7d";
+ version = "1.3.7";
+ sha256 = "58da74215ae3291341197e4bbb235f07818accf50364fb9ce5c392c8af5312fa";
libraryHaskellDepends = [ amazonka-core base ];
testHaskellDepends = [
- amazonka-core amazonka-test base bytestring lens tasty tasty-hunit
- text time unordered-containers
+ amazonka-core amazonka-test base bytestring tasty tasty-hunit text
+ time unordered-containers
];
homepage = "https://github.com/brendanhay/amazonka";
description = "Amazon Config SDK";
@@ -24425,6 +24593,8 @@ self: {
pname = "amazonka-core";
version = "0.3.3";
sha256 = "2382e3ba4576a544ee54037b346dea2cb99326d8d417fedfde70d50bb8a9f4d5";
+ revision = "1";
+ editedCabalFile = "5f5396e3f969b8f5c0eb6c956c85dade9a751388bd40e8d1c0b007ee3a59dde8";
libraryHaskellDepends = [
aeson attoparsec base base16-bytestring base64-bytestring
bifunctors bytestring case-insensitive conduit conduit-extra
@@ -24456,6 +24626,8 @@ self: {
pname = "amazonka-core";
version = "0.3.4";
sha256 = "5f268010d0dff030398b272f7c505f25acc33a9c8c0ccb3ad9e667663707306a";
+ revision = "2";
+ editedCabalFile = "ce25f51af29b48e824a325c3c6cdb72826ff9e76b7912b13f1d12660830e880e";
libraryHaskellDepends = [
aeson attoparsec base base16-bytestring base64-bytestring
bifunctors bytestring case-insensitive conduit conduit-extra
@@ -24467,6 +24639,7 @@ self: {
testHaskellDepends = [
aeson base tasty tasty-hunit template-haskell text
];
+ jailbreak = true;
homepage = "https://github.com/brendanhay/amazonka";
description = "Core functionality and data types for Amazonka libraries";
license = "unknown";
@@ -24486,6 +24659,8 @@ self: {
pname = "amazonka-core";
version = "0.3.6";
sha256 = "821e635dc21ea7a06c6ba6711dec228c6fb18c12de51924f84d92fc71cf8c0d0";
+ revision = "2";
+ editedCabalFile = "3f6c94016391ab596deae1721db67629a85d8a0a9d7651bea5c962e5c0b5d39d";
libraryHaskellDepends = [
aeson attoparsec base base16-bytestring base64-bytestring
bifunctors bytestring case-insensitive conduit conduit-extra
@@ -24497,6 +24672,7 @@ self: {
testHaskellDepends = [
aeson base tasty tasty-hunit template-haskell text
];
+ jailbreak = true;
homepage = "https://github.com/brendanhay/amazonka";
description = "Core functionality and data types for Amazonka libraries";
license = "unknown";
@@ -24514,8 +24690,8 @@ self: {
}:
mkDerivation {
pname = "amazonka-core";
- version = "1.3.6";
- sha256 = "886f1b9160261b7b29c4aef0b987f8b3723b2a821a7e90dc37e5382ca8587b74";
+ version = "1.3.7";
+ sha256 = "29c8aebe23cd6f48fa5f49c2ba02e2f12b8aa8fc0f820489b49dc95b28f8e05c";
libraryHaskellDepends = [
aeson attoparsec base bifunctors bytestring case-insensitive
conduit conduit-extra cryptonite exceptions hashable http-conduit
@@ -24524,7 +24700,7 @@ self: {
xml-conduit xml-types
];
testHaskellDepends = [
- aeson base bytestring case-insensitive http-types lens QuickCheck
+ aeson base bytestring case-insensitive http-types QuickCheck
quickcheck-unicode tasty tasty-hunit tasty-quickcheck
template-haskell text time
];
@@ -24577,16 +24753,16 @@ self: {
"amazonka-datapipeline" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
- , lens, tasty, tasty-hunit, text, time, unordered-containers
+ , tasty, tasty-hunit, text, time, unordered-containers
}:
mkDerivation {
pname = "amazonka-datapipeline";
- version = "1.3.6";
- sha256 = "0f4657336cd6eead4a5cca09b6b68cfcc5f75c2382a9e3a5d36deddbe555b973";
+ version = "1.3.7";
+ sha256 = "7df5cd02fd2d14ca7dd37408ec59374a338d862162ef6c6094703f24f39ab5bd";
libraryHaskellDepends = [ amazonka-core base ];
testHaskellDepends = [
- amazonka-core amazonka-test base bytestring lens tasty tasty-hunit
- text time unordered-containers
+ amazonka-core amazonka-test base bytestring tasty tasty-hunit text
+ time unordered-containers
];
homepage = "https://github.com/brendanhay/amazonka";
description = "Amazon Data Pipeline SDK";
@@ -24595,16 +24771,16 @@ self: {
"amazonka-devicefarm" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
- , lens, tasty, tasty-hunit, text, time, unordered-containers
+ , tasty, tasty-hunit, text, time, unordered-containers
}:
mkDerivation {
pname = "amazonka-devicefarm";
- version = "1.3.6";
- sha256 = "e7782528d5f9afaf65477ea62e96e77d897aecccd2d3cf21ffa40f604dd33013";
+ version = "1.3.7";
+ sha256 = "f370f855bcdb2b5a504f399add12856884f3faa3ca465dc18fd1e0877eb74e7b";
libraryHaskellDepends = [ amazonka-core base ];
testHaskellDepends = [
- amazonka-core amazonka-test base bytestring lens tasty tasty-hunit
- text time unordered-containers
+ amazonka-core amazonka-test base bytestring tasty tasty-hunit text
+ time unordered-containers
];
homepage = "https://github.com/brendanhay/amazonka";
description = "Amazon Device Farm SDK";
@@ -24655,16 +24831,16 @@ self: {
"amazonka-directconnect" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
- , lens, tasty, tasty-hunit, text, time, unordered-containers
+ , tasty, tasty-hunit, text, time, unordered-containers
}:
mkDerivation {
pname = "amazonka-directconnect";
- version = "1.3.6";
- sha256 = "2c6adffec93961fea4361f245280b5eea2df2c314ce1958e0d31926b3890f2be";
+ version = "1.3.7";
+ sha256 = "b1119213b84a509ebe5cd7ea1032ee94d7b0aa45fd159f71aa0e2f4d19e59dcb";
libraryHaskellDepends = [ amazonka-core base ];
testHaskellDepends = [
- amazonka-core amazonka-test base bytestring lens tasty tasty-hunit
- text time unordered-containers
+ amazonka-core amazonka-test base bytestring tasty tasty-hunit text
+ time unordered-containers
];
homepage = "https://github.com/brendanhay/amazonka";
description = "Amazon Direct Connect SDK";
@@ -24673,16 +24849,16 @@ self: {
"amazonka-ds" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
- , lens, tasty, tasty-hunit, text, time, unordered-containers
+ , tasty, tasty-hunit, text, time, unordered-containers
}:
mkDerivation {
pname = "amazonka-ds";
- version = "1.3.6";
- sha256 = "891f5189125cf8d94abf3ee97aa8959c0015e0383b7485238e87282b018f629d";
+ version = "1.3.7";
+ sha256 = "fd75ba2790bf61db6db791afb2eb52e7867f2294275b9fdf8c5e2040bd8e7628";
libraryHaskellDepends = [ amazonka-core base ];
testHaskellDepends = [
- amazonka-core amazonka-test base bytestring lens tasty tasty-hunit
- text time unordered-containers
+ amazonka-core amazonka-test base bytestring tasty tasty-hunit text
+ time unordered-containers
];
homepage = "https://github.com/brendanhay/amazonka";
description = "Amazon Directory Service SDK";
@@ -24733,16 +24909,16 @@ self: {
"amazonka-dynamodb" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
- , lens, tasty, tasty-hunit, text, time, unordered-containers
+ , tasty, tasty-hunit, text, time, unordered-containers
}:
mkDerivation {
pname = "amazonka-dynamodb";
- version = "1.3.6";
- sha256 = "28ae5711721ba898db8c51ae123000ec02d1a4e66db6078b3ca426f4dab9c3be";
+ version = "1.3.7";
+ sha256 = "8000caed96de1a7ffc9dd97668606f3c64a54619b549b4b7c29b73780091176e";
libraryHaskellDepends = [ amazonka-core base ];
testHaskellDepends = [
- amazonka-core amazonka-test base bytestring lens tasty tasty-hunit
- text time unordered-containers
+ amazonka-core amazonka-test base bytestring tasty tasty-hunit text
+ time unordered-containers
];
homepage = "https://github.com/brendanhay/amazonka";
description = "Amazon DynamoDB SDK";
@@ -24751,16 +24927,16 @@ self: {
"amazonka-dynamodb-streams" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
- , lens, tasty, tasty-hunit, text, time, unordered-containers
+ , tasty, tasty-hunit, text, time, unordered-containers
}:
mkDerivation {
pname = "amazonka-dynamodb-streams";
- version = "1.3.6";
- sha256 = "3201fee450d622ad22825a8068e95e913666fc25544044e6b0a840d3c444be0c";
+ version = "1.3.7";
+ sha256 = "a3b5304cde5c828135a813c2f005d5bdc9d0316ab09c966f3caffae084971072";
libraryHaskellDepends = [ amazonka-core base ];
testHaskellDepends = [
- amazonka-core amazonka-test base bytestring lens tasty tasty-hunit
- text time unordered-containers
+ amazonka-core amazonka-test base bytestring tasty tasty-hunit text
+ time unordered-containers
];
homepage = "https://github.com/brendanhay/amazonka";
description = "Amazon DynamoDB Streams SDK";
@@ -24825,16 +25001,16 @@ self: {
"amazonka-ec2" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
- , lens, tasty, tasty-hunit, text, time, unordered-containers
+ , tasty, tasty-hunit, text, time, unordered-containers
}:
mkDerivation {
pname = "amazonka-ec2";
- version = "1.3.6";
- sha256 = "d5756ef1f17d84b9e50647477e244e56560d676d5dea35b8c1ea53b5684d4c97";
+ version = "1.3.7";
+ sha256 = "d76e66ca880a7dc8299186ea0334c12a4a38bf4efa79df59dc26016371e59e65";
libraryHaskellDepends = [ amazonka-core base ];
testHaskellDepends = [
- amazonka-core amazonka-test base bytestring lens tasty tasty-hunit
- text time unordered-containers
+ amazonka-core amazonka-test base bytestring tasty tasty-hunit text
+ time unordered-containers
];
doCheck = false;
homepage = "https://github.com/brendanhay/amazonka";
@@ -24887,16 +25063,16 @@ self: {
"amazonka-ecs" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
- , lens, tasty, tasty-hunit, text, time, unordered-containers
+ , tasty, tasty-hunit, text, time, unordered-containers
}:
mkDerivation {
pname = "amazonka-ecs";
- version = "1.3.6";
- sha256 = "a0c6d28f289c5120765ce1efc13d18b50b4a1c6b93222fa7381979b94cb80406";
+ version = "1.3.7";
+ sha256 = "4124f46fa02ef085e989261b2617975dbbd7d2549fd1901279b311952c01d51e";
libraryHaskellDepends = [ amazonka-core base ];
testHaskellDepends = [
- amazonka-core amazonka-test base bytestring lens tasty tasty-hunit
- text time unordered-containers
+ 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";
@@ -24905,16 +25081,16 @@ self: {
"amazonka-efs" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
- , lens, tasty, tasty-hunit, text, time, unordered-containers
+ , tasty, tasty-hunit, text, time, unordered-containers
}:
mkDerivation {
pname = "amazonka-efs";
- version = "1.3.6";
- sha256 = "4e087917eb34bb12fa0add63c41eee7bb2baf52af8c7d6c6f247c0a8c726a5db";
+ version = "1.3.7";
+ sha256 = "ae1a69233552debb037c3d87062fe79562af74b735758e8c6cfcf59e8fc4269f";
libraryHaskellDepends = [ amazonka-core base ];
testHaskellDepends = [
- amazonka-core amazonka-test base bytestring lens tasty tasty-hunit
- text time unordered-containers
+ 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";
@@ -24965,16 +25141,16 @@ self: {
"amazonka-elasticache" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
- , lens, tasty, tasty-hunit, text, time, unordered-containers
+ , tasty, tasty-hunit, text, time, unordered-containers
}:
mkDerivation {
pname = "amazonka-elasticache";
- version = "1.3.6";
- sha256 = "7c60c850560b448434513cd7943d2d42d662816f98f7f9bf06c36c7f0a057888";
+ version = "1.3.7";
+ sha256 = "22d53cb522c73f1fd95dfd8678295055aebd34b3f999506042f00d49266ed0d9";
libraryHaskellDepends = [ amazonka-core base ];
testHaskellDepends = [
- amazonka-core amazonka-test base bytestring lens tasty tasty-hunit
- text time unordered-containers
+ amazonka-core amazonka-test base bytestring tasty tasty-hunit text
+ time unordered-containers
];
homepage = "https://github.com/brendanhay/amazonka";
description = "Amazon ElastiCache SDK";
@@ -25025,16 +25201,16 @@ self: {
"amazonka-elasticbeanstalk" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
- , lens, tasty, tasty-hunit, text, time, unordered-containers
+ , tasty, tasty-hunit, text, time, unordered-containers
}:
mkDerivation {
pname = "amazonka-elasticbeanstalk";
- version = "1.3.6";
- sha256 = "d67282b599affed8f46c1960a1e70319f99404742e46d445d95d68c6e507ef11";
+ version = "1.3.7";
+ sha256 = "c4e6bfa1d599602c9f25a1b8a0c2a6d7518d959dde78b1fb64ad787d3e356dd4";
libraryHaskellDepends = [ amazonka-core base ];
testHaskellDepends = [
- amazonka-core amazonka-test base bytestring lens tasty tasty-hunit
- text time unordered-containers
+ amazonka-core amazonka-test base bytestring tasty tasty-hunit text
+ time unordered-containers
];
homepage = "https://github.com/brendanhay/amazonka";
description = "Amazon Elastic Beanstalk SDK";
@@ -25043,16 +25219,16 @@ self: {
"amazonka-elasticsearch" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
- , lens, tasty, tasty-hunit, text, time, unordered-containers
+ , tasty, tasty-hunit, text, time, unordered-containers
}:
mkDerivation {
pname = "amazonka-elasticsearch";
- version = "1.3.6";
- sha256 = "ed6fddddf130d039295b76e349b2c00141706c5a8fef471ce741296af9f833f8";
+ version = "1.3.7";
+ sha256 = "7179150c600ed9a2889700a1433f4bc12eec1406e74c25341993d3a8c27575b4";
libraryHaskellDepends = [ amazonka-core base ];
testHaskellDepends = [
- amazonka-core amazonka-test base bytestring lens tasty tasty-hunit
- text time unordered-containers
+ amazonka-core amazonka-test base bytestring tasty tasty-hunit text
+ time unordered-containers
];
homepage = "https://github.com/brendanhay/amazonka";
description = "Amazon Elasticsearch Service SDK";
@@ -25103,16 +25279,16 @@ self: {
"amazonka-elastictranscoder" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
- , lens, tasty, tasty-hunit, text, time, unordered-containers
+ , tasty, tasty-hunit, text, time, unordered-containers
}:
mkDerivation {
pname = "amazonka-elastictranscoder";
- version = "1.3.6";
- sha256 = "489f2bb02483378602d7f533369019761016385aa1ec2983b4e6a427a67b5792";
+ version = "1.3.7";
+ sha256 = "55d813660c91eee260111a252afddc295edf7a26a7f3b5c5e9c7ab4814ce338c";
libraryHaskellDepends = [ amazonka-core base ];
testHaskellDepends = [
- amazonka-core amazonka-test base bytestring lens tasty tasty-hunit
- text time unordered-containers
+ amazonka-core amazonka-test base bytestring tasty tasty-hunit text
+ time unordered-containers
];
homepage = "https://github.com/brendanhay/amazonka";
description = "Amazon Elastic Transcoder SDK";
@@ -25163,16 +25339,16 @@ self: {
"amazonka-elb" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
- , lens, tasty, tasty-hunit, text, time, unordered-containers
+ , tasty, tasty-hunit, text, time, unordered-containers
}:
mkDerivation {
pname = "amazonka-elb";
- version = "1.3.6";
- sha256 = "80f9df4c3345cf3913f5ee95e44547d9de0b22bc2c0d58b7c530c165b4064087";
+ version = "1.3.7";
+ sha256 = "5d72d70f7ffa2ea1e0a244c60e87ccb19874bff27f547bf1b1c740e75c8872ec";
libraryHaskellDepends = [ amazonka-core base ];
testHaskellDepends = [
- amazonka-core amazonka-test base bytestring lens tasty tasty-hunit
- text time unordered-containers
+ 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";
@@ -25223,16 +25399,16 @@ self: {
"amazonka-emr" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
- , lens, tasty, tasty-hunit, text, time, unordered-containers
+ , tasty, tasty-hunit, text, time, unordered-containers
}:
mkDerivation {
pname = "amazonka-emr";
- version = "1.3.6";
- sha256 = "6189666eea89fb6f0ae436fdc6992c33b4bc59f21503062e1c5c7d58d02b2235";
+ version = "1.3.7";
+ sha256 = "cfd8c9416c1ba32001aeae5f60d5050276e9f6ac1870d13f5a995803711d35fc";
libraryHaskellDepends = [ amazonka-core base ];
testHaskellDepends = [
- amazonka-core amazonka-test base bytestring lens tasty tasty-hunit
- text time unordered-containers
+ amazonka-core amazonka-test base bytestring tasty tasty-hunit text
+ time unordered-containers
];
homepage = "https://github.com/brendanhay/amazonka";
description = "Amazon Elastic MapReduce SDK";
@@ -25283,16 +25459,16 @@ self: {
"amazonka-glacier" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
- , lens, tasty, tasty-hunit, text, time, unordered-containers
+ , tasty, tasty-hunit, text, time, unordered-containers
}:
mkDerivation {
pname = "amazonka-glacier";
- version = "1.3.6";
- sha256 = "940108fdb03e41afb62c517105e9e5dfaaab78a8d9a48dfb7db6ca63c94319e0";
+ version = "1.3.7";
+ sha256 = "18ee97fef9915b433a716e40f6a83c332080fd9fa428ce60c56444161f67db04";
libraryHaskellDepends = [ amazonka-core base ];
testHaskellDepends = [
- amazonka-core amazonka-test base bytestring lens tasty tasty-hunit
- text time unordered-containers
+ amazonka-core amazonka-test base bytestring tasty tasty-hunit text
+ time unordered-containers
];
homepage = "https://github.com/brendanhay/amazonka";
description = "Amazon Glacier SDK";
@@ -25343,16 +25519,16 @@ self: {
"amazonka-iam" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
- , lens, tasty, tasty-hunit, text, time, unordered-containers
+ , tasty, tasty-hunit, text, time, unordered-containers
}:
mkDerivation {
pname = "amazonka-iam";
- version = "1.3.6";
- sha256 = "9d0306e25a7b7b9330f7f9d1648ca35553548180accc0f403689d1428860b8d2";
+ version = "1.3.7";
+ sha256 = "301463c7e704f82055307f0cbb9d092abdd3bc6672a78439ed748fbd061b3945";
libraryHaskellDepends = [ amazonka-core base ];
testHaskellDepends = [
- amazonka-core amazonka-test base bytestring lens tasty tasty-hunit
- text time unordered-containers
+ 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";
@@ -25403,16 +25579,16 @@ self: {
"amazonka-importexport" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
- , lens, tasty, tasty-hunit, text, time, unordered-containers
+ , tasty, tasty-hunit, text, time, unordered-containers
}:
mkDerivation {
pname = "amazonka-importexport";
- version = "1.3.6";
- sha256 = "bfa120fb51bb6f784a970a1a633ecb1ec054bdf8bdb1594ca7fe160c75e6ebe0";
+ version = "1.3.7";
+ sha256 = "ec40b77cc0f365d01c6614cf0daa1dbbdbcf97cd4cb1ac1b258cd8382ff3ae6d";
libraryHaskellDepends = [ amazonka-core base ];
testHaskellDepends = [
- amazonka-core amazonka-test base bytestring lens tasty tasty-hunit
- text time unordered-containers
+ amazonka-core amazonka-test base bytestring tasty tasty-hunit text
+ time unordered-containers
];
homepage = "https://github.com/brendanhay/amazonka";
description = "Amazon Import/Export SDK";
@@ -25421,16 +25597,16 @@ self: {
"amazonka-inspector" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
- , lens, tasty, tasty-hunit, text, time, unordered-containers
+ , tasty, tasty-hunit, text, time, unordered-containers
}:
mkDerivation {
pname = "amazonka-inspector";
- version = "1.3.6";
- sha256 = "895d149dd6ea1255ef34788ccf4caa2f3568541ea652717562601c4340e273a4";
+ version = "1.3.7";
+ sha256 = "eaf9eec94b9de0bfc2b1c204be38bbb9b808d69a0286686960ea4f551793a7d2";
libraryHaskellDepends = [ amazonka-core base ];
testHaskellDepends = [
- amazonka-core amazonka-test base bytestring lens tasty tasty-hunit
- text time unordered-containers
+ amazonka-core amazonka-test base bytestring tasty tasty-hunit text
+ time unordered-containers
];
homepage = "https://github.com/brendanhay/amazonka";
description = "Amazon Inspector SDK";
@@ -25439,16 +25615,16 @@ self: {
"amazonka-iot" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
- , lens, tasty, tasty-hunit, text, time, unordered-containers
+ , tasty, tasty-hunit, text, time, unordered-containers
}:
mkDerivation {
pname = "amazonka-iot";
- version = "1.3.6";
- sha256 = "8a33bee0071be696eeca1614b6418677a63aa425682975d61843a3cf2a75b36e";
+ version = "1.3.7";
+ sha256 = "7e515bf2ec1ac7f9ef84c31fd5b436d13df2e5ab9c21cc2b5fc54d92d0b2cee3";
libraryHaskellDepends = [ amazonka-core base ];
testHaskellDepends = [
- amazonka-core amazonka-test base bytestring lens tasty tasty-hunit
- text time unordered-containers
+ amazonka-core amazonka-test base bytestring tasty tasty-hunit text
+ time unordered-containers
];
homepage = "https://github.com/brendanhay/amazonka";
description = "Amazon IoT SDK";
@@ -25457,16 +25633,16 @@ self: {
"amazonka-iot-dataplane" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
- , lens, tasty, tasty-hunit, text, time, unordered-containers
+ , tasty, tasty-hunit, text, time, unordered-containers
}:
mkDerivation {
pname = "amazonka-iot-dataplane";
- version = "1.3.6";
- sha256 = "53c527174618a3808d14b2a5a2c2a6603595575f2175bd053ab66bcfbd7d4f65";
+ version = "1.3.7";
+ sha256 = "de6f860acc5ca4d623ec66dad54cedc972516c6d04f0babfe0aa142fd86f1538";
libraryHaskellDepends = [ amazonka-core base ];
testHaskellDepends = [
- amazonka-core amazonka-test base bytestring lens tasty tasty-hunit
- text time unordered-containers
+ 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";
@@ -25517,16 +25693,16 @@ self: {
"amazonka-kinesis" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
- , lens, tasty, tasty-hunit, text, time, unordered-containers
+ , tasty, tasty-hunit, text, time, unordered-containers
}:
mkDerivation {
pname = "amazonka-kinesis";
- version = "1.3.6";
- sha256 = "34bbfc2d6265951f9f26c2eafad06315eb3807717c279bd43fd89a830423bda4";
+ version = "1.3.7";
+ sha256 = "321884fc3baa02e07f613dd23ec77ec79ce40c875a88772e9586a99745114b43";
libraryHaskellDepends = [ amazonka-core base ];
testHaskellDepends = [
- amazonka-core amazonka-test base bytestring lens tasty tasty-hunit
- text time unordered-containers
+ amazonka-core amazonka-test base bytestring tasty tasty-hunit text
+ time unordered-containers
];
homepage = "https://github.com/brendanhay/amazonka";
description = "Amazon Kinesis SDK";
@@ -25535,16 +25711,16 @@ self: {
"amazonka-kinesis-firehose" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
- , lens, tasty, tasty-hunit, text, time, unordered-containers
+ , tasty, tasty-hunit, text, time, unordered-containers
}:
mkDerivation {
pname = "amazonka-kinesis-firehose";
- version = "1.3.6";
- sha256 = "6285473f9f328423c080575e8d5f1fd4a599562cc4a41cfb724aa02ca323c7bd";
+ version = "1.3.7";
+ sha256 = "6a557b9b3fb21b1035aad13a6ddcbd249ce97bc2aeb77b48eee74b6d6a634d1a";
libraryHaskellDepends = [ amazonka-core base ];
testHaskellDepends = [
- amazonka-core amazonka-test base bytestring lens tasty tasty-hunit
- text time unordered-containers
+ amazonka-core amazonka-test base bytestring tasty tasty-hunit text
+ time unordered-containers
];
homepage = "https://github.com/brendanhay/amazonka";
description = "Amazon Kinesis Firehose SDK";
@@ -25595,16 +25771,16 @@ self: {
"amazonka-kms" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
- , lens, tasty, tasty-hunit, text, time, unordered-containers
+ , tasty, tasty-hunit, text, time, unordered-containers
}:
mkDerivation {
pname = "amazonka-kms";
- version = "1.3.6";
- sha256 = "0a1ed2b7839b17187dbcdbb0ed91b71d8d4090a7296f89592997ba9fd28ed931";
+ version = "1.3.7";
+ sha256 = "2daffffd16da332b52523802ee35173aaafed8d24a4e860045bc9933725c9de4";
libraryHaskellDepends = [ amazonka-core base ];
testHaskellDepends = [
- amazonka-core amazonka-test base bytestring lens tasty tasty-hunit
- text time unordered-containers
+ 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";
@@ -25655,16 +25831,16 @@ self: {
"amazonka-lambda" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
- , lens, tasty, tasty-hunit, text, time, unordered-containers
+ , tasty, tasty-hunit, text, time, unordered-containers
}:
mkDerivation {
pname = "amazonka-lambda";
- version = "1.3.6";
- sha256 = "71a9e80add261bc519330ac1127ea47e1b2298472a76cdbe899858ef8e1413d0";
+ version = "1.3.7";
+ sha256 = "cba44973510233399b0d5fa4c9d291691e30caef63035158f40b5b10e2dd5f90";
libraryHaskellDepends = [ amazonka-core base ];
testHaskellDepends = [
- amazonka-core amazonka-test base bytestring lens tasty tasty-hunit
- text time unordered-containers
+ amazonka-core amazonka-test base bytestring tasty tasty-hunit text
+ time unordered-containers
];
homepage = "https://github.com/brendanhay/amazonka";
description = "Amazon Lambda SDK";
@@ -25673,16 +25849,16 @@ self: {
"amazonka-marketplace-analytics" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
- , lens, tasty, tasty-hunit, text, time, unordered-containers
+ , tasty, tasty-hunit, text, time, unordered-containers
}:
mkDerivation {
pname = "amazonka-marketplace-analytics";
- version = "1.3.6";
- sha256 = "9ff0d3b4409c870d1eb44c2e4e88cc01e22cfe47dd52cd9373dffc6dea0e03bc";
+ version = "1.3.7";
+ sha256 = "eaf080d9f19638c4d7d98fb19e4f0ce752622c04db675e91c9bcc23476ca4d8e";
libraryHaskellDepends = [ amazonka-core base ];
testHaskellDepends = [
- amazonka-core amazonka-test base bytestring lens tasty tasty-hunit
- text time unordered-containers
+ 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";
@@ -25705,16 +25881,16 @@ self: {
"amazonka-ml" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
- , lens, tasty, tasty-hunit, text, time, unordered-containers
+ , tasty, tasty-hunit, text, time, unordered-containers
}:
mkDerivation {
pname = "amazonka-ml";
- version = "1.3.6";
- sha256 = "8edcd8ede34b7459c17999d6ba5b8925026806f0cd0c0d74438047b93346f5a2";
+ version = "1.3.7";
+ sha256 = "05ced76e5eaad97bd2b5ead71df84f3f304d0c6fa16fb5af6a3df8e24e9af31e";
libraryHaskellDepends = [ amazonka-core base ];
testHaskellDepends = [
- amazonka-core amazonka-test base bytestring lens tasty tasty-hunit
- text time unordered-containers
+ amazonka-core amazonka-test base bytestring tasty tasty-hunit text
+ time unordered-containers
];
homepage = "https://github.com/brendanhay/amazonka";
description = "Amazon Machine Learning SDK";
@@ -25765,16 +25941,16 @@ self: {
"amazonka-opsworks" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
- , lens, tasty, tasty-hunit, text, time, unordered-containers
+ , tasty, tasty-hunit, text, time, unordered-containers
}:
mkDerivation {
pname = "amazonka-opsworks";
- version = "1.3.6";
- sha256 = "1f3bef78afcaad9c301be45902eca6b44d31adb840be7f7364e0e81a4bb8a108";
+ version = "1.3.7";
+ sha256 = "d0367cedd608068cf27e84b1690086c7915639578181a2790f584b787dcadbb9";
libraryHaskellDepends = [ amazonka-core base ];
testHaskellDepends = [
- amazonka-core amazonka-test base bytestring lens tasty tasty-hunit
- text time unordered-containers
+ amazonka-core amazonka-test base bytestring tasty tasty-hunit text
+ time unordered-containers
];
homepage = "https://github.com/brendanhay/amazonka";
description = "Amazon OpsWorks SDK";
@@ -25825,16 +26001,16 @@ self: {
"amazonka-rds" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
- , lens, tasty, tasty-hunit, text, time, unordered-containers
+ , tasty, tasty-hunit, text, time, unordered-containers
}:
mkDerivation {
pname = "amazonka-rds";
- version = "1.3.6";
- sha256 = "7a70db7b6482b4836a7606c7026e9cb93c55763f414330ebfaf20967665f1a97";
+ version = "1.3.7";
+ sha256 = "a874b42d38fd50279d7dfbb4a08b3633dc35a8e2f140598c0aabbec3bf152a75";
libraryHaskellDepends = [ amazonka-core base ];
testHaskellDepends = [
- amazonka-core amazonka-test base bytestring lens tasty tasty-hunit
- text time unordered-containers
+ amazonka-core amazonka-test base bytestring tasty tasty-hunit text
+ time unordered-containers
];
homepage = "https://github.com/brendanhay/amazonka";
description = "Amazon Relational Database Service SDK";
@@ -25886,16 +26062,16 @@ self: {
"amazonka-redshift" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
- , lens, tasty, tasty-hunit, text, time, unordered-containers
+ , tasty, tasty-hunit, text, time, unordered-containers
}:
mkDerivation {
pname = "amazonka-redshift";
- version = "1.3.6";
- sha256 = "d057787a826e2cc91af5cb223d82421e17f9e5f698f8da85650a51106da272f9";
+ version = "1.3.7";
+ sha256 = "cd6797859fd724b5d470b3bcf01c1bec167ad1c247de115a767c6ba5ed268d01";
libraryHaskellDepends = [ amazonka-core base ];
testHaskellDepends = [
- amazonka-core amazonka-test base bytestring lens tasty tasty-hunit
- text time unordered-containers
+ amazonka-core amazonka-test base bytestring tasty tasty-hunit text
+ time unordered-containers
];
homepage = "https://github.com/brendanhay/amazonka";
description = "Amazon Redshift SDK";
@@ -25960,16 +26136,16 @@ self: {
"amazonka-route53" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
- , lens, tasty, tasty-hunit, text, time, unordered-containers
+ , tasty, tasty-hunit, text, time, unordered-containers
}:
mkDerivation {
pname = "amazonka-route53";
- version = "1.3.6";
- sha256 = "5f5c22d49a4b43a63dc21e1d83c9e571cd4028a509540fea45559ea78afdc4df";
+ version = "1.3.7";
+ sha256 = "cc6811f83c7282d1cd20d145fe317d6116a9731bd4ee58923d84924634fbc208";
libraryHaskellDepends = [ amazonka-core base ];
testHaskellDepends = [
- amazonka-core amazonka-test base bytestring lens tasty tasty-hunit
- text time unordered-containers
+ amazonka-core amazonka-test base bytestring tasty tasty-hunit text
+ time unordered-containers
];
homepage = "https://github.com/brendanhay/amazonka";
description = "Amazon Route 53 SDK";
@@ -26020,16 +26196,16 @@ self: {
"amazonka-route53-domains" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
- , lens, tasty, tasty-hunit, text, time, unordered-containers
+ , tasty, tasty-hunit, text, time, unordered-containers
}:
mkDerivation {
pname = "amazonka-route53-domains";
- version = "1.3.6";
- sha256 = "3360e343280cb0681e9c6702c668ccb4c3f9f67d2c5f8da98860e56dc2a59b09";
+ version = "1.3.7";
+ sha256 = "b2a5143e58f517ef9d3b5768acd220b3404cbc13b20248a983a977e73f3920dc";
libraryHaskellDepends = [ amazonka-core base ];
testHaskellDepends = [
- amazonka-core amazonka-test base bytestring lens tasty tasty-hunit
- text time unordered-containers
+ 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";
@@ -26084,12 +26260,12 @@ self: {
}:
mkDerivation {
pname = "amazonka-s3";
- version = "1.3.6";
- sha256 = "4867f20e331f1c5197b212d1ba6051887631419bc92cbc74dd26f0eed1987087";
+ version = "1.3.7";
+ sha256 = "da865c6a32f1d07c8ff28bcb1f2905b2e0cedf19e0f5c00ca975ac84ff9b1620";
libraryHaskellDepends = [ amazonka-core base lens text ];
testHaskellDepends = [
- amazonka-core amazonka-test base bytestring lens tasty tasty-hunit
- text time unordered-containers
+ amazonka-core amazonka-test base bytestring tasty tasty-hunit text
+ time unordered-containers
];
doCheck = false;
homepage = "https://github.com/brendanhay/amazonka";
@@ -26142,16 +26318,16 @@ self: {
"amazonka-sdb" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
- , lens, tasty, tasty-hunit, text, time, unordered-containers
+ , tasty, tasty-hunit, text, time, unordered-containers
}:
mkDerivation {
pname = "amazonka-sdb";
- version = "1.3.6";
- sha256 = "1d55cadafd4d4e5797fa87bd6ef089bf61dad6386ed943adb923055a36d2f32c";
+ version = "1.3.7";
+ sha256 = "6cf65455e4b56ef50f6ebed0b93463439c8ab51c3e33c74634b7046a6b341d71";
libraryHaskellDepends = [ amazonka-core base ];
testHaskellDepends = [
- amazonka-core amazonka-test base bytestring lens tasty tasty-hunit
- text time unordered-containers
+ amazonka-core amazonka-test base bytestring tasty tasty-hunit text
+ time unordered-containers
];
homepage = "https://github.com/brendanhay/amazonka";
description = "Amazon SimpleDB SDK";
@@ -26202,16 +26378,16 @@ self: {
"amazonka-ses" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
- , lens, tasty, tasty-hunit, text, time, unordered-containers
+ , tasty, tasty-hunit, text, time, unordered-containers
}:
mkDerivation {
pname = "amazonka-ses";
- version = "1.3.6";
- sha256 = "d8694bbfd28c6fbaa9a0e581debbdcb886010cd79e2830402ff54037d83e9b6d";
+ version = "1.3.7";
+ sha256 = "42d593776aea6d9bc5a9a8ec8ef9eefea413d413d3586fb0231733aceb4a29b3";
libraryHaskellDepends = [ amazonka-core base ];
testHaskellDepends = [
- amazonka-core amazonka-test base bytestring lens tasty tasty-hunit
- text time unordered-containers
+ 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";
@@ -26262,16 +26438,16 @@ self: {
"amazonka-sns" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
- , lens, tasty, tasty-hunit, text, time, unordered-containers
+ , tasty, tasty-hunit, text, time, unordered-containers
}:
mkDerivation {
pname = "amazonka-sns";
- version = "1.3.6";
- sha256 = "718d2f468302bf95ea7c8f51a340514e1756e84bedda2d0ae0d1ebae6b783094";
+ version = "1.3.7";
+ sha256 = "ea691aec73e2859e074bb86c7bdf3f04e8eb58b512686e887fc714403c612ee4";
libraryHaskellDepends = [ amazonka-core base ];
testHaskellDepends = [
- amazonka-core amazonka-test base bytestring lens tasty tasty-hunit
- text time unordered-containers
+ 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";
@@ -26322,16 +26498,16 @@ self: {
"amazonka-sqs" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
- , lens, tasty, tasty-hunit, text, time, unordered-containers
+ , tasty, tasty-hunit, text, time, unordered-containers
}:
mkDerivation {
pname = "amazonka-sqs";
- version = "1.3.6";
- sha256 = "5cfa83a58c52d1272c09c08743bf68c6c5d1789573c4ac50f8fa871361224c3a";
+ version = "1.3.7";
+ sha256 = "c18e3c60413c9a949b885622a10e7ea221ebb0b9f65c4d1c57c07941de969172";
libraryHaskellDepends = [ amazonka-core base ];
testHaskellDepends = [
- amazonka-core amazonka-test base bytestring lens tasty tasty-hunit
- text time unordered-containers
+ amazonka-core amazonka-test base bytestring tasty tasty-hunit text
+ time unordered-containers
];
homepage = "https://github.com/brendanhay/amazonka";
description = "Amazon Simple Queue Service SDK";
@@ -26383,16 +26559,16 @@ self: {
"amazonka-ssm" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
- , lens, tasty, tasty-hunit, text, time, unordered-containers
+ , tasty, tasty-hunit, text, time, unordered-containers
}:
mkDerivation {
pname = "amazonka-ssm";
- version = "1.3.6";
- sha256 = "936981dcc9ad3aab9eaca5b72337eb340e4101c98217c025570dab12b063942c";
+ version = "1.3.7";
+ sha256 = "5b990dafc0066327e197c5838a3ec562471933f7e0eed2bd15f94249859f20da";
libraryHaskellDepends = [ amazonka-core base ];
testHaskellDepends = [
- amazonka-core amazonka-test base bytestring lens tasty tasty-hunit
- text time unordered-containers
+ 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";
@@ -26443,16 +26619,16 @@ self: {
"amazonka-storagegateway" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
- , lens, tasty, tasty-hunit, text, time, unordered-containers
+ , tasty, tasty-hunit, text, time, unordered-containers
}:
mkDerivation {
pname = "amazonka-storagegateway";
- version = "1.3.6";
- sha256 = "af0784739819a62926d1282dfa7b05b3aaa90f8c4063dfa5877097ee17d2c29f";
+ version = "1.3.7";
+ sha256 = "d43de277a9262445fcbce966863622132c4a0d72273fa7bfd9efb32bdbc20348";
libraryHaskellDepends = [ amazonka-core base ];
testHaskellDepends = [
- amazonka-core amazonka-test base bytestring lens tasty tasty-hunit
- text time unordered-containers
+ amazonka-core amazonka-test base bytestring tasty tasty-hunit text
+ time unordered-containers
];
homepage = "https://github.com/brendanhay/amazonka";
description = "Amazon Storage Gateway SDK";
@@ -26503,16 +26679,16 @@ self: {
"amazonka-sts" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
- , lens, tasty, tasty-hunit, text, time, unordered-containers
+ , tasty, tasty-hunit, text, time, unordered-containers
}:
mkDerivation {
pname = "amazonka-sts";
- version = "1.3.6";
- sha256 = "65fe8fc6f3cb8512dff76f0897b6f50bd97e13d799e6ea631c558f8df152246f";
+ version = "1.3.7";
+ sha256 = "cb113a4d42ec49d05b3199802d3233ac8bdf3e85115bfcdd155a98c1a9003486";
libraryHaskellDepends = [ amazonka-core base ];
testHaskellDepends = [
- amazonka-core amazonka-test base bytestring lens tasty tasty-hunit
- text time unordered-containers
+ 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";
@@ -26563,16 +26739,16 @@ self: {
"amazonka-support" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
- , lens, tasty, tasty-hunit, text, time, unordered-containers
+ , tasty, tasty-hunit, text, time, unordered-containers
}:
mkDerivation {
pname = "amazonka-support";
- version = "1.3.6";
- sha256 = "14777c5a77eecc699832c71660032ae4cc871efe69d03aa4becde40c63d3c39d";
+ version = "1.3.7";
+ sha256 = "6c8b40c5dd291a5b53ce16348b219c40b33e2c94e65b8478f242ff93c0d6c0d2";
libraryHaskellDepends = [ amazonka-core base ];
testHaskellDepends = [
- amazonka-core amazonka-test base bytestring lens tasty tasty-hunit
- text time unordered-containers
+ amazonka-core amazonka-test base bytestring tasty tasty-hunit text
+ time unordered-containers
];
homepage = "https://github.com/brendanhay/amazonka";
description = "Amazon Support SDK";
@@ -26623,16 +26799,16 @@ self: {
"amazonka-swf" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
- , lens, tasty, tasty-hunit, text, time, unordered-containers
+ , tasty, tasty-hunit, text, time, unordered-containers
}:
mkDerivation {
pname = "amazonka-swf";
- version = "1.3.6";
- sha256 = "0dfda94067f7d2c17a6ffac0252a9340b7b95138721ac40198d03c896329fd16";
+ version = "1.3.7";
+ sha256 = "b95a998ca50d79913d8deb8c7572554726e4a3778c891301659ef8829d7119b0";
libraryHaskellDepends = [ amazonka-core base ];
testHaskellDepends = [
- amazonka-core amazonka-test base bytestring lens tasty tasty-hunit
- text time unordered-containers
+ amazonka-core amazonka-test base bytestring tasty tasty-hunit text
+ time unordered-containers
];
doCheck = false;
homepage = "https://github.com/brendanhay/amazonka";
@@ -26644,17 +26820,17 @@ self: {
"amazonka-test" = callPackage
({ mkDerivation, aeson, amazonka-core, base, bifunctors, bytestring
, case-insensitive, conduit, conduit-extra, groom, http-client
- , http-types, lens, process, resourcet, tasty, tasty-hunit
+ , http-types, process, resourcet, tasty, tasty-hunit
, template-haskell, temporary, text, time, unordered-containers
, yaml
}:
mkDerivation {
pname = "amazonka-test";
- version = "1.3.6";
- sha256 = "f7f1467d724cdbbb85812c30cee27ad86bfa18a000c28cf4c9dda433d4317eda";
+ version = "1.3.7";
+ sha256 = "0d7410f8b76d9e1b8be76529868cf2267445219b3ca21499ae231d736a42f8d9";
libraryHaskellDepends = [
aeson amazonka-core base bifunctors bytestring case-insensitive
- conduit conduit-extra groom http-client http-types lens process
+ conduit conduit-extra groom http-client http-types process
resourcet tasty tasty-hunit template-haskell temporary text time
unordered-containers yaml
];
@@ -26665,16 +26841,16 @@ self: {
"amazonka-waf" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
- , lens, tasty, tasty-hunit, text, time, unordered-containers
+ , tasty, tasty-hunit, text, time, unordered-containers
}:
mkDerivation {
pname = "amazonka-waf";
- version = "1.3.6";
- sha256 = "4f85cd6ee461dc45353e8525197f94c4d08ce0db3e0d1760a2a90bceb29f3725";
+ version = "1.3.7";
+ sha256 = "431d34671308da866b8f2738a88d84cf81c73fd5731decc5d94cd87159b012cb";
libraryHaskellDepends = [ amazonka-core base ];
testHaskellDepends = [
- amazonka-core amazonka-test base bytestring lens tasty tasty-hunit
- text time unordered-containers
+ amazonka-core amazonka-test base bytestring tasty tasty-hunit text
+ time unordered-containers
];
homepage = "https://github.com/brendanhay/amazonka";
description = "Amazon WAF SDK";
@@ -26697,16 +26873,16 @@ self: {
"amazonka-workspaces" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
- , lens, tasty, tasty-hunit, text, time, unordered-containers
+ , tasty, tasty-hunit, text, time, unordered-containers
}:
mkDerivation {
pname = "amazonka-workspaces";
- version = "1.3.6";
- sha256 = "108f85466e085f1b1576111f66a881967918f7f431710f819e20124216b78ff5";
+ version = "1.3.7";
+ sha256 = "52a3bc3c4a2f0f461042dfc54f8fc5f51e51ac62c8477acf4aa1e4ecc368b9c9";
libraryHaskellDepends = [ amazonka-core base ];
testHaskellDepends = [
- amazonka-core amazonka-test base bytestring lens tasty tasty-hunit
- text time unordered-containers
+ amazonka-core amazonka-test base bytestring tasty tasty-hunit text
+ time unordered-containers
];
homepage = "https://github.com/brendanhay/amazonka";
description = "Amazon WorkSpaces SDK";
@@ -27660,8 +27836,8 @@ self: {
pname = "apiary-authenticate";
version = "1.4.0";
sha256 = "40dbdb0d6799ba7091ae9b72929c7d62a74dd251b5a6e01f8979314d75dbd107";
- revision = "2";
- editedCabalFile = "bc95b4d109ba8dabede930aadcce9540b3376f4679ac96a91b6af0cd0c5ced9e";
+ revision = "3";
+ editedCabalFile = "923708ce64b096b916e3e1e830c6ffc13dcdd289524d1580f2206f0e4ce4554b";
libraryHaskellDepends = [
apiary apiary-session authenticate base blaze-builder bytestring
cereal data-default-class http-client http-client-tls http-types
@@ -27681,8 +27857,8 @@ self: {
pname = "apiary-clientsession";
version = "1.4.0";
sha256 = "a6bba1337d2ee7ded7303f2801b09b9d93cdafb93f5115328c797bef3e6126fd";
- revision = "1";
- editedCabalFile = "ac724d51a8bd867838bccb788a0db76f97cfe19b052d1247e38ba001561e4bfd";
+ revision = "2";
+ editedCabalFile = "b3780175a0912ef55de02d916822dbe38b98acec5705a63f808517cda16ab90c";
libraryHaskellDepends = [
apiary apiary-cookie apiary-session base bytestring cereal
clientsession data-default-class time unix-compat vault
@@ -28497,6 +28673,7 @@ self: {
pcre-light process-extras tasty tasty-golden tasty-hunit time
transformers unix utf8-string
];
+ jailbreak = true;
homepage = "http://arbtt.nomeata.de/";
description = "Automatic Rule-Based Time Tracker";
license = "GPL";
@@ -28690,6 +28867,7 @@ self: {
docopt filepath ghc ghc-paths ghc-syb-utils hlint hspec lens-simple
pathwalk pipes pipes-group QuickCheck syb
];
+ doCheck = false;
homepage = "http://github.com/rubik/argon";
description = "Measure your code's complexity";
license = stdenv.lib.licenses.isc;
@@ -29434,7 +29612,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "asn1-types" = callPackage
+ "asn1-types_0_3_1" = callPackage
({ mkDerivation, base, bytestring, hourglass, memory }:
mkDerivation {
pname = "asn1-types";
@@ -29444,6 +29622,19 @@ self: {
homepage = "http://github.com/vincenthz/hs-asn1-types";
description = "ASN.1 types";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "asn1-types" = callPackage
+ ({ mkDerivation, base, bytestring, hourglass, memory }:
+ mkDerivation {
+ pname = "asn1-types";
+ version = "0.3.2";
+ sha256 = "0c571fff4a10559c6a630d4851ba3cdf1d558185ce3dcfca1136f9883d647217";
+ libraryHaskellDepends = [ base bytestring hourglass memory ];
+ homepage = "http://github.com/vincenthz/hs-asn1-types";
+ description = "ASN.1 types";
+ license = stdenv.lib.licenses.bsd3;
}) {};
"asn1dump" = callPackage
@@ -30074,8 +30265,8 @@ self: {
}:
mkDerivation {
pname = "atto-lisp";
- version = "0.2.2.1";
- sha256 = "d7027a3dc085155a52bd215ed1dc00b36218f8439f9ebd2caf5eca77aa3c0189";
+ version = "0.2.2.2";
+ sha256 = "24bacde886e3ee8adf50cb33f34b935a254cdd415bebd7c81ac75b8dfb0a0066";
libraryHaskellDepends = [
attoparsec base blaze-builder blaze-textual bytestring containers
deepseq text
@@ -30084,7 +30275,6 @@ self: {
attoparsec base bytestring HUnit test-framework
test-framework-hunit text
];
- jailbreak = true;
homepage = "http://github.com/nominolo/atto-lisp";
description = "Efficient parsing and serialisation of S-Expressions";
license = stdenv.lib.licenses.bsd3;
@@ -30665,7 +30855,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "auto-update" = callPackage
+ "auto-update_0_1_2_2" = callPackage
({ mkDerivation, base }:
mkDerivation {
pname = "auto-update";
@@ -30675,9 +30865,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_3" = callPackage
+ "auto-update" = callPackage
({ mkDerivation, base }:
mkDerivation {
pname = "auto-update";
@@ -30687,7 +30878,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;
}) {};
"autonix-deps" = callPackage
@@ -30836,6 +31026,7 @@ self: {
version = "0.0.1.2";
sha256 = "60102786473f189ea0f97d97b91d9de5a2867dde466b96386c28afbe22e056cc";
libraryHaskellDepends = [ base dependent-sum mtl process shake ];
+ jailbreak = true;
homepage = "https://github.com/mokus0/avr-shake";
description = "AVR Crosspack actions for shake build systems";
license = stdenv.lib.licenses.publicDomain;
@@ -32413,19 +32604,6 @@ self: {
}) {};
"base-noprelude" = callPackage
- ({ mkDerivation, base }:
- mkDerivation {
- pname = "base-noprelude";
- version = "4.8.1.0";
- sha256 = "bd524ee4d4b9fb433a4f10eedf8605de3baccc9c2c533d1ab57ee6941ade4014";
- libraryHaskellDepends = [ base ];
- doHaddock = false;
- homepage = "https://github.com/hvr/base-noprelude";
- description = "\"base\" package sans \"Prelude\" module";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "base-noprelude_4_8_2_0" = callPackage
({ mkDerivation, base }:
mkDerivation {
pname = "base-noprelude";
@@ -32433,11 +32611,9 @@ self: {
sha256 = "bd4ab7685a14d82f7586074b1af88e22a8401e552a439286710592e3a2d763c7";
libraryHaskellDepends = [ base ];
doHaddock = false;
- jailbreak = true;
homepage = "https://github.com/hvr/base-noprelude";
description = "\"base\" package sans \"Prelude\" module";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"base-orphans_0_4_3" = callPackage
@@ -32450,13 +32626,14 @@ self: {
editedCabalFile = "a29b52bb0bcf5ec63ab526d5382553497cc5eb40ac02752c75c43752cf464344";
libraryHaskellDepends = [ base ghc-prim ];
testHaskellDepends = [ base hspec QuickCheck ];
+ jailbreak = true;
homepage = "https://github.com/haskell-compat/base-orphans#readme";
description = "Backwards-compatible orphan instances for base";
license = stdenv.lib.licenses.mit;
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "base-orphans" = callPackage
+ "base-orphans_0_4_4" = callPackage
({ mkDerivation, base, ghc-prim, hspec, QuickCheck }:
mkDerivation {
pname = "base-orphans";
@@ -32469,9 +32646,10 @@ self: {
homepage = "https://github.com/haskell-compat/base-orphans#readme";
description = "Backwards-compatible orphan instances for base";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "base-orphans_0_4_5" = callPackage
+ "base-orphans" = callPackage
({ mkDerivation, base, ghc-prim, hspec, QuickCheck }:
mkDerivation {
pname = "base-orphans";
@@ -32482,7 +32660,6 @@ self: {
homepage = "https://github.com/haskell-compat/base-orphans#readme";
description = "Backwards-compatible orphan instances for base";
license = stdenv.lib.licenses.mit;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"base-prelude_0_1_6" = callPackage
@@ -32612,7 +32789,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "base-prelude" = callPackage
+ "base-prelude_0_1_19" = callPackage
({ mkDerivation, base }:
mkDerivation {
pname = "base-prelude";
@@ -32623,6 +32800,20 @@ self: {
homepage = "https://github.com/nikita-volkov/base-prelude";
description = "The most complete prelude formed from only the \"base\" package";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "base-prelude" = callPackage
+ ({ mkDerivation, base }:
+ mkDerivation {
+ pname = "base-prelude";
+ version = "0.1.20";
+ sha256 = "0adb753a2f638b432c79bb02e39ce417adff6d4e9f51046b423ac2931074b0c8";
+ libraryHaskellDepends = [ base ];
+ doCheck = false;
+ homepage = "https://github.com/nikita-volkov/base-prelude";
+ description = "The most complete prelude formed from only the \"base\" package";
+ license = stdenv.lib.licenses.mit;
}) {};
"base-unicode-symbols" = callPackage
@@ -33404,6 +33595,7 @@ self: {
base lens QuickCheck semigroups test-framework
test-framework-quickcheck2 test-framework-th
];
+ jailbreak = true;
homepage = "https://github.com/Noeda/bet/";
description = "Betfair API bindings. Bet on sports on betting exchanges.";
license = stdenv.lib.licenses.mit;
@@ -33596,7 +33788,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "bifunctors" = callPackage
+ "bifunctors_5" = callPackage
({ mkDerivation, base, semigroups, tagged }:
mkDerivation {
pname = "bifunctors";
@@ -33606,9 +33798,10 @@ self: {
homepage = "http://github.com/ekmett/bifunctors/";
description = "Bifunctors";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "bifunctors_5_1" = callPackage
+ "bifunctors" = callPackage
({ mkDerivation, base, containers, hspec, QuickCheck, semigroups
, tagged, template-haskell, transformers, transformers-compat
}:
@@ -33627,7 +33820,6 @@ self: {
homepage = "http://github.com/ekmett/bifunctors/";
description = "Bifunctors";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"billboard-parser" = callPackage
@@ -33830,15 +34022,15 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
- "binary_0_7_6_1" = callPackage
+ "binary_0_8_0_0" = callPackage
({ mkDerivation, array, base, bytestring, Cabal, containers
, directory, filepath, HUnit, QuickCheck, random, test-framework
, test-framework-quickcheck2
}:
mkDerivation {
pname = "binary";
- version = "0.7.6.1";
- sha256 = "8f85cafc15be660757878a665d024ce595d4422fead174e20a501c9ec8f81067";
+ version = "0.8.0.0";
+ sha256 = "a446ed06e0b3011716b09d129f25c8bab9bda60a5783bab1e778e7ffa30c7d8f";
libraryHaskellDepends = [ array base bytestring containers ];
testHaskellDepends = [
array base bytestring Cabal containers directory filepath HUnit
@@ -33931,8 +34123,8 @@ self: {
}:
mkDerivation {
pname = "binary-file";
- version = "0.15.24";
- sha256 = "f1dc3f43c41fe4f16e032b49130a4db93ba3a2a1bda4db6e4172522ef18b918c";
+ version = "0.15.25";
+ sha256 = "3f22fd8d60909e1f3f26e741ca5fa6126fa4de6427f5d3f7ce4c6fe3437ef6d0";
libraryHaskellDepends = [
base bytestring monads-tf peggy template-haskell
];
@@ -34306,8 +34498,8 @@ self: {
}:
mkDerivation {
pname = "binary-typed";
- version = "0.3";
- sha256 = "fe9be6ab6e6c01434eb71233d5c0a958ec9f59eda39c2989d6178922337bdf8b";
+ version = "1.0";
+ sha256 = "85f3708802c52bca66bc5fdc560704cedd1cc63e313fcaab7638196ff7d05609";
libraryHaskellDepends = [ base binary bytestring murmur-hash ];
testHaskellDepends = [
base binary bytestring tasty tasty-hunit tasty-quickcheck
@@ -34475,6 +34667,7 @@ self: {
testHaskellDepends = [
base HUnit test-framework test-framework-hunit
];
+ jailbreak = true;
doCheck = false;
description = "Low-level bindings to GLFW OpenGL library";
license = stdenv.lib.licenses.bsd3;
@@ -35475,16 +35668,13 @@ self: {
}) {};
"bit-array" = callPackage
- ({ mkDerivation, base, directory, doctest, filepath, loch-th
- , numeric-qq, placeholders
- }:
+ ({ mkDerivation, base, directory, doctest, filepath, numeric-qq }:
mkDerivation {
pname = "bit-array";
- version = "0.1.0.1";
- sha256 = "b5a9b1bbc449b4b189e8485a1220364e7f7ff113d9c265ca4b5a7c287f1a25e3";
- libraryHaskellDepends = [ base loch-th numeric-qq placeholders ];
+ version = "0.1.1";
+ sha256 = "0c3ce1c19f6830a083b39590a8e9015b1fb430f4fb97dc5349c21c03eec72c14";
+ libraryHaskellDepends = [ base numeric-qq ];
testHaskellDepends = [ base directory doctest filepath ];
- jailbreak = true;
homepage = "https://github.com/nikita-volkov/bit-array";
description = "A bit array (aka bitset, bitmap, bit vector) API for numeric types";
license = stdenv.lib.licenses.mit;
@@ -36383,6 +36573,7 @@ self: {
QuickCheck test-framework test-framework-hunit
test-framework-quickcheck2 text
];
+ jailbreak = true;
homepage = "http://jaspervdj.be/blaze";
description = "A blazingly fast HTML combinator library for Haskell";
license = stdenv.lib.licenses.bsd3;
@@ -36406,6 +36597,7 @@ self: {
QuickCheck test-framework test-framework-hunit
test-framework-quickcheck2 text
];
+ jailbreak = true;
homepage = "http://jaspervdj.be/blaze";
description = "A blazingly fast HTML combinator library for Haskell";
license = stdenv.lib.licenses.bsd3;
@@ -36583,6 +36775,7 @@ self: {
base blaze-builder bytestring containers HUnit QuickCheck
test-framework test-framework-hunit test-framework-quickcheck2 text
];
+ jailbreak = true;
homepage = "http://jaspervdj.be/blaze";
description = "A blazingly fast markup combinator library for Haskell";
license = stdenv.lib.licenses.bsd3;
@@ -36893,35 +37086,6 @@ self: {
}) {};
"bloodhound" = callPackage
- ({ mkDerivation, aeson, base, blaze-builder, bytestring, containers
- , data-default-class, directory, doctest, doctest-prop, exceptions
- , filepath, hspec, http-client, http-types, mtl, mtl-compat
- , QuickCheck, quickcheck-properties, semigroups, text, time
- , transformers, unordered-containers, uri-bytestring, vector
- }:
- mkDerivation {
- pname = "bloodhound";
- version = "0.8.0.0";
- sha256 = "19d47c1699fe0ad2ebe9a5b70ea3460c00209162d9650fe0056623c71c1c9436";
- libraryHaskellDepends = [
- aeson base blaze-builder bytestring containers data-default-class
- exceptions http-client http-types mtl mtl-compat semigroups text
- time transformers unordered-containers uri-bytestring vector
- ];
- testHaskellDepends = [
- aeson base bytestring containers directory doctest doctest-prop
- filepath hspec http-client http-types mtl QuickCheck
- quickcheck-properties semigroups text time unordered-containers
- vector
- ];
- jailbreak = true;
- doCheck = false;
- homepage = "https://github.com/bitemyapp/bloodhound";
- description = "ElasticSearch client library for Haskell";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "bloodhound_0_10_0_0" = callPackage
({ mkDerivation, aeson, base, blaze-builder, bytestring, containers
, data-default-class, derive, directory, doctest, doctest-prop
, errors, exceptions, filepath, hashable, hspec, http-client
@@ -36946,10 +37110,10 @@ self: {
unordered-containers vector
];
jailbreak = true;
+ doCheck = false;
homepage = "https://github.com/bitemyapp/bloodhound";
description = "ElasticSearch client library for Haskell";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"bloomfilter" = callPackage
@@ -37168,6 +37332,7 @@ self: {
monad-loops pretty QuickCheck tasty tasty-golden tasty-hunit
tasty-quickcheck text
];
+ jailbreak = true;
homepage = "https://github.com/Microsoft/bond";
description = "Bond schema compiler and code generator";
license = stdenv.lib.licenses.mit;
@@ -37192,6 +37357,7 @@ self: {
version = "0.1.0.0";
sha256 = "774f3f3313a8909505834e647b744fa53178b6a4eee5cf55b5207da5e6d7217b";
libraryHaskellDepends = [ base bytestring HUnit ];
+ jailbreak = true;
homepage = "http://xy30.com";
description = "convert numbers to binary coded lists";
license = stdenv.lib.licenses.gpl3;
@@ -37270,8 +37436,8 @@ self: {
({ mkDerivation, base, mtl, template-haskell, text }:
mkDerivation {
pname = "boomerang";
- version = "1.4.5";
- sha256 = "d8cc905e2bba12cf82677ebafad83a147b9ab21753fecf8bc0bb45f1bc562a0e";
+ version = "1.4.5.1";
+ sha256 = "24381764277d0454185ea4f6862d3a7d84efd7a46f9f524f821b4052b08a46bc";
libraryHaskellDepends = [ base mtl template-haskell text ];
description = "Library for invertible parsing and printing";
license = stdenv.lib.licenses.bsd3;
@@ -37417,7 +37583,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "bound" = callPackage
+ "bound_1_0_6" = callPackage
({ mkDerivation, base, bifunctors, binary, bytes, cereal, comonad
, directory, doctest, filepath, hashable, hashable-extras
, prelude-extras, profunctors, transformers, vector
@@ -37438,6 +37604,32 @@ self: {
homepage = "http://github.com/ekmett/bound/";
description = "Making de Bruijn Succ Less";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "bound" = callPackage
+ ({ mkDerivation, base, bifunctors, binary, bytes, cereal, comonad
+ , directory, doctest, filepath, hashable, hashable-extras
+ , prelude-extras, profunctors, template-haskell, transformers
+ , vector
+ }:
+ mkDerivation {
+ pname = "bound";
+ version = "1.0.7";
+ sha256 = "ad0388ade83ca0b3cf02b182e663f553a83b3a8116ada8f39543318bf516340e";
+ libraryHaskellDepends = [
+ base bifunctors binary bytes cereal comonad hashable
+ hashable-extras prelude-extras profunctors template-haskell
+ transformers
+ ];
+ testHaskellDepends = [
+ base directory doctest filepath prelude-extras transformers vector
+ ];
+ jailbreak = true;
+ doCheck = false;
+ homepage = "http://github.com/ekmett/bound/";
+ description = "Making de Bruijn Succ Less";
+ license = stdenv.lib.licenses.bsd3;
}) {};
"bound-gen" = callPackage
@@ -37630,8 +37822,8 @@ self: {
}:
mkDerivation {
pname = "brick";
- version = "0.3";
- sha256 = "86d37000d642b0a7bca0c820f7860fefc6a9383044149253e17a88ee4c69d491";
+ version = "0.3.1";
+ sha256 = "0e97e82a8dc3b9eba8f11cdf69818b6a919dbe6e8c7710b55483c3908ecfc7a9";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -37916,7 +38108,7 @@ self: {
hydraPlatforms = [ "i686-linux" "x86_64-linux" ];
}) {};
- "buffer-builder" = callPackage
+ "buffer-builder_0_2_4_0" = callPackage
({ mkDerivation, aeson, attoparsec, base, bytestring, criterion
, deepseq, HUnit, mtl, quickcheck-instances, tasty, tasty-hunit
, tasty-quickcheck, tasty-th, text, unordered-containers, vector
@@ -37936,6 +38128,28 @@ 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.1";
+ sha256 = "f9ced75361df829a377fd3227ebb26ab9905b3c1eb6eef9b0234a9e14d519795";
+ 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" ];
}) {};
@@ -38488,8 +38702,8 @@ self: {
({ mkDerivation, base, bytestring, cryptohash, QuickCheck }:
mkDerivation {
pname = "bytestring-arbitrary";
- version = "0.0.4";
- sha256 = "005fca02b5917a5f844db8cc5fdd603073e5e6c1fefaad5568a87df414e15abb";
+ version = "0.1.0";
+ sha256 = "248378d6a7b75e8b9cbadcb3793ddcb17bd1ef7b36ffce02dc99ff11ef49c92b";
libraryHaskellDepends = [ base bytestring cryptohash QuickCheck ];
testHaskellDepends = [ base bytestring cryptohash QuickCheck ];
homepage = "https://github.com/tsuraan/bytestring-arbitrary";
@@ -38678,6 +38892,7 @@ self: {
base bytestring HUnit QuickCheck test-framework
test-framework-hunit test-framework-quickcheck2
];
+ jailbreak = true;
homepage = "http://hub.darcs.net/ganesh/bytestring-handle";
description = "ByteString-backed Handles";
license = stdenv.lib.licenses.bsd3;
@@ -39325,6 +39540,7 @@ self: {
base Cabal containers debian Diff filepath hsemail HUnit lens
pretty process text
];
+ jailbreak = true;
homepage = "https://github.com/ddssff/cabal-debian";
description = "Create a Debianization for a Cabal package";
license = stdenv.lib.licenses.bsd3;
@@ -39332,34 +39548,32 @@ self: {
}) {};
"cabal-debian" = callPackage
- ({ mkDerivation, ansi-wl-pprint, base, bifunctors, bytestring
- , bzlib, Cabal, containers, data-default, deepseq, Diff, directory
- , exceptions, filepath, HaXml, hsemail, HUnit, lens, ListLike
- , memoize, mtl, network, network-uri, newtype-generics, old-locale
- , optparse-applicative, parsec, pretty, process, process-extras
- , pureMD5, regex-compat, regex-tdfa, set-extra, syb
- , template-haskell, text, time, unix, Unixutils, utf8-string, zlib
+ ({ 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.31.7";
- sha256 = "5e8aceb412a84b874af9c525bc328f33c08309930ac65cdbb143b5c15ad4f673";
+ version = "4.31.9";
+ sha256 = "e046eb64364023dc0e8c786c06b76e47f845c7be212403937d790ab1716f88e9";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
- ansi-wl-pprint base bifunctors bytestring bzlib Cabal containers
- data-default deepseq Diff directory exceptions filepath HaXml
- hsemail HUnit lens ListLike memoize mtl network network-uri
- newtype-generics old-locale optparse-applicative parsec pretty
- process process-extras pureMD5 regex-compat regex-tdfa set-extra
- syb template-haskell text time unix Unixutils utf8-string zlib
+ 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 lens mtl pretty Unixutils
+ base Cabal debian lens mtl pretty Unixutils
];
testHaskellDepends = [
- base Cabal containers Diff directory filepath hsemail HUnit lens
- pretty process text
+ base Cabal containers debian Diff directory filepath hsemail HUnit
+ lens pretty process text
];
doCheck = false;
homepage = "https://github.com/ddssff/cabal-debian";
@@ -41474,6 +41688,7 @@ self: {
testHaskellDepends = [
base bytestring HUnit test-framework test-framework-hunit text
];
+ jailbreak = true;
homepage = "https://github.com/basvandijk/case-insensitive";
description = "Case insensitive string comparison";
license = stdenv.lib.licenses.bsd3;
@@ -41492,6 +41707,7 @@ self: {
testHaskellDepends = [
base bytestring HUnit test-framework test-framework-hunit text
];
+ jailbreak = true;
homepage = "https://github.com/basvandijk/case-insensitive";
description = "Case insensitive string comparison";
license = stdenv.lib.licenses.bsd3;
@@ -41934,6 +42150,7 @@ self: {
base containers optparse-applicative shelly system-fileio
system-filepath text
];
+ jailbreak = true;
homepage = "https://github.com/erochest/castle";
description = "A tool to manage shared cabal-install sandboxes";
license = stdenv.lib.licenses.asl20;
@@ -42249,6 +42466,34 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {gtk2 = pkgs.gnome2.gtk;};
+ "cerberus" = callPackage
+ ({ mkDerivation, base, blaze-builder, bytestring, cmdargs
+ , conduit-extra, ekg, ekg-core, hslogger, http-client
+ , http-client-tls, http-reverse-proxy, http-types, pretty-show
+ , text, wai, wai-middleware-caching, wai-middleware-caching-lru
+ , wai-middleware-caching-redis, wai-middleware-throttle, warp
+ }:
+ mkDerivation {
+ pname = "cerberus";
+ version = "0.1.0.0";
+ sha256 = "11c9b5aa94939e289869a1a98cf60b6081b1be8ba5d75a66cf4ed8be0faa5c8e";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [
+ base blaze-builder bytestring conduit-extra ekg ekg-core hslogger
+ http-client http-client-tls http-reverse-proxy http-types text wai
+ wai-middleware-caching wai-middleware-caching-lru
+ wai-middleware-caching-redis wai-middleware-throttle warp
+ ];
+ executableHaskellDepends = [
+ base cmdargs ekg ekg-core hslogger pretty-show
+ ];
+ testHaskellDepends = [ base ];
+ homepage = "http://github.com/yogsototh/cerberus#readme";
+ description = "Protect and control API access with cerberus";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"cereal_0_4_1_0" = callPackage
({ mkDerivation, array, base, bytestring, containers, ghc-prim }:
mkDerivation {
@@ -43093,6 +43338,7 @@ self: {
version = "0.2.1";
sha256 = "00f423ea3ef78f24ba2d9077db267fa9d30e47fa1b80ebafcaf2d5879214d400";
libraryHaskellDepends = [ base chell HUnit ];
+ jailbreak = true;
homepage = "https://john-millikin.com/software/chell/";
description = "HUnit support for the Chell testing library";
license = stdenv.lib.licenses.mit;
@@ -43819,6 +44065,7 @@ self: {
lens lens-aeson mtl mtl-compat QuickCheck tasty tasty-hunit
tasty-th transformers-compat
];
+ jailbreak = true;
homepage = "http://clafer.org";
description = "Compiles Clafer models to other formats: Alloy, JavaScript, JSON, HTML, Dot";
license = stdenv.lib.licenses.mit;
@@ -44058,8 +44305,8 @@ self: {
}:
mkDerivation {
pname = "clash-ghc";
- version = "0.6.6";
- sha256 = "a01193e7552866b839ddc6d368f4cb0b04c2ba5eed2a92217cad23024bdf5718";
+ version = "0.6.7";
+ sha256 = "08eb23a3986af41ede3dca432e3f4ac0d80d0ae5cfc6af6115e8943447264a52";
isLibrary = false;
isExecutable = true;
executableHaskellDepends = [
@@ -44175,8 +44422,8 @@ self: {
}:
mkDerivation {
pname = "clash-lib";
- version = "0.6.6";
- sha256 = "a40e5cc300a84e61b7ed47a104914715e77795b18bd97f9489ddbca8efc92cd5";
+ version = "0.6.7";
+ sha256 = "26dd3e636ac6ea644d30d7bd583c57e80ed5c99f2a7d145852b3234df25a2ccf";
libraryHaskellDepends = [
aeson attoparsec base bytestring clash-prelude concurrent-supply
containers deepseq directory errors fgl filepath hashable lens mtl
@@ -45260,6 +45507,8 @@ self: {
testHaskellDepends = [
base HUnit mtl test-framework test-framework-hunit text
];
+ jailbreak = true;
+ doCheck = false;
homepage = "http://fvisser.nl/clay";
description = "CSS preprocessor as embedded Haskell";
license = stdenv.lib.licenses.bsd3;
@@ -45279,8 +45528,8 @@ self: {
}:
mkDerivation {
pname = "clckwrks";
- version = "0.23.12";
- sha256 = "89515b6706f548b4af30b07111864e0e917de86d39e6d53ceb2ff1c431d8341d";
+ version = "0.23.13";
+ sha256 = "b663a9495d434e62b02965009fefdd8cef6ec64fbccb3894efb662a58779e3a2";
libraryHaskellDepends = [
acid-state aeson aeson-qq attoparsec base blaze-html bytestring
cereal containers directory filepath happstack-authenticate
@@ -45423,8 +45672,8 @@ self: {
}:
mkDerivation {
pname = "clckwrks-plugin-page";
- version = "0.4.2";
- sha256 = "b082b6bb6ae8ca730a5f72d246c1af7ac3c3fcf3b51787731c3519854d1d49a0";
+ version = "0.4.3";
+ sha256 = "6c3ccbdbcdd5034223577e29a8e0791d8e3c262ed1a117f8f865ca2cbdbf9fea";
libraryHaskellDepends = [
acid-state aeson attoparsec base clckwrks containers directory
filepath happstack-hsp happstack-server hsp hsx2hs ixset mtl
@@ -45761,7 +46010,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "clock" = callPackage
+ "clock_0_5_1" = callPackage
({ mkDerivation, base, tasty, tasty-quickcheck }:
mkDerivation {
pname = "clock";
@@ -45772,9 +46021,10 @@ self: {
homepage = "https://github.com/corsis/clock";
description = "High-resolution clock functions: monotonic, realtime, cputime";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "clock_0_6_0_1" = callPackage
+ "clock" = callPackage
({ mkDerivation, base, tasty, tasty-quickcheck }:
mkDerivation {
pname = "clock";
@@ -45782,10 +46032,10 @@ self: {
sha256 = "88a2c7cfe3edacb8775fa8e8e6fa6ff8ceceb45554c5d2d7fabefc8df52b5f74";
libraryHaskellDepends = [ base ];
testHaskellDepends = [ base tasty tasty-quickcheck ];
+ doCheck = false;
homepage = "https://github.com/corsis/clock";
description = "High-resolution clock functions: monotonic, realtime, cputime";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"clocked" = callPackage
@@ -46051,6 +46301,7 @@ self: {
sha256 = "638328b59c2bb8bdcd0f3042c4554f2b2b7c6deac7770dbc8bc2813c865a35ce";
libraryHaskellDepends = [ base bytestring text ];
testHaskellDepends = [ base HUnit text ];
+ jailbreak = true;
homepage = "https://github.com/jgm/commonmark-hs";
description = "Fast, accurate CommonMark (Markdown) parser and renderer";
license = stdenv.lib.licenses.bsd3;
@@ -46590,7 +46841,6 @@ self: {
random scientific tasty tasty-hunit tasty-quickcheck tasty-th time
transformers unordered-containers uuid websockets
];
- jailbreak = true;
description = "Connector library for the coinbase exchange";
license = stdenv.lib.licenses.mit;
hydraPlatforms = stdenv.lib.platforms.none;
@@ -47957,7 +48207,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "concurrent-extra" = callPackage
+ "concurrent-extra_0_7_0_9" = callPackage
({ mkDerivation, async, base, HUnit, random, stm, test-framework
, test-framework-hunit, unbounded-delays
}:
@@ -47971,13 +48221,15 @@ self: {
unbounded-delays
];
doHaddock = false;
+ jailbreak = true;
doCheck = false;
homepage = "https://github.com/basvandijk/concurrent-extra";
description = "Extra concurrency primitives";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "concurrent-extra_0_7_0_10" = callPackage
+ "concurrent-extra" = callPackage
({ mkDerivation, async, base, HUnit, random, stm, test-framework
, test-framework-hunit, unbounded-delays
}:
@@ -47990,10 +48242,10 @@ self: {
async base HUnit random stm test-framework test-framework-hunit
unbounded-delays
];
+ doCheck = false;
homepage = "https://github.com/basvandijk/concurrent-extra";
description = "Extra concurrency primitives";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"concurrent-machines" = callPackage
@@ -48012,6 +48264,7 @@ self: {
testHaskellDepends = [
base machines tasty tasty-hunit time transformers
];
+ jailbreak = true;
description = "Concurrent networked stream transducers";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -48022,8 +48275,8 @@ self: {
}:
mkDerivation {
pname = "concurrent-output";
- version = "1.7.1";
- sha256 = "3aead087a1db0b762b13bf62e11f01673d0a8b4f9d3e489fa18dd7fb5fa2098d";
+ version = "1.7.2";
+ sha256 = "a69a41502e640eb6afc87e8420001dadbbe22cd18580792995f73d2029c30169";
libraryHaskellDepends = [
ansi-terminal async base directory exceptions process stm
terminal-size text transformers unix
@@ -49072,20 +49325,20 @@ self: {
"configifier" = callPackage
({ mkDerivation, aeson, aeson-pretty, base, bytestring
, case-insensitive, containers, directory, either, functor-infix
- , hspec, hspec-discover, mtl, pretty-show, QuickCheck, regex-easy
- , safe, scientific, string-conversions, template-haskell, text
+ , hspec, hspec-discover, mtl, pretty-show, QuickCheck, safe
+ , scientific, string-conversions, template-haskell, text
, unordered-containers, vector, yaml
}:
mkDerivation {
pname = "configifier";
- version = "0.0.7";
- sha256 = "207b6a5c670b44c0a7814ff7ab2054507df84d8b8ad8418c3fe312d7d1db1e30";
+ version = "0.0.8";
+ sha256 = "7f56ae97d2d614c26b634ccbd1951b0c958eca20b20401d210027e2f1627cd9b";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
base bytestring case-insensitive containers directory either
- functor-infix mtl regex-easy safe string-conversions
- template-haskell unordered-containers vector yaml
+ functor-infix mtl safe string-conversions template-haskell
+ unordered-containers vector yaml
];
executableHaskellDepends = [
base bytestring mtl pretty-show string-conversions text yaml
@@ -49638,17 +49891,15 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "containers_0_5_6_3" = callPackage
+ "containers_0_5_7_1" = callPackage
({ mkDerivation, array, base, ChasingBottoms, deepseq, ghc-prim
, HUnit, QuickCheck, test-framework, test-framework-hunit
, test-framework-quickcheck2
}:
mkDerivation {
pname = "containers";
- version = "0.5.6.3";
- sha256 = "1647e62e31ed066c61b4a3c1a4403ddb15210bab0e658d624af16f406d298dcd";
- revision = "1";
- editedCabalFile = "d62a931abcdc917811b7eff078c117e0f2b2c2ac030d843cbebb00b8c8f87a5e";
+ version = "0.5.7.1";
+ sha256 = "73856c3307e2ea26c33474309af4dcdfb80e7644e9a82ef4146c742a6e400f79";
libraryHaskellDepends = [ array base deepseq ghc-prim ];
testHaskellDepends = [
array base ChasingBottoms deepseq ghc-prim HUnit QuickCheck
@@ -50150,8 +50401,8 @@ self: {
({ mkDerivation, base }:
mkDerivation {
pname = "control-monad-queue";
- version = "0.2";
- sha256 = "7a237615aa78cbe050803e53983027e8d60b688aadc948641150a8b089f05e97";
+ version = "0.2.0.1";
+ sha256 = "d428f7e761024716118605107b8f2f4b9d721f1163bd36865b969f3892f6d1b5";
libraryHaskellDepends = [ base ];
description = "Reusable corecursive queues, via continuations";
license = stdenv.lib.licenses.bsd3;
@@ -50892,6 +51143,7 @@ self: {
libraryHaskellDepends = [ aeson base shakespeare text ];
executableHaskellDepends = [ base tagsoup text ];
testHaskellDepends = [ aeson base HTF HUnit ];
+ jailbreak = true;
homepage = "https://github.com/prowdsponsor/country-codes";
description = "ISO 3166 country codes and i18n names";
license = stdenv.lib.licenses.bsd3;
@@ -51529,7 +51781,6 @@ self: {
base bytestring containers cqrs-core deepseq hspec HUnit io-streams
lifted-base random transformers uuid-types
];
- jailbreak = true;
description = "Command-Query Responsibility Segregation Test Support";
license = stdenv.lib.licenses.mit;
}) {};
@@ -52176,7 +52427,6 @@ self: {
editedCabalFile = "4cc74c0744e15e1149d7419e47232db6f0bf53a56360f35d71665b180c2f2a53";
libraryHaskellDepends = [ base containers MissingH mtl split ];
testHaskellDepends = [ base HUnit QuickCheck ];
- jailbreak = true;
homepage = "https://github.com/orome/crypto-enigma-hs";
description = "An Enigma machine simulator with display";
license = stdenv.lib.licenses.bsd3;
@@ -54458,9 +54708,11 @@ self: {
pname = "data-extend-generic";
version = "0.1.0.0";
sha256 = "b5cf36c5ccf72a400bc8dca3a983c3a4b65a7788fbd07eca93e5b23dca27f1bd";
+ revision = "2";
+ editedCabalFile = "6d1bf0f2f19daf06b81fe4108a37bf889c9b96905920d3aa04846f0b5d05b6b3";
libraryHaskellDepends = [ base ];
testHaskellDepends = [ base hspec ];
- homepage = "http://github.com/githubuser/data-extend-generic#readme";
+ homepage = "http://github.com/ylilarry/data-extend-generic";
description = "Extend Haskell data or newtype like in OOP languages";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -55293,6 +55545,7 @@ self: {
aeson auto-update base buffer-builder bytestring lens lifted-base
monad-control network old-locale text time transformers-base
];
+ jailbreak = true;
homepage = "https://github.com/iand675/datadog";
description = "Datadog client for Haskell. Currently only StatsD supported, other support forthcoming.";
license = stdenv.lib.licenses.mit;
@@ -56266,15 +56519,14 @@ self: {
}:
mkDerivation {
pname = "deepcontrol";
- version = "0.5.4.2";
- sha256 = "4855fec3f9ecd9d5ac44ad2750b502bc6fdf578ebdfc2ac526b1f87168ae5502";
+ version = "0.5.4.3";
+ sha256 = "2e943a13531120a5c3df908c849d0697c22ef82e6dc4bf102f6fe39e9faa0e35";
libraryHaskellDepends = [ base mmorph mtl transformers ];
testHaskellDepends = [
base containers doctest HUnit mtl QuickCheck safe transformers
];
- jailbreak = true;
homepage = "https://github.com/ocean0yohsuke/deepcontrol";
- description = "A library that provides deep-level programming style or notation on Applicative and Monad";
+ description = "A library that provides deep-level programming style and(or) notation on Applicative and Monad";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -56331,6 +56583,7 @@ self: {
testHaskellDepends = [
array base HUnit test-framework test-framework-hunit
];
+ jailbreak = true;
description = "Deep evaluation of data structures";
license = stdenv.lib.licenses.bsd3;
hydraPlatforms = stdenv.lib.platforms.none;
@@ -56608,7 +56861,6 @@ self: {
atomic-primops base containers deepseq exceptions monad-loops mtl
random stm transformers
];
- doHaddock = false;
homepage = "https://github.com/barrucadu/dejafu";
description = "Overloadable primitives for testable, potentially non-deterministic, concurrency";
license = stdenv.lib.licenses.mit;
@@ -56791,25 +57043,13 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "dependent-map" = callPackage
+ "dependent-map_0_1_1_3" = callPackage
({ mkDerivation, base, containers, dependent-sum }:
mkDerivation {
pname = "dependent-map";
version = "0.1.1.3";
sha256 = "44dd913868dddfaa104c27794cbf852e8c4783fe78f49b3b2dd635b4731ec8af";
libraryHaskellDepends = [ base containers dependent-sum ];
- homepage = "https://github.com/mokus0/dependent-map";
- description = "Dependent finite maps (partial dependent products)";
- license = "unknown";
- }) {};
-
- "dependent-map_0_2_0_1" = callPackage
- ({ mkDerivation, base, containers, dependent-sum }:
- mkDerivation {
- pname = "dependent-map";
- version = "0.2.0.1";
- sha256 = "645c5c519d5cb6393ee826dfca183736be84fda87e980f0daecd7be207bb8f50";
- libraryHaskellDepends = [ base containers dependent-sum ];
jailbreak = true;
homepage = "https://github.com/mokus0/dependent-map";
description = "Dependent finite maps (partial dependent products)";
@@ -56817,7 +57057,19 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "dependent-sum" = callPackage
+ "dependent-map" = callPackage
+ ({ mkDerivation, base, containers, dependent-sum }:
+ mkDerivation {
+ pname = "dependent-map";
+ version = "0.2.1.0";
+ sha256 = "567d81bf090feda43c9bc01708e6f3684399628329b64a266ba6a6a79351d284";
+ libraryHaskellDepends = [ base containers dependent-sum ];
+ homepage = "https://github.com/mokus0/dependent-map";
+ description = "Dependent finite maps (partial dependent products)";
+ license = "unknown";
+ }) {};
+
+ "dependent-sum_0_2_1_0" = callPackage
({ mkDerivation, base }:
mkDerivation {
pname = "dependent-sum";
@@ -56827,9 +57079,10 @@ self: {
homepage = "https://github.com/mokus0/dependent-sum";
description = "Dependent sum type";
license = stdenv.lib.licenses.publicDomain;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "dependent-sum_0_3_2_1" = callPackage
+ "dependent-sum" = callPackage
({ mkDerivation, base }:
mkDerivation {
pname = "dependent-sum";
@@ -56839,7 +57092,6 @@ self: {
homepage = "https://github.com/mokus0/dependent-sum";
description = "Dependent sum type";
license = stdenv.lib.licenses.publicDomain;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"dependent-sum-template" = callPackage
@@ -57761,6 +58013,7 @@ self: {
optparse-applicative pango split statestack transformers unix
vector
];
+ jailbreak = true;
homepage = "http://projects.haskell.org/diagrams";
description = "Cairo backend for diagrams drawing EDSL";
license = stdenv.lib.licenses.bsd3;
@@ -58020,6 +58273,7 @@ self: {
base containers diagrams-lib HUnit QuickCheck test-framework
test-framework-hunit test-framework-quickcheck2
];
+ jailbreak = true;
homepage = "http://projects.haskell.org/diagrams/";
description = "Collection of user contributions to diagrams EDSL";
license = stdenv.lib.licenses.bsd3;
@@ -58048,6 +58302,7 @@ self: {
base containers diagrams-lib HUnit QuickCheck test-framework
test-framework-hunit test-framework-quickcheck2
];
+ jailbreak = true;
homepage = "http://projects.haskell.org/diagrams/";
description = "Collection of user contributions to diagrams EDSL";
license = stdenv.lib.licenses.bsd3;
@@ -58174,6 +58429,7 @@ self: {
adjunctions base containers distributive dual-tree lens linear
monoid-extras mtl semigroups unordered-containers
];
+ jailbreak = true;
homepage = "http://projects.haskell.org/diagrams";
description = "Core libraries for diagrams EDSL";
license = stdenv.lib.licenses.bsd3;
@@ -58223,6 +58479,7 @@ self: {
libraryHaskellDepends = [
base cairo diagrams-cairo diagrams-lib gtk
];
+ jailbreak = true;
homepage = "http://projects.haskell.org/diagrams/";
description = "Backend for rendering diagrams directly to GTK windows";
license = stdenv.lib.licenses.bsd3;
@@ -58455,6 +58712,7 @@ self: {
diagrams-lib lens mtl NumInstances optparse-applicative split
statestack static-canvas text
];
+ jailbreak = true;
homepage = "http://projects.haskell.org/diagrams/";
description = "HTML5 canvas backend for diagrams drawing EDSL";
license = stdenv.lib.licenses.bsd3;
@@ -58764,6 +59022,7 @@ self: {
filepath hashable lens monoid-extras mtl semigroups split
statestack
];
+ jailbreak = true;
homepage = "http://projects.haskell.org/diagrams/";
description = "Postscript backend for diagrams drawing EDSL";
license = stdenv.lib.licenses.bsd3;
@@ -58887,6 +59146,7 @@ self: {
diagrams-lib filepath FontyFruity hashable JuicyPixels lens mtl
optparse-applicative Rasterific split unix
];
+ jailbreak = true;
homepage = "http://projects.haskell.org/diagrams/";
description = "Rasterific backend for diagrams";
license = stdenv.lib.licenses.bsd3;
@@ -59051,6 +59311,7 @@ self: {
monoid-extras mtl old-time optparse-applicative process semigroups
split text time
];
+ jailbreak = true;
homepage = "http://projects.haskell.org/diagrams/";
description = "SVG backend for diagrams drawing EDSL";
license = stdenv.lib.licenses.bsd3;
@@ -59074,13 +59335,14 @@ self: {
monoid-extras mtl old-time optparse-applicative process semigroups
split text time
];
+ jailbreak = true;
homepage = "http://projects.haskell.org/diagrams/";
description = "SVG backend for diagrams drawing EDSL";
license = stdenv.lib.licenses.bsd3;
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "diagrams-svg" = callPackage
+ "diagrams-svg_1_3_1_7" = callPackage
({ mkDerivation, base, base64-bytestring, bytestring, colour
, containers, diagrams-core, diagrams-lib, directory, filepath
, hashable, JuicyPixels, lens, lucid-svg, monoid-extras, mtl
@@ -59097,12 +59359,14 @@ self: {
monoid-extras mtl old-time optparse-applicative process semigroups
split text time
];
+ jailbreak = true;
homepage = "http://projects.haskell.org/diagrams/";
description = "SVG backend for diagrams drawing EDSL";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "diagrams-svg_1_3_1_9" = callPackage
+ "diagrams-svg" = callPackage
({ mkDerivation, base, base64-bytestring, bytestring, colour
, containers, diagrams-core, diagrams-lib, directory, filepath
, hashable, JuicyPixels, lens, lucid-svg, monoid-extras, mtl
@@ -59122,7 +59386,6 @@ self: {
homepage = "http://projects.haskell.org/diagrams/";
description = "SVG backend for diagrams drawing EDSL";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"diagrams-tikz" = callPackage
@@ -59141,6 +59404,23 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "dialog" = callPackage
+ ({ mkDerivation, base, bytestring, filepath, glib, gtk3
+ , open-browser, text, transformers, webkitgtk3
+ }:
+ mkDerivation {
+ pname = "dialog";
+ version = "0.3.0.0";
+ sha256 = "e47fd86b383a2a7c710219873c916a63cd873ab4b7b67fb204a099f511691ad2";
+ libraryHaskellDepends = [
+ base bytestring filepath glib gtk3 open-browser text transformers
+ webkitgtk3
+ ];
+ homepage = "https://gitlab.com/lamefun/dialog";
+ description = "Simple dialog-based user interfaces";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"dice" = callPackage
({ mkDerivation, base, parsec, random-fu, transformers }:
mkDerivation {
@@ -59500,6 +59780,7 @@ self: {
test-framework test-framework-hunit test-framework-quickcheck2 text
time
];
+ jailbreak = true;
homepage = "http://github.com/jaspervdj/digestive-functors";
description = "A practical formlet library";
license = stdenv.lib.licenses.bsd3;
@@ -59763,13 +60044,13 @@ self: {
}:
mkDerivation {
pname = "dimensional";
- version = "1.0.1.0";
- sha256 = "42d32f6691c2c52a3e12ec3dbed7bd90e18137e67c46f97c2336101bd99a8a6d";
+ version = "1.0.1.1";
+ sha256 = "d876eea43341b597959e3244673817dcb23c350c06549158e04a6c632243692e";
libraryHaskellDepends = [
base deepseq exact-pi numtype-dk vector
];
testHaskellDepends = [ base HUnit ];
- homepage = "https://github.com/bjornbm/dimensional-dk/";
+ homepage = "https://github.com/bjornbm/dimensional/";
description = "Statically checked physical dimensions, using Type Families and Data Kinds";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -60081,12 +60362,12 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "directory_1_2_4_0" = callPackage
+ "directory_1_2_5_0" = callPackage
({ mkDerivation, base, filepath, time, unix }:
mkDerivation {
pname = "directory";
- version = "1.2.4.0";
- sha256 = "f80eb093f772f4be6c9c6d4d179b6cb2358ef40a62f7f9e52bfc6df643268517";
+ version = "1.2.5.0";
+ sha256 = "ac9d7fdd402c3281fab7ffad004229671f0ecfb7ddd70fd58b90b0a48c1ddef7";
libraryHaskellDepends = [ base filepath time unix ];
testHaskellDepends = [ base filepath time unix ];
description = "Platform-agnostic library for filesystem operations";
@@ -60550,7 +60831,6 @@ self: {
network-transport network-transport-tcp rematch stm test-framework
test-framework-hunit transformers
];
- doCheck = false;
homepage = "http://github.com/haskell-distributed/distributed-process-client-server";
description = "The Cloud Haskell Application Platform";
license = stdenv.lib.licenses.bsd3;
@@ -60621,7 +60901,6 @@ self: {
QuickCheck rematch stm test-framework test-framework-hunit
test-framework-quickcheck2 time transformers unordered-containers
];
- doCheck = false;
homepage = "http://github.com/haskell-distributed/distributed-process-execution";
description = "Execution Framework for The Cloud Haskell Application Platform";
license = stdenv.lib.licenses.bsd3;
@@ -60685,7 +60964,6 @@ self: {
test-framework test-framework-hunit test-framework-quickcheck2 time
transformers unordered-containers
];
- doCheck = false;
homepage = "http://github.com/haskell-distributed/distributed-process-extras";
description = "Cloud Haskell Extras";
license = stdenv.lib.licenses.bsd3;
@@ -60922,7 +61200,6 @@ self: {
rematch stm test-framework test-framework-hunit time transformers
unordered-containers
];
- doCheck = false;
homepage = "http://github.com/haskell-distributed/distributed-process-supervisor";
description = "Supervisors for The Cloud Haskell Application Platform";
license = stdenv.lib.licenses.bsd3;
@@ -60995,7 +61272,6 @@ self: {
QuickCheck rematch stm test-framework test-framework-hunit
test-framework-quickcheck2 time transformers unordered-containers
];
- doCheck = false;
homepage = "http://github.com/haskell-distributed/distributed-process-task";
description = "Task Framework for The Cloud Haskell Application Platform";
license = stdenv.lib.licenses.bsd3;
@@ -61019,6 +61295,7 @@ self: {
testHaskellDepends = [
base network network-transport network-transport-tcp test-framework
];
+ jailbreak = true;
homepage = "http://github.com/haskell-distributed/distributed-process-tests";
description = "Tests and test support tools for distributed-process";
license = stdenv.lib.licenses.bsd3;
@@ -61896,6 +62173,7 @@ self: {
testHaskellDepends = [
base base-compat hspec parsec parseerror-eq
];
+ jailbreak = true;
homepage = "https://github.com/stackbuilders/dotenv-hs";
description = "Loads environment variables from dotenv files";
license = stdenv.lib.licenses.mit;
@@ -62310,14 +62588,15 @@ self: {
}) {};
"drawille" = callPackage
- ({ mkDerivation, base, containers }:
+ ({ mkDerivation, base, containers, hspec, QuickCheck }:
mkDerivation {
pname = "drawille";
- version = "0.1.0.5";
- sha256 = "b9b57fa2e8c526610075583215bf7a896d0ce0c9157c72356cea481c72f0f523";
+ version = "0.1.0.6";
+ sha256 = "3282ca7d783580f95349ffd85b6f668f57a354aad74a84c37406fc8ef2636c09";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [ base containers ];
+ testHaskellDepends = [ base containers hspec QuickCheck ];
homepage = "https://github.com/yamadapc/haskell-drawille";
description = "A port of asciimoo's drawille to haskell";
license = stdenv.lib.licenses.gpl3;
@@ -62676,6 +62955,7 @@ self: {
version = "0.2.0.7";
sha256 = "2b7e99ead18f1b42968c29717ed83b8a342aec1ab96030909de7e2071fb8df36";
libraryHaskellDepends = [ base monoid-extras newtype semigroups ];
+ jailbreak = true;
description = "Rose trees with cached and accumulating monoidal annotations";
license = stdenv.lib.licenses.bsd3;
hydraPlatforms = stdenv.lib.platforms.none;
@@ -63582,6 +63862,17 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "edis" = callPackage
+ ({ mkDerivation, base, bytestring, cereal, hedis }:
+ mkDerivation {
+ pname = "edis";
+ version = "0.0.1.0";
+ sha256 = "b21590a3ce7cc3314e9cf4b5bfba0f4997f050fe2087ab4b1852554914b6f6af";
+ libraryHaskellDepends = [ base bytestring cereal hedis ];
+ description = "Statically typechecked client for Redis";
+ license = stdenv.lib.licenses.mit;
+ }) {};
+
"edit-distance_0_2_1_2" = callPackage
({ mkDerivation, array, base, containers, random }:
mkDerivation {
@@ -65116,6 +65407,7 @@ self: {
free monad-loops mwc-random stm stm-delay text transformers
unordered-containers vector websockets
];
+ jailbreak = true;
homepage = "http://github.com/ocharles/engine.io";
description = "A Haskell implementation of Engine.IO";
license = stdenv.lib.licenses.bsd3;
@@ -65156,6 +65448,7 @@ self: {
pipes-attoparsec pipes-wai socket-io text transformers
unordered-containers wai wai-websockets websockets
];
+ jailbreak = true;
homepage = "http://github.com/iand675/growler";
license = stdenv.lib.licenses.mit;
}) {};
@@ -66606,6 +66899,7 @@ self: {
libraryHaskellDepends = [
base containers semigroups transformers
];
+ jailbreak = true;
description = "Monoidal, monadic and first-class events";
license = stdenv.lib.licenses.bsd3;
hydraPlatforms = stdenv.lib.platforms.none;
@@ -66725,8 +67019,8 @@ self: {
}:
mkDerivation {
pname = "eventstore";
- version = "0.9.1.1";
- sha256 = "0b14aa08ac3e26d4db103c18fe7c95758168f7a3aaad9387b54b83e981f4bbff";
+ version = "0.9.1.3";
+ sha256 = "b69dd264dfc8ed432b9ce22d99e19a99eaface579150fadc8593ffa3dc1b856c";
libraryHaskellDepends = [
aeson async attoparsec base bytestring cereal containers network
protobuf random stm text time unordered-containers uuid
@@ -66741,29 +67035,6 @@ self: {
platforms = [ "x86_64-darwin" "x86_64-linux" ];
}) {};
- "eventstore_0_9_1_2" = callPackage
- ({ mkDerivation, aeson, async, attoparsec, base, bytestring, cereal
- , containers, network, protobuf, random, stm, tasty, tasty-hunit
- , text, time, unordered-containers, uuid
- }:
- mkDerivation {
- pname = "eventstore";
- version = "0.9.1.2";
- sha256 = "0104a347dde1620795c82e60b16d38bd2c1b00f7ff1fbf0c8dccf8e877d0d497";
- libraryHaskellDepends = [
- aeson async attoparsec base bytestring cereal containers network
- protobuf random stm text time unordered-containers uuid
- ];
- testHaskellDepends = [
- aeson base stm tasty tasty-hunit text time
- ];
- homepage = "http://github.com/YoEight/eventstore";
- description = "EventStore TCP Client";
- license = stdenv.lib.licenses.bsd3;
- platforms = [ "x86_64-darwin" "x86_64-linux" ];
- hydraPlatforms = stdenv.lib.platforms.none;
- }) {};
-
"every-bit-counts" = callPackage
({ mkDerivation, base, haskell98 }:
mkDerivation {
@@ -66954,6 +67225,7 @@ self: {
testHaskellDepends = [
base HUnit test-framework test-framework-hunit transformers
];
+ jailbreak = true;
homepage = "http://www.cs.drexel.edu/~mainland/";
description = "Type classes and monads for unchecked extensible exceptions";
license = stdenv.lib.licenses.bsd3;
@@ -66975,6 +67247,7 @@ self: {
base HUnit test-framework test-framework-hunit transformers
transformers-compat
];
+ jailbreak = true;
description = "Type classes and monads for unchecked extensible exceptions";
license = stdenv.lib.licenses.bsd3;
hydraPlatforms = stdenv.lib.platforms.none;
@@ -67161,7 +67434,6 @@ self: {
http-types optparse-applicative pcre-light
];
testHaskellDepends = [ base doctest ];
- jailbreak = true;
description = "Exheres generator for cabal packages";
license = stdenv.lib.licenses.gpl2;
}) {};
@@ -67634,6 +67906,7 @@ self: {
base HUnit QuickCheck test-framework test-framework-hunit
test-framework-quickcheck2 test-framework-th void
];
+ jailbreak = true;
homepage = "https://github.com/suhailshergill/extensible-effects";
description = "An Alternative to Monad Transformers";
license = stdenv.lib.licenses.mit;
@@ -67936,6 +68209,19 @@ self: {
license = stdenv.lib.licenses.publicDomain;
}) {};
+ "fake-type" = callPackage
+ ({ mkDerivation, base, base-prelude, libXtst, split, X11 }:
+ mkDerivation {
+ pname = "fake-type";
+ version = "0.2.0.0";
+ sha256 = "3ce6a7298e92c836272d71fb9f604cb37d2c90a2394720c6b67c1b6f21063c54";
+ libraryHaskellDepends = [ base base-prelude split X11 ];
+ librarySystemDepends = [ libXtst ];
+ homepage = "http://github.com/aelve/fake-type";
+ description = "A crossplatform library to simulate keyboard input";
+ license = stdenv.lib.licenses.bsd3;
+ }) {inherit (pkgs.xorg) libXtst;};
+
"faker" = callPackage
({ mkDerivation, base, gimlh, random, split }:
mkDerivation {
@@ -69085,6 +69371,7 @@ self: {
testHaskellDepends = [
base HUnit mtl template-haskell transformers
];
+ jailbreak = true;
homepage = "https://github.com/sebastiaanvisser/fclabels";
description = "First class accessor labels implemented as lenses";
license = stdenv.lib.licenses.bsd3;
@@ -69216,6 +69503,7 @@ self: {
base HUnit old-locale old-time test-framework test-framework-hunit
time time-locale-compat utf8-string xml
];
+ jailbreak = true;
homepage = "https://github.com/bergmark/feed";
description = "Interfacing with RSS (v 0.9x, 2.x, 1.0) + Atom feeds.";
license = stdenv.lib.licenses.bsd3;
@@ -69237,6 +69525,7 @@ self: {
base HUnit old-locale old-time test-framework test-framework-hunit
time time-locale-compat utf8-string xml
];
+ jailbreak = true;
homepage = "https://github.com/bergmark/feed";
description = "Interfacing with RSS (v 0.9x, 2.x, 1.0) + Atom feeds.";
license = stdenv.lib.licenses.bsd3;
@@ -69494,8 +69783,7 @@ self: {
description = "Signal Processing extension for Feldspar";
license = stdenv.lib.licenses.bsd3;
broken = true;
- }) {feldspar-compiler-shim = null; imperative-edsl = null;
- monadic-edsl-priv = null;};
+ }) {feldspar-compiler-shim = null; monadic-edsl-priv = null;};
"fen2s" = callPackage
({ mkDerivation, api-opentheory-unicode, base, opentheory-unicode
@@ -70263,6 +70551,7 @@ self: {
testHaskellDepends = [
base Diff directory filepath HUnit mtl time
];
+ jailbreak = true;
description = "Interface for versioning file stores";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -70993,6 +71282,7 @@ self: {
executableHaskellDepends = [
base binary deepseq HTTP optparse-applicative process
];
+ jailbreak = true;
homepage = "http://noaxiom.org/flAccurateRip";
description = "Verify FLAC files ripped form CD using AccurateRip™";
license = stdenv.lib.licenses.gpl3;
@@ -71331,6 +71621,7 @@ self: {
lens lens-action mtl network pipes pipes-aeson pipes-http
pipes-parse template-haskell text unordered-containers uuid
];
+ jailbreak = true;
homepage = "https://github.com/brewtown/hs-flowdock";
description = "Flowdock client library for Haskell";
license = stdenv.lib.licenses.mit;
@@ -71842,7 +72133,6 @@ self: {
base doctest foldl free monoid-subclasses split tasty tasty-hunit
tasty-quickcheck text
];
- jailbreak = true;
description = "Transducers for foldl folds";
license = stdenv.lib.licenses.bsd3;
hydraPlatforms = stdenv.lib.platforms.none;
@@ -73352,6 +73642,23 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "frontmatter" = callPackage
+ ({ mkDerivation, attoparsec, base, bytestring, hspec, QuickCheck
+ , text, yaml
+ }:
+ mkDerivation {
+ pname = "frontmatter";
+ version = "0.1.0.2";
+ sha256 = "66eb97b0d5097397f0238b9af764a8c6ea2bb9a4a16cd1214051719fc313b99d";
+ libraryHaskellDepends = [ attoparsec base bytestring yaml ];
+ testHaskellDepends = [
+ attoparsec base bytestring hspec QuickCheck text yaml
+ ];
+ homepage = "https://github.com/yamadapc/haskell-frontmatter";
+ description = "Parses frontmatter as used in Jekyll markdown files";
+ license = stdenv.lib.licenses.mit;
+ }) {};
+
"frp-arduino" = callPackage
({ mkDerivation, base, containers, mtl }:
mkDerivation {
@@ -73709,6 +74016,7 @@ self: {
testHaskellDepends = [
base HUnit QuickCheck tasty tasty-hunit tasty-quickcheck
];
+ jailbreak = true;
homepage = "http://hub.darcs.net/kowey/fullstop";
description = "Simple sentence segmenter";
license = stdenv.lib.licenses.bsd3;
@@ -73716,27 +74024,29 @@ self: {
}) {};
"funbot" = callPackage
- ({ mkDerivation, aeson, base, bytestring, containers, feed
- , feed-collect, funbot-ext-events, HTTP, http-client
- , http-client-tls, http-listen, irc-fun-bot, irc-fun-color
- , json-state, network-uri, settings, tagsoup, text, time
- , time-interval, time-units, transformers, unordered-containers
- , utf8-string, vcs-web-hook-parse
+ ({ mkDerivation, aeson, auto-update, base, bytestring, clock
+ , containers, data-default-class, feed, feed-collect
+ , funbot-ext-events, HTTP, http-client, http-client-tls
+ , http-listen, irc-fun-bot, irc-fun-color, json-state, network-uri
+ , settings, tagsoup, text, time, time-interval, time-units
+ , transformers, unordered-containers, utf8-string
+ , vcs-web-hook-parse
}:
mkDerivation {
pname = "funbot";
- version = "0.3";
- sha256 = "b59ff6ae40115e1c470677d5bc7188276a282dc383f6afad1f7c801f9c0d52b4";
+ version = "0.4.0.1";
+ sha256 = "444da7bc772b17de0aa329292dbe1a3ad3134990f824d6f88d6355ff28c3537e";
isLibrary = false;
isExecutable = true;
executableHaskellDepends = [
- aeson base bytestring containers feed feed-collect
- funbot-ext-events HTTP http-client http-client-tls http-listen
- irc-fun-bot irc-fun-color json-state network-uri settings tagsoup
- text time time-interval time-units transformers
- unordered-containers utf8-string vcs-web-hook-parse
+ aeson auto-update base bytestring clock containers
+ data-default-class feed feed-collect funbot-ext-events HTTP
+ http-client http-client-tls http-listen irc-fun-bot irc-fun-color
+ json-state network-uri settings tagsoup text time time-interval
+ time-units transformers unordered-containers utf8-string
+ vcs-web-hook-parse
];
- homepage = "https://notabug.org/fr33domlover/funbot/";
+ homepage = "https://notabug.org/fr33domlover/funbot";
description = "IRC bot for fun, learning, creativity and collaboration";
license = stdenv.lib.licenses.publicDomain;
}) {};
@@ -73764,8 +74074,8 @@ self: {
({ mkDerivation, aeson, base, text }:
mkDerivation {
pname = "funbot-ext-events";
- version = "0.1.0.0";
- sha256 = "5e37649835bc82210744615b623608f5e5d450487a4a598b1b43eed8184c37c8";
+ version = "0.2.0.0";
+ sha256 = "5224fee263e625708cc937356cdb5dfcf55f0cfd26bf61a8fcb9b2392aa37e26";
libraryHaskellDepends = [ aeson base text ];
homepage = "https://notabug.org/fr33domlover/funbot-ext-events/";
description = "Interact with FunBot's external events";
@@ -74653,8 +74963,8 @@ self: {
}:
mkDerivation {
pname = "generic-accessors";
- version = "0.5.0.0";
- sha256 = "7a9098afd6db14a5f75ef250cac5cb770eb4b10c9ed13bbdf029892d244ddf3b";
+ version = "0.5.1.0";
+ sha256 = "547a5b0ba3fac1e2d5f7de7f7248aef2b128b24714f4c0908b5191ebe5d39442";
libraryHaskellDepends = [ base lens linear spatial-math ];
testHaskellDepends = [
base HUnit QuickCheck test-framework test-framework-hunit
@@ -76036,8 +76346,8 @@ self: {
}:
mkDerivation {
pname = "ghc-parmake";
- version = "0.1.8";
- sha256 = "cce9254e2f12fd8aab4ef56659db0df0c0853e8cea8024320ce66f2f2b523521";
+ version = "0.1.9";
+ sha256 = "381973ada7fc3e944dab09ff35d3b26070b1585f5a115fc2ddb09508c1e11c5e";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -76050,7 +76360,6 @@ self: {
base directory filepath HUnit process QuickCheck test-framework
test-framework-hunit test-framework-quickcheck2
];
- jailbreak = true;
homepage = "https://github.com/23Skidoo/ghc-parmake";
description = "A parallel wrapper for 'ghc --make'";
license = stdenv.lib.licenses.bsd3;
@@ -76167,25 +76476,6 @@ self: {
}) {};
"ghc-session" = callPackage
- ({ mkDerivation, base, exceptions, ghc, ghc-mtl, ghc-paths
- , transformers
- }:
- mkDerivation {
- pname = "ghc-session";
- version = "0.1.1.0";
- sha256 = "fe73ed93744e1d324b85c6a029aac9363ec6b6badfcc791e212309d515b61f28";
- isLibrary = true;
- isExecutable = true;
- libraryHaskellDepends = [
- base exceptions ghc ghc-mtl ghc-paths transformers
- ];
- executableHaskellDepends = [ base transformers ];
- homepage = "http://github.com/pmlodawski/ghc-session";
- description = "Simplified GHC API";
- license = stdenv.lib.licenses.mit;
- }) {};
-
- "ghc-session_0_1_2_0" = callPackage
({ mkDerivation, base, exceptions, ghc, ghc-mtl, ghc-paths
, transformers, transformers-compat
}:
@@ -76203,7 +76493,6 @@ self: {
homepage = "http://github.com/pmlodawski/ghc-session";
description = "Simplified GHC API";
license = stdenv.lib.licenses.mit;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"ghc-simple" = callPackage
@@ -76353,8 +76642,8 @@ self: {
}:
mkDerivation {
pname = "ghc-vis";
- version = "0.7.2.8";
- sha256 = "0aea23534eb95bc39ad2f2e017aa978df0a6aea105c314bca2030ac5daf9187d";
+ version = "0.7.2.9";
+ sha256 = "e0ea3da85c0e32b446f682114de92df548fc230c24a33683c339f110632043ae";
libraryHaskellDepends = [
base cairo containers deepseq fgl ghc-heap-view graphviz gtk mtl
svgcairo text transformers xdot
@@ -77148,6 +77437,7 @@ self: {
gitlib gitlib-libgit2 scientific shake split tagged text
unordered-containers vector yaml
];
+ jailbreak = true;
homepage = "https://github.com/nomeata/gipeda";
description = "Git Performance Dashboard";
license = stdenv.lib.licenses.mit;
@@ -77305,8 +77595,8 @@ self: {
}:
mkDerivation {
pname = "git-annex";
- version = "5.20151208";
- sha256 = "1513ecf944a174c7b0e7a68ec6722544c8b85c74d8ff89fc8d9ea8c177c4fce9";
+ version = "5.20151218";
+ sha256 = "d8aed73cbc1d1eefcbe6de7790c83f1d6458b4ac1e910d9a34b22782d16142ca";
configureFlags = [
"-fassistant" "-fcryptonite" "-fdbus" "-fdesktopnotify" "-fdns"
"-ffeed" "-finotify" "-fpairing" "-fproduction" "-fquvi" "-fs3"
@@ -77816,6 +78106,7 @@ self: {
base bytestring directory filepath hslogger HTTP mtl network
network-uri syb url utf8-string
];
+ jailbreak = true;
homepage = "http://gitit.net";
description = "Wiki using happstack, git or darcs, and pandoc";
license = "GPL";
@@ -78200,6 +78491,22 @@ self: {
license = "unknown";
}) {};
+ "gitter" = callPackage
+ ({ mkDerivation, aeson, base, bytestring, exceptions, lens
+ , lens-aeson, mtl, text, wreq
+ }:
+ mkDerivation {
+ pname = "gitter";
+ version = "0.0.0.1";
+ sha256 = "cc755243b8be4a235aaf8ed3dc4aa6d1b5dcecf602c3457131ac96e6bd665a97";
+ libraryHaskellDepends = [
+ aeson base bytestring exceptions lens lens-aeson mtl text wreq
+ ];
+ jailbreak = true;
+ description = "Gitter.im API client";
+ license = stdenv.lib.licenses.gpl3;
+ }) {};
+
"gl_0_6_1" = callPackage
({ mkDerivation, base, containers, directory, filepath, fixed, half
, hxt, mesa, split, transformers
@@ -79145,8 +79452,8 @@ self: {
}:
mkDerivation {
pname = "gnss-converters";
- version = "0.1.1";
- sha256 = "b225a109b0d264196abdf899c824c4d1e38c24c662bf888a9af9d968029117de";
+ version = "0.1.2";
+ sha256 = "8e43f583e7562c086bb8de1a88ef5b5e6bdca72a3ea4645e6d9f486861d07f0c";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -79261,6 +79568,7 @@ self: {
base containers mtl parsec template-haskell
];
testHaskellDepends = [ base containers HUnit mtl parsec ];
+ jailbreak = true;
homepage = "http://khumba.net/projects/goatee";
description = "A monadic take on a 2,500-year-old board game - library";
license = stdenv.lib.licenses.agpl3;
@@ -79282,6 +79590,7 @@ self: {
];
executableHaskellDepends = [ base gtk ];
testHaskellDepends = [ base HUnit ];
+ jailbreak = true;
homepage = "http://khumba.net/projects/goatee";
description = "A monadic take on a 2,500-year-old board game - GTK+ UI";
license = stdenv.lib.licenses.agpl3;
@@ -80817,6 +81126,7 @@ self: {
base colour containers fraction glib grapefruit-frp
grapefruit-records grapefruit-ui gtk
];
+ jailbreak = true;
homepage = "http://grapefruit-project.org/";
description = "GTK+-based backend for declarative user interface programming";
license = stdenv.lib.licenses.bsd3;
@@ -81592,7 +81902,6 @@ self: {
version = "0.1.2";
sha256 = "0e820122cad388f31c3ef0815d7ff93b9e95a8fdec0d6c560c379fe0ecfdb010";
libraryHaskellDepends = [ base haskell-src-exts ];
- doHaddock = false;
description = "Pretty printing for well-behaved Show instances";
license = stdenv.lib.licenses.publicDomain;
}) {};
@@ -82242,7 +82551,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {gtk2 = pkgs.gnome2.gtk;};
- "gtk" = callPackage
+ "gtk_0_13_9" = callPackage
({ mkDerivation, array, base, bytestring, cairo, containers, gio
, glib, gtk2, gtk2hs-buildtools, mtl, pango, text
}:
@@ -82259,9 +82568,10 @@ self: {
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_0_14_2" = callPackage
+ "gtk" = callPackage
({ mkDerivation, array, base, bytestring, cairo, containers, gio
, glib, gtk2, gtk2hs-buildtools, mtl, pango, text
}:
@@ -82274,10 +82584,10 @@ self: {
];
libraryPkgconfigDepends = [ gtk2 ];
libraryToolDepends = [ gtk2hs-buildtools ];
+ doHaddock = false;
homepage = "http://projects.haskell.org/gtk2hs/";
description = "Binding to the Gtk+ graphical user interface library";
license = stdenv.lib.licenses.lgpl21;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {gtk2 = pkgs.gnome2.gtk;};
"gtk-helpers" = callPackage
@@ -82405,6 +82715,7 @@ self: {
sha256 = "1582e229aafe22cf5499fe1519e2ff4f49cecbe83a6eb1a8de04f45dd44df443";
libraryHaskellDepends = [ base glib gtk ];
libraryPkgconfigDepends = [ gtk2 x11 ];
+ jailbreak = true;
homepage = "http://github.com/travitch/gtk-traymanager";
description = "A wrapper around the eggtraymanager library for Linux system trays";
license = stdenv.lib.licenses.lgpl21;
@@ -82898,6 +83209,7 @@ self: {
];
libraryPkgconfigDepends = [ gtksourceview ];
libraryToolDepends = [ gtk2hs-buildtools ];
+ jailbreak = true;
homepage = "http://projects.haskell.org/gtk2hs/";
description = "Binding to the GtkSourceView library";
license = stdenv.lib.licenses.lgpl21;
@@ -83027,6 +83339,7 @@ self: {
base bindings-gpgme bytestring either HUnit QuickCheck tasty
tasty-hunit tasty-quickcheck time transformers unix
];
+ jailbreak = true;
homepage = "https://github.com/rethab/h-gpgme";
license = stdenv.lib.licenses.mit;
hydraPlatforms = stdenv.lib.platforms.none;
@@ -84279,6 +84592,7 @@ self: {
base bytestring Cabal directory filepath hackage-security network
network-uri optparse-applicative tar time unix zlib
];
+ jailbreak = true;
homepage = "http://github.com/well-typed/hackage-security/";
description = "Utility to manage secure file-based package repositories";
license = stdenv.lib.licenses.bsd3;
@@ -84381,6 +84695,24 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "hackage-whatsnew" = callPackage
+ ({ mkDerivation, base, Cabal, containers, directory, filepath
+ , hackage-db, process, temporary
+ }:
+ mkDerivation {
+ pname = "hackage-whatsnew";
+ version = "0.1.0.0";
+ sha256 = "88346334b73b22ffe551ea4c109645c9dad31929502afb8f81a33a58a9298f20";
+ isLibrary = false;
+ isExecutable = true;
+ executableHaskellDepends = [
+ base Cabal containers directory filepath hackage-db process
+ temporary
+ ];
+ description = "Check for differences between working directory and hackage";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"hackage2hwn" = callPackage
({ mkDerivation, base, download, feed, tagsoup }:
mkDerivation {
@@ -84711,6 +85043,7 @@ self: {
haddock-api http-types mtl optparse-applicative process resourcet
sqlite-simple tagsoup text transformers
];
+ jailbreak = true;
homepage = "https://github.com/philopon/haddocset";
description = "Generate docset of Dash by Haddock haskell documentation tool";
license = stdenv.lib.licenses.bsd3;
@@ -85302,12 +85635,11 @@ self: {
"hakyll_4_7_3_1" = callPackage
({ mkDerivation, base, binary, blaze-html, blaze-markup, bytestring
, cmdargs, containers, cryptohash, data-default, deepseq, directory
- , filepath, fsnotify, http-conduit, http-types, HUnit, lrucache
- , mtl, network, network-uri, pandoc, pandoc-citeproc, parsec
- , process, QuickCheck, random, regex-base, regex-tdfa, snap-core
- , snap-server, system-filepath, tagsoup, test-framework
- , test-framework-hunit, test-framework-quickcheck2, text, time
- , time-locale-compat
+ , filepath, fsnotify, HUnit, lrucache, mtl, network, network-uri
+ , pandoc, pandoc-citeproc, parsec, process, QuickCheck, random
+ , regex-base, regex-tdfa, snap-core, snap-server, system-filepath
+ , tagsoup, test-framework, test-framework-hunit
+ , test-framework-quickcheck2, text, time, time-locale-compat
}:
mkDerivation {
pname = "hakyll";
@@ -85318,20 +85650,58 @@ self: {
libraryHaskellDepends = [
base binary blaze-html blaze-markup bytestring cmdargs containers
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
- snap-core snap-server system-filepath tagsoup text time
- time-locale-compat
+ lrucache mtl network network-uri pandoc pandoc-citeproc parsec
+ process random regex-base regex-tdfa snap-core snap-server
+ system-filepath tagsoup text time time-locale-compat
];
executableHaskellDepends = [ base directory filepath ];
testHaskellDepends = [
+ base binary blaze-html blaze-markup bytestring cmdargs containers
+ cryptohash data-default deepseq directory filepath fsnotify HUnit
+ lrucache mtl network network-uri pandoc pandoc-citeproc parsec
+ process QuickCheck random regex-base regex-tdfa snap-core
+ snap-server system-filepath tagsoup test-framework
+ test-framework-hunit test-framework-quickcheck2 text time
+ time-locale-compat
+ ];
+ doCheck = false;
+ homepage = "http://jaspervdj.be/hakyll";
+ description = "A static website compiler library";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "hakyll_4_7_4_0" = callPackage
+ ({ mkDerivation, base, binary, blaze-html, blaze-markup, bytestring
+ , cmdargs, containers, cryptohash, data-default, deepseq, directory
+ , filepath, fsnotify, HUnit, lrucache, mtl, network, network-uri
+ , pandoc, pandoc-citeproc, parsec, process, QuickCheck, random
+ , regex-base, regex-tdfa, snap-core, snap-server, system-filepath
+ , tagsoup, test-framework, test-framework-hunit
+ , test-framework-quickcheck2, text, time, time-locale-compat
+ }:
+ mkDerivation {
+ pname = "hakyll";
+ version = "4.7.4.0";
+ sha256 = "bf6a503f8a6e4911c6d2b2480b0e1a2495c568f47f902a43e463d8b2706737d1";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [
base binary blaze-html blaze-markup bytestring cmdargs containers
cryptohash data-default deepseq directory filepath fsnotify
- http-conduit http-types HUnit lrucache mtl network network-uri
- pandoc pandoc-citeproc parsec process QuickCheck random regex-base
- regex-tdfa snap-core snap-server system-filepath tagsoup
- test-framework test-framework-hunit test-framework-quickcheck2 text
- time time-locale-compat
+ lrucache mtl network network-uri pandoc pandoc-citeproc parsec
+ process random regex-base regex-tdfa snap-core snap-server
+ system-filepath tagsoup text time time-locale-compat
+ ];
+ executableHaskellDepends = [ base directory filepath ];
+ testHaskellDepends = [
+ base binary blaze-html blaze-markup bytestring cmdargs containers
+ cryptohash data-default deepseq directory filepath fsnotify HUnit
+ lrucache mtl network network-uri pandoc pandoc-citeproc parsec
+ process QuickCheck random regex-base regex-tdfa snap-core
+ snap-server system-filepath tagsoup test-framework
+ test-framework-hunit test-framework-quickcheck2 text time
+ time-locale-compat
];
doCheck = false;
homepage = "http://jaspervdj.be/hakyll";
@@ -85352,8 +85722,8 @@ self: {
}:
mkDerivation {
pname = "hakyll";
- version = "4.7.4.0";
- sha256 = "bf6a503f8a6e4911c6d2b2480b0e1a2495c568f47f902a43e463d8b2706737d1";
+ version = "4.7.5.0";
+ sha256 = "e3079667f07f6355f9dbc0a10623670b323a6bec1fd632d114f5350023b65eb8";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -85687,6 +86057,7 @@ self: {
base containers grid HUnit QuickCheck test-framework
test-framework-hunit test-framework-quickcheck2
];
+ jailbreak = true;
homepage = "https://github.com/timjb/halma";
description = "Library implementing Halma rules";
license = stdenv.lib.licenses.mit;
@@ -85846,7 +86217,6 @@ self: {
aeson array base binary data-default GLUT OpenGL opengl-dlp-stereo
vector-space
];
- jailbreak = true;
homepage = "https://bitbucket.org/bwbush/handa-opengl";
description = "Utility functions for OpenGL and GLUT";
license = stdenv.lib.licenses.mit;
@@ -85972,12 +86342,17 @@ self: {
}) {pfq = null;};
"haphviz" = callPackage
- ({ mkDerivation, base, mtl, text }:
+ ({ mkDerivation, base, checkers, hspec, mtl, QuickCheck
+ , quickcheck-text, text
+ }:
mkDerivation {
pname = "haphviz";
- version = "0.1.0.2";
- sha256 = "84ff9cb5d293a237192b472f64c7bb78ef07fa48e3b2ec8a1763ee5d8c66a555";
+ version = "0.1.1.5";
+ sha256 = "f838c308bd3f82ba0766078e1aac0d6593e0eac63403beb6453c77fee36c7929";
libraryHaskellDepends = [ base mtl text ];
+ testHaskellDepends = [
+ base checkers hspec QuickCheck quickcheck-text text
+ ];
description = "Graphviz code generation with Haskell";
license = stdenv.lib.licenses.mit;
}) {};
@@ -86164,8 +86539,8 @@ self: {
}:
mkDerivation {
pname = "happstack-authenticate";
- version = "2.3.1";
- sha256 = "c194c82adb432854b5de13021c6e2a4557944aefd92f2c97d3691a7807109b30";
+ version = "2.3.2";
+ sha256 = "41ea80ab11653b9face4978a07a25b4609df42bffcc4d48c5e36ac9923884fb1";
libraryHaskellDepends = [
acid-state aeson authenticate base base64-bytestring boomerang
bytestring containers data-default email-validate filepath
@@ -86670,8 +87045,8 @@ self: {
}:
mkDerivation {
pname = "happstack-server-tls";
- version = "7.1.6";
- sha256 = "9c9c58d193543a5b3886a90654be7a97d6d53a3a44d25e350d1b3088347fd501";
+ version = "7.1.6.1";
+ sha256 = "801fa353e8001bd105615713eae6068534d3e6789fac9dc762ed43e17f73a668";
libraryHaskellDepends = [
base bytestring extensible-exceptions happstack-server hslogger
HsOpenSSL network sendfile time unix
@@ -87005,6 +87380,7 @@ self: {
base directory haroonga http-types old-locale optparse-applicative
scotty text time transformers wai-extra
];
+ jailbreak = true;
description = "Yet another Groonga http server";
license = stdenv.lib.licenses.lgpl21;
hydraPlatforms = stdenv.lib.platforms.none;
@@ -87078,6 +87454,7 @@ self: {
libraryHaskellDepends = [ base ];
executableHaskellDepends = [ base numbers ];
testHaskellDepends = [ HUnit ];
+ jailbreak = true;
homepage = "http://darcsden.com/mekeor/hascal";
description = "A minimalistic but extensible and precise calculator";
license = "GPL";
@@ -87760,6 +88137,25 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "haskeline_0_7_2_2" = callPackage
+ ({ mkDerivation, base, bytestring, containers, directory, filepath
+ , terminfo, transformers, unix
+ }:
+ mkDerivation {
+ pname = "haskeline";
+ version = "0.7.2.2";
+ sha256 = "7655f5850ad013b2e4eee637685029bcce79210180df3a61a88f8626ddde9281";
+ configureFlags = [ "-fterminfo" ];
+ libraryHaskellDepends = [
+ base bytestring containers directory filepath terminfo transformers
+ unix
+ ];
+ homepage = "http://trac.haskell.org/haskeline";
+ description = "A command-line interface for user input, written in Haskell";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"haskeline-class" = callPackage
({ mkDerivation, base, haskeline, mtl }:
mkDerivation {
@@ -88216,7 +88612,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "haskell-names" = callPackage
+ "haskell-names_0_5_3" = callPackage
({ mkDerivation, aeson, base, bytestring, Cabal, containers
, data-lens-light, filemanip, filepath, haskell-packages
, haskell-src-exts, hse-cpp, mtl, pretty-show, tagged, tasty
@@ -88240,6 +88636,30 @@ self: {
homepage = "http://documentup.com/haskell-suite/haskell-names";
description = "Name resolution library for Haskell";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "haskell-names" = callPackage
+ ({ mkDerivation, aeson, base, bytestring, containers
+ , data-lens-light, filemanip, filepath, haskell-src-exts, mtl
+ , pretty-show, tasty, tasty-golden, transformers
+ , traverse-with-class, uniplate
+ }:
+ mkDerivation {
+ pname = "haskell-names";
+ version = "0.6.0";
+ sha256 = "8d45dabf15d4073a94f5d634538288dbac6ace1971b673cafc76ea92671bb26a";
+ libraryHaskellDepends = [
+ aeson base bytestring containers data-lens-light filepath
+ haskell-src-exts mtl transformers traverse-with-class uniplate
+ ];
+ testHaskellDepends = [
+ base containers filemanip filepath haskell-src-exts mtl pretty-show
+ tasty tasty-golden traverse-with-class
+ ];
+ homepage = "http://documentup.com/haskell-suite/haskell-names";
+ description = "Name resolution library for Haskell";
+ license = stdenv.lib.licenses.bsd3;
}) {};
"haskell-neo4j-client_0_3_1_4" = callPackage
@@ -90214,7 +90634,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "hasql" = callPackage
+ "hasql_0_7_4" = callPackage
({ mkDerivation, attoparsec, base, base-prelude, either
, hasql-backend, hasql-postgres, hspec, list-t, mmorph
, monad-control, mtl, mtl-prelude, resource-pool, slave-thread
@@ -90238,9 +90658,10 @@ self: {
homepage = "https://github.com/nikita-volkov/hasql";
description = "A minimalistic general high level API for relational databases";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "hasql_0_15_0_2" = callPackage
+ "hasql" = callPackage
({ mkDerivation, aeson, attoparsec, base, base-prelude, bytestring
, contravariant, contravariant-extras, data-default-class, dlist
, either, hashable, hashtables, loch-th, placeholders
@@ -90265,11 +90686,10 @@ self: {
quickcheck-instances scientific tasty tasty-hunit tasty-quickcheck
tasty-smallcheck text time transformers uuid vector
];
- jailbreak = true;
+ doCheck = false;
homepage = "https://github.com/nikita-volkov/hasql";
description = "A very efficient PostgreSQL driver and a flexible mapping API";
license = stdenv.lib.licenses.mit;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hasql-backend_0_2_1" = callPackage
@@ -90394,7 +90814,6 @@ self: {
version = "0.1";
sha256 = "be1db9c80ebdaf6f1ef0e75970e28286d435141a515ea6f83742373ffb51e330";
libraryHaskellDepends = [ base-prelude hasql resource-pool time ];
- jailbreak = true;
homepage = "https://github.com/nikita-volkov/hasql-pool";
description = "A pool of connections for Hasql";
license = stdenv.lib.licenses.mit;
@@ -90749,7 +91168,6 @@ self: {
attoparsec base-prelude bytestring hasql hasql-transaction
template-haskell text
];
- jailbreak = true;
homepage = "https://github.com/nikita-volkov/hasql-th";
description = "Template Haskell utilities for Hasql";
license = stdenv.lib.licenses.mit;
@@ -90770,7 +91188,6 @@ self: {
contravariant-extras either hasql postgresql-error-codes
transformers
];
- jailbreak = true;
homepage = "https://github.com/nikita-volkov/hasql-transaction";
description = "A composable abstraction over the retryable transactions for Hasql";
license = stdenv.lib.licenses.mit;
@@ -92239,6 +92656,7 @@ self: {
aeson aeson-pretty base bytestring directory filepath haskeline
time
];
+ jailbreak = true;
homepage = "https://github.com/aka-bash0r/headergen";
description = "Creates a header for a haskell source file";
license = stdenv.lib.licenses.mit;
@@ -92365,6 +92783,7 @@ self: {
testHaskellDepends = [
base bytestring HUnit mtl test-framework test-framework-hunit time
];
+ jailbreak = true;
doCheck = false;
homepage = "https://github.com/informatikr/hedis";
description = "Client library for the Redis datastore: supports full command set, pipelining";
@@ -94598,8 +95017,8 @@ self: {
}:
mkDerivation {
pname = "hindent";
- version = "4.6.0";
- sha256 = "07039aa7729c3138e62c366efe11b148288ae6443539d0e7df61d157d2895d99";
+ version = "4.6.1";
+ sha256 = "04e8ffb44b46a45cd6425233efe595d6e412a20c71b69749f72c036bca4870f5";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -94798,6 +95217,7 @@ self: {
testHaskellDepends = [
base directory exceptions extensible-exceptions filepath HUnit mtl
];
+ jailbreak = true;
homepage = "http://hub.darcs.net/jcpetruzza/hint";
description = "Runtime Haskell interpreter (GHC API wrapper)";
license = stdenv.lib.licenses.bsd3;
@@ -94819,6 +95239,8 @@ self: {
testHaskellDepends = [
base directory exceptions extensible-exceptions filepath HUnit mtl
];
+ jailbreak = true;
+ doCheck = false;
homepage = "http://hub.darcs.net/jcpetruzza/hint";
description = "Runtime Haskell interpreter (GHC API wrapper)";
license = stdenv.lib.licenses.bsd3;
@@ -94886,6 +95308,7 @@ self: {
unordered-containers utf8-string wai wai-lens webcrank webcrank-wai
wreq
];
+ jailbreak = true;
homepage = "https://github.com/purefn/hipbot";
description = "A library for building HipChat Bots";
license = stdenv.lib.licenses.bsd3;
@@ -95430,6 +95853,7 @@ self: {
aeson base http-types HUnit test-framework test-framework-hunit
text unordered-containers vector
];
+ jailbreak = true;
homepage = "https://github.com/seagreen/hjsonpointer";
description = "JSON Pointer library";
license = stdenv.lib.licenses.mit;
@@ -96158,8 +96582,8 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {inherit (pkgs) openssl;};
- "hlibgit2" = callPackage
- ({ mkDerivation, base, bindings-DSL, openssl, process, zlib }:
+ "hlibgit2_0_18_0_14" = callPackage
+ ({ mkDerivation, base, bindings-DSL, git, openssl, process, zlib }:
mkDerivation {
pname = "hlibgit2";
version = "0.18.0.14";
@@ -96167,11 +96591,13 @@ self: {
libraryHaskellDepends = [ base bindings-DSL zlib ];
librarySystemDepends = [ openssl ];
testHaskellDepends = [ base process ];
+ testToolDepends = [ git ];
description = "Low-level bindings to libgit2";
license = stdenv.lib.licenses.mit;
- }) {inherit (pkgs) openssl;};
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {inherit (pkgs) git; inherit (pkgs) openssl;};
- "hlibgit2_0_18_0_15" = callPackage
+ "hlibgit2" = callPackage
({ mkDerivation, base, bindings-DSL, git, openssl, process, zlib }:
mkDerivation {
pname = "hlibgit2";
@@ -96183,15 +96609,29 @@ self: {
testToolDepends = [ git ];
description = "Low-level bindings to libgit2";
license = stdenv.lib.licenses.mit;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {inherit (pkgs) git; inherit (pkgs) openssl;};
- "hlibsass" = callPackage
+ "hlibsass_0_1_4_0" = callPackage
({ mkDerivation, base, hspec, libsass }:
mkDerivation {
pname = "hlibsass";
version = "0.1.4.0";
sha256 = "2673ff4a4189bdfda61e5b936e1e91c4de29ede91db40055511a835ccbd35818";
+ libraryHaskellDepends = [ base ];
+ librarySystemDepends = [ libsass ];
+ testHaskellDepends = [ base hspec ];
+ homepage = "https://github.com/jakubfijalkowski/hlibsass";
+ description = "Low-level bindings to Libsass";
+ license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {inherit (pkgs) libsass;};
+
+ "hlibsass" = callPackage
+ ({ mkDerivation, base, hspec, libsass }:
+ mkDerivation {
+ pname = "hlibsass";
+ version = "0.1.5.0";
+ sha256 = "ce3e9a15d01c1b61d41b03e9b05ecd9b4b9aaf6da7d591086181b74e18d25bb8";
configureFlags = [ "-fexternallibsass" ];
libraryHaskellDepends = [ base ];
librarySystemDepends = [ libsass ];
@@ -97373,6 +97813,7 @@ self: {
executableHaskellDepends = [
aeson base bytestring http-conduit http-types text
];
+ jailbreak = true;
homepage = "https://github.com/freizl/hoauth2";
description = "hoauth2";
license = stdenv.lib.licenses.bsd3;
@@ -97840,8 +98281,10 @@ self: {
pname = "hood";
version = "0.3";
sha256 = "f1962dfb05d01a345335872fa36509999755c71a9381b4941bd04a9cb72b6122";
+ revision = "1";
+ editedCabalFile = "f9b9df9c7f747b1da4f96477fab00305b5a28132eabc224e76db75b1bae34a64";
libraryHaskellDepends = [ array base FPretty ghc-prim ];
- homepage = "http://www.ittc.ku.edu/csdl/fpg/Hood";
+ homepage = "http://ku-fpg.github.io/software/hood";
description = "Debugging by observing in place";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -98370,6 +98813,7 @@ self: {
base bytestring Cabal containers directory errors filepath hoogle
optparse-applicative process temporary transformers
];
+ jailbreak = true;
homepage = "http://github.com/bgamari/hoogle-index";
description = "Easily generate Hoogle indices for installed packages";
license = stdenv.lib.licenses.bsd3;
@@ -98387,14 +98831,14 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
- "hoopl_3_10_2_0" = callPackage
+ "hoopl_3_10_2_1" = callPackage
({ mkDerivation, base, containers, filepath, mtl, parsec
, test-framework, test-framework-hunit
}:
mkDerivation {
pname = "hoopl";
- version = "3.10.2.0";
- sha256 = "6740814c774e51815e8260ae1b4ac8af6ab69f02e112904450f689c4792f1121";
+ version = "3.10.2.1";
+ sha256 = "7c06a2a9e8871eff74fdbbf2aa0a2201a31a5687f5acf7a5ba8a3611325440b0";
libraryHaskellDepends = [ base containers ];
testHaskellDepends = [
base containers filepath mtl parsec test-framework
@@ -100401,7 +100845,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {xenctrl = null;};
- "hsass" = callPackage
+ "hsass_0_3_0" = callPackage
({ mkDerivation, base, bytestring, data-default-class, filepath
, hlibsass, hspec, hspec-discover, monad-loops, temporary
, transformers
@@ -100420,6 +100864,28 @@ self: {
homepage = "https://github.com/jakubfijalkowski/hsass";
description = "Integrating Sass into Haskell applications";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "hsass" = callPackage
+ ({ mkDerivation, base, bytestring, data-default-class, filepath
+ , hlibsass, hspec, hspec-discover, monad-loops, temporary
+ , transformers
+ }:
+ mkDerivation {
+ pname = "hsass";
+ version = "0.4.0";
+ sha256 = "512faf0e01e720395699066139379fb2e5e5f456f465c72d58282b75b6ec0f9d";
+ libraryHaskellDepends = [
+ base bytestring data-default-class filepath hlibsass monad-loops
+ transformers
+ ];
+ testHaskellDepends = [
+ base bytestring data-default-class hspec hspec-discover temporary
+ ];
+ homepage = "https://github.com/jakubfijalkowski/hsass";
+ description = "Integrating Sass into Haskell applications";
+ license = stdenv.lib.licenses.mit;
}) {};
"hsay" = callPackage
@@ -101243,7 +101709,7 @@ self: {
license = stdenv.lib.licenses.mit;
}) {};
- "hsebaysdk" = callPackage
+ "hsebaysdk_0_3_0_0" = callPackage
({ mkDerivation, aeson, base, bytestring, http-client, http-types
, text, time, transformers, unordered-containers
}:
@@ -101258,6 +101724,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.3.0.1";
+ sha256 = "52f97122cdaba3c3b8a71691ed87fb3eb6dd93506652a8b11282af696c3f6279";
+ 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
@@ -102367,6 +102851,7 @@ self: {
HUnit process QuickCheck quickcheck-io random setenv silently
tf-random time transformers
];
+ jailbreak = true;
homepage = "http://hspec.github.io/";
description = "A Testing Framework for Haskell";
license = stdenv.lib.licenses.mit;
@@ -102394,6 +102879,7 @@ self: {
HUnit process QuickCheck quickcheck-io random setenv silently
tf-random time transformers
];
+ jailbreak = true;
homepage = "http://hspec.github.io/";
description = "A Testing Framework for Haskell";
license = stdenv.lib.licenses.mit;
@@ -102421,6 +102907,7 @@ self: {
HUnit process QuickCheck quickcheck-io random setenv silently
tf-random time transformers
];
+ jailbreak = true;
homepage = "http://hspec.github.io/";
description = "A Testing Framework for Haskell";
license = stdenv.lib.licenses.mit;
@@ -102448,6 +102935,7 @@ self: {
HUnit process QuickCheck quickcheck-io random setenv silently
tf-random time transformers
];
+ jailbreak = true;
homepage = "http://hspec.github.io/";
description = "A Testing Framework for Haskell";
license = stdenv.lib.licenses.mit;
@@ -102475,6 +102963,7 @@ self: {
HUnit process QuickCheck quickcheck-io random setenv silently
tf-random time transformers
];
+ jailbreak = true;
homepage = "http://hspec.github.io/";
description = "A Testing Framework for Haskell";
license = stdenv.lib.licenses.mit;
@@ -102502,6 +102991,7 @@ self: {
HUnit process QuickCheck quickcheck-io random setenv silently
tf-random time transformers
];
+ jailbreak = true;
homepage = "http://hspec.github.io/";
description = "A Testing Framework for Haskell";
license = stdenv.lib.licenses.mit;
@@ -102805,8 +103295,8 @@ self: {
}:
mkDerivation {
pname = "hspec-expectations-pretty-diff";
- version = "0.7.2.2";
- sha256 = "00c1ac7ceb6bed18c8c2ab7ac35342b024731e3fadf2c6304e549dc42d39ff38";
+ version = "0.7.2.3";
+ sha256 = "3543bc7ecf28e8a714b255264849d82b6c513828a26a761e0f372bec1b37202f";
libraryHaskellDepends = [
ansi-terminal base Diff haskell-src-exts hindent hscolour HUnit
text
@@ -102975,6 +103465,22 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "hspec-setup" = callPackage
+ ({ mkDerivation, base, directory, filepath, process, projectroot }:
+ mkDerivation {
+ pname = "hspec-setup";
+ version = "0.1.1.0";
+ sha256 = "8f1e57656595330917597a66768e752bf66c2ae7acf7c43425222a0e1ce7e12a";
+ isLibrary = false;
+ isExecutable = true;
+ executableHaskellDepends = [
+ base directory filepath process projectroot
+ ];
+ homepage = "https://github.com/yamadapc/haskell-hspec-setup";
+ description = "Add an hspec test-suite in one command";
+ license = stdenv.lib.licenses.mit;
+ }) {};
+
"hspec-shouldbe" = callPackage
({ mkDerivation, hspec, test-shouldbe }:
mkDerivation {
@@ -103949,15 +104455,14 @@ self: {
}:
mkDerivation {
pname = "hsx2hs";
- version = "0.13.3.2";
- sha256 = "93057aca59faeb1e33d55d804d89fd42b5175006abf1ca7aa507a6338232f8ee";
+ version = "0.13.4";
+ sha256 = "9508c59b373474e7954f51be61b5e6a54f0a6241cca2a4ecf1b1ce8f5aae07df";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
base bytestring haskell-src-exts haskell-src-meta mtl
template-haskell utf8-string
];
- jailbreak = true;
homepage = "https://github.com/seereason/hsx2hs";
description = "HSX (Haskell Source with XML) allows literal XML syntax in Haskell source code";
license = stdenv.lib.licenses.bsd3;
@@ -105234,7 +105739,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "http-client" = callPackage
+ "http-client_0_4_25" = callPackage
({ mkDerivation, array, async, base, base64-bytestring
, blaze-builder, bytestring, case-insensitive, containers, cookie
, data-default-class, deepseq, directory, exceptions, filepath
@@ -105262,9 +105767,10 @@ self: {
homepage = "https://github.com/snoyberg/http-client";
description = "An HTTP client engine, intended as a base layer for more user-friendly packages";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "http-client_0_4_26_1" = callPackage
+ "http-client" = callPackage
({ mkDerivation, array, async, base, base64-bytestring
, blaze-builder, bytestring, case-insensitive, containers, cookie
, data-default-class, deepseq, directory, exceptions, filepath
@@ -105292,7 +105798,6 @@ self: {
homepage = "https://github.com/snoyberg/http-client";
description = "An HTTP client engine, intended as a base layer for more user-friendly packages";
license = stdenv.lib.licenses.mit;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"http-client-auth" = callPackage
@@ -106134,7 +106639,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "http-types" = callPackage
+ "http-types_0_8_6" = callPackage
({ mkDerivation, array, base, blaze-builder, bytestring
, case-insensitive, doctest, hspec, QuickCheck
, quickcheck-instances, text
@@ -106153,9 +106658,10 @@ self: {
homepage = "https://github.com/aristidb/http-types";
description = "Generic HTTP types for Haskell (for both client and server code)";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "http-types_0_9" = callPackage
+ "http-types" = callPackage
({ mkDerivation, array, base, blaze-builder, bytestring
, case-insensitive, doctest, hspec, QuickCheck
, quickcheck-instances, text
@@ -106174,7 +106680,6 @@ self: {
homepage = "https://github.com/aristidb/http-types";
description = "Generic HTTP types for Haskell (for both client and server code)";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"http-wget" = callPackage
@@ -108196,8 +108701,8 @@ self: {
}:
mkDerivation {
pname = "hzulip";
- version = "1.1.1.1";
- sha256 = "a132d3f28c0a5da3d841522a24995d94232a4c044a5ce547786057f2ace4bebf";
+ version = "1.1.1.2";
+ sha256 = "62402ce2010bf6d9c07ee266ac30c9506383b3a5dcbbd0fba54b30d191ac02d8";
libraryHaskellDepends = [
aeson base bytestring conduit exceptions http-client
http-client-tls http-types lens lens-aeson mtl stm stm-conduit text
@@ -108208,7 +108713,6 @@ self: {
http-client-tls http-types lens lens-aeson mtl raw-strings-qq
scotty stm stm-conduit text transformers
];
- jailbreak = true;
homepage = "https://github.com/yamadapc/hzulip";
description = "A haskell wrapper for the Zulip API";
license = stdenv.lib.licenses.gpl2;
@@ -108639,6 +109143,8 @@ self: {
pname = "ide-backend";
version = "0.10.0";
sha256 = "26a35f82533d8361824e04468176cab7c14d3fa4d0a1ebe1aa243a986a3ae0a2";
+ revision = "1";
+ editedCabalFile = "96888cccc65f025e63931b466ac392e6caa581f6e902a428fd203cdf3c22f5ef";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -108663,6 +109169,7 @@ self: {
stm tagged tasty template-haskell temporary test-framework
test-framework-hunit text unix utf8-string
];
+ jailbreak = true;
doCheck = false;
description = "An IDE backend library";
license = stdenv.lib.licenses.mit;
@@ -108780,6 +109287,7 @@ self: {
mtl pretty-show pureMD5 tagged template-haskell temporary text
transformers unix
];
+ jailbreak = true;
description = "Shared library used be ide-backend and ide-backend-server";
license = stdenv.lib.licenses.mit;
hydraPlatforms = stdenv.lib.platforms.none;
@@ -108801,6 +109309,7 @@ self: {
monad-logger mtl pretty-show pureMD5 tagged template-haskell
temporary text transformers unix
];
+ jailbreak = true;
description = "Shared library used be ide-backend and ide-backend-server";
license = stdenv.lib.licenses.mit;
hydraPlatforms = stdenv.lib.platforms.none;
@@ -108816,6 +109325,8 @@ self: {
pname = "ide-backend-common";
version = "0.10.1.1";
sha256 = "858cc32d6c73ca0d55e1fc7dc25831e437a3cca483438a74bbc236f8f93cfcb3";
+ revision = "1";
+ editedCabalFile = "ed08fca4f17984a5ef06a632b23bc604d5e93a3040fde4cde9721a8ef4991975";
libraryHaskellDepends = [
aeson async attoparsec base binary bytestring bytestring-trie
containers crypto-api data-accessor directory filepath fingertree
@@ -108994,12 +109505,12 @@ self: {
, optparse-applicative, parsers, pretty, process, safe, split, text
, time, transformers, transformers-compat, trifecta, uniplate, unix
, unordered-containers, utf8-string, vector
- , vector-binary-instances, zip-archive, zlib
+ , vector-binary-instances, zip-archive
}:
mkDerivation {
pname = "idris";
- version = "0.9.20.1";
- sha256 = "3613b7ded2358e63df21e96ad8bc966d33dcb26d796771f1d5e9f2267d325c39";
+ version = "0.9.20.2";
+ sha256 = "499339fc6a443dd2902ae76114eba6a61ebbd5955dcf3d3687199df5829a0f47";
configureFlags = [ "-fcurses" "-fffi" "-fgmp" ];
isLibrary = true;
isExecutable = true;
@@ -109010,12 +109521,13 @@ self: {
haskeline hscurses libffi mtl network optparse-applicative parsers
pretty process safe split text time transformers
transformers-compat trifecta uniplate unix unordered-containers
- utf8-string vector vector-binary-instances zip-archive zlib
+ utf8-string vector vector-binary-instances zip-archive
];
librarySystemDepends = [ gmp ];
executableHaskellDepends = [
base directory filepath haskeline transformers
];
+ jailbreak = true;
homepage = "http://www.idris-lang.org/";
description = "Functional Programming Language with Dependent Types";
license = stdenv.lib.licenses.bsd3;
@@ -109897,6 +110409,29 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "imperative-edsl" = callPackage
+ ({ mkDerivation, array, base, BoundedChan, constraints, containers
+ , directory, exception-transformers, language-c-quote
+ , mainland-pretty, microlens, microlens-mtl, microlens-th, mtl
+ , open-typerep, operational-alacarte, process, srcloc, syntactic
+ , tagged
+ }:
+ mkDerivation {
+ pname = "imperative-edsl";
+ version = "0.4.1";
+ sha256 = "5b78994b208351b4fdd8465146559d7198c6969dfaaa3767ed667d9df29bfad4";
+ libraryHaskellDepends = [
+ array base BoundedChan constraints containers
+ exception-transformers language-c-quote mainland-pretty microlens
+ microlens-mtl microlens-th mtl open-typerep operational-alacarte
+ srcloc syntactic tagged
+ ];
+ testHaskellDepends = [ base directory mainland-pretty process ];
+ homepage = "https://github.com/emilaxelsson/imperative-edsl";
+ description = "Deep embedding of imperative programs with code generation";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"imperative-edsl-vhdl" = callPackage
({ mkDerivation, base, bytestring, constraints, containers
, language-vhdl, mtl, operational-alacarte, pretty, syntactic
@@ -110759,6 +111294,7 @@ self: {
testHaskellDepends = [
aeson base instant-generics tasty tasty-quickcheck
];
+ jailbreak = true;
homepage = "https://github.com/k0001/instant-aeson";
description = "Generic Aeson instances through instant-generics";
license = stdenv.lib.licenses.bsd3;
@@ -111268,6 +111804,8 @@ self: {
pname = "invariant";
version = "0.2.2";
sha256 = "269cfd73bb7064459791b03461c9a73ce182e9d0a6f929f7cd46c0566d747975";
+ revision = "1";
+ editedCabalFile = "ec713862cc5b8f03e58eeca3596d53cfdfc28a9957afffcff2680a855322f0ee";
libraryHaskellDepends = [
array base bifunctors containers contravariant ghc-prim profunctors
semigroups stm tagged template-haskell transformers
@@ -111808,6 +112346,7 @@ self: {
executableHaskellDepends = [
base filepath mtl parsec text transformers
];
+ jailbreak = true;
homepage = "http://github.com/gibiansky/IHaskell";
description = "A library for creating kernels for IPython frontends";
license = stdenv.lib.licenses.mit;
@@ -111956,18 +112495,18 @@ self: {
}) {};
"irc-fun-bot" = callPackage
- ({ mkDerivation, aeson, base, clock, fast-logger, irc-fun-client
- , irc-fun-messages, json-state, time, time-interval, time-units
- , transformers, unordered-containers
+ ({ mkDerivation, aeson, auto-update, base, clock, containers
+ , fast-logger, irc-fun-client, irc-fun-messages, json-state, time
+ , time-interval, time-units, transformers, unordered-containers
}:
mkDerivation {
pname = "irc-fun-bot";
- version = "0.4.0.0";
- sha256 = "defa781ecd1ff744f5b36907be56d58189fcd31de85599f713628a4ffd06c253";
+ version = "0.5.0.0";
+ sha256 = "1104c508068dcfba3f8c60c39d5cc8ccb9b264af57097e8fa2b61e68e3754b51";
libraryHaskellDepends = [
- aeson base clock fast-logger irc-fun-client irc-fun-messages
- json-state time time-interval time-units transformers
- unordered-containers
+ aeson auto-update base clock containers fast-logger irc-fun-client
+ irc-fun-messages json-state time time-interval time-units
+ transformers unordered-containers
];
jailbreak = true;
homepage = "http://rel4tion.org/projects/irc-fun-bot/";
@@ -111981,8 +112520,8 @@ self: {
}:
mkDerivation {
pname = "irc-fun-client";
- version = "0.3.0.0";
- sha256 = "325178cd683dc79974519e87da2e23fe7707c12feff697605915fa5e99aaf258";
+ version = "0.4.0.0";
+ sha256 = "2567be16b259a37a4234a1716bef694d6f1ce6c3b7c9f553d9d0a12a0be65c33";
libraryHaskellDepends = [
auto-update base fast-logger irc-fun-messages network time
time-units unordered-containers
@@ -112011,8 +112550,8 @@ self: {
({ mkDerivation, base, regex-applicative }:
mkDerivation {
pname = "irc-fun-messages";
- version = "0.2.0.0";
- sha256 = "47345b37fb95a265c5237a826ba1351e78ad956b35a7dcd13bd7c625f8d8c5a1";
+ version = "0.2.0.1";
+ sha256 = "b54ab9b8a259c49a495f111bc7a56c5cd50334c4708dea6e3f06b66534325198";
libraryHaskellDepends = [ base regex-applicative ];
homepage = "http://rel4tion.org/projects/irc-fun-messages/";
description = "Types and functions for working with the IRC protocol";
@@ -112281,6 +112820,7 @@ self: {
base heap HUnit iteratee ListLike mtl statistics test-framework
test-framework-hunit test-framework-quickcheck2 vector
];
+ jailbreak = true;
homepage = "https://github.com/JohnLato/iter-stats";
description = "iteratees for statistical processing";
license = stdenv.lib.licenses.bsd3;
@@ -112663,7 +113203,7 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
- "ixset" = callPackage
+ "ixset_1_0_6" = callPackage
({ mkDerivation, base, containers, safecopy, syb, syb-with-class
, template-haskell
}:
@@ -112677,6 +113217,23 @@ self: {
homepage = "http://happstack.com";
description = "Efficient relational queries on Haskell sets";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "ixset" = callPackage
+ ({ mkDerivation, base, containers, safecopy, syb, syb-with-class
+ , template-haskell
+ }:
+ mkDerivation {
+ pname = "ixset";
+ version = "1.0.6.1";
+ sha256 = "729a9601ef889f2178a9e857c39efb89c6defcb7e074f9bf9156086bc51327e1";
+ libraryHaskellDepends = [
+ base containers safecopy syb syb-with-class template-haskell
+ ];
+ homepage = "http://happstack.com";
+ description = "Efficient relational queries on Haskell sets";
+ license = stdenv.lib.licenses.bsd3;
}) {};
"ixset-typed" = callPackage
@@ -113896,6 +114453,24 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "json-encoder" = callPackage
+ ({ mkDerivation, base, base-prelude, bytestring
+ , bytestring-tree-builder, contravariant, contravariant-extras
+ , scientific, text
+ }:
+ mkDerivation {
+ pname = "json-encoder";
+ version = "0.1.3.1";
+ sha256 = "0127462ef932a643adc948bbb1de89de78d705a464c2591aedafddcd8382fadc";
+ libraryHaskellDepends = [
+ base base-prelude bytestring bytestring-tree-builder contravariant
+ contravariant-extras scientific text
+ ];
+ homepage = "https://github.com/sannsyn/json-encoder";
+ description = "A very fast single-pass JSON encoder with a declarative DSL";
+ license = stdenv.lib.licenses.mit;
+ }) {};
+
"json-enumerator" = callPackage
({ mkDerivation, base, blaze-builder, blaze-builder-enumerator
, bytestring, containers, enumerator, json-types, text
@@ -114285,7 +114860,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "json-schema" = callPackage
+ "json-schema_0_7_4_0" = callPackage
({ mkDerivation, aeson, aeson-utils, attoparsec, base, bytestring
, containers, generic-aeson, generic-deriving, mtl, scientific
, tasty, tasty-hunit, tasty-th, text, time, unordered-containers
@@ -114307,6 +114882,29 @@ self: {
];
description = "Types and type classes for defining JSON schemas";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "json-schema" = callPackage
+ ({ mkDerivation, aeson, aeson-utils, attoparsec, base, bytestring
+ , containers, generic-aeson, generic-deriving, mtl, scientific
+ , tasty, tasty-hunit, tasty-th, text, time, unordered-containers
+ , vector
+ }:
+ mkDerivation {
+ pname = "json-schema";
+ version = "0.7.4.1";
+ sha256 = "560d6a17d6eab734f43d329e51967e3ed62f8df2a6fea4a92d06359fe77d7c96";
+ libraryHaskellDepends = [
+ aeson base containers generic-aeson generic-deriving mtl scientific
+ text time unordered-containers vector
+ ];
+ testHaskellDepends = [
+ aeson aeson-utils attoparsec base bytestring generic-aeson tasty
+ tasty-hunit tasty-th text vector
+ ];
+ description = "Types and type classes for defining JSON schemas";
+ license = stdenv.lib.licenses.bsd3;
}) {};
"json-sop" = callPackage
@@ -115912,6 +116510,7 @@ self: {
mtl optparse-applicative process raw-strings-qq setenv text
unordered-containers
];
+ jailbreak = true;
homepage = "http://github.com/cdornan/keystore";
description = "Managing stores of secret things";
license = stdenv.lib.licenses.bsd3;
@@ -116801,6 +117400,7 @@ self: {
template-haskell time transformers transformers-base unix
utf8-string zlib
];
+ jailbreak = true;
homepage = "http://haskell.org/haskellwiki/Lambdabot";
description = "Lambdabot core functionality";
license = "GPL";
@@ -117171,6 +117771,23 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "lambdatex" = callPackage
+ ({ mkDerivation, base, containers, directory, HaTeX, hspec, mtl
+ , QuickCheck, text, transformers
+ }:
+ mkDerivation {
+ pname = "lambdatex";
+ version = "0.1.0.1";
+ sha256 = "c071927242a209cbcd404cd5d803da91ced655565178c8e72b438cd47a66320c";
+ libraryHaskellDepends = [
+ base containers directory HaTeX mtl text transformers
+ ];
+ testHaskellDepends = [ base hspec QuickCheck ];
+ homepage = "http://github.com/NorfairKing/lambdatex";
+ description = "Type-Safe LaTeX EDSL";
+ license = "GPL";
+ }) {};
+
"lambdatwit" = callPackage
({ mkDerivation, acid-state, authenticate-oauth, base, bytestring
, case-insensitive, conduit, containers, data-default, exceptions
@@ -117467,6 +118084,7 @@ self: {
base bytestring HUnit mainland-pretty srcloc symbol test-framework
test-framework-hunit
];
+ jailbreak = true;
doCheck = false;
homepage = "http://www.cs.drexel.edu/~mainland/";
description = "C/CUDA/OpenCL/Objective-C quasiquoting library";
@@ -117494,6 +118112,7 @@ self: {
base bytestring HUnit mainland-pretty srcloc symbol test-framework
test-framework-hunit
];
+ jailbreak = true;
doCheck = false;
homepage = "http://www.cs.drexel.edu/~mainland/";
description = "C/CUDA/OpenCL/Objective-C quasiquoting library";
@@ -117521,6 +118140,7 @@ self: {
base bytestring HUnit mainland-pretty srcloc symbol test-framework
test-framework-hunit
];
+ jailbreak = true;
doCheck = false;
homepage = "http://www.cs.drexel.edu/~mainland/";
description = "C/CUDA/OpenCL/Objective-C quasiquoting library";
@@ -117695,6 +118315,8 @@ self: {
mtl parsec QuickCheck test-framework test-framework-hunit
test-framework-quickcheck2 uniplate wl-pprint
];
+ jailbreak = true;
+ doCheck = false;
homepage = "http://github.com/jswebtools/language-ecmascript";
description = "JavaScript parser and pretty-printer library";
license = stdenv.lib.licenses.bsd3;
@@ -118410,7 +119032,7 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
- "largeword" = callPackage
+ "largeword_1_2_3" = callPackage
({ mkDerivation, base, binary, bytestring, HUnit, QuickCheck
, test-framework, test-framework-hunit, test-framework-quickcheck2
}:
@@ -118423,12 +119045,14 @@ self: {
base binary bytestring HUnit QuickCheck test-framework
test-framework-hunit test-framework-quickcheck2
];
+ jailbreak = true;
homepage = "https://github.com/idontgetoutmuch/largeword";
description = "Provides Word128, Word192 and Word256 and a way of producing other large words if required";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "largeword_1_2_5" = callPackage
+ "largeword" = callPackage
({ mkDerivation, base, binary, bytestring, HUnit, QuickCheck
, test-framework, test-framework-hunit, test-framework-quickcheck2
}:
@@ -118441,11 +119065,9 @@ self: {
base binary bytestring HUnit QuickCheck test-framework
test-framework-hunit test-framework-quickcheck2
];
- jailbreak = true;
homepage = "https://github.com/idontgetoutmuch/largeword";
description = "Provides Word128, Word192 and Word256 and a way of producing other large words if required";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"lat" = callPackage
@@ -118911,6 +119533,7 @@ self: {
base bytestring cmdargs containers filepath
];
testHaskellDepends = [ base HUnit ];
+ jailbreak = true;
homepage = "http://rampa.sk/static/ldif.html";
description = "The LDAP Data Interchange Format (LDIF) tools";
license = stdenv.lib.licenses.bsd3;
@@ -119139,6 +119762,7 @@ self: {
base conduit conduit-extra hslogger HUnit process resourcet
transformers
];
+ jailbreak = true;
homepage = "http://leksah.org";
description = "Metadata collection for leksah";
license = "GPL";
@@ -119419,6 +120043,7 @@ self: {
base directory doctest filepath generic-deriving semigroups
simple-reflect
];
+ jailbreak = true;
homepage = "http://github.com/lens/lens-aeson/";
description = "Law-abiding lenses for aeson";
license = stdenv.lib.licenses.bsd3;
@@ -119705,6 +120330,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;
@@ -120309,7 +120935,6 @@ self: {
attoparsec base bytestring containers data-default-class filepath
hspec mtl network old-locale QuickCheck text time unix utf8-string
];
- jailbreak = true;
homepage = "http://github.com/vimus/libmpd-haskell#readme";
description = "An MPD client library";
license = stdenv.lib.licenses.mit;
@@ -120426,16 +121051,16 @@ self: {
}) {};
"libravatar" = callPackage
- ({ mkDerivation, base, bytestring, crypto-api, dns, network-uri
- , pureMD5, random, SHA, url, utf8-string
+ ({ mkDerivation, base, bytestring, crypto-api, data-default-class
+ , dns, network-uri, pureMD5, random, SHA, url, utf8-string
}:
mkDerivation {
pname = "libravatar";
- version = "0.2.0.0";
- sha256 = "a195549f60f88966732141a7bcab3fdfedb70bdbbb686ad3e2651518317082d5";
+ version = "0.3.0.0";
+ sha256 = "2371b91f8ff4abdeba4374d20b4fa9c90fe0e9871c874bd61f32380b32ef88bf";
libraryHaskellDepends = [
- base bytestring crypto-api dns network-uri pureMD5 random SHA url
- utf8-string
+ base bytestring crypto-api data-default-class dns network-uri
+ pureMD5 random SHA url utf8-string
];
homepage = "http://rel4tion.org/projects/libravatar/";
description = "Use Libravatar, the decentralized avatar delivery service";
@@ -120796,6 +121421,7 @@ self: {
base HUnit monad-control test-framework test-framework-hunit
transformers transformers-base
];
+ jailbreak = true;
homepage = "https://github.com/basvandijk/lifted-base";
description = "lifted IO operations from the base library";
license = stdenv.lib.licenses.bsd3;
@@ -120816,6 +121442,7 @@ self: {
base HUnit monad-control test-framework test-framework-hunit
transformers transformers-base transformers-compat
];
+ jailbreak = true;
doCheck = false;
homepage = "https://github.com/basvandijk/lifted-base";
description = "lifted IO operations from the base library";
@@ -121224,10 +121851,8 @@ self: {
}:
mkDerivation {
pname = "linear";
- version = "1.20.2";
- sha256 = "c9ce0cba74beb9ab59cf9790772e5b01d2786b452099e5831d218371565ec4fe";
- revision = "1";
- editedCabalFile = "2c0ce2199aec2dd1e7536514351398d00def727e21bdac1fe54b05059fef7c49";
+ version = "1.20.3";
+ sha256 = "50f63a5b6019acb53ae06886749dea80443b18876c2990ca5376578c94537ac4";
libraryHaskellDepends = [
adjunctions base binary bytes cereal containers deepseq
distributive ghc-prim hashable lens reflection semigroupoids
@@ -121858,8 +122483,8 @@ self: {
pname = "liquidhaskell";
version = "0.5.0.1";
sha256 = "27f31e7652cd9ef0b97d2e3936c8e9c759961ac153b324c3e84f11cb441ab89a";
- revision = "1";
- editedCabalFile = "f091f4caee092d4d286fe264fbb5f602675339c6bfac563bfb91732583264cc0";
+ revision = "2";
+ editedCabalFile = "54142d52274f85af299d405bd5daac25b574f9d3f16c8e42b7f5b999d9a34a1d";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -121881,6 +122506,7 @@ self: {
stm tagged tasty tasty-hunit tasty-rerun transformers
];
testSystemDepends = [ z3 ];
+ jailbreak = true;
homepage = "http://goto.ucsd.edu/liquidhaskell";
description = "Liquid Types for Haskell";
license = stdenv.lib.licenses.bsd3;
@@ -121924,7 +122550,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "list-fusion-probe" = callPackage
+ "list-fusion-probe_0_1_0_4" = callPackage
({ mkDerivation, base, tasty, tasty-hunit }:
mkDerivation {
pname = "list-fusion-probe";
@@ -121934,6 +122560,19 @@ self: {
testHaskellDepends = [ base tasty tasty-hunit ];
description = "testing list fusion for success";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "list-fusion-probe" = callPackage
+ ({ mkDerivation, base, tasty, tasty-hunit }:
+ mkDerivation {
+ pname = "list-fusion-probe";
+ version = "0.1.0.5";
+ sha256 = "7471363bd737abca1888bb8274cb3fef8f4fc925875b27fa0901efa1358adb50";
+ libraryHaskellDepends = [ base ];
+ testHaskellDepends = [ base tasty tasty-hunit ];
+ description = "testing list fusion for success";
+ license = stdenv.lib.licenses.bsd3;
}) {};
"list-grouping" = callPackage
@@ -121961,6 +122600,30 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "list-prompt" = callPackage
+ ({ mkDerivation, ansi-terminal, base, data-default, hspec, stm
+ , terminal-size, vty
+ }:
+ mkDerivation {
+ pname = "list-prompt";
+ version = "0.1.1.0";
+ sha256 = "c7323c7a802940deba1a7be46265fd8c01f548174d5f08923a607e1730ca4dee";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [
+ ansi-terminal base data-default stm terminal-size vty
+ ];
+ executableHaskellDepends = [
+ ansi-terminal base data-default stm terminal-size vty
+ ];
+ testHaskellDepends = [
+ ansi-terminal base data-default hspec stm terminal-size vty
+ ];
+ homepage = "https://github.com/yamadapc/list-prompt.git";
+ description = "A simple list prompt UI for the terminal";
+ license = stdenv.lib.licenses.gpl2;
+ }) {};
+
"list-remote-forwards" = callPackage
({ mkDerivation, base, bytestring, cmdargs, configurator
, containers, directory, dns, doctest, filemanip, filepath, HDBC
@@ -122893,6 +123556,27 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "locked-poll" = callPackage
+ ({ mkDerivation, attoparsec, base, bytestring, clock, containers
+ , lens, QuickCheck, random, regex-genex, tasty, tasty-golden
+ , tasty-hunit, tasty-quickcheck, time
+ }:
+ mkDerivation {
+ pname = "locked-poll";
+ version = "0.1.0";
+ sha256 = "6a369cb194ce975fe663b97eef47adcdc5d96e73abeea0f5087a00ee9201a164";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [ base clock containers ];
+ executableHaskellDepends = [ base clock containers ];
+ testHaskellDepends = [
+ attoparsec base bytestring clock containers lens QuickCheck random
+ regex-genex tasty tasty-golden tasty-hunit tasty-quickcheck time
+ ];
+ description = "Very simple poll lock";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"lockfree-queue" = callPackage
({ mkDerivation, abstract-deque, abstract-deque-tests
, atomic-primops, base, bytestring, ghc-prim, HUnit, test-framework
@@ -124050,7 +124734,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "lucid-svg" = callPackage
+ "lucid-svg_0_5_0_0" = callPackage
({ mkDerivation, base, blaze-builder, lucid, text, transformers }:
mkDerivation {
pname = "lucid-svg";
@@ -124062,9 +124746,10 @@ self: {
homepage = "http://github.com/jeffreyrosenbluth/lucid-svg.git";
description = "DSL for SVG using lucid for HTML";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "lucid-svg_0_6_0_0" = callPackage
+ "lucid-svg" = callPackage
({ mkDerivation, base, blaze-builder, lucid, text, transformers }:
mkDerivation {
pname = "lucid-svg";
@@ -124076,7 +124761,6 @@ self: {
homepage = "http://github.com/jeffreyrosenbluth/lucid-svg.git";
description = "DSL for SVG using lucid for HTML";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"lucienne" = callPackage
@@ -124149,8 +124833,8 @@ self: {
}:
mkDerivation {
pname = "luminance";
- version = "0.8.2.1";
- sha256 = "c0952ec7314fd13faf10326648cf49561da4687d5e011d19694d84c2c26ddd51";
+ version = "0.9";
+ sha256 = "8bbee1483bca9a073a8ca7f4f1d3bec00f99c3d59bfa637702afda5a88eb2ada";
libraryHaskellDepends = [
base containers contravariant dlist gl linear mtl resourcet
semigroups transformers vector void
@@ -124166,8 +124850,8 @@ self: {
}:
mkDerivation {
pname = "luminance-samples";
- version = "0.8";
- sha256 = "35580954897bcb2fdbd7eecc14982b44f5026e64be08d7398f8cc7fa0925a962";
+ version = "0.9";
+ sha256 = "1ce2b8ff49c34bd529bcbe8e30f042f327a970b7a6d43dbdd3939b17cfa44bec";
isLibrary = false;
isExecutable = true;
executableHaskellDepends = [
@@ -124485,6 +125169,7 @@ self: {
base bytestring HUnit io-streams QuickCheck test-framework
test-framework-hunit test-framework-quickcheck2
];
+ jailbreak = true;
homepage = "https://github.com/hvr/lzma-streams";
description = "IO-Streams interface for lzma/xz compression";
license = stdenv.lib.licenses.bsd3;
@@ -125627,6 +126312,7 @@ self: {
aeson base bytestring QuickCheck raw-strings-qq tasty tasty-hunit
tasty-quickcheck text
];
+ jailbreak = true;
description = "Library for interfacing with the Mandrill JSON API";
license = stdenv.lib.licenses.mit;
hydraPlatforms = stdenv.lib.platforms.none;
@@ -125651,6 +126337,7 @@ self: {
aeson base bytestring QuickCheck raw-strings-qq tasty tasty-hunit
tasty-quickcheck text
];
+ jailbreak = true;
description = "Library for interfacing with the Mandrill JSON API";
license = stdenv.lib.licenses.mit;
hydraPlatforms = stdenv.lib.platforms.none;
@@ -125733,6 +126420,7 @@ self: {
template-haskell text time tls transformers transformers-base
unordered-containers utf8-string vector wai warp x509-system
];
+ jailbreak = true;
doCheck = false;
homepage = "https://github.com/prowdsponsor/mangopay";
description = "Bindings to the MangoPay API";
@@ -127813,8 +128501,8 @@ self: {
}:
mkDerivation {
pname = "microlens-platform";
- version = "0.1.5.0";
- sha256 = "3c705ad7a4732a0ac4deb82b1837b0fa247a6796bd64dbf1125edf135e2abd04";
+ version = "0.1.6.0";
+ sha256 = "7ddec415baac4a9f44d6cd1c14976990b5e9e5bc34cb399c29d2a0361b311194";
libraryHaskellDepends = [
base hashable microlens microlens-ghc microlens-mtl microlens-th
text unordered-containers vector
@@ -127966,6 +128654,7 @@ self: {
base containers diagrams-lib diagrams-postscript event-list midi
non-empty optparse-applicative utility-ht
];
+ jailbreak = true;
homepage = "http://hub.darcs.net/thielema/midi-music-box";
description = "Convert MIDI file to music box punch tape";
license = stdenv.lib.licenses.bsd3;
@@ -128135,8 +128824,8 @@ self: {
}:
mkDerivation {
pname = "milena";
- version = "0.4.0.1";
- sha256 = "5349bf26d1c0bc6147e84219d09f065b313413aba026e060a92bcc23e9ec2cb5";
+ version = "0.5.0.0";
+ sha256 = "fbae487cc6e61fa6cde0ba79b4d0df28c75e1af9c0d75970b7685a7beb18b63a";
libraryHaskellDepends = [
base bytestring cereal containers digest lens lifted-base mtl
murmur-hash network random resource-pool semigroups transformers
@@ -131033,6 +131722,7 @@ self: {
version = "0.4.0.2";
sha256 = "ccf05d44831dad32d52da1d4176fc77f05f4a5f7f71719e4452fd5069b80ba32";
libraryHaskellDepends = [ base groups semigroupoids semigroups ];
+ jailbreak = true;
description = "Various extra monoid-related definitions and utilities";
license = stdenv.lib.licenses.bsd3;
hydraPlatforms = stdenv.lib.platforms.none;
@@ -132188,6 +132878,7 @@ self: {
testHaskellDepends = [
base HUnit test-framework test-framework-hunit
];
+ jailbreak = true;
homepage = "https://github.com/aka-bash0r/multi-cabal";
description = "A tool supporting multi cabal project builds";
license = stdenv.lib.licenses.mit;
@@ -132546,6 +133237,7 @@ self: {
base base16-bytestring bytestring HUnit QuickCheck test-framework
test-framework-hunit test-framework-quickcheck2
];
+ jailbreak = true;
homepage = "http://github.com/plaprade/murmur3";
description = "Pure Haskell implementation of the MurmurHash3 x86_32 algorithm";
license = stdenv.lib.licenses.publicDomain;
@@ -133982,6 +134674,7 @@ self: {
array base bytestring cereal HUnit QuickCheck test-framework
test-framework-hunit test-framework-quickcheck2 text zlib
];
+ jailbreak = true;
homepage = "https://github.com/acfoltzer/nbt";
description = "A parser/serializer for Minecraft's Named Binary Tag (NBT) data format";
license = stdenv.lib.licenses.bsd3;
@@ -134022,7 +134715,7 @@ self: {
license = stdenv.lib.licenses.gpl3;
}) {inherit (pkgs) ncurses;};
- "ndjson-conduit" = callPackage
+ "ndjson-conduit_0_1_0_2" = callPackage
({ mkDerivation, aeson, attoparsec, base, bytestring, conduit }:
mkDerivation {
pname = "ndjson-conduit";
@@ -134034,6 +134727,21 @@ self: {
homepage = "https://github.com/srijs/haskell-ndjson-conduit";
description = "Conduit-based parsing and serialization for newline delimited JSON";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "ndjson-conduit" = callPackage
+ ({ mkDerivation, aeson, attoparsec, base, bytestring, conduit }:
+ mkDerivation {
+ pname = "ndjson-conduit";
+ version = "0.1.0.3";
+ sha256 = "a4f9e574af6d565ea9edc313c78ea9ee95c957d2abe61f4a0991a49231e9b592";
+ libraryHaskellDepends = [
+ aeson attoparsec base bytestring conduit
+ ];
+ homepage = "https://github.com/srijs/haskell-ndjson-conduit";
+ description = "Conduit-based parsing and serialization for newline delimited JSON";
+ license = stdenv.lib.licenses.mit;
}) {};
"neat" = callPackage
@@ -136148,6 +136856,8 @@ self: {
sha256 = "a5ed63130601fa2f97b105adeced7e691ee7924bcfd3f7da6605495f7a655fe2";
libraryHaskellDepends = [ base ];
testHaskellDepends = [ base hspec HUnit ];
+ jailbreak = true;
+ doCheck = false;
description = "A typeclass and set of functions for working with newtypes, with generics support";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -136226,15 +136936,13 @@ self: {
}) {};
"niagra" = callPackage
- ({ mkDerivation, base, criterion, mtl, text, transformers }:
+ ({ mkDerivation, base, containers, mtl, text, transformers }:
mkDerivation {
pname = "niagra";
- version = "0.0.1";
- sha256 = "848bd318b105bd23de959d3a6e026de1577337fcae803bfa1dc70461491c9058";
- isLibrary = true;
- isExecutable = true;
- libraryHaskellDepends = [ base mtl text transformers ];
- executableHaskellDepends = [ base criterion text transformers ];
+ version = "0.1.0";
+ sha256 = "dd95efe3c72f07dc4e82ace01b13f26406dc0d40a476416dbbb0e6d77dcdcf7d";
+ libraryHaskellDepends = [ base containers mtl text transformers ];
+ homepage = "https://github.com/fhsjaagshs/niagra";
description = "CSS EDSL for Haskell";
license = stdenv.lib.licenses.mit;
}) {};
@@ -137198,13 +137906,12 @@ self: {
}:
mkDerivation {
pname = "numeric-qq";
- version = "0.1.2";
- sha256 = "95d578a72288375fdfddd64033f1829b6be7c431b46fcf49199f3cf67154b17f";
+ version = "0.1.3";
+ sha256 = "beaf86d233adad0d6dcf23769e4e0f3f43a1b551f19fb772fbcfedd885f19b85";
libraryHaskellDepends = [
base loch-th placeholders template-haskell
];
testHaskellDepends = [ base directory doctest filepath ];
- jailbreak = true;
homepage = "https://github.com/nikita-volkov/numeric-qq";
description = "Quasi-quoters for numbers of different bases";
license = stdenv.lib.licenses.mit;
@@ -137411,6 +138118,7 @@ self: {
aeson base bytestring lens lens-aeson pipes pipes-aeson
pipes-bytestring pipes-http pipes-parse text time wreq
];
+ jailbreak = true;
homepage = "https://github.com/bts/nylas-hs";
description = "Client for the Nylas API";
license = stdenv.lib.licenses.bsd3;
@@ -137656,6 +138364,7 @@ self: {
testHaskellDepends = [
base HUnit test-framework test-framework-hunit
];
+ jailbreak = true;
description = "Interface to the Online Encyclopedia of Integer Sequences (OEIS)";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -137770,6 +138479,8 @@ self: {
pname = "old-locale";
version = "1.0.0.7";
sha256 = "dbaf8bf6b888fb98845705079296a23c3f40ee2f449df7312f7f7f1de18d7b50";
+ revision = "1";
+ editedCabalFile = "f87c7c0495bf863c82ca051e68b10b3133a286aed11f0291253385a5856a6ceb";
libraryHaskellDepends = [ base ];
description = "locale library";
license = stdenv.lib.licenses.bsd3;
@@ -137781,6 +138492,8 @@ self: {
pname = "old-time";
version = "1.1.0.3";
sha256 = "1ccb158b0f7851715d36b757c523b026ca1541e2030d02239802ba39b4112bc1";
+ revision = "1";
+ editedCabalFile = "c1a016dd23d38e879b7972ce95f22b1498d39fc62a7b755ff5f344bfeeaf796e";
libraryHaskellDepends = [ base old-locale ];
description = "Time library";
license = stdenv.lib.licenses.bsd3;
@@ -137949,6 +138662,22 @@ self: {
license = stdenv.lib.licenses.mit;
}) {};
+ "once" = callPackage
+ ({ mkDerivation, base, containers, hashable, template-haskell
+ , unordered-containers
+ }:
+ mkDerivation {
+ pname = "once";
+ version = "0.1.0.0";
+ sha256 = "9a59a79946079ea2d00469f9c4a6a319ad96425f38f4b90093789109c268a7ab";
+ libraryHaskellDepends = [
+ base containers hashable template-haskell unordered-containers
+ ];
+ homepage = "https://anonscm.debian.org/cgit/users/kaction-guest/haskell-once.git";
+ description = "memoization for IO actions and functions";
+ license = stdenv.lib.licenses.gpl3;
+ }) {};
+
"one-liner" = callPackage
({ mkDerivation, base, contravariant, ghc-prim, transformers }:
mkDerivation {
@@ -138180,6 +138909,7 @@ self: {
base containers contravariant multiset postgresql-simple
product-profunctors profunctors QuickCheck semigroups time
];
+ jailbreak = true;
doCheck = false;
homepage = "https://github.com/tomjaguarpaw/haskell-opaleye";
description = "An SQL-generating DSL targeting PostgreSQL";
@@ -139206,7 +139936,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "optparse-applicative" = callPackage
+ "optparse-applicative_0_11_0_2" = callPackage
({ mkDerivation, ansi-wl-pprint, base, process, transformers
, transformers-compat
}:
@@ -139220,9 +139950,10 @@ self: {
homepage = "https://github.com/pcapriotti/optparse-applicative";
description = "Utilities and combinators for parsing command line options";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "optparse-applicative_0_12_0_0" = callPackage
+ "optparse-applicative" = callPackage
({ mkDerivation, ansi-wl-pprint, base, process, transformers
, transformers-compat
}:
@@ -139236,7 +139967,6 @@ self: {
homepage = "https://github.com/pcapriotti/optparse-applicative";
description = "Utilities and combinators for parsing command line options";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"optparse-declarative" = callPackage
@@ -140050,30 +140780,6 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "pagerduty" = callPackage
- ({ mkDerivation, aeson, base, bifunctors, bytestring
- , bytestring-conversion, conduit, data-default-class, exceptions
- , generics-sop, http-client, http-types, lens, lens-aeson, mmorph
- , monad-control, mtl, template-haskell, text, time
- , time-locale-compat, transformers, transformers-base
- , transformers-compat, unordered-containers
- }:
- mkDerivation {
- pname = "pagerduty";
- version = "0.0.4";
- sha256 = "41549771fe6689ffb97806e615e86a3c7384177cbcc1c77873167a3e9d05be9c";
- libraryHaskellDepends = [
- aeson base bifunctors bytestring bytestring-conversion conduit
- data-default-class exceptions generics-sop http-client http-types
- lens lens-aeson mmorph monad-control mtl template-haskell text time
- time-locale-compat transformers transformers-base
- transformers-compat unordered-containers
- ];
- homepage = "http://github.com/brendanhay/pagerduty";
- description = "Client library for PagerDuty Integration and REST APIs";
- license = "unknown";
- }) {};
-
"pagure-hook-receiver" = callPackage
({ mkDerivation, base, containers, scotty, shelly, text
, transformers, unix
@@ -140318,11 +141024,11 @@ self: {
, directory, executable-path, extensible-exceptions, filemanip
, filepath, haddock-library, highlighting-kate, hslua, HTTP
, http-client, http-client-tls, http-types, HUnit, JuicyPixels, mtl
- , network, network-uri, old-time, pandoc-types, parsec, process
- , QuickCheck, random, scientific, SHA, syb, tagsoup, temporary
- , test-framework, test-framework-hunit, test-framework-quickcheck2
- , texmath, text, time, unordered-containers, vector, xml, yaml
- , zip-archive, zlib
+ , network, network-uri, old-locale, old-time, pandoc-types, parsec
+ , process, QuickCheck, random, scientific, SHA, syb, tagsoup
+ , temporary, test-framework, test-framework-hunit
+ , test-framework-quickcheck2, texmath, text, time
+ , unordered-containers, vector, xml, yaml, zip-archive, zlib
}:
mkDerivation {
pname = "pandoc";
@@ -140336,9 +141042,10 @@ self: {
bytestring cmark containers data-default deepseq-generics directory
extensible-exceptions filemanip filepath haddock-library
highlighting-kate hslua HTTP http-client http-client-tls http-types
- JuicyPixels mtl network network-uri old-time pandoc-types parsec
- process random scientific SHA syb tagsoup temporary texmath text
- time unordered-containers vector xml yaml zip-archive zlib
+ JuicyPixels mtl network network-uri old-locale old-time
+ pandoc-types parsec process random scientific SHA syb tagsoup
+ temporary texmath text time unordered-containers vector xml yaml
+ zip-archive zlib
];
executableHaskellDepends = [
aeson base bytestring containers directory extensible-exceptions
@@ -140351,6 +141058,7 @@ self: {
process QuickCheck syb test-framework test-framework-hunit
test-framework-quickcheck2 text zip-archive
];
+ jailbreak = true;
doCheck = false;
homepage = "http://pandoc.org";
description = "Conversion between markup formats";
@@ -140636,6 +141344,7 @@ self: {
aeson base bytestring directory filepath pandoc pandoc-types
process temporary text yaml
];
+ jailbreak = true;
doCheck = false;
description = "Supports using pandoc with citeproc";
license = stdenv.lib.licenses.bsd3;
@@ -140668,6 +141377,7 @@ self: {
aeson base bytestring directory filepath pandoc pandoc-types
process temporary text yaml
];
+ jailbreak = true;
doCheck = false;
description = "Supports using pandoc with citeproc";
license = stdenv.lib.licenses.bsd3;
@@ -140700,6 +141410,7 @@ self: {
aeson base bytestring directory filepath pandoc pandoc-types
process temporary text yaml
];
+ jailbreak = true;
doCheck = false;
description = "Supports using pandoc with citeproc";
license = stdenv.lib.licenses.bsd3;
@@ -140933,6 +141644,7 @@ self: {
libraryHaskellDepends = [
aeson base bytestring containers deepseq-generics ghc-prim syb
];
+ jailbreak = true;
homepage = "http://johnmacfarlane.net/pandoc";
description = "Types for representing a structured document";
license = "GPL";
@@ -140950,6 +141662,7 @@ self: {
libraryHaskellDepends = [
aeson base bytestring containers deepseq-generics ghc-prim syb
];
+ jailbreak = true;
homepage = "http://johnmacfarlane.net/pandoc";
description = "Types for representing a structured document";
license = stdenv.lib.licenses.bsd3;
@@ -141383,8 +142096,8 @@ self: {
({ mkDerivation, base, containers }:
mkDerivation {
pname = "parseargs";
- version = "0.2.0.3";
- sha256 = "252276e93adc941218220891a82a7b6622eacf829eda8b753c476fb13ece0073";
+ version = "0.2.0.4";
+ sha256 = "79241584c88dbde0abd5dd32a079b9baaad4a87b136a19e78492141ace1aa090";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [ base containers ];
@@ -141406,6 +142119,7 @@ self: {
testHaskellDepends = [
base HUnit test-framework test-framework-hunit
];
+ jailbreak = true;
homepage = "http://www.cs.uu.nl/~daan/parsec.html";
description = "Monadic parser combinators";
license = stdenv.lib.licenses.bsd3;
@@ -141424,6 +142138,7 @@ self: {
testHaskellDepends = [
base HUnit test-framework test-framework-hunit
];
+ jailbreak = true;
homepage = "http://www.cs.uu.nl/~daan/parsec.html";
description = "Monadic parser combinators";
license = stdenv.lib.licenses.bsd3;
@@ -141442,6 +142157,8 @@ self: {
testHaskellDepends = [
base HUnit test-framework test-framework-hunit
];
+ jailbreak = true;
+ doCheck = false;
homepage = "https://github.com/aslatter/parsec";
description = "Monadic parser combinators";
license = stdenv.lib.licenses.bsd3;
@@ -142160,8 +142877,8 @@ self: {
}:
mkDerivation {
pname = "pathtype";
- version = "0.7";
- sha256 = "fb6512d284c41feb1d31375cb47144ab13d4f4435d62dc977c511dacdb70e616";
+ version = "0.7.0.1";
+ sha256 = "f63692c829eed50588feb68a4ba1a711354f680553c9788c9c4795f821ff47b4";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -143610,7 +144327,7 @@ self: {
maintainers = with stdenv.lib.maintainers; [ psibi ];
}) {};
- "persistent" = callPackage
+ "persistent_2_2_3" = callPackage
({ mkDerivation, aeson, attoparsec, base, base64-bytestring
, blaze-html, blaze-markup, bytestring, conduit, containers
, exceptions, fast-logger, hspec, http-api-data, lifted-base
@@ -143641,10 +144358,11 @@ self: {
homepage = "http://www.yesodweb.com/book/persistent";
description = "Type-safe, multi-backend data serialization";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
maintainers = with stdenv.lib.maintainers; [ psibi ];
}) {};
- "persistent_2_2_4" = callPackage
+ "persistent" = callPackage
({ mkDerivation, aeson, attoparsec, base, base64-bytestring
, blaze-html, blaze-markup, bytestring, conduit, containers
, exceptions, fast-logger, hspec, http-api-data, lifted-base
@@ -143675,7 +144393,6 @@ self: {
homepage = "http://www.yesodweb.com/book/persistent";
description = "Type-safe, multi-backend data serialization";
license = stdenv.lib.licenses.mit;
- hydraPlatforms = stdenv.lib.platforms.none;
maintainers = with stdenv.lib.maintainers; [ psibi ];
}) {};
@@ -144747,6 +145464,7 @@ self: {
testHaskellDepends = [
aeson base bytestring hspec persistent QuickCheck text transformers
];
+ jailbreak = true;
homepage = "http://www.yesodweb.com/book/persistent";
description = "Type-safe, non-relational, multi-backend persistence";
license = stdenv.lib.licenses.mit;
@@ -144772,6 +145490,7 @@ self: {
testHaskellDepends = [
aeson base bytestring hspec persistent QuickCheck text transformers
];
+ jailbreak = true;
homepage = "http://www.yesodweb.com/book/persistent";
description = "Type-safe, non-relational, multi-backend persistence";
license = stdenv.lib.licenses.mit;
@@ -145210,6 +145929,30 @@ self: {
license = stdenv.lib.licenses.gpl3;
}) {};
+ "phoityne" = callPackage
+ ({ mkDerivation, base, bytestring, Cabal, cmdargs, conduit
+ , conduit-extra, ConfigFile, containers, directory, filepath, gtk3
+ , hslogger, HStringTemplate, MissingH, mtl, parsec, process
+ , resourcet, safe, text, transformers
+ }:
+ mkDerivation {
+ pname = "phoityne";
+ version = "0.0.1.0";
+ sha256 = "c95571f5da2e8bf383f473a3750a4d1538bb543b3ad46e26d62218a56604f5fe";
+ revision = "1";
+ editedCabalFile = "a65bbf3246f27cbf6bff03bbb436b87e6ab05185b458d47159836a1e5815c621";
+ isLibrary = false;
+ isExecutable = true;
+ executableHaskellDepends = [
+ base bytestring Cabal cmdargs conduit conduit-extra ConfigFile
+ containers directory filepath gtk3 hslogger HStringTemplate
+ MissingH mtl parsec process resourcet safe text transformers
+ ];
+ homepage = "under construction";
+ description = "ghci debug viewer with simple editor";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"phone-numbers" = callPackage
({ mkDerivation, base, bytestring, phonenumber }:
mkDerivation {
@@ -145603,8 +146346,8 @@ self: {
}:
mkDerivation {
pname = "pinchot";
- version = "0.4.0.0";
- sha256 = "362b2f8c0c1d4b4d768e8ae98a5c3d68db27d2b713055878079d2ff7ff905495";
+ version = "0.6.0.0";
+ sha256 = "53cada3eace3bd2ffa297944adb1260ad71ebd8761defe0fd67053327e2d75a4";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -145756,7 +146499,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "pipes-aeson" = callPackage
+ "pipes-aeson_0_4_1_4" = callPackage
({ mkDerivation, aeson, attoparsec, base, bytestring, pipes
, pipes-attoparsec, pipes-bytestring, pipes-parse, transformers
}:
@@ -145768,6 +146511,25 @@ self: {
aeson attoparsec base bytestring pipes pipes-attoparsec
pipes-bytestring pipes-parse transformers
];
+ jailbreak = true;
+ homepage = "https://github.com/k0001/pipes-aeson";
+ description = "Encode and decode JSON streams using Aeson and Pipes";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "pipes-aeson" = callPackage
+ ({ mkDerivation, aeson, attoparsec, base, bytestring, pipes
+ , pipes-attoparsec, pipes-bytestring, pipes-parse, transformers
+ }:
+ mkDerivation {
+ pname = "pipes-aeson";
+ version = "0.4.1.5";
+ sha256 = "74605983d914128d437cfac5e34ebdecb81426c29337af2b7d1e7a1970173595";
+ libraryHaskellDepends = [
+ aeson attoparsec base bytestring pipes pipes-attoparsec
+ pipes-bytestring pipes-parse transformers
+ ];
homepage = "https://github.com/k0001/pipes-aeson";
description = "Encode and decode JSON streams using Aeson and Pipes";
license = stdenv.lib.licenses.bsd3;
@@ -145939,8 +146701,8 @@ self: {
}:
mkDerivation {
pname = "pipes-cacophony";
- version = "0.1.2";
- sha256 = "b97b632ebf6ca87e5245a2d080fedbd7eabc0337b723080d062a12ebb1ff8515";
+ version = "0.1.3";
+ sha256 = "166d95fe84ba7edd62b3d9861b9d3e0e16fd18ec4d99e3b0b44abaf531094e89";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [ base bytestring cacophony pipes ];
@@ -146044,7 +146806,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "pipes-concurrency" = callPackage
+ "pipes-concurrency_2_0_3" = callPackage
({ mkDerivation, async, base, pipes, stm }:
mkDerivation {
pname = "pipes-concurrency";
@@ -146054,6 +146816,19 @@ self: {
testHaskellDepends = [ async base pipes stm ];
description = "Concurrency for the pipes ecosystem";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "pipes-concurrency" = callPackage
+ ({ mkDerivation, async, base, pipes, stm }:
+ mkDerivation {
+ pname = "pipes-concurrency";
+ version = "2.0.4";
+ sha256 = "195ff8fe0551bc03cca2e150e1bf235276c8f5b3c286ff3fddefa5074d6a85d3";
+ libraryHaskellDepends = [ base pipes stm ];
+ testHaskellDepends = [ async base pipes stm ];
+ description = "Concurrency for the pipes ecosystem";
+ license = stdenv.lib.licenses.bsd3;
}) {};
"pipes-conduit" = callPackage
@@ -146885,6 +147660,7 @@ self: {
base bytestring optparse-applicative text
];
testHaskellDepends = [ base bytestring doctest hlint hspec ];
+ jailbreak = true;
homepage = "https://github.com/pjones/playlists";
description = "Library and executable for working with playlist files";
license = stdenv.lib.licenses.bsd3;
@@ -146984,6 +147760,7 @@ self: {
version = "0.2.0.2";
sha256 = "b6fab12df045798e95ee7e55ff19cea709d179d66e7a3770194daba0b394e3a2";
libraryHaskellDepends = [ base glib gtk hmatrix mtl plot process ];
+ jailbreak = true;
homepage = "http://code.haskell.org/plot";
description = "GTK plots and interaction with GHCi";
license = stdenv.lib.licenses.bsd3;
@@ -146991,18 +147768,6 @@ self: {
}) {};
"plot-gtk" = callPackage
- ({ mkDerivation, base, glib, gtk, hmatrix, mtl, plot, process }:
- mkDerivation {
- pname = "plot-gtk";
- version = "0.2.0.3";
- sha256 = "fe433cdb56b1585d3fc94b51d60324a05f5f9419d861303986336e5889c1fefe";
- libraryHaskellDepends = [ base glib gtk hmatrix mtl plot process ];
- homepage = "http://code.haskell.org/plot";
- description = "GTK plots and interaction with GHCi";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "plot-gtk_0_2_0_4" = callPackage
({ mkDerivation, base, glib, gtk, hmatrix, mtl, plot, process }:
mkDerivation {
pname = "plot-gtk";
@@ -147012,7 +147777,6 @@ self: {
homepage = "http://code.haskell.org/plot";
description = "GTK plots and interaction with GHCi";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"plot-gtk-ui" = callPackage
@@ -147207,8 +147971,8 @@ self: {
}:
mkDerivation {
pname = "png-file";
- version = "0.0.1.1";
- sha256 = "20d43faaaf15d0c9ae79867262df1a2e2948ef312b6d25f9d546f4261cbea5a2";
+ version = "0.0.1.3";
+ sha256 = "467be3c535e0d7fd1a26cd287c1b335d22c3aa68263578b642b28e190146b2c1";
libraryHaskellDepends = [
array base binary-file bytestring monads-tf template-haskell zlib
];
@@ -147887,8 +148651,8 @@ self: {
}:
mkDerivation {
pname = "pontarius-xmpp";
- version = "0.4.5";
- sha256 = "b35bb79b206250039a6a941f17e784d7760fd4197d80821319461031d6449f6d";
+ version = "0.5.0";
+ sha256 = "adf8e8627819dbed26dff553e75b1c9934be049495faa5caee46445ffa3059fe";
libraryHaskellDepends = [
attoparsec base base64-bytestring binary bytestring conduit
containers crypto-api crypto-random cryptohash cryptohash-cryptoapi
@@ -148037,6 +148801,7 @@ self: {
];
libraryPkgconfigDepends = [ gdk2 gdk_pixbuf pango poppler ];
libraryToolDepends = [ gtk2hs-buildtools ];
+ jailbreak = true;
homepage = "http://projects.haskell.org/gtk2hs";
description = "Binding to the Poppler";
license = stdenv.lib.licenses.gpl2;
@@ -148388,7 +149153,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "postgresql-binary" = callPackage
+ "postgresql-binary_0_5_2_1" = callPackage
({ mkDerivation, attoparsec, base-prelude, bytestring, HTF, loch-th
, placeholders, postgresql-libpq, QuickCheck, quickcheck-instances
, scientific, text, time, transformers, uuid
@@ -148410,9 +149175,10 @@ self: {
homepage = "https://github.com/nikita-volkov/postgresql-binary";
description = "Encoders and decoders for the PostgreSQL's binary format";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "postgresql-binary_0_7_4_1" = callPackage
+ "postgresql-binary" = callPackage
({ mkDerivation, aeson, base, base-prelude, binary-parser
, bytestring, conversion, conversion-bytestring, conversion-text
, either, foldl, loch-th, placeholders, postgresql-libpq
@@ -148435,11 +149201,10 @@ self: {
tasty-quickcheck tasty-smallcheck text time transformers uuid
vector
];
- jailbreak = true;
+ doCheck = false;
homepage = "https://github.com/nikita-volkov/postgresql-binary";
description = "Encoders and decoders for the PostgreSQL's binary format";
license = stdenv.lib.licenses.mit;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"postgresql-config" = callPackage
@@ -148718,8 +149483,8 @@ self: {
}:
mkDerivation {
pname = "postgresql-simple";
- version = "0.5.1.1";
- sha256 = "e80bb4655745d5802b70c9276cee1a3772892451ea985047dd77fd1c242a43be";
+ version = "0.5.1.2";
+ sha256 = "d289eb7835b001550b9f9887e1fae050957797ead62394a85e6f5ae700976756";
libraryHaskellDepends = [
aeson attoparsec base bytestring bytestring-builder
case-insensitive containers hashable postgresql-libpq scientific
@@ -148734,30 +149499,6 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
- "postgresql-simple_0_5_1_2" = callPackage
- ({ mkDerivation, aeson, attoparsec, base, base16-bytestring
- , bytestring, bytestring-builder, case-insensitive, containers
- , cryptohash, hashable, HUnit, postgresql-libpq, scientific
- , template-haskell, text, time, transformers, uuid-types, vector
- }:
- mkDerivation {
- pname = "postgresql-simple";
- version = "0.5.1.2";
- sha256 = "d289eb7835b001550b9f9887e1fae050957797ead62394a85e6f5ae700976756";
- libraryHaskellDepends = [
- aeson attoparsec base bytestring bytestring-builder
- case-insensitive containers hashable postgresql-libpq scientific
- template-haskell text time transformers uuid-types vector
- ];
- testHaskellDepends = [
- aeson base base16-bytestring bytestring containers cryptohash HUnit
- text time vector
- ];
- description = "Mid-Level PostgreSQL client library";
- license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- }) {};
-
"postgresql-simple-migration" = callPackage
({ mkDerivation, base, base64-bytestring, bytestring, cryptohash
, directory, hspec, postgresql-simple, time
@@ -148905,6 +149646,7 @@ self: {
unordered-containers vector wai wai-cors wai-extra
wai-middleware-static warp
];
+ jailbreak = true;
homepage = "https://github.com/begriffs/postgrest";
description = "REST API for any Postgres database";
license = stdenv.lib.licenses.mit;
@@ -149199,7 +149941,6 @@ self: {
quickcheck-instances semigroups tasty tasty-hunit tasty-quickcheck
tries unordered-containers
];
- doCheck = false;
description = "Predicative tries";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -149404,8 +150145,8 @@ self: {
({ mkDerivation, base }:
mkDerivation {
pname = "prelude-edsl";
- version = "0.3";
- sha256 = "8250585549ad9c64c2b0407157cacb8a4a2dd0dcf77c8de4b005adddf2b98008";
+ version = "0.3.1";
+ sha256 = "7b6233ca1eeb916185f87a7ba9ba8007a3b3f3307b795e52b32444fbcce44658";
libraryHaskellDepends = [ base ];
homepage = "https://github.com/emilaxelsson/prelude-edsl";
description = "An EDSL-motivated subset of the Prelude";
@@ -149855,6 +150596,8 @@ self: {
pname = "primitive";
version = "0.6.1.0";
sha256 = "93731fa72eaf74e8e83453f080828e18cec9fbc82bee91b49ba8b61c043d38c8";
+ revision = "1";
+ editedCabalFile = "6ec7c2455c437aba71f856b797e7db440c83719509aa63a9a3d1b4652ca3683d";
libraryHaskellDepends = [ base ghc-prim transformers ];
testHaskellDepends = [ base ghc-prim ];
homepage = "https://github.com/haskell/primitive";
@@ -150687,13 +151430,14 @@ self: {
}) {};
"projectroot" = callPackage
- ({ mkDerivation, base, directory }:
+ ({ mkDerivation, base, directory, hspec, QuickCheck }:
mkDerivation {
pname = "projectroot";
- version = "0.1.0.1";
- sha256 = "bce014e23b028ca28597d0541e3a92616b4ce2409d4074bf14d21d5393549298";
+ version = "0.2.0.1";
+ sha256 = "53753086543ed199cf6f0d76852660f5d74c0874bfdee21c0f4e0d845b7e1ab8";
libraryHaskellDepends = [ base directory ];
- homepage = "https://gitlab.com/yamadapc/haskell-projectroot";
+ testHaskellDepends = [ base hspec QuickCheck ];
+ homepage = "https://github.com/yamadapc/haskell-projectroot";
description = "Bindings to the projectroot C logic";
license = stdenv.lib.licenses.mit;
}) {};
@@ -150868,8 +151612,8 @@ self: {
}:
mkDerivation {
pname = "propellor";
- version = "2.15.0";
- sha256 = "93899ba66749337382158cbb9c2289341eb8d104d26b47dc05c71fe68ba8f53e";
+ version = "2.15.1";
+ sha256 = "44931af0094e7831910dd691687c5ef1bff7553e327cc95dcbf857cf463c8b9e";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -151411,6 +152155,7 @@ self: {
array base deepseq ghc-prim hashable HUnit QuickCheck tagged
test-framework test-framework-hunit test-framework-quickcheck2
];
+ jailbreak = true;
description = "Pure priority search queues";
license = stdenv.lib.licenses.bsd3;
hydraPlatforms = stdenv.lib.platforms.none;
@@ -152014,6 +152759,7 @@ self: {
optparse-applicative parsec process time transformers
transformers-compat
];
+ jailbreak = true;
doCheck = false;
homepage = "http://www.purescript.org/";
description = "PureScript Programming Language Compiler";
@@ -152209,8 +152955,8 @@ self: {
}:
mkDerivation {
pname = "pusher-http-haskell";
- version = "0.2.1.0";
- sha256 = "deb588bf92977fccb22a731a5e9b31f70c4b6fe8b2fb4048df10f6123580b562";
+ version = "0.3.0.0";
+ sha256 = "50b4a5974e7e5fbf2fb77b3c59d5a790e7151c03e4ea046432548a2eb7d8d6ec";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -152912,6 +153658,7 @@ self: {
revision = "1";
editedCabalFile = "fbefc480103a2c6661d5e735f53aa387ae2c8b2e482ffab87955be34b9a69be6";
libraryHaskellDepends = [ base HUnit QuickCheck ];
+ jailbreak = true;
description = "Use HUnit assertions as QuickCheck properties";
license = stdenv.lib.licenses.mit;
hydraPlatforms = stdenv.lib.platforms.none;
@@ -154072,6 +154819,8 @@ self: {
testHaskellDepends = [
base HUnit test-framework test-framework-hunit
];
+ jailbreak = true;
+ doCheck = false;
homepage = "http://haskell-distributed.github.com";
description = "Like Data.Dynamic/Data.Typeable but with support for rank-1 polymorphic types";
license = stdenv.lib.licenses.bsd3;
@@ -154155,6 +154904,7 @@ self: {
base directory filepath FontyFruity JuicyPixels
optparse-applicative Rasterific svg-tree
];
+ jailbreak = true;
description = "SVG renderer based on Rasterific";
license = stdenv.lib.licenses.bsd3;
hydraPlatforms = stdenv.lib.platforms.none;
@@ -155294,6 +156044,7 @@ self: {
QuickCheck random tasty tasty-ant-xml tasty-hunit tasty-quickcheck
vector
];
+ jailbreak = true;
homepage = "http://github.com/NicolasT/reedsolomon";
description = "Reed-Solomon Erasure Coding in Haskell";
license = stdenv.lib.licenses.mit;
@@ -155625,6 +156376,7 @@ self: {
base bifunctors containers profunctors reflex reflex-transformers
semigroups vector-space
];
+ jailbreak = true;
homepage = "https://github.com/saulzar/reflex-animation";
description = "Continuous animations support for reflex";
license = stdenv.lib.licenses.bsd3;
@@ -155688,6 +156440,7 @@ self: {
libraryHaskellDepends = [
base dependent-sum gloss reflex transformers
];
+ jailbreak = true;
homepage = "https://github.com/reflex-frp/reflex-gloss";
description = "An reflex interface for gloss";
license = stdenv.lib.licenses.bsd3;
@@ -155716,6 +156469,7 @@ self: {
base containers gloss lens linear mtl reflex reflex-animation
reflex-transformers transformers
];
+ jailbreak = true;
homepage = "https://github.com/saulzar/reflex-gloss-scene";
description = "A simple scene-graph using reflex and gloss";
license = stdenv.lib.licenses.bsd3;
@@ -155733,6 +156487,7 @@ self: {
libraryHaskellDepends = [
base containers lens mtl reflex semigroups stateWriter transformers
];
+ jailbreak = true;
homepage = "http://github.com/saulzar/reflex-transformers";
description = "Collections and switchable Monad transformers for Reflex";
license = stdenv.lib.licenses.bsd3;
@@ -155742,11 +156497,11 @@ self: {
({ mkDerivation, base, containers, mtl, text }:
mkDerivation {
pname = "reform";
- version = "0.2.7";
- sha256 = "75a921d5d100ecb607ec84c4c0098465021b1729eb2d0924b6663b8710634b4a";
+ version = "0.2.7.1";
+ sha256 = "59be2189906788ee4ecf82559aea2e7159a7a0c716c129cccce97e9d89819230";
libraryHaskellDepends = [ base containers mtl text ];
homepage = "http://www.happstack.com/";
- description = "reform is an HTML form generation and validation library";
+ description = "reform is a type-safe HTML form generation and validation library";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -155754,8 +156509,8 @@ self: {
({ mkDerivation, base, blaze-html, blaze-markup, reform, text }:
mkDerivation {
pname = "reform-blaze";
- version = "0.2.4";
- sha256 = "5e3a7dc72115b10664c5f7bd7a498155e58ac1e092738b9339a68b05e5db9088";
+ version = "0.2.4.1";
+ sha256 = "d4acf094d75cef125e9d587646b9bbb66ce927b43ed16c99738f11e80569678b";
libraryHaskellDepends = [
base blaze-html blaze-markup reform text
];
@@ -155768,8 +156523,8 @@ self: {
({ mkDerivation, base, blaze-markup, reform, shakespeare, text }:
mkDerivation {
pname = "reform-hamlet";
- version = "0.0.5";
- sha256 = "8a841b4a31518ddd6da9b64f93c5527aaab9bdc67eaef70298c9455004e896b6";
+ version = "0.0.5.1";
+ sha256 = "a0271fc7580463d3790f26e651836e0030178444987c9132b3c74dab249286f2";
libraryHaskellDepends = [
base blaze-markup reform shakespeare text
];
@@ -155784,8 +156539,8 @@ self: {
}:
mkDerivation {
pname = "reform-happstack";
- version = "0.2.5";
- sha256 = "4c77c33e70edda15b9eff8102a12a552eb69eb5e1772b86e1e63d2b9c2ad5a89";
+ version = "0.2.5.1";
+ sha256 = "6fa06f0cc07251bf5ec38a553de468ede9b7495c4534ba9c3f96780c1adadaaa";
libraryHaskellDepends = [
base bytestring happstack-server mtl random reform text utf8-string
];
@@ -155798,8 +156553,8 @@ self: {
({ mkDerivation, base, hsp, hsx2hs, reform, text }:
mkDerivation {
pname = "reform-hsp";
- version = "0.2.6";
- sha256 = "3260df2cf6030d45900ecc5c4f5c407814322296a2b42938d0bee8d355d62f2a";
+ version = "0.2.6.1";
+ sha256 = "d961b22e1ef28a9cbf13ae7214335efcba3e00a4738f3f9a21fc543f61cf80a5";
libraryHaskellDepends = [ base hsp hsx2hs reform text ];
homepage = "http://www.happstack.com/";
description = "Add support for using HSP with Reform";
@@ -158123,6 +158878,7 @@ self: {
base bytestring HUnit mtl test-framework test-framework-hunit
transformers transformers-compat unordered-containers
];
+ jailbreak = true;
description = "Rest API library";
license = stdenv.lib.licenses.bsd3;
hydraPlatforms = stdenv.lib.platforms.none;
@@ -159019,8 +159775,8 @@ self: {
}:
mkDerivation {
pname = "rethinkdb";
- version = "2.2.0.0";
- sha256 = "a3e629d72bb63150f764c33e2fe507391ee1e77bd4097114fbca73a5d24ca429";
+ version = "2.2.0.2";
+ sha256 = "91c1ea290efa7f9336ef824832545cce401466cc773cde38ea2a8e0a763d0eb5";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -159030,7 +159786,6 @@ self: {
];
executableHaskellDepends = [ attoparsec base text ];
testHaskellDepends = [ base doctest ];
- doCheck = false;
homepage = "http://github.com/atnnn/haskell-rethinkdb";
description = "A driver for RethinkDB 2.1";
license = stdenv.lib.licenses.asl20;
@@ -159244,6 +159999,7 @@ self: {
base data-default-class exceptions hspec HUnit QuickCheck random
stm time transformers
];
+ jailbreak = true;
doCheck = false;
homepage = "http://github.com/Soostone/retry";
description = "Retry combinators for monadic actions that may fail";
@@ -159265,7 +160021,7 @@ self: {
license = stdenv.lib.licenses.mpl20;
}) {};
- "rev-state" = callPackage
+ "rev-state_0_1" = callPackage
({ mkDerivation, base, mtl }:
mkDerivation {
pname = "rev-state";
@@ -159275,9 +160031,10 @@ self: {
homepage = "https://github.com/DanBurton/rev-state#readme";
description = "Reverse State monad transformer";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "rev-state_0_1_1" = callPackage
+ "rev-state" = callPackage
({ mkDerivation, base, mtl }:
mkDerivation {
pname = "rev-state";
@@ -159288,7 +160045,6 @@ self: {
homepage = "https://github.com/DanBurton/rev-state#readme";
description = "Reverse State monad transformer";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"revdectime" = callPackage
@@ -159460,25 +160216,26 @@ self: {
"riak" = callPackage
({ mkDerivation, aeson, attoparsec, base, binary, blaze-builder
- , bytestring, containers, HUnit, monad-control, network
- , protocol-buffers, pureMD5, QuickCheck, random, resource-pool
- , riak-protobuf, test-framework, test-framework-hunit
- , test-framework-quickcheck2, text, time, transformers
+ , bytestring, containers, enclosed-exceptions, exceptions, HUnit
+ , mersenne-random-pure64, monad-control, network, protocol-buffers
+ , pureMD5, QuickCheck, random, random-shuffle, resource-pool
+ , riak-protobuf, tasty, tasty-hunit, tasty-quickcheck, text, time
+ , transformers, vector
}:
mkDerivation {
pname = "riak";
- version = "0.9.0.0";
- sha256 = "002d0646acdd0b80bd68c4a1ea3a91b56e8cf14c5b2fb1d497dcbbdafccd149c";
+ version = "0.9.1.1";
+ sha256 = "900597ea476350d76bb0b9c429ac0d438865fdaf885267e94695d1cd1c81e43f";
libraryHaskellDepends = [
aeson attoparsec base binary blaze-builder bytestring containers
- monad-control network protocol-buffers pureMD5 random resource-pool
- riak-protobuf text time transformers
+ enclosed-exceptions exceptions mersenne-random-pure64 monad-control
+ network protocol-buffers pureMD5 random random-shuffle
+ resource-pool riak-protobuf text time transformers vector
];
testHaskellDepends = [
- base bytestring containers HUnit QuickCheck test-framework
- test-framework-hunit test-framework-quickcheck2 text
+ base bytestring containers HUnit QuickCheck tasty tasty-hunit
+ tasty-quickcheck text
];
- doCheck = false;
homepage = "http://github.com/markhibberd/riak-haskell-client";
description = "A Haskell client for the Riak decentralized data store";
license = "unknown";
@@ -161785,15 +162542,15 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
- "sbv_5_6" = callPackage
+ "sbv_5_7" = callPackage
({ mkDerivation, array, async, base, base-compat, containers
- , crackNum, data-binary-ieee754, deepseq, directory, filepath, mtl
- , old-time, pretty, process, QuickCheck, random, syb
+ , crackNum, data-binary-ieee754, deepseq, directory, filepath
+ , HUnit, mtl, old-time, pretty, process, QuickCheck, random, syb
}:
mkDerivation {
pname = "sbv";
- version = "5.6";
- sha256 = "018c91265799931c434731cfd48e8592e42f399ab5958f4c70ffe48e83fd3fed";
+ version = "5.7";
+ sha256 = "dc63f66b56ed39d37996f6a983fbdf62086f66c91c4b52eefafb6e52e5ca9d2c";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -161801,6 +162558,12 @@ self: {
data-binary-ieee754 deepseq directory filepath mtl old-time pretty
process QuickCheck random syb
];
+ executableHaskellDepends = [
+ base data-binary-ieee754 directory filepath HUnit process syb
+ ];
+ testHaskellDepends = [
+ base data-binary-ieee754 directory filepath HUnit syb
+ ];
homepage = "http://leventerkok.github.com/sbv/";
description = "SMT Based Verification: Symbolic Haskell theorem prover using SMT solving";
license = stdenv.lib.licenses.bsd3;
@@ -161814,8 +162577,8 @@ self: {
}:
mkDerivation {
pname = "sbvPlugin";
- version = "0.1";
- sha256 = "08fc5562e6919ddb8db1fa8b5c16079f9832c3d755d58e987f25945f36903c0b";
+ version = "0.3";
+ sha256 = "095f50de108abc82047d13404a30990aaa71c66f5f71238fee7e909ccfe52a71";
libraryHaskellDepends = [
base containers ghc ghc-prim mtl sbv template-haskell
];
@@ -162783,6 +163546,7 @@ self: {
base bytestring hspec hspec-wai mtl QuickCheck scotty
string-conversions text wai
];
+ jailbreak = true;
homepage = "http://github.com/ehamberg/scotty-rest";
description = "Webmachine-style REST library for scotty";
license = stdenv.lib.licenses.bsd3;
@@ -162895,8 +163659,8 @@ self: {
}:
mkDerivation {
pname = "scroll";
- version = "1.20150323";
- sha256 = "0dc03b56be5bd2724a3f5e5fff2905587e68032767b23f927b52a462f1dedf1a";
+ version = "1.20151219";
+ sha256 = "4f91c20e645ee715c9d3549fffffcc58943bee4fb3ba2e622e0189ccb70dd050";
isLibrary = false;
isExecutable = true;
executableHaskellDepends = [
@@ -163153,20 +163917,21 @@ self: {
"sdr" = callPackage
({ mkDerivation, array, base, bytestring, cairo, cereal, Chart
, Chart-cairo, colour, containers, Decimal, dynamic-graph, either
- , fftwRaw, GLFW-b, OpenGL, optparse-applicative, pango, pipes
- , pipes-bytestring, pipes-concurrency, primitive, pulse-simple
- , QuickCheck, rtlsdr, storable-complex, test-framework
- , test-framework-quickcheck2, time, tuple, vector
+ , fftwRaw, GLFW-b, mwc-random, OpenGL, optparse-applicative, pango
+ , pipes, pipes-bytestring, pipes-concurrency, primitive
+ , pulse-simple, QuickCheck, rtlsdr, storable-complex
+ , test-framework, test-framework-quickcheck2, time, tuple, vector
}:
mkDerivation {
pname = "sdr";
- version = "0.1.0.5";
- sha256 = "80885f1eb0b8a5d5cce83bc7b819d04beb1f3b865b7fdf1030480aeec1605c1e";
+ version = "0.1.0.6";
+ sha256 = "bf6344447783ec530ef27c8e2c55aff57e4581696d156d1d8781f54577b33135";
libraryHaskellDepends = [
array base bytestring cairo cereal Chart Chart-cairo colour
- containers Decimal dynamic-graph either fftwRaw GLFW-b OpenGL
- optparse-applicative pango pipes pipes-bytestring pipes-concurrency
- primitive pulse-simple rtlsdr storable-complex time tuple vector
+ containers Decimal dynamic-graph either fftwRaw GLFW-b mwc-random
+ OpenGL optparse-applicative pango pipes pipes-bytestring
+ pipes-concurrency primitive pulse-simple rtlsdr storable-complex
+ time tuple vector
];
testHaskellDepends = [
base primitive QuickCheck storable-complex test-framework
@@ -163885,23 +164650,6 @@ self: {
}) {};
"semigroups" = callPackage
- ({ mkDerivation, base, bytestring, containers, deepseq, hashable
- , nats, tagged, text, unordered-containers
- }:
- mkDerivation {
- pname = "semigroups";
- version = "0.17.0.1";
- sha256 = "7930dbd98e023df8485a928ff11e4bee95a002fd41253f14c4447ba34f74773f";
- libraryHaskellDepends = [
- base bytestring containers deepseq hashable nats tagged text
- unordered-containers
- ];
- homepage = "http://github.com/ekmett/semigroups/";
- description = "Anything that associates";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "semigroups_0_18_0_1" = callPackage
({ mkDerivation, base, bytestring, containers, deepseq, hashable
, tagged, text, unordered-containers
}:
@@ -163916,7 +164664,6 @@ self: {
homepage = "http://github.com/ekmett/semigroups/";
description = "Anything that associates";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"semigroups-actions" = callPackage
@@ -164415,6 +165162,32 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "serv" = callPackage
+ ({ mkDerivation, aeson, base, bytestring, case-insensitive
+ , containers, http-media, http-types, HUnit, mtl, QuickCheck
+ , tagged, tasty, tasty-ant-xml, tasty-hunit, tasty-quickcheck, text
+ , time, transformers, wai, wai-extra, warp
+ }:
+ mkDerivation {
+ pname = "serv";
+ version = "0.1.0.0";
+ sha256 = "29d8124bcd00ae8ed28a37b6b7bcffa333cf4c30b845c9da725c71153274b371";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [
+ aeson base bytestring case-insensitive containers http-media
+ http-types mtl tagged text time transformers wai
+ ];
+ executableHaskellDepends = [ base text wai warp ];
+ testHaskellDepends = [
+ base HUnit QuickCheck tasty tasty-ant-xml tasty-hunit
+ tasty-quickcheck text wai wai-extra
+ ];
+ homepage = "http://github.com/tel/serv#readme";
+ description = "Dependently typed API server framework";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"servant_0_2_2" = callPackage
({ mkDerivation, base, hspec, parsec, QuickCheck
, string-conversions, template-haskell, text
@@ -164456,6 +165229,7 @@ self: {
filepath hspec parsec QuickCheck quickcheck-instances
string-conversions text url
];
+ jailbreak = true;
homepage = "http://haskell-servant.github.io/";
description = "A family of combinators for defining webservices APIs";
license = stdenv.lib.licenses.bsd3;
@@ -164483,6 +165257,7 @@ self: {
filepath hspec parsec QuickCheck quickcheck-instances
string-conversions text url
];
+ jailbreak = true;
homepage = "http://haskell-servant.github.io/";
description = "A family of combinators for defining webservices APIs";
license = stdenv.lib.licenses.bsd3;
@@ -164510,6 +165285,7 @@ self: {
filepath hspec parsec QuickCheck quickcheck-instances
string-conversions text url
];
+ jailbreak = true;
homepage = "http://haskell-servant.github.io/";
description = "A family of combinators for defining webservices APIs";
license = stdenv.lib.licenses.bsd3;
@@ -164923,7 +165699,6 @@ self: {
servant-lucid servant-server text time transformers wai wai-extra
warp
];
- jailbreak = true;
homepage = "http://haskell-servant.github.io/";
description = "Example programs for servant";
license = stdenv.lib.licenses.bsd3;
@@ -165261,6 +166036,7 @@ self: {
network parsec QuickCheck servant string-conversions temporary text
transformers wai wai-extra warp
];
+ jailbreak = true;
homepage = "http://haskell-servant.github.io/";
description = "A family of combinators for defining webservices APIs and serving them";
license = stdenv.lib.licenses.bsd3;
@@ -165293,6 +166069,7 @@ self: {
network parsec QuickCheck servant string-conversions temporary text
transformers wai wai-extra warp
];
+ jailbreak = true;
homepage = "http://haskell-servant.github.io/";
description = "A family of combinators for defining webservices APIs and serving them";
license = stdenv.lib.licenses.bsd3;
@@ -165325,6 +166102,7 @@ self: {
network parsec QuickCheck servant string-conversions temporary text
transformers wai wai-extra warp
];
+ jailbreak = true;
homepage = "http://haskell-servant.github.io/";
description = "A family of combinators for defining webservices APIs and serving them";
license = stdenv.lib.licenses.bsd3;
@@ -165357,6 +166135,7 @@ self: {
network parsec QuickCheck servant string-conversions temporary text
transformers wai wai-extra warp
];
+ jailbreak = true;
homepage = "http://haskell-servant.github.io/";
description = "A family of combinators for defining webservices APIs and serving them";
license = stdenv.lib.licenses.bsd3;
@@ -165858,8 +166637,8 @@ self: {
}:
mkDerivation {
pname = "settings";
- version = "0.2.1.0";
- sha256 = "b182e9e6093734311318f87940b9a0c5ee49d41978f82044a5ebbccdfbb2b3a8";
+ version = "0.2.2.0";
+ sha256 = "8ca39518d7ed4d0575dbb3bce2064aca006c449765c842906d07484fecf0b831";
libraryHaskellDepends = [
aeson aeson-pretty base bytestring time-units unordered-containers
];
@@ -167143,6 +167922,7 @@ self: {
pretty-show process regex-tdfa safe test-framework
test-framework-hunit utf8-string
];
+ jailbreak = true;
homepage = "http://joyful.com/shelltestrunner";
description = "A tool for testing command-line programs";
license = "GPL";
@@ -168331,6 +169111,7 @@ self: {
testHaskellDepends = [
base HUnit mtl parsec pretty test-framework test-framework-hunit
];
+ jailbreak = true;
homepage = "http://jakewheat.github.io/simple-sql-parser/";
description = "A parser for SQL queries";
license = stdenv.lib.licenses.bsd3;
@@ -169028,6 +169809,7 @@ self: {
base bytestring data-default http-client http-types lens text time
wreq xml-conduit
];
+ jailbreak = true;
homepage = "https://github.com/nyorem/skemmtun";
description = "A MyAnimeList.net client.";
license = stdenv.lib.licenses.mit;
@@ -169575,6 +170357,7 @@ self: {
version = "0.4.1";
sha256 = "f29484ce5a765334798b1107be91b4ef555f1e67a81bd3eb1049a91eec9e6e2e";
libraryHaskellDepends = [ aeson base linear text vector ];
+ jailbreak = true;
homepage = "https://github.com/phaazon/smoothie";
description = "Smooth curves via several interpolation modes";
license = stdenv.lib.licenses.bsd3;
@@ -169961,8 +170744,8 @@ self: {
pname = "snap";
version = "0.14.0.6";
sha256 = "fa9ffc7bf5c6729f7e204daecd50765a220a0ffc2feaf3f6b29977370d8db617";
- revision = "2";
- editedCabalFile = "eff36a949ff3546539accd83c431cd68bb3dca38c2f24db6f99302c7d76ccd4c";
+ revision = "3";
+ editedCabalFile = "a1c4d4668cc563516ac38acfe5b869eeff5cf98042d960593ab08e1ded09fe1d";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -170738,7 +171521,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "snaplet-fay" = callPackage
+ "snaplet-fay_0_3_3_12" = callPackage
({ mkDerivation, aeson, base, bytestring, configurator, directory
, fay, filepath, mtl, snap, snap-core, transformers
}:
@@ -170750,12 +171533,14 @@ self: {
aeson base bytestring configurator directory fay filepath mtl snap
snap-core transformers
];
+ jailbreak = true;
homepage = "https://github.com/faylang/snaplet-fay";
description = "Fay integration for Snap with request- and pre-compilation";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "snaplet-fay_0_3_3_13" = callPackage
+ "snaplet-fay" = callPackage
({ mkDerivation, aeson, base, bytestring, configurator, directory
, fay, filepath, mtl, snap, snap-core, transformers
}:
@@ -170770,7 +171555,6 @@ self: {
homepage = "https://github.com/faylang/snaplet-fay";
description = "Fay integration for Snap with request- and pre-compilation";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"snaplet-ghcjs" = callPackage
@@ -171770,6 +172554,7 @@ self: {
aeson attoparsec base bytestring engine-io mtl stm text
transformers unordered-containers vector
];
+ jailbreak = true;
homepage = "http://github.com/ocharles/engine.io";
license = stdenv.lib.licenses.bsd3;
hydraPlatforms = stdenv.lib.platforms.none;
@@ -172078,8 +172863,8 @@ self: {
}:
mkDerivation {
pname = "sourcemap";
- version = "0.1.5";
- sha256 = "cf64d8ff9a38d2feb134814fd0cb5b9f171d650c7d74a8277238bb88d0f562ea";
+ version = "0.1.6";
+ sha256 = "b9a04cccb4fe7eea8b37a2eaf2bc776eae5640038ab76fb948c5a3ea09a9ce7a";
libraryHaskellDepends = [
aeson attoparsec base bytestring process text unordered-containers
utf8-string
@@ -173930,6 +174715,7 @@ self: {
monad-logger optparse-applicative path process QuickCheck resourcet
retry temporary text transformers unix-compat
];
+ jailbreak = true;
doCheck = false;
enableSharedExecutables = false;
postInstall = ''
@@ -174000,6 +174786,7 @@ self: {
monad-logger optparse-applicative path process QuickCheck resourcet
retry temporary text transformers unix-compat
];
+ jailbreak = true;
doCheck = false;
enableSharedExecutables = false;
postInstall = ''
@@ -174070,6 +174857,7 @@ self: {
monad-logger optparse-applicative path process QuickCheck resourcet
retry temporary text transformers unix-compat
];
+ doHaddock = false;
doCheck = false;
enableSharedExecutables = false;
postInstall = ''
@@ -175642,7 +176430,6 @@ self: {
resourcet stm stm-chans test-framework test-framework-hunit
test-framework-quickcheck2 transformers
];
- doHaddock = false;
homepage = "https://github.com/wowus/stm-conduit";
description = "Introduces conduits to channels, and promotes using conduits concurrently";
license = stdenv.lib.licenses.bsd3;
@@ -175806,6 +176593,7 @@ self: {
stm-conduit transformers wai wai-conduit warp
];
testHaskellDepends = [ base hspec HUnit stm ];
+ jailbreak = true;
homepage = "https://github.com/bartavelle/stm-firehose";
description = "Conduits and STM operations for fire hoses";
license = stdenv.lib.licenses.bsd3;
@@ -176017,6 +176805,7 @@ self: {
sha256 = "17f488ef8e74a9dc4ad7e8a649abc386d010379a9b63f88d52638a078fbc16f6";
libraryHaskellDepends = [ base clock transformers ];
testHaskellDepends = [ base clock hspec ];
+ jailbreak = true;
homepage = "https://github.com/debug-ito/stopwatch";
description = "A simple stopwatch utility";
license = stdenv.lib.licenses.bsd3;
@@ -177059,6 +177848,7 @@ self: {
aeson base bytestring mtl text time transformers
unordered-containers
];
+ jailbreak = true;
homepage = "https://github.com/dmjio/stripe-haskell";
description = "Stripe API for Haskell - Pure Core";
license = stdenv.lib.licenses.mit;
@@ -177088,6 +177878,7 @@ self: {
aeson base bytestring HsOpenSSL http-streams io-streams stripe-core
text
];
+ jailbreak = true;
doCheck = false;
description = "Stripe API for Haskell - http-streams backend";
license = stdenv.lib.licenses.mit;
@@ -178196,21 +178987,20 @@ self: {
"swagger2" = callPackage
({ mkDerivation, aeson, aeson-qq, base, containers, doctest, Glob
- , hashable, hspec, http-media, HUnit, lens, network, QuickCheck
- , scientific, template-haskell, text, time, unordered-containers
- , vector
+ , hashable, hspec, http-media, HUnit, lens, mtl, network
+ , QuickCheck, scientific, text, time, unordered-containers, vector
}:
mkDerivation {
pname = "swagger2";
- version = "0.4.1";
- sha256 = "9db8a5896a2a758edf683be2e9a63a388079b363c6a6f18e3723632010ff39d9";
+ version = "1.0";
+ sha256 = "04ccac8d97cac4a4673151a751a813de7fd6f948b0f98f9b23f447016c19021d";
libraryHaskellDepends = [
- aeson base containers hashable http-media lens network scientific
- template-haskell text time unordered-containers
+ aeson base containers hashable http-media lens mtl network
+ scientific text time unordered-containers
];
testHaskellDepends = [
- aeson aeson-qq base containers doctest Glob hspec HUnit QuickCheck
- text unordered-containers vector
+ aeson aeson-qq base containers doctest Glob hspec HUnit lens
+ QuickCheck text unordered-containers vector
];
homepage = "https://github.com/GetShopTV/swagger2";
description = "Swagger 2.0 data model";
@@ -178379,7 +179169,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "syb" = callPackage
+ "syb_0_5_1" = callPackage
({ mkDerivation, base, containers, HUnit, mtl }:
mkDerivation {
pname = "syb";
@@ -178391,9 +179181,10 @@ self: {
homepage = "http://www.cs.uu.nl/wiki/GenericProgramming/SYB";
description = "Scrap Your Boilerplate";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "syb_0_6" = callPackage
+ "syb" = callPackage
({ mkDerivation, base, containers, HUnit, mtl }:
mkDerivation {
pname = "syb";
@@ -178401,10 +179192,10 @@ self: {
sha256 = "a38d1f7e6a40e2c990fec85215c45063a508bf73df98a4483ec78c5025b66cdc";
libraryHaskellDepends = [ base ];
testHaskellDepends = [ base containers HUnit mtl ];
+ doCheck = false;
homepage = "http://www.cs.uu.nl/wiki/GenericProgramming/SYB";
description = "Scrap Your Boilerplate";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"syb-extras" = callPackage
@@ -178555,8 +179346,8 @@ self: {
}:
mkDerivation {
pname = "sync-mht";
- version = "0.3.8.3";
- sha256 = "071d833083b2dc77b94b9acae56397cddae646d3b3a88fac8e4ca13f8d55489f";
+ version = "0.3.8.4";
+ sha256 = "f276fac5a403f84dc4d1e75dfe257f3cc9b4c69f03803cd1c5654820a3035138";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -179735,6 +180526,7 @@ self: {
base dyre filepath gtk safe xdg-basedir
];
executablePkgconfigDepends = [ gtk2 ];
+ jailbreak = true;
homepage = "http://github.com/travitch/taffybar";
description = "A desktop bar similar to xmobar, but with more GUI";
license = stdenv.lib.licenses.bsd3;
@@ -180937,6 +181729,7 @@ self: {
base containers mtl optparse-applicative reducers split stm tagged
tasty transformers
];
+ doHaddock = false;
homepage = "http://github.com/ocharles/tasty-rerun";
description = "Run tests by filtering the test tree depending on the result of previous test runs";
license = stdenv.lib.licenses.bsd3;
@@ -181249,6 +182042,7 @@ self: {
libraryHaskellDepends = [
aeson base bytestring data-default http-conduit url utf8-string
];
+ jailbreak = true;
description = "Telegram API client";
license = stdenv.lib.licenses.gpl2;
hydraPlatforms = stdenv.lib.platforms.none;
@@ -181369,8 +182163,8 @@ self: {
}:
mkDerivation {
pname = "templatepg";
- version = "0.2.7";
- sha256 = "d0b35e35bff5ac9d2605c54fa20586d6286376ae1362dad0e069a65dc9e1002f";
+ version = "0.2.8";
+ sha256 = "bddd04dca12d48e9151b495b63a981540b2b6b6e7ba4857419abd2d3777410ac";
libraryHaskellDepends = [
base binary bytestring haskell-src-meta mtl network parsec
regex-compat regex-posix template-haskell time utf8-string
@@ -181644,6 +182438,8 @@ self: {
testHaskellDepends = [
base base-unicode-symbols HUnit test-framework test-framework-hunit
];
+ jailbreak = true;
+ doCheck = false;
homepage = "https://github.com/roelvandijk/terminal-progress-bar";
description = "A simple progress bar in the terminal";
license = stdenv.lib.licenses.bsd3;
@@ -181713,6 +182509,20 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {inherit (pkgs) ncurses;};
+ "terminfo_0_4_0_2" = callPackage
+ ({ mkDerivation, base, ncurses }:
+ mkDerivation {
+ pname = "terminfo";
+ version = "0.4.0.2";
+ sha256 = "fea88b28443f5efd316c7699685b3925c0a7613992305f11af03746139d8f856";
+ libraryHaskellDepends = [ base ];
+ librarySystemDepends = [ ncurses ];
+ homepage = "https://github.com/judah/terminfo";
+ description = "Haskell bindings to the terminfo library";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {inherit (pkgs) ncurses;};
+
"terminfo-hs" = callPackage
({ mkDerivation, attoparsec, base, bytestring, containers
, directory, errors, filepath, QuickCheck
@@ -181832,6 +182642,8 @@ self: {
pname = "test-framework";
version = "0.8.1.1";
sha256 = "7883626a5aebb1df327bf26dbd382208946250a79f9cc3bf9a9eb0b0767bb273";
+ revision = "1";
+ editedCabalFile = "a6d9dbedbb574271e85c6e5ef9a9f935d87501a9b99b473bf306e3dcd36bdd9e";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -181889,6 +182701,7 @@ self: {
libraryHaskellDepends = [
base extensible-exceptions HUnit test-framework
];
+ jailbreak = true;
homepage = "https://batterseapower.github.io/test-framework/";
description = "HUnit support for the test-framework package";
license = stdenv.lib.licenses.bsd3;
@@ -183086,35 +183899,6 @@ self: {
}) {};
"text-show" = callPackage
- ({ mkDerivation, array, base, base-compat, base-orphans, bifunctors
- , bytestring, bytestring-builder, containers, generic-deriving
- , ghc-prim, hspec, integer-gmp, nats, QuickCheck
- , quickcheck-instances, semigroups, tagged, template-haskell, text
- , transformers, transformers-compat, void
- }:
- mkDerivation {
- pname = "text-show";
- version = "2.1.1";
- sha256 = "0c42b918bb3a20eda3dc060b14a74c216e1ef3472d9cc8f4a15623a3f2e8c1eb";
- revision = "1";
- editedCabalFile = "6a44a796ef99a25dc68351d0c37364b301b01de63aaf31c6f376c5811da22778";
- libraryHaskellDepends = [
- array base base-compat bytestring bytestring-builder containers
- generic-deriving ghc-prim integer-gmp nats semigroups tagged
- template-haskell text transformers void
- ];
- testHaskellDepends = [
- array base base-compat base-orphans bifunctors bytestring
- bytestring-builder generic-deriving ghc-prim hspec nats QuickCheck
- quickcheck-instances tagged text transformers transformers-compat
- void
- ];
- homepage = "https://github.com/RyanGlScott/text-show";
- description = "Efficient conversion of values into Text";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "text-show_2_1_2" = callPackage
({ mkDerivation, array, base, base-compat, base-orphans, bifunctors
, bytestring, bytestring-builder, containers, generic-deriving
, ghc-prim, hspec, integer-gmp, nats, QuickCheck
@@ -183125,6 +183909,8 @@ self: {
pname = "text-show";
version = "2.1.2";
sha256 = "76c1ce631c6932816dc241b290400e7200d7c79fd50ec03f51964e244fae320d";
+ revision = "1";
+ editedCabalFile = "3fc10600ed0d309c095024b4d320ace8d39dd883e4e8d109d182930c2b35fc9c";
libraryHaskellDepends = [
array base base-compat bytestring bytestring-builder containers
generic-deriving ghc-prim integer-gmp nats semigroups tagged
@@ -183136,11 +183922,9 @@ self: {
quickcheck-instances tagged text transformers transformers-compat
void
];
- jailbreak = true;
homepage = "https://github.com/RyanGlScott/text-show";
description = "Efficient conversion of values into Text";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"text-show-instances" = callPackage
@@ -183155,8 +183939,8 @@ self: {
pname = "text-show-instances";
version = "2.1";
sha256 = "d8941910e88ad921a6337dd635356203137b85e5153a460b0b6bb3ebb0fd51b0";
- revision = "1";
- editedCabalFile = "41e3a6ee833f59df2813fcdab616023c86512175c402c45000e95622d6f9c3c5";
+ revision = "2";
+ editedCabalFile = "f7407e5c0227a4fae2090ae9a10d4f4b62b869c56432a9ecb8bc8daf453a6cf8";
libraryHaskellDepends = [
base base-compat bifunctors binary bytestring containers directory
haskeline hoopl hpc old-locale old-time pretty random semigroups
@@ -184091,6 +184875,7 @@ self: {
base bifunctors containers hashable QuickCheck quickcheck-instances
tasty tasty-quickcheck transformers unordered-containers vector
];
+ jailbreak = true;
homepage = "https://github.com/isomorphism/these";
description = "An either-or-both data type & a generalized 'zip with padding' typeclass";
license = stdenv.lib.licenses.bsd3;
@@ -184245,6 +185030,7 @@ self: {
testHaskellDepends = [
base concurrent-extra HUnit stm test-framework test-framework-hunit
];
+ jailbreak = true;
doCheck = false;
homepage = "https://github.com/basvandijk/threads";
description = "Fork threads and wait for their result";
@@ -184708,19 +185494,22 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "time_1_5_0_1" = callPackage
+ "time_1_6" = callPackage
({ mkDerivation, base, deepseq, QuickCheck, test-framework
, test-framework-quickcheck2, unix
}:
mkDerivation {
pname = "time";
- version = "1.5.0.1";
- sha256 = "24a1cc077b0300d69401d08dfc8895b0199ebd003a9a0eb8845250dd2aebd14e";
+ version = "1.6";
+ sha256 = "2b4ff69434fd920353ab9948b8e36b71a76227661b06cad1bb0ef99a2e91a29f";
+ revision = "1";
+ editedCabalFile = "aa5ff661ec586e3c082485d21abe107332ba29355d1a2c8c2966ba518d1309f2";
libraryHaskellDepends = [ base deepseq ];
testHaskellDepends = [
base deepseq QuickCheck test-framework test-framework-quickcheck2
unix
];
+ jailbreak = true;
homepage = "https://github.com/haskell/time";
description = "A time library";
license = stdenv.lib.licenses.bsd3;
@@ -184927,6 +185716,7 @@ self: {
base data-ordlist HUnit mtl old-locale test-framework
test-framework-hunit time
];
+ jailbreak = true;
homepage = "http://github.com/hellertime/time-recurrence";
description = "Generate recurring dates";
license = stdenv.lib.licenses.gpl3;
@@ -186461,6 +187251,20 @@ self: {
pname = "transformers";
version = "0.4.3.0";
sha256 = "b3d0a797e815ca50d411e20c02f781efe7751308007d880af7f0b5c4365c3a9d";
+ revision = "1";
+ editedCabalFile = "60dafcffe8c4fe6f3760426fc35a325c8e6419877596518c76f46657280207a9";
+ libraryHaskellDepends = [ base ];
+ description = "Concrete functor and monad transformers";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "transformers_0_5_0_0" = callPackage
+ ({ mkDerivation, base }:
+ mkDerivation {
+ pname = "transformers";
+ version = "0.5.0.0";
+ sha256 = "720541fc11ed72737c7059f47836361edb05f6eadcd535fffbee8801f3d03feb";
libraryHaskellDepends = [ base ];
description = "Concrete functor and monad transformers";
license = stdenv.lib.licenses.bsd3;
@@ -186758,6 +187562,7 @@ self: {
base Cabal directory filepath MissingH optparse-applicative process
split
];
+ jailbreak = true;
homepage = "https://github.com/bmjames/trawl";
description = "A tool for finding haddocks";
license = stdenv.lib.licenses.bsd3;
@@ -186915,31 +187720,6 @@ self: {
}) {};
"tries" = callPackage
- ({ mkDerivation, base, bytestring, bytestring-trie, composition
- , composition-extra, containers, deepseq, hashable, keys, mtl
- , QuickCheck, quickcheck-instances, rose-trees, semigroups, sets
- , tasty, tasty-quickcheck, unordered-containers
- }:
- mkDerivation {
- pname = "tries";
- version = "0.0.3";
- sha256 = "45a90df3926415f24454fdeaf838d3982c8c441d4582b635a13f5f5ba1319971";
- libraryHaskellDepends = [
- base bytestring bytestring-trie composition composition-extra
- containers deepseq hashable keys QuickCheck quickcheck-instances
- rose-trees semigroups sets unordered-containers
- ];
- testHaskellDepends = [
- base bytestring bytestring-trie composition composition-extra
- containers deepseq hashable keys mtl QuickCheck
- quickcheck-instances rose-trees semigroups sets tasty
- tasty-quickcheck unordered-containers
- ];
- description = "Various trie implementations in Haskell";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "tries_0_0_4" = callPackage
({ mkDerivation, base, bytestring, bytestring-trie, composition
, composition-extra, containers, deepseq, hashable, keys, mtl
, QuickCheck, quickcheck-instances, rose-trees, semigroups, sets
@@ -186962,7 +187742,6 @@ self: {
];
description = "Various trie implementations in Haskell";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"trifecta_1_5_1_3" = callPackage
@@ -187335,6 +188114,7 @@ self: {
filepath hashable haskeline JuicyPixels mtl parsec process random
template-haskell time vector yaml
];
+ jailbreak = true;
homepage = "https://github.com/entropia/tip-toi-reveng";
description = "Working with files for the Tiptoi® pen";
license = stdenv.lib.licenses.mit;
@@ -187358,6 +188138,7 @@ self: {
filepath hashable haskeline JuicyPixels mtl parsec process random
template-haskell time vector yaml
];
+ jailbreak = true;
homepage = "https://github.com/entropia/tip-toi-reveng";
description = "Working with files for the Tiptoi® pen";
license = stdenv.lib.licenses.mit;
@@ -187654,6 +188435,7 @@ self: {
temporary text time transformers unix
];
testHaskellDepends = [ base doctest ];
+ jailbreak = true;
description = "Shell programming, Haskell-style";
license = stdenv.lib.licenses.bsd3;
hydraPlatforms = stdenv.lib.platforms.none;
@@ -187675,6 +188457,29 @@ self: {
temporary text time transformers unix
];
testHaskellDepends = [ base doctest ];
+ jailbreak = true;
+ description = "Shell programming, Haskell-style";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "turtle_1_2_3" = callPackage
+ ({ mkDerivation, async, base, clock, directory, doctest, foldl
+ , hostname, managed, optional-args, optparse-applicative, process
+ , stm, system-fileio, system-filepath, temporary, text, time
+ , transformers, unix
+ }:
+ mkDerivation {
+ pname = "turtle";
+ version = "1.2.3";
+ sha256 = "3669a203887b58621ba20a4192defb3bdbfdf17ac13de80747143f739127d36d";
+ libraryHaskellDepends = [
+ async base clock directory foldl hostname managed optional-args
+ optparse-applicative process stm system-fileio system-filepath
+ temporary text time transformers unix
+ ];
+ testHaskellDepends = [ base doctest ];
+ jailbreak = true;
description = "Shell programming, Haskell-style";
license = stdenv.lib.licenses.bsd3;
hydraPlatforms = stdenv.lib.platforms.none;
@@ -187688,8 +188493,8 @@ self: {
}:
mkDerivation {
pname = "turtle";
- version = "1.2.3";
- sha256 = "3669a203887b58621ba20a4192defb3bdbfdf17ac13de80747143f739127d36d";
+ version = "1.2.4";
+ sha256 = "c42148d062098913a4519af92c0bc6b139edad18c22f6c01aea8697386851de4";
libraryHaskellDepends = [
async base clock directory foldl hostname managed optional-args
optparse-applicative process stm system-fileio system-filepath
@@ -187911,6 +188716,7 @@ self: {
aeson base bytestring Cabal http-client http-client-tls network-uri
text transformers
];
+ jailbreak = true;
homepage = "https://github.com/markandrus/twilio-haskell";
description = "Twilio REST API library for Haskell";
license = stdenv.lib.licenses.bsd3;
@@ -187954,6 +188760,7 @@ self: {
base Cabal data-default deepseq Diff HUnit lens
should-not-typecheck void
];
+ jailbreak = true;
homepage = "https://github.com/markandrus/twiml-haskell";
description = "TwiML library for Haskell";
license = stdenv.lib.licenses.bsd3;
@@ -188106,6 +188913,7 @@ self: {
testHaskellDepends = [
base containers HUnit test-framework test-framework-hunit
];
+ jailbreak = true;
homepage = "https://github.com/stackbuilders/twitter-feed";
description = "Client for fetching Twitter timeline via Oauth";
license = stdenv.lib.licenses.mit;
@@ -188127,6 +188935,7 @@ self: {
testHaskellDepends = [
base containers HUnit test-framework test-framework-hunit
];
+ jailbreak = true;
homepage = "https://github.com/stackbuilders/twitter-feed";
description = "Client for fetching Twitter timeline via Oauth";
license = stdenv.lib.licenses.mit;
@@ -188824,6 +189633,7 @@ self: {
executableHaskellDepends = [
base diagrams-cairo diagrams-lib text
];
+ jailbreak = true;
description = "Typed and composable spreadsheets";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -188928,6 +189738,18 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "typelits-witnesses" = callPackage
+ ({ mkDerivation, base, constraints, reflection }:
+ mkDerivation {
+ pname = "typelits-witnesses";
+ version = "0.1.1.0";
+ sha256 = "cdcf6b821063228a27b18b4f3b437db6b21e2241c0136e3aa14643ddafc03c26";
+ libraryHaskellDepends = [ base constraints reflection ];
+ 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
({ mkDerivation, base, process }:
mkDerivation {
@@ -189318,6 +190140,7 @@ self: {
async base bytestring bytestring-lexing deepseq network
optparse-applicative
];
+ jailbreak = true;
homepage = "https://github.com/hvr/uhttpc";
description = "Minimal HTTP client library optimized for benchmarking";
license = stdenv.lib.licenses.gpl3;
@@ -189505,6 +190328,28 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "unbound-generics_0_3" = 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";
+ sha256 = "8956c309de512339ee6d37501683df2e973c40437554fffab9b48cbe7283af07";
+ 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 {
@@ -192759,6 +193604,8 @@ self: {
pname = "vector";
version = "0.11.0.0";
sha256 = "0a5320ed44c3f2b04b7f61e0f63f4fcd5b337524e601e01d5813ace3f5a432e4";
+ revision = "1";
+ editedCabalFile = "dfdf3252519ff35da59f977b7d37d6c5a6660673ce1234899af0111f7ece9c66";
libraryHaskellDepends = [ base deepseq ghc-prim primitive ];
testHaskellDepends = [
base QuickCheck random template-haskell test-framework
@@ -193335,7 +194182,6 @@ self: {
testHaskellDepends = [
aeson base containers hspec unordered-containers vector verdict
];
- jailbreak = true;
description = "JSON instances and JSON Schema for verdict";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -193482,6 +194328,7 @@ self: {
time-locale-compat transformers xdg-basedir yaml
];
executableHaskellDepends = [ base ];
+ jailbreak = true;
homepage = "http://github.com/pjones/vimeta";
description = "Frontend for video metadata tagging tools";
license = stdenv.lib.licenses.bsd2;
@@ -193852,6 +194699,23 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "vrpn" = callPackage
+ ({ mkDerivation, base, vrpn }:
+ mkDerivation {
+ pname = "vrpn";
+ version = "0.2.1.0";
+ sha256 = "eb79f54712078283ce181e33b4fdac12b42bed7abe6d8c79b28e55771613754b";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [ base ];
+ librarySystemDepends = [ vrpn ];
+ executableHaskellDepends = [ base ];
+ executableSystemDepends = [ vrpn ];
+ homepage = "https://bitbucket.org/bwbush/vrpn";
+ description = "Bindings to VRPN";
+ license = stdenv.lib.licenses.mit;
+ }) {inherit (pkgs) vrpn;};
+
"vte" = callPackage
({ mkDerivation, base, glib, gtk, gtk2hs-buildtools, pango, vte }:
mkDerivation {
@@ -193861,6 +194725,7 @@ self: {
libraryHaskellDepends = [ base glib gtk pango ];
libraryPkgconfigDepends = [ vte ];
libraryToolDepends = [ gtk2hs-buildtools ];
+ jailbreak = true;
homepage = "http://projects.haskell.org/gtk2hs/";
description = "Binding to the VTE library";
license = stdenv.lib.licenses.lgpl21;
@@ -194470,7 +195335,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "wai-app-static" = callPackage
+ "wai-app-static_3_1_3" = callPackage
({ mkDerivation, base, base64-bytestring, blaze-builder, blaze-html
, blaze-markup, byteable, bytestring, containers, cryptohash
, cryptohash-conduit, directory, file-embed, filepath, hspec
@@ -194504,6 +195369,43 @@ self: {
homepage = "http://www.yesodweb.com/book/web-application-interface";
description = "WAI application for static serving";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "wai-app-static" = callPackage
+ ({ mkDerivation, base, base64-bytestring, blaze-builder, blaze-html
+ , blaze-markup, byteable, bytestring, containers, cryptohash
+ , cryptohash-conduit, directory, file-embed, filepath, hspec
+ , http-date, http-types, mime-types, network, old-locale
+ , optparse-applicative, template-haskell, temporary, text, time
+ , transformers, unix-compat, unordered-containers, wai, wai-extra
+ , warp, zlib
+ }:
+ mkDerivation {
+ pname = "wai-app-static";
+ version = "3.1.4";
+ sha256 = "630e34d404da96327d312cf6a6002a098877282177b07eb875afbbcf47f43a67";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [
+ base base64-bytestring blaze-builder blaze-html blaze-markup
+ byteable bytestring containers cryptohash cryptohash-conduit
+ directory file-embed filepath http-date http-types mime-types
+ old-locale optparse-applicative template-haskell text time
+ transformers unix-compat unordered-containers wai wai-extra warp
+ zlib
+ ];
+ executableHaskellDepends = [
+ base bytestring containers directory mime-types text
+ ];
+ testHaskellDepends = [
+ base bytestring filepath hspec http-date http-types mime-types
+ network old-locale temporary text time transformers unix-compat wai
+ wai-extra zlib
+ ];
+ homepage = "http://www.yesodweb.com/book/web-application-interface";
+ description = "WAI application for static serving";
+ license = stdenv.lib.licenses.mit;
}) {};
"wai-conduit_3_0_0_1" = callPackage
@@ -194618,6 +195520,7 @@ self: {
system-filepath text time transformers wai warp websockets
];
testHaskellDepends = [ base hspec stm ];
+ jailbreak = true;
homepage = "https://github.com/urbanslug/wai-devel";
description = "A web server for the development of WAI compliant web applications";
license = stdenv.lib.licenses.gpl3;
@@ -195347,6 +196250,7 @@ self: {
libraryHaskellDepends = [
base bytestring http-types lens network text vault wai
];
+ jailbreak = true;
homepage = "https://github.com/webcrank/wai-lens";
description = "Lenses for WAI";
license = stdenv.lib.licenses.bsd3;
@@ -195495,12 +196399,15 @@ self: {
}) {};
"wai-middleware-caching" = callPackage
- ({ mkDerivation, base, blaze-builder, bytestring, wai }:
+ ({ mkDerivation, base, blaze-builder, bytestring, http-types, wai
+ }:
mkDerivation {
pname = "wai-middleware-caching";
- version = "0.1.0.1";
- sha256 = "831cf0efc1fcbf5a43ef19f313427f1fcca1d3d5312f7cf4e05294984ccd3d83";
- libraryHaskellDepends = [ base blaze-builder bytestring wai ];
+ version = "0.1.0.2";
+ sha256 = "15b5fb9c92599d5ecb6a70ba40bad024488f9eca7139abe23b961ba21602d78d";
+ libraryHaskellDepends = [
+ base blaze-builder bytestring http-types wai
+ ];
testHaskellDepends = [ base ];
homepage = "http://github.com/yogsototh/wai-middleware-caching/tree/master/wai-middleware-caching#readme";
description = "WAI Middleware to cache things";
@@ -195651,6 +196558,7 @@ self: {
http-reverse-proxy optparse-applicative template-haskell text
transformers wai wai-app-static warp
];
+ jailbreak = true;
description = "Middleware and utilities for using Atlassian Crowd authentication";
license = stdenv.lib.licenses.mit;
hydraPlatforms = stdenv.lib.platforms.none;
@@ -195729,6 +196637,7 @@ self: {
base base64-bytestring bytestring cryptohash filepath http-date
http-types unix-compat unordered-containers wai
];
+ jailbreak = true;
homepage = "https://github.com/ameingast/wai-middleware-etag";
description = "WAI ETag middleware for static files";
license = stdenv.lib.licenses.bsd3;
@@ -195924,6 +196833,7 @@ self: {
base base16-bytestring bytestring containers cryptohash directory
expiring-cache-map filepath http-types mtl old-locale text time wai
];
+ jailbreak = true;
homepage = "https://github.com/scotty-web/wai-middleware-static";
description = "WAI middleware that serves requests to static files";
license = stdenv.lib.licenses.bsd3;
@@ -196163,6 +197073,7 @@ self: {
aeson base blaze-builder bytestring containers http-types
monad-loops mtl path-pieces random template-haskell text wai
];
+ jailbreak = true;
homepage = "https://ajnsit.github.io/wai-routes/";
description = "Typesafe URLs for Wai applications";
license = stdenv.lib.licenses.mit;
@@ -197367,8 +198278,8 @@ self: {
}:
mkDerivation {
pname = "warp";
- version = "3.1.10";
- sha256 = "c0b60aca4a6c10f7b6f00e2e17e5ba5f04ffefb287123541459436bfd22c4fd5";
+ version = "3.1.11";
+ sha256 = "f62ef8b6bd0402d99867cd207cad608b1904b7b88d84db9800f34eae37eb809c";
libraryHaskellDepends = [
array auto-update base blaze-builder bytestring bytestring-builder
case-insensitive containers ghc-prim hashable http-date http-types
@@ -197717,10 +198628,8 @@ self: {
}:
mkDerivation {
pname = "warp-tls";
- version = "3.1.4";
- sha256 = "7572b8893160a07051a60323e91553b8911d87d58712c64f997ecced1a5febd7";
- revision = "1";
- editedCabalFile = "39cf89625ffec9af354d3e502b6974ca122adf0241c9e1e6815bf4c11fb34535";
+ version = "3.1.5";
+ sha256 = "abb057ba735e455c354837f5daf07ea2c0274d8edfb7d39ac48412a6ebb9759f";
libraryHaskellDepends = [
base bytestring cprng-aes data-default-class network
streaming-commons tls wai warp
@@ -198036,25 +198945,20 @@ self: {
"web-routes" = callPackage
({ mkDerivation, base, blaze-builder, bytestring, exceptions
- , ghc-prim, http-types, HUnit, mtl, parsec, QuickCheck, split
- , test-framework, test-framework-hunit, test-framework-quickcheck2
- , test-framework-th, text, utf8-string
+ , ghc-prim, hspec, http-types, HUnit, mtl, parsec, QuickCheck
+ , split, text, utf8-string
}:
mkDerivation {
pname = "web-routes";
- version = "0.27.9";
- sha256 = "868cc9f0eeb1c184aa03ccb220fe1729d481a3dc5ed9502f61e4eb69d963ecab";
- revision = "2";
- editedCabalFile = "542f5d20616359b0897018bbd347ce7f0dc948c4e031e8a5383ed85cb931406b";
+ version = "0.27.10";
+ sha256 = "1d0f5da073271aa45dbcc9ef51791841f45d13f16756cfe3c16d731e2dd67b4c";
libraryHaskellDepends = [
base blaze-builder bytestring exceptions ghc-prim http-types mtl
parsec split text utf8-string
];
- testHaskellDepends = [
- base HUnit QuickCheck test-framework test-framework-hunit
- test-framework-quickcheck2 test-framework-th
- ];
- description = "Library for maintaining correctness and composability of URLs within an application";
+ testHaskellDepends = [ base hspec HUnit QuickCheck ];
+ homepage = "http://www.happstack.com/docs/crashcourse/index.html#web-routes";
+ description = "portable, type-safe URL routing";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -198077,8 +198981,8 @@ self: {
}:
mkDerivation {
pname = "web-routes-happstack";
- version = "0.23.9";
- sha256 = "fc67eae234d87a6b3a72aeac32ea5524572c4b412bfc34392a28889f4eaa526f";
+ version = "0.23.10";
+ sha256 = "a7bbf337cea91b3dbf41d1785a4edef238a1e7d78e64dd153b90e36df35afbed";
libraryHaskellDepends = [
base bytestring happstack-server text web-routes
];
@@ -198090,8 +198994,8 @@ self: {
({ mkDerivation, base, hsp, text, web-routes }:
mkDerivation {
pname = "web-routes-hsp";
- version = "0.24.6";
- sha256 = "d48d1c9711692d11d69d7cfee91b75c71b358e1e3d5d4006d8a736c94aef0d11";
+ version = "0.24.6.1";
+ sha256 = "ca7cf5bf026c52fee5b6af3ca173c7341cd991dcd38508d07589cc7ea8102cab";
libraryHaskellDepends = [ base hsp text web-routes ];
description = "Adds XMLGenerator instance for RouteT monad";
license = stdenv.lib.licenses.bsd3;
@@ -198128,29 +199032,25 @@ self: {
({ mkDerivation, base, parsec, regular, text, web-routes }:
mkDerivation {
pname = "web-routes-regular";
- version = "0.19.0";
- sha256 = "b904709802bd9efe81e706fb54aee217cd79ee1f723348a033acd65f89e69462";
+ version = "0.19.0.1";
+ sha256 = "5e2aa9d867c0baa3f288b7f84c53053994a12a4bf1484de6455423aada5fda3b";
libraryHaskellDepends = [ base parsec regular text web-routes ];
- description = "Library for maintaining correctness of URLs within an application";
+ description = "portable, type-safe URL routing";
license = stdenv.lib.licenses.bsd3;
}) {};
"web-routes-th" = callPackage
- ({ mkDerivation, base, HUnit, parsec, QuickCheck, split
- , template-haskell, test-framework, test-framework-hunit
- , test-framework-quickcheck2, test-framework-th, text, web-routes
+ ({ mkDerivation, base, hspec, HUnit, parsec, QuickCheck, split
+ , template-haskell, text, web-routes
}:
mkDerivation {
pname = "web-routes-th";
- version = "0.22.3";
- sha256 = "d7fd87388133e8f7dbb2cc933528a85fc9ada003d19c4317b40e341d7f0d9b31";
+ version = "0.22.4";
+ sha256 = "b09ba714032918dd6e2e729ef7ebb1fae50a97d1cd04e1efb94dd191f52ee0b6";
libraryHaskellDepends = [
base parsec split template-haskell text web-routes
];
- testHaskellDepends = [
- base HUnit QuickCheck test-framework test-framework-hunit
- test-framework-quickcheck2 test-framework-th web-routes
- ];
+ testHaskellDepends = [ base hspec HUnit QuickCheck web-routes ];
description = "Support for deriving PathInfo using Template Haskell";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -198174,8 +199074,8 @@ self: {
}:
mkDerivation {
pname = "web-routes-wai";
- version = "0.24.1";
- sha256 = "2be042988e73432a9fb1f2a553607548cca7fb821b91be166249cceb9477bc8e";
+ version = "0.24.2";
+ sha256 = "66708017753ab953a34e944a9f90c7f26a24a7eefda2363746a3abde2e2358dd";
libraryHaskellDepends = [
base bytestring http-types text wai web-routes
];
@@ -198229,6 +199129,7 @@ self: {
base bytestring http-types optparse-applicative scotty text
transformers
];
+ jailbreak = true;
homepage = "https://github.com/fhsjaagshs/webapp";
description = "Haskell web scaffolding using Scotty, WAI, and Warp";
license = stdenv.lib.licenses.mit;
@@ -198257,6 +199158,7 @@ self: {
http-media http-types lens mtl tasty tasty-hunit tasty-quickcheck
unordered-containers
];
+ jailbreak = true;
homepage = "https://github.com/webcrank/webcrank.hs";
description = "Webmachine inspired toolkit for building http applications and services";
license = stdenv.lib.licenses.bsd3;
@@ -198431,6 +199333,7 @@ self: {
transformers-base unordered-containers vector zip-archive
];
testHaskellDepends = [ base parallel text ];
+ jailbreak = true;
doCheck = false;
homepage = "https://github.com/kallisti-dev/hs-webdriver";
description = "a Haskell client for the Selenium WebDriver protocol";
@@ -198458,6 +199361,7 @@ self: {
transformers-base unordered-containers vector zip-archive
];
testHaskellDepends = [ base parallel text ];
+ jailbreak = true;
doCheck = false;
homepage = "https://github.com/kallisti-dev/hs-webdriver";
description = "a Haskell client for the Selenium WebDriver protocol";
@@ -198475,8 +199379,8 @@ self: {
}:
mkDerivation {
pname = "webdriver";
- version = "0.8.0.3";
- sha256 = "3caa382fdb75533be48b3bbf3c1d7f0c11dcbed76d49b002b9a16591b62903e4";
+ version = "0.8.0.4";
+ sha256 = "11a3b0fd53ad2ef2014d57b9964ff258a4394c10ff00947932637180983077db";
libraryHaskellDepends = [
aeson attoparsec base base64-bytestring bytestring
data-default-class directory directory-tree exceptions filepath
@@ -198484,7 +199388,6 @@ self: {
network-uri scientific temporary text time transformers
transformers-base unordered-containers vector zip-archive
];
- testHaskellDepends = [ base text ];
doCheck = false;
homepage = "https://github.com/kallisti-dev/hs-webdriver";
description = "a Haskell client for the Selenium WebDriver protocol";
@@ -198902,6 +199805,7 @@ self: {
random SHA test-framework test-framework-hunit
test-framework-quickcheck2 text
];
+ jailbreak = true;
doCheck = false;
homepage = "http://jaspervdj.be/websockets";
description = "A sensible and clean way to write WebSocket-capable servers in Haskell";
@@ -198929,6 +199833,7 @@ self: {
random SHA test-framework test-framework-hunit
test-framework-quickcheck2 text
];
+ jailbreak = true;
doCheck = false;
homepage = "http://jaspervdj.be/websockets";
description = "A sensible and clean way to write WebSocket-capable servers in Haskell";
@@ -199362,8 +200267,8 @@ self: {
}:
mkDerivation {
pname = "wiring";
- version = "0.4.1";
- sha256 = "b2a6e2ac3299d109244432dbdce4094d9967f10916c31a3df5a7bf6fbcc67b01";
+ version = "0.4.2";
+ sha256 = "f8b9cc8d1811d88ad1a19e67ae071f4bcdef17ae3ce1f63e9664f5255033e689";
libraryHaskellDepends = [ base mtl template-haskell transformers ];
testHaskellDepends = [
base hspec mtl QuickCheck template-haskell transformers
@@ -200007,6 +200912,7 @@ self: {
transformers
];
executableHaskellDepends = [ base ];
+ jailbreak = true;
homepage = "https://github.com/sboosali/workflow-osx#readme";
description = "a \"Desktop Workflow\" monad with Objective-C bindings";
license = stdenv.lib.licenses.gpl3;
@@ -200805,7 +201711,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "x509-system" = callPackage
+ "x509-system_1_6_1" = callPackage
({ mkDerivation, base, bytestring, containers, directory, filepath
, mtl, pem, process, x509, x509-store
}:
@@ -200820,22 +201726,40 @@ self: {
homepage = "http://github.com/vincenthz/hs-certificate";
description = "Handle per-operating-system X.509 accessors and storage";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "x509-system" = callPackage
+ ({ mkDerivation, base, bytestring, containers, directory, filepath
+ , mtl, pem, process, x509, x509-store
+ }:
+ mkDerivation {
+ pname = "x509-system";
+ version = "1.6.3";
+ sha256 = "24237c3df1bf692fcf7bade432970ee2eb06db7437fa0e95986ef7535a68f6e0";
+ libraryHaskellDepends = [
+ base bytestring containers directory filepath mtl pem process x509
+ x509-store
+ ];
+ homepage = "http://github.com/vincenthz/hs-certificate";
+ description = "Handle per-operating-system X.509 accessors and storage";
+ license = stdenv.lib.licenses.bsd3;
}) {};
"x509-util" = callPackage
({ mkDerivation, asn1-encoding, asn1-types, base, bytestring
- , cryptonite, directory, pem, x509, x509-store, x509-system
- , x509-validation
+ , cryptonite, directory, hourglass, pem, x509, x509-store
+ , x509-system, x509-validation
}:
mkDerivation {
pname = "x509-util";
- version = "1.6.0";
- sha256 = "823ed93ad997c5084bc9610814e7da28414e6aed80b0d37ba1218face3a10c82";
+ version = "1.6.1";
+ sha256 = "d534388d8c633b7dfb0f06a7b498f91f4dfd225b4cd1dd535f45b6e085c9078d";
isLibrary = false;
isExecutable = true;
executableHaskellDepends = [
- asn1-encoding asn1-types base bytestring cryptonite directory pem
- x509 x509-store x509-system x509-validation
+ asn1-encoding asn1-types base bytestring cryptonite directory
+ hourglass pem x509 x509-store x509-system x509-validation
];
homepage = "http://github.com/vincenthz/hs-certificate";
description = "Utility for X509 certificate and chain";
@@ -201087,8 +202011,8 @@ self: {
}:
mkDerivation {
pname = "xdot";
- version = "0.2.4.8";
- sha256 = "e9bda0abdde68181fe178c7ba176687f8f6438446ee06bd4099df6ca7c155bb9";
+ version = "0.2.4.9";
+ sha256 = "a2ace6970b425d1721b06b054422eef097837e31555579deee3fe532c11a0cda";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -201478,7 +202402,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "xlsx" = callPackage
+ "xlsx_0_1_2" = callPackage
({ mkDerivation, base, binary-search, bytestring, conduit
, containers, data-default, digest, HUnit, lens, old-locale
, old-time, smallcheck, tasty, tasty-hunit, tasty-smallcheck, text
@@ -201508,9 +202432,10 @@ self: {
homepage = "https://github.com/qrilka/xlsx";
description = "Simple and incomplete Excel file parser/writer";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "xlsx_0_2_0" = callPackage
+ "xlsx" = callPackage
({ mkDerivation, base, binary-search, bytestring, conduit
, containers, data-default, digest, HUnit, lens, mtl, old-locale
, smallcheck, tasty, tasty-hunit, tasty-smallcheck, text, time
@@ -201540,7 +202465,6 @@ self: {
homepage = "https://github.com/qrilka/xlsx";
description = "Simple and incomplete Excel file parser/writer";
license = stdenv.lib.licenses.mit;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"xlsx-templater" = callPackage
@@ -201802,7 +202726,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "xml-conduit" = callPackage
+ "xml-conduit_1_3_2" = callPackage
({ mkDerivation, attoparsec, base, blaze-builder, blaze-html
, blaze-markup, bytestring, conduit, conduit-extra, containers
, data-default, deepseq, hspec, HUnit, monad-control, resourcet
@@ -201824,6 +202748,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.3";
+ sha256 = "300a0b5eb2ff1062012b61bc4aaa390571daecc671af2d8567a649489b08b66b";
+ 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
@@ -202476,20 +203425,23 @@ self: {
inherit (pkgs.xorg) libXrandr; inherit (pkgs) wirelesstools;};
"xmonad" = callPackage
- ({ mkDerivation, base, containers, directory, extensible-exceptions
- , filepath, mtl, process, unix, utf8-string, X11
+ ({ mkDerivation, base, containers, data-default, directory
+ , extensible-exceptions, filepath, mtl, process, QuickCheck
+ , setlocale, unix, utf8-string, X11
}:
mkDerivation {
pname = "xmonad";
- version = "0.11.1";
- sha256 = "39e0bf227df782d7a5799c811ad0d8b70c9d6eaaa94e8cc395fcf25895d6d2dd";
- revision = "1";
- editedCabalFile = "12849de2637cf39a8c0311d81418632e719125f55db2faf931b1905d85d5bf3d";
+ version = "0.12";
+ sha256 = "e8f649dbd4a8d5f75fdac9ceb5ee38b64fd351910ade81c188f5dd7bc21dfdd7";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
- base containers directory extensible-exceptions filepath mtl
- process unix utf8-string X11
+ base containers data-default directory extensible-exceptions
+ filepath mtl process setlocale unix utf8-string X11
+ ];
+ executableHaskellDepends = [ base mtl unix X11 ];
+ testHaskellDepends = [
+ base containers extensible-exceptions QuickCheck X11
];
postInstall = ''
shopt -s globstar
@@ -202524,18 +203476,19 @@ self: {
"xmonad-contrib" = callPackage
({ mkDerivation, base, containers, directory, extensible-exceptions
- , mtl, old-locale, old-time, process, random, unix, utf8-string
- , X11, X11-xft, xmonad
+ , filepath, mtl, old-locale, old-time, process, random, unix
+ , utf8-string, X11, X11-xft, xmonad
}:
mkDerivation {
pname = "xmonad-contrib";
- version = "0.11.4";
- sha256 = "a379b3d4f2d3d8793d6c76812e90cbb055fa0598cfba944af47139bb77e2acbc";
- revision = "1";
- editedCabalFile = "0280216420efaa06de7080d5998a24e27166e8b2c3d8a012846d004799c5edf2";
+ version = "0.12";
+ sha256 = "131d31c471ac02ece9c7e920497b4839a45df786a2096f56adb1f2de1221f311";
+ revision = "2";
+ editedCabalFile = "8a17b7fe46dc9d7435538a0db3997bcb2a125e71923ecd401024d84081a41807";
libraryHaskellDepends = [
- base containers directory extensible-exceptions mtl old-locale
- old-time process random unix utf8-string X11 X11-xft xmonad
+ base containers directory extensible-exceptions filepath mtl
+ old-locale old-time process random unix utf8-string X11 X11-xft
+ xmonad
];
homepage = "http://xmonad.org/";
description = "Third party extensions for xmonad";
@@ -202667,6 +203620,7 @@ self: {
version = "0.0.1.2";
sha256 = "b02e1c7a524dd9cf28d5cff6933194fe245fa4e9247f701ec87195a20a8cf265";
libraryHaskellDepends = [ base magic mtl random unix xmonad ];
+ jailbreak = true;
description = "xmonad wallpaper extension";
license = stdenv.lib.licenses.gpl3;
}) {};
@@ -204990,6 +205944,7 @@ self: {
http-types lifted-base network-uri random text transformers vector
yesod-auth yesod-core yesod-form
];
+ jailbreak = true;
homepage = "http://github.com/thoughtbot/yesod-auth-oauth2";
description = "OAuth 2.0 authentication plugins";
license = stdenv.lib.licenses.bsd3;
@@ -205011,6 +205966,7 @@ self: {
http-types lifted-base network-uri random text transformers vector
yesod-auth yesod-core yesod-form
];
+ jailbreak = true;
homepage = "http://github.com/thoughtbot/yesod-auth-oauth2";
description = "OAuth 2.0 authentication plugins";
license = stdenv.lib.licenses.bsd3;
@@ -206102,8 +207058,8 @@ self: {
}:
mkDerivation {
pname = "yesod-content-pdf";
- version = "0.2.0.1";
- sha256 = "c6fb370baf348742237d89fb83996ff75459767dc86926e84c9daa45c6c20e46";
+ version = "0.2.0.2";
+ sha256 = "867cb1a9bbbeff69bb8ae35659f780bcf057cb44a2b1f6c8e424d280a55a0fbb";
libraryHaskellDepends = [
base blaze-builder blaze-html bytestring conduit data-default
directory network-uri process temporary transformers yesod-core
@@ -206868,7 +207824,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "yesod-core" = callPackage
+ "yesod-core_1_4_17" = callPackage
({ mkDerivation, aeson, async, auto-update, base, blaze-builder
, blaze-html, blaze-markup, byteable, bytestring, case-insensitive
, cereal, clientsession, conduit, conduit-extra, containers, cookie
@@ -206905,6 +207861,46 @@ self: {
homepage = "http://www.yesodweb.com/";
description = "Creation of type-safe, RESTful web applications";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "yesod-core" = callPackage
+ ({ mkDerivation, aeson, async, auto-update, base, blaze-builder
+ , blaze-html, blaze-markup, byteable, bytestring, case-insensitive
+ , cereal, clientsession, conduit, conduit-extra, containers, cookie
+ , data-default, deepseq, directory, exceptions, fast-logger, hspec
+ , hspec-expectations, http-types, HUnit, lifted-base, monad-control
+ , monad-logger, mtl, mwc-random, network, old-locale, parsec
+ , path-pieces, primitive, QuickCheck, random, resourcet, safe
+ , semigroups, shakespeare, streaming-commons, template-haskell
+ , text, time, transformers, transformers-base, unix-compat
+ , unordered-containers, vector, wai, wai-extra, wai-logger, warp
+ , word8
+ }:
+ mkDerivation {
+ pname = "yesod-core";
+ version = "1.4.18.1";
+ sha256 = "8964a1ce27f7d15037eee05611546a8e5e183640115e92e70fc73e1116beddb0";
+ libraryHaskellDepends = [
+ aeson auto-update base blaze-builder blaze-html blaze-markup
+ byteable bytestring case-insensitive cereal clientsession conduit
+ conduit-extra containers cookie data-default deepseq directory
+ exceptions fast-logger http-types lifted-base monad-control
+ monad-logger mtl mwc-random old-locale parsec path-pieces primitive
+ random resourcet safe semigroups shakespeare template-haskell text
+ time transformers transformers-base unix-compat
+ unordered-containers vector wai wai-extra wai-logger warp word8
+ ];
+ testHaskellDepends = [
+ async base blaze-builder bytestring clientsession conduit
+ conduit-extra containers cookie hspec hspec-expectations http-types
+ HUnit lifted-base mwc-random network path-pieces QuickCheck random
+ resourcet shakespeare streaming-commons template-haskell text
+ transformers wai wai-extra
+ ];
+ homepage = "http://www.yesodweb.com/";
+ description = "Creation of type-safe, RESTful web applications";
+ license = stdenv.lib.licenses.mit;
}) {};
"yesod-crud" = callPackage
@@ -207469,6 +208465,7 @@ self: {
warp yaml yesod yesod-auth yesod-core yesod-form yesod-persistent
yesod-static
];
+ jailbreak = true;
homepage = "https://github.com/prowdsponsor/mangopay";
description = "Yesod library for MangoPay API access";
license = stdenv.lib.licenses.bsd3;
@@ -207504,6 +208501,7 @@ self: {
warp yaml yesod yesod-auth yesod-core yesod-form yesod-persistent
yesod-static
];
+ jailbreak = true;
homepage = "https://github.com/prowdsponsor/mangopay";
description = "Yesod library for MangoPay API access";
license = stdenv.lib.licenses.bsd3;
@@ -208057,6 +209055,7 @@ self: {
base data-default hsass shakespeare template-haskell text
yesod-core
];
+ jailbreak = true;
description = "A simple quasiquoter to include sass code in yesod";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -208323,6 +209322,7 @@ self: {
base bytestring hamlet hspec HUnit shakespeare template-haskell
text yesod-core yesod-static yesod-test
];
+ doCheck = false;
homepage = "https://bitbucket.org/wuzzeb/yesod-static-angular";
description = "Yesod generators for embedding AngularJs code into yesod-static at compile time";
license = stdenv.lib.licenses.mit;
@@ -208384,8 +209384,8 @@ self: {
}:
mkDerivation {
pname = "yesod-table";
- version = "2.0.0";
- sha256 = "1a41ff344fb908ddd04d23e5c0b896b738987b8d8f162192168b367b7450e867";
+ version = "2.0.1";
+ sha256 = "48ff72f00f6c957585bef6639b38252ba8aec6a2c409b4f59ef0a7b70e56a086";
libraryHaskellDepends = [
base bytestring containers contravariant text yesod-core
];
@@ -208899,8 +209899,8 @@ self: {
}:
mkDerivation {
pname = "yi";
- version = "0.12.2";
- sha256 = "16107755bd53f04a8edd03c2db50be3d7640b8d9503dea17ea923726c4de9e06";
+ version = "0.12.3";
+ sha256 = "2ce8a6cd30f67839eba0581f8643fd80ff9138059d9b66d3b689cc867b9562b6";
configureFlags = [ "-fpango" "-fvty" ];
isLibrary = true;
isExecutable = true;
@@ -209308,6 +210308,7 @@ self: {
HStringTemplate lucid old-locale old-time pandoc parsec scientific
split text time unordered-containers yaml
];
+ jailbreak = true;
homepage = "http://github.com/jgm/yst";
description = "Builds a static website from templates and data in YAML or CSV files";
license = "GPL";
@@ -209540,6 +210541,7 @@ self: {
version = "0.1.3";
sha256 = "bc57b63f12a935ee20558fea1930ebcf3c4f0ddffa5e1e9be05af6222466fbfe";
libraryHaskellDepends = [ base semigroups ];
+ jailbreak = true;
homepage = "https://github.com/phaazon/zero";
description = "Semigroups with absorption";
license = stdenv.lib.licenses.bsd3;
@@ -209575,7 +210577,6 @@ self: {
executableHaskellDepends = [
base bytestring docopt raw-strings-qq
];
- jailbreak = true;
description = "Post to 0bin services";
license = stdenv.lib.licenses.mit;
hydraPlatforms = stdenv.lib.platforms.none;
diff --git a/pkgs/development/haskell-modules/patches/xmonad-nix.patch b/pkgs/development/haskell-modules/patches/xmonad-nix.patch
index 810d8435a34..cfce819747f 100644
--- a/pkgs/development/haskell-modules/patches/xmonad-nix.patch
+++ b/pkgs/development/haskell-modules/patches/xmonad-nix.patch
@@ -1,6 +1,6 @@
---- xmonad-0.11/XMonad/Core.hs 2013-01-01 01:31:47.000000000 +0000
-+++ new-xmonad/XMonad/Core.hs 2013-12-23 17:36:40.862146910 +0000
-@@ -47,6 +47,7 @@
+--- a/src/XMonad/Core.hs
++++ b/src/XMonad/Core.hs
+@@ -48,6 +48,7 @@ import System.Posix.Types (ProcessID)
import System.Process
import System.Directory
import System.Exit
@@ -8,7 +8,7 @@
import Graphics.X11.Xlib
import Graphics.X11.Xlib.Extras (Event)
import Data.Typeable
-@@ -452,6 +453,7 @@
+@@ -463,6 +464,7 @@ recompile force = io $ do
err = base ++ ".errors"
src = base ++ ".hs"
lib = dir > "lib"
@@ -16,16 +16,16 @@
libTs <- mapM getModTime . Prelude.filter isSource =<< allFiles lib
srcT <- getModTime src
binT <- getModTime bin
-@@ -460,7 +462,7 @@
+@@ -471,7 +473,7 @@ recompile force = io $ do
-- temporarily disable SIGCHLD ignoring:
uninstallSignalHandlers
status <- bracket (openFile err WriteMode) hClose $ \h ->
-- waitForProcess =<< runProcess "ghc" ["--make", "xmonad.hs", "-i", "-ilib", "-fforce-recomp", "-v0", "-o",binn] (Just dir)
-+ waitForProcess =<< runProcess ghc ["--make", "xmonad.hs", "-i", "-ilib", "-fforce-recomp", "-v0", "-o",binn] (Just dir)
+- waitForProcess =<< runProcess "ghc" ["--make", "xmonad.hs", "-i", "-ilib", "-fforce-recomp", "-main-is", "main", "-v0", "-o",binn] (Just dir)
++ waitForProcess =<< runProcess ghc ["--make", "xmonad.hs", "-i", "-ilib", "-fforce-recomp", "-main-is", "main", "-v0", "-o",binn] (Just dir)
Nothing Nothing Nothing (Just h)
-- re-enable SIGCHLD:
-@@ -469,6 +471,7 @@
+@@ -480,6 +482,7 @@ recompile force = io $ do
-- now, if it fails, run xmessage to let the user know:
when (status /= ExitSuccess) $ do
ghcErr <- readFile err
@@ -33,7 +33,7 @@
let msg = unlines $
["Error detected while loading xmonad configuration file: " ++ src]
++ lines (if null ghcErr then show status else ghcErr)
-@@ -476,7 +479,7 @@
+@@ -487,7 +490,7 @@ recompile force = io $ do
-- nb, the ordering of printing, then forking, is crucial due to
-- lazy evaluation
hPutStrLn stderr msg
diff --git a/pkgs/development/interpreters/erlang/R18.nix b/pkgs/development/interpreters/erlang/R18.nix
index 670df423a9b..2fc91d6a2db 100644
--- a/pkgs/development/interpreters/erlang/R18.nix
+++ b/pkgs/development/interpreters/erlang/R18.nix
@@ -19,11 +19,11 @@ with stdenv.lib;
stdenv.mkDerivation rec {
name = "erlang-" + version + "${optionalString odbcSupport "-odbc"}"
+ "${optionalString javacSupport "-javac"}";
- version = "18.0";
+ version = "18.2";
src = fetchurl {
url = "http://www.erlang.org/download/otp_src_${version}.tar.gz";
- sha256 = "1ahi865ii3iqzd00yyn3nrxjb9qa2by9d7ixssvqw8ag9firvdm0";
+ sha256 = "1l1zzf245w1abiylll8pjm0pppqwvvw4fihknqkcybkx62n2ipj3";
};
buildInputs =
@@ -51,7 +51,7 @@ stdenv.mkDerivation rec {
postInstall = let
manpages = fetchurl {
url = "http://www.erlang.org/download/otp_doc_man_${version}.tar.gz";
- sha256 = "0wsnp7sp21ydinwkg3rkazyrs382pdzwra9apikkhs70dv1hwkz4";
+ sha256 = "0abaqnw6hkr1h1zw6cdqwg2k7rfmj2b9sqqldnqf3qaj0shz759n";
};
in ''
ln -s $out/lib/erlang/lib/erl_interface*/bin/erl_call $out/bin/erl_call
@@ -73,6 +73,7 @@ stdenv.mkDerivation rec {
meta = {
homepage = "http://www.erlang.org/";
+ downloadPage = "http://www.erlang.org/download.html";
description = "Programming language used for massively scalable soft real-time systems";
longDescription = ''
diff --git a/pkgs/development/interpreters/php/default.nix b/pkgs/development/interpreters/php/default.nix
index 2c554648290..6760b88dac6 100644
--- a/pkgs/development/interpreters/php/default.nix
+++ b/pkgs/development/interpreters/php/default.nix
@@ -303,8 +303,8 @@ in {
};
php70 = generic {
- version = "7.0.0";
- sha256 = "1spwxpfx0q95cfkwl1n8hpczgwy69x901v60ywwpl5ijd0q58am9";
+ version = "7.0.1";
+ sha256 = "0hiyv71ysbzcl3kf28phjyycp7myjd89l8f28arrf4q0vb8kpkh4";
};
}
diff --git a/pkgs/development/interpreters/ruby/gem.nix b/pkgs/development/interpreters/ruby/gem.nix
index dd6338cd813..bbc38226266 100644
--- a/pkgs/development/interpreters/ruby/gem.nix
+++ b/pkgs/development/interpreters/ruby/gem.nix
@@ -6,7 +6,7 @@ lib.makeOverridable (
, ruby ? defs.ruby
, rubygems ? (rubygemsFun ruby)
, stdenv ? ruby.stdenv
-, namePrefix ? "${ruby.name}" + "-"
+, namePrefix ? "${lib.replaceStrings ["-"] ["_"] ruby.name}" + "-"
, buildInputs ? []
, doCheck ? false
, dontBuild ? true
diff --git a/pkgs/development/libraries/accounts-qt/old.nix b/pkgs/development/libraries/accounts-qt/old.nix
deleted file mode 100644
index 26a04362090..00000000000
--- a/pkgs/development/libraries/accounts-qt/old.nix
+++ /dev/null
@@ -1,27 +0,0 @@
-{ stdenv, fetchFromGitLab, doxygen, glib, libaccounts-glib, pkgconfig, qt5 }:
-
-let version = "1.13"; in
-stdenv.mkDerivation {
- name = "accounts-qt-${version}";
-
- src = fetchFromGitLab {
- sha256 = "1gpkgw05dwsf2wk5cy3skgss3kw6mqh7iv3fadrxqxfc1za1xmyl";
- rev = version;
- repo = "libaccounts-qt";
- owner = "accounts-sso";
- };
-
- meta = with stdenv.lib; {
- description = "Qt library for accessing the online accounts database";
- homepage = "http://code.google.com/p/accounts-sso/";
- license = licenses.lgpl21;
- maintainers = with maintainers; [ nckx ];
- };
-
- buildInputs = [ glib libaccounts-glib qt5.base ];
- nativeBuildInputs = [ doxygen pkgconfig ];
-
- configurePhase = ''
- qmake PREFIX=$out LIBDIR=$out/lib CMAKE_CONFIG_PATH=$out/lib/cmake
- '';
-}
diff --git a/pkgs/development/libraries/aspell/default.nix b/pkgs/development/libraries/aspell/default.nix
index 38d734e902c..5af340bef07 100644
--- a/pkgs/development/libraries/aspell/default.nix
+++ b/pkgs/development/libraries/aspell/default.nix
@@ -24,7 +24,7 @@ stdenv.mkDerivation rec {
'';
# Note: Users should define the `ASPELL_CONF' environment variable to
- # `dict-dir $HOME/.nix-profile/lib/aspell/' so that they can access
+ # `data-dir $HOME/.nix-profile/lib/aspell/' so that they can access
# dictionaries installed in their profile.
#
# We can't use `$out/etc/aspell.conf' for that purpose since Aspell
diff --git a/pkgs/development/libraries/grantlee/5.x-old.nix b/pkgs/development/libraries/grantlee/5.x-old.nix
deleted file mode 100644
index 4127280fb9a..00000000000
--- a/pkgs/development/libraries/grantlee/5.x-old.nix
+++ /dev/null
@@ -1,32 +0,0 @@
-{ stdenv, fetchurl, qt5, cmake }:
-
-stdenv.mkDerivation rec {
- name = "grantlee-5.0.0";
-
-# Upstream download server has country code firewall, so I made a mirror.
- src = fetchurl {
- urls = [
- "http://downloads.grantlee.org/${name}.tar.gz"
- "http://www.loegria.net/grantlee/${name}.tar.gz"
- ];
- sha256 = "0qdifp1sg87j3869xva5ai2d6d5ph7z4b85wv1fypf2k5sljpwpa";
- };
-
- buildInputs = [ cmake qt5.base qt5.script ];
-
- meta = {
- description = "Qt5 port of Django template system";
- longDescription = ''
- Grantlee is a plugin based String Template system written using the Qt
- framework. The goals of the project are to make it easier for application
- developers to separate the structure of documents from the data they
- contain, opening the door for theming.
-
- The syntax is intended to follow the syntax of the Django template system,
- and the design of Django is reused in Grantlee.'';
-
- homepage = http://gitorious.org/grantlee;
- maintainers = [ stdenv.lib.maintainers.urkud ];
- inherit (qt5.base.meta) platforms;
- };
-}
diff --git a/pkgs/development/libraries/grib-api/default.nix b/pkgs/development/libraries/grib-api/default.nix
new file mode 100644
index 00000000000..ee505b54e7e
--- /dev/null
+++ b/pkgs/development/libraries/grib-api/default.nix
@@ -0,0 +1,32 @@
+{ fetchurl, stdenv, curl,
+ netcdf, jasper, openjpeg }:
+
+stdenv.mkDerivation rec{
+ name = "grib-api-${version}";
+ version = "1.14.4";
+
+ src = fetchurl {
+ url = https://software.ecmwf.int/wiki/download/attachments/3473437/grib_api-1.14.4-Source.tar.gz;
+ sha256 = "1w8z9y79wakhwv1r4rb4dwlh9pbyw367klcm6laxz91hhvfrpfq8";
+ };
+
+ buildInputs = [ netcdf
+ jasper
+ openjpeg
+ curl # Used for downloading during make test
+ ];
+ doCheck = true;
+
+ meta = with stdenv.lib; {
+ homepage = "https://software.ecmwf.int/wiki/display/GRIB/Home";
+ license = licenses.asl20;
+ description = "ECMWF Library for the GRIB file format";
+ longDescription = ''
+ The ECMWF GRIB API is an application program interface accessible from C,
+ FORTRAN and Python programs developed for encoding and decoding WMO FM-92
+ GRIB edition 1 and edition 2 messages.
+ '';
+
+ };
+}
+
diff --git a/pkgs/development/libraries/gstreamer/legacy/gst-plugins-good/default.nix b/pkgs/development/libraries/gstreamer/legacy/gst-plugins-good/default.nix
index deca854008a..dc39bddc232 100644
--- a/pkgs/development/libraries/gstreamer/legacy/gst-plugins-good/default.nix
+++ b/pkgs/development/libraries/gstreamer/legacy/gst-plugins-good/default.nix
@@ -1,7 +1,7 @@
{ fetchurl, stdenv, pkgconfig, gst_plugins_base, aalib, cairo
, flac, libjpeg, zlib, speex, libpng, libdv, libcaca, libvpx
, libiec61883, libavc1394, taglib, libpulseaudio, gdk_pixbuf, orc
-, glib, gstreamer, bzip2, libsoup, libintlOrEmpty
+, glib, gstreamer, bzip2, libsoup, libshout, libintlOrEmpty
, # Whether to build no plugins that have external dependencies
# (except the PulseAudio plugin).
minimalDeps ? false
@@ -28,7 +28,7 @@ stdenv.mkDerivation rec {
++ libintlOrEmpty
++ stdenv.lib.optionals (!minimalDeps)
[ aalib libcaca cairo libdv flac libjpeg libpng speex
- taglib bzip2 libvpx gdk_pixbuf orc libsoup ];
+ taglib bzip2 libvpx gdk_pixbuf orc libsoup libshout ];
NIX_LDFLAGS = if stdenv.isDarwin then "-lintl" else null;
diff --git a/pkgs/development/libraries/gstreamer/legacy/gst-plugins-ugly/default.nix b/pkgs/development/libraries/gstreamer/legacy/gst-plugins-ugly/default.nix
index 99ac5a5ec54..8e4e662dc3b 100644
--- a/pkgs/development/libraries/gstreamer/legacy/gst-plugins-ugly/default.nix
+++ b/pkgs/development/libraries/gstreamer/legacy/gst-plugins-ugly/default.nix
@@ -1,5 +1,5 @@
{ fetchurl, stdenv, pkgconfig, glib, gstreamer, gst_plugins_base
-, libmad, libdvdread, libmpeg2, libcdio, a52dec, x264, orc, libintlOrEmpty }:
+, libmad, libdvdread, libmpeg2, libcdio, a52dec, x264, orc, lame, libintlOrEmpty }:
stdenv.mkDerivation rec {
name = "gst-plugins-ugly-0.10.19";
@@ -13,7 +13,7 @@ stdenv.mkDerivation rec {
};
buildInputs =
- [ pkgconfig glib gstreamer gst_plugins_base libmad libdvdread a52dec x264 orc ] ++ libintlOrEmpty;
+ [ pkgconfig glib gstreamer gst_plugins_base libmad libdvdread a52dec x264 orc lame ] ++ libintlOrEmpty;
NIX_LDFLAGS = if stdenv.isDarwin then "-lintl" else null;
diff --git a/pkgs/development/libraries/hyena/default.nix b/pkgs/development/libraries/hyena/default.nix
new file mode 100644
index 00000000000..daa4f7fb9f2
--- /dev/null
+++ b/pkgs/development/libraries/hyena/default.nix
@@ -0,0 +1,42 @@
+{ stdenv, fetchurl, pkgconfig, mono, gtk-sharp, monoDLLFixer }:
+
+stdenv.mkDerivation rec {
+ name = "hyena-${version}";
+ version = "0.5";
+
+ src = fetchurl {
+ url = "mirror://gnome/sources/hyena/${version}/hyena-${version}.tar.bz2" ;
+ sha256 = "eb7154a42b6529bb9746c39272719f3168d6363ed4bad305a916ed7d90bc8de9";
+ };
+
+ buildInputs = [
+ pkgconfig mono gtk-sharp
+ ];
+
+ postPatch = ''
+ patchShebangs build/dll-map-makefile-verifier
+ patchShebangs build/private-icon-theme-installer
+ find -name Makefile.in | xargs -n 1 -d '\n' sed -e 's/^dnl/#/' -i
+ '';
+
+ preConfigure = ''
+ substituteInPlace configure --replace gmcs mcs
+ '';
+
+ dontStrip = true;
+
+ inherit monoDLLFixer;
+
+ meta = with stdenv.lib; {
+ homepage = https://wiki.gnome.org/Hyena;
+ description = "A C# library which contains a hodge-podge of random stuff";
+ longDescription = ''
+ Hyena is a C# library used to make awesome applications. It contains a lot of random things,
+ including useful data structures, a Sqlite-based db layer, cool widgets, a JSON library,
+ a smart job/task scheduler, a user-query/search parser, and much more. It's particularly
+ useful for Gtk# applications, though only the Hyena.Gui assembly requires Gtk#.
+ '';
+ platforms = platforms.all;
+ maintainers = with maintainers; [ obadz ];
+ };
+}
diff --git a/pkgs/development/libraries/kde-frameworks-5.17/default.nix b/pkgs/development/libraries/kde-frameworks-5.17/default.nix
index 3a865b9d404..828faaa631f 100644
--- a/pkgs/development/libraries/kde-frameworks-5.17/default.nix
+++ b/pkgs/development/libraries/kde-frameworks-5.17/default.nix
@@ -70,7 +70,7 @@ let
kguiaddons = callPackage ./kguiaddons.nix {};
khtml = callPackage ./khtml.nix {};
ki18n = callPackage ./ki18n.nix {};
- kiconthemes = callPackage ./kiconthemes.nix {};
+ kiconthemes = callPackage ./kiconthemes {};
kidletime = callPackage ./kidletime.nix {};
kimageformats = callPackage ./kimageformats.nix {};
kinit = callPackage ./kinit {};
diff --git a/pkgs/development/libraries/kde-frameworks-5.17/kauth/default.nix b/pkgs/development/libraries/kde-frameworks-5.17/kauth/default.nix
index 42a10019334..2b000ff3c04 100644
--- a/pkgs/development/libraries/kde-frameworks-5.17/kauth/default.nix
+++ b/pkgs/development/libraries/kde-frameworks-5.17/kauth/default.nix
@@ -1,13 +1,13 @@
{ kdeFramework, lib
, extra-cmake-modules
, kcoreaddons
-, polkitQt
+, polkit-qt
}:
kdeFramework {
name = "kauth";
nativeBuildInputs = [ extra-cmake-modules ];
- buildInputs = [ polkitQt ];
+ buildInputs = [ polkit-qt ];
propagatedBuildInputs = [ kcoreaddons ];
patches = [ ./kauth-policy-install.patch ];
meta = {
diff --git a/pkgs/development/libraries/kde-frameworks-5.17/kfilemetadata.nix b/pkgs/development/libraries/kde-frameworks-5.17/kfilemetadata.nix
index 92ca1f26b93..be99c58d550 100644
--- a/pkgs/development/libraries/kde-frameworks-5.17/kfilemetadata.nix
+++ b/pkgs/development/libraries/kde-frameworks-5.17/kfilemetadata.nix
@@ -1,11 +1,11 @@
{ kdeFramework, lib, extra-cmake-modules, attr, ebook_tools, exiv2
-, ffmpeg, karchive, ki18n, popplerQt, qtbase, taglib
+, ffmpeg, karchive, ki18n, poppler, qtbase, taglib
}:
kdeFramework {
name = "kfilemetadata";
nativeBuildInputs = [ extra-cmake-modules ];
- buildInputs = [ attr ebook_tools exiv2 ffmpeg karchive popplerQt taglib ];
+ buildInputs = [ attr ebook_tools exiv2 ffmpeg karchive poppler taglib ];
propagatedBuildInputs = [ qtbase ki18n ];
meta = {
maintainers = [ lib.maintainers.ttuegel ];
diff --git a/pkgs/development/libraries/kde-frameworks-5.17/kiconthemes/default-theme-breeze.patch b/pkgs/development/libraries/kde-frameworks-5.17/kiconthemes/default-theme-breeze.patch
new file mode 100644
index 00000000000..5b3b15d5d5b
--- /dev/null
+++ b/pkgs/development/libraries/kde-frameworks-5.17/kiconthemes/default-theme-breeze.patch
@@ -0,0 +1,13 @@
+Index: kiconthemes-5.17.0/src/kicontheme.cpp
+===================================================================
+--- kiconthemes-5.17.0.orig/src/kicontheme.cpp
++++ kiconthemes-5.17.0/src/kicontheme.cpp
+@@ -557,7 +557,7 @@ void KIconTheme::reconfigure()
+ // static
+ QString KIconTheme::defaultThemeName()
+ {
+- return QStringLiteral("oxygen");
++ return QStringLiteral("breeze");
+ }
+
+ void KIconTheme::assignIconsToContextMenu(ContextMenus type,
diff --git a/pkgs/development/libraries/kde-frameworks-5.17/kiconthemes.nix b/pkgs/development/libraries/kde-frameworks-5.17/kiconthemes/default.nix
similarity index 53%
rename from pkgs/development/libraries/kde-frameworks-5.17/kiconthemes.nix
rename to pkgs/development/libraries/kde-frameworks-5.17/kiconthemes/default.nix
index eb24403169d..b78b25582be 100644
--- a/pkgs/development/libraries/kde-frameworks-5.17/kiconthemes.nix
+++ b/pkgs/development/libraries/kde-frameworks-5.17/kiconthemes/default.nix
@@ -1,13 +1,14 @@
-{ kdeFramework, lib, makeQtWrapper
-, extra-cmake-modules, kconfigwidgets, ki18n
-, kitemviews, qtsvg
+{ kdeFramework, lib, copyPathsToStore
+, extra-cmake-modules, makeQtWrapper
+, kconfigwidgets, ki18n, breeze-icons, kitemviews, qtsvg
}:
kdeFramework {
name = "kiconthemes";
+ patches = copyPathsToStore (lib.readPathsFromFile ./. ./series);
nativeBuildInputs = [ extra-cmake-modules makeQtWrapper ];
buildInputs = [ kconfigwidgets kitemviews qtsvg ];
- propagatedBuildInputs = [ ki18n ];
+ propagatedBuildInputs = [ breeze-icons ki18n ];
postInstall = ''
wrapQtProgram "$out/bin/kiconfinder5"
'';
diff --git a/pkgs/development/libraries/kde-frameworks-5.17/kiconthemes/series b/pkgs/development/libraries/kde-frameworks-5.17/kiconthemes/series
new file mode 100644
index 00000000000..ab5cc8a3edb
--- /dev/null
+++ b/pkgs/development/libraries/kde-frameworks-5.17/kiconthemes/series
@@ -0,0 +1 @@
+default-theme-breeze.patch
diff --git a/pkgs/development/libraries/libdbusmenu-qt/qt-5.4.nix b/pkgs/development/libraries/libdbusmenu-qt/qt-5.4.nix
deleted file mode 100644
index 5f76162453c..00000000000
--- a/pkgs/development/libraries/libdbusmenu-qt/qt-5.4.nix
+++ /dev/null
@@ -1,23 +0,0 @@
-{ stdenv, fetchbzr, qt5, cmake }:
-
-stdenv.mkDerivation {
- name = "libdbusmenu-qt-0.9.3+14";
-
- src = fetchbzr {
- url = "http://bazaar.launchpad.net/~dbusmenu-team/libdbusmenu-qt/trunk";
- rev = "ps-jenkins@lists.canonical.com-20140619090718-mppiiax5atpnb8i2";
- sha256 = "1dbhaljyivbv3wc184zpjfjmn24zb6aj72wgg1gg1xl5f783issd";
- };
-
- buildInputs = [ qt5.base ];
- nativeBuildInputs = [ cmake ];
-
- cmakeFlags = "-DWITH_DOC=OFF";
-
- meta = with stdenv.lib; {
- homepage = "http://launchpad.net/libdbusmenu-qt";
- description = "Provides a Qt implementation of the DBusMenu spec";
- maintainers = [ maintainers.ttuegel ];
- inherit (qt5.base.meta) platforms;
- };
-}
diff --git a/pkgs/development/libraries/liboauth/default.nix b/pkgs/development/libraries/liboauth/default.nix
index 8f46d1c0bfd..479a187cf87 100644
--- a/pkgs/development/libraries/liboauth/default.nix
+++ b/pkgs/development/libraries/liboauth/default.nix
@@ -13,6 +13,11 @@ stdenv.mkDerivation rec {
configureFlags = [ "--enable-nss" ];
+ postInstall = ''
+ substituteInPlace $out/lib/liboauth.la \
+ --replace "-lnss3" "-L${nss}/lib -lnss3"
+ '';
+
meta = with stdenv.lib; {
platforms = platforms.linux;
description = "C library implementing the OAuth secure authentication protocol";
diff --git a/pkgs/development/libraries/libpsl/default.nix b/pkgs/development/libraries/libpsl/default.nix
index 4058943b6f3..1412e1d59fa 100644
--- a/pkgs/development/libraries/libpsl/default.nix
+++ b/pkgs/development/libraries/libpsl/default.nix
@@ -5,10 +5,10 @@ let
version = "${libVersion}-list-${listVersion}";
- listVersion = "2015-12-03";
+ listVersion = "2015-12-17";
listSources = fetchFromGitHub {
- sha256 = "1192g8x57pm9r3va1xfvni0jczg8wy5kka6vcwnvc3lk4314l2na";
- rev = "6c137ba598d61f2ea299632bb447608a9fc25d0f";
+ sha256 = "09scxqlw7cp7vkjn7bp7dr9nqb3wg84kvw3iyapyxddfri4k0rvl";
+ rev = "9636089f5f22b0af98b1a48fb9179dc875f0872d";
repo = "list";
owner = "publicsuffix";
};
diff --git a/pkgs/development/libraries/mlt/qt-5.4.nix b/pkgs/development/libraries/mlt/qt-5.4.nix
deleted file mode 100644
index 6f308a20fdc..00000000000
--- a/pkgs/development/libraries/mlt/qt-5.4.nix
+++ /dev/null
@@ -1,39 +0,0 @@
-{ stdenv, fetchurl, SDL, ffmpeg, frei0r, libjack2, libdv, libsamplerate
-, libvorbis, libxml2, makeWrapper, movit, pkgconfig, qt5, sox
-}:
-
-stdenv.mkDerivation rec {
- name = "mlt-${version}";
- version = "0.9.8";
-
- src = fetchurl {
- url = "https://github.com/mltframework/mlt/archive/v${version}.tar.gz";
- sha256 = "0x0hsb05i7g70dh3jll41qlvcylailfgsr0y1dpx7hyigynxc50j";
- };
-
- buildInputs = [
- SDL ffmpeg frei0r libjack2 libdv libsamplerate libvorbis libxml2
- makeWrapper movit pkgconfig qt5.base qt5.svg sox
- ];
-
- # Mostly taken from:
- # http://www.kdenlive.org/user-manual/downloading-and-installing-kdenlive/installing-source/installing-mlt-rendering-engine
- configureFlags = [
- "--avformat-swscale" "--enable-gpl" "--enable-gpl" "--enable-gpl3"
- "--enable-opengl"
- ];
-
- enableParallelBuilding = true;
-
- postInstall = ''
- wrapProgram $out/bin/melt --prefix FREI0R_PATH : ${frei0r}/lib/frei0r-1
- '';
-
- meta = with stdenv.lib; {
- description = "Open source multimedia framework, designed for television broadcasting";
- homepage = http://www.mltframework.org/;
- license = licenses.gpl3;
- maintainers = [ maintainers.goibhniu ];
- platforms = platforms.linux;
- };
-}
diff --git a/pkgs/development/libraries/mlt/qt-5.5.nix b/pkgs/development/libraries/mlt/qt-5.nix
similarity index 100%
rename from pkgs/development/libraries/mlt/qt-5.5.nix
rename to pkgs/development/libraries/mlt/qt-5.nix
diff --git a/pkgs/development/libraries/phonon-backend-gstreamer/qt5/old.nix b/pkgs/development/libraries/phonon-backend-gstreamer/qt5/old.nix
deleted file mode 100644
index d91808ec880..00000000000
--- a/pkgs/development/libraries/phonon-backend-gstreamer/qt5/old.nix
+++ /dev/null
@@ -1,41 +0,0 @@
-{ stdenv, fetchurl, cmake, gst_all_1, phonon_qt5, pkgconfig, qt5, debug ? false }:
-
-with stdenv.lib;
-
-let
- version = "4.8.2";
- pname = "phonon-backend-gstreamer";
-in
-
-stdenv.mkDerivation rec {
- name = "${pname}-${version}";
-
- src = fetchurl {
- url = "mirror://kde/stable/phonon/${pname}/${version}/src/${name}.tar.xz";
- sha256 = "1q1ix6zsfnh6gfnpmwp67s376m7g7ahpjl1qp2fqakzb5cgzgq10";
- };
-
- buildInputs = with gst_all_1; [
- gstreamer gst-plugins-base phonon_qt5 qt5.base
- ];
-
- NIX_CFLAGS_COMPILE = [
- # This flag should be picked up through pkgconfig, but it isn't.
- "-I${gst_all_1.gstreamer}/lib/gstreamer-1.0/include"
- ];
-
- nativeBuildInputs = [ cmake pkgconfig ];
-
- cmakeFlags = [
- "-DCMAKE_INSTALL_LIBDIR=lib"
- "-DPHONON_BUILD_PHONON4QT5=ON"
- ]
- ++ optional debug "-DCMAKE_BUILD_TYPE=Debug";
-
- meta = with stdenv.lib; {
- homepage = http://phonon.kde.org/;
- description = "GStreamer backend for Phonon";
- platforms = platforms.linux;
- maintainer = with maintainers; [ ttuegel ];
- };
-}
diff --git a/pkgs/development/libraries/phonon/qt5/old.nix b/pkgs/development/libraries/phonon/qt5/old.nix
deleted file mode 100644
index 3dddd60b59f..00000000000
--- a/pkgs/development/libraries/phonon/qt5/old.nix
+++ /dev/null
@@ -1,36 +0,0 @@
-{ stdenv, fetchurl, cmake, mesa, pkgconfig, libpulseaudio, qt5, debug ? false }:
-
-with stdenv.lib;
-
-let
- v = "4.8.3";
-in
-
-stdenv.mkDerivation rec {
- name = "phonon-${v}";
-
- src = fetchurl {
- url = "mirror://kde/stable/phonon/${v}/src/phonon-${v}.tar.xz";
- sha256 = "05nshngk03ln90vsjz44dx8al576f4vd5fvhs1l0jmx13jb9q551";
- };
-
- buildInputs = [ mesa qt5.base qt5.quick1 qt5.tools libpulseaudio ];
-
- nativeBuildInputs = [ cmake pkgconfig ];
-
- NIX_CFLAGS_COMPILE = "-fPIC";
-
- cmakeFlags = [
- "-DCMAKE_BUILD_TYPE=${if debug then "Debug" else "Release"}"
- "-DPHONON_BUILD_PHONON4QT5=ON"
- "-DCMAKE_INSTALL_LIBDIR=lib"
- ];
-
- meta = {
- homepage = http://phonon.kde.org/;
- description = "Multimedia API for Qt";
- license = stdenv.lib.licenses.lgpl2;
- platforms = stdenv.lib.platforms.linux;
- maintainers = with stdenv.lib.maintainers; [ ttuegel ];
- };
-}
diff --git a/pkgs/development/libraries/polkit-qt-1/old.nix b/pkgs/development/libraries/polkit-qt-1/old.nix
deleted file mode 100644
index b887134e5b9..00000000000
--- a/pkgs/development/libraries/polkit-qt-1/old.nix
+++ /dev/null
@@ -1,22 +0,0 @@
-{ stdenv, fetchurl, cmake, pkgconfig, polkit, automoc4, glib
-, qt4 ? null, qt5 ? null, withQt5 ? false }:
-
-assert (withQt5 -> qt5 != null); assert (!withQt5 -> qt4 != null);
-
-stdenv.mkDerivation {
- name = "polkit-qt-1-0.112.0";
-
- src = fetchurl {
- url = "mirror://kde/stable/apps/KDE4.x/admin/polkit-qt-1-0.112.0.tar.bz2";
- sha256 = "1ip78x20hjqvm08kxhp6gb8hf6k5n6sxyx6kk2yvvq53djzh7yv7";
- };
-
- nativeBuildInputs = [ cmake automoc4 pkgconfig ];
-
- propagatedBuildInputs = [ polkit glib ] ++ (if withQt5 then [qt5.base] else [qt4]);
-
- meta = {
- description = "A Qt wrapper around PolKit";
- maintainers = with stdenv.lib.maintainers; [ ttuegel ];
- };
-}
diff --git a/pkgs/development/libraries/qca-qt5/old.nix b/pkgs/development/libraries/qca-qt5/old.nix
deleted file mode 100644
index a3e9e9be642..00000000000
--- a/pkgs/development/libraries/qca-qt5/old.nix
+++ /dev/null
@@ -1,20 +0,0 @@
-{ stdenv, fetchurl, cmake, openssl, pkgconfig, qt5 }:
-
-stdenv.mkDerivation rec {
- name = "qca-qt5-2.1.1";
-
- src = fetchurl {
- url = "http://download.kde.org/stable/qca/2.1.1/src/qca-2.1.1.tar.xz";
- sha256 = "10z9icq28fww4qbzwra8d9z55ywbv74qk68nhiqfrydm21wkxplm";
- };
-
- buildInputs = [ openssl qt5.base ];
- nativeBuildInputs = [ cmake pkgconfig ];
-
- meta = with stdenv.lib; {
- description = "Qt 5 Cryptographic Architecture";
- homepage = http://delta.affinix.com/qca;
- maintainers = with maintainers; [ ttuegel ];
- license = licenses.lgpl21Plus;
- };
-}
diff --git a/pkgs/development/libraries/qt-5/5.4/0003-glib-2.32.patch b/pkgs/development/libraries/qt-5/5.4/0003-glib-2.32.patch
deleted file mode 100644
index 4abb69da4d8..00000000000
--- a/pkgs/development/libraries/qt-5/5.4/0003-glib-2.32.patch
+++ /dev/null
@@ -1,25 +0,0 @@
-From a41c3e3a3a1ce4b373b1bbb98f3a835e9e8a0718 Mon Sep 17 00:00:00 2001
-From: Thomas Tuegel
-Date: Mon, 1 Dec 2014 17:22:39 -0600
-Subject: [PATCH] glib-2.32
-
----
- qtscript/src/3rdparty/javascriptcore/JavaScriptCore/wtf/Threading.h | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/qtscript/src/3rdparty/javascriptcore/JavaScriptCore/wtf/Threading.h b/qtscript/src/3rdparty/javascriptcore/JavaScriptCore/wtf/Threading.h
-index 1f6d25e..087c3fb 100644
---- a/qtscript/src/3rdparty/javascriptcore/JavaScriptCore/wtf/Threading.h
-+++ b/qtscript/src/3rdparty/javascriptcore/JavaScriptCore/wtf/Threading.h
-@@ -81,7 +81,7 @@
- #include
- #elif PLATFORM(GTK)
- #include
--typedef struct _GMutex GMutex;
-+typedef union _GMutex GMutex;
- typedef struct _GCond GCond;
- #endif
-
---
-2.1.3
-
diff --git a/pkgs/development/libraries/qt-5/5.4/0004-dlopen-resolv.patch b/pkgs/development/libraries/qt-5/5.4/0004-dlopen-resolv.patch
deleted file mode 100644
index e6b921b771d..00000000000
--- a/pkgs/development/libraries/qt-5/5.4/0004-dlopen-resolv.patch
+++ /dev/null
@@ -1,39 +0,0 @@
-From 63af41c6eeca28c911c13b1a77afeaf860863c2d Mon Sep 17 00:00:00 2001
-From: Thomas Tuegel
-Date: Mon, 1 Dec 2014 17:22:55 -0600
-Subject: [PATCH] dlopen-resolv
-
----
- qtbase/src/network/kernel/qdnslookup_unix.cpp | 2 +-
- qtbase/src/network/kernel/qhostinfo_unix.cpp | 2 +-
- 2 files changed, 2 insertions(+), 2 deletions(-)
-
-diff --git a/qtbase/src/network/kernel/qdnslookup_unix.cpp b/qtbase/src/network/kernel/qdnslookup_unix.cpp
-index 8c5a0eb..27ebf16 100644
---- a/qtbase/src/network/kernel/qdnslookup_unix.cpp
-+++ b/qtbase/src/network/kernel/qdnslookup_unix.cpp
-@@ -87,7 +87,7 @@ static void resolveLibrary()
- if (!lib.load())
- #endif
- {
-- lib.setFileName(QLatin1String("resolv"));
-+ lib.setFileName(QLatin1String("@glibc/lib/resolv"));
- if (!lib.load())
- return;
- }
-diff --git a/qtbase/src/network/kernel/qhostinfo_unix.cpp b/qtbase/src/network/kernel/qhostinfo_unix.cpp
-index df8c8b1..613d0e0 100644
---- a/qtbase/src/network/kernel/qhostinfo_unix.cpp
-+++ b/qtbase/src/network/kernel/qhostinfo_unix.cpp
-@@ -103,7 +103,7 @@ static void resolveLibrary()
- if (!lib.load())
- #endif
- {
-- lib.setFileName(QLatin1String("resolv"));
-+ lib.setFileName(QLatin1String("@glibc@/lib/libresolv"));
- if (!lib.load())
- return;
- }
---
-2.1.3
-
diff --git a/pkgs/development/libraries/qt-5/5.4/0005-dlopen-gl.patch b/pkgs/development/libraries/qt-5/5.4/0005-dlopen-gl.patch
deleted file mode 100644
index d112427bdd6..00000000000
--- a/pkgs/development/libraries/qt-5/5.4/0005-dlopen-gl.patch
+++ /dev/null
@@ -1,25 +0,0 @@
-From 6aaf6858bf817172a4c503158e1701c4837ee790 Mon Sep 17 00:00:00 2001
-From: Thomas Tuegel
-Date: Mon, 1 Dec 2014 17:23:08 -0600
-Subject: [PATCH] dlopen-gl
-
----
- qtbase/src/plugins/platforms/xcb/qglxintegration.cpp | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/qtbase/src/plugins/platforms/xcb/qglxintegration.cpp b/qtbase/src/plugins/platforms/xcb/qglxintegration.cpp
-index 67235e0..2220a2e 100644
---- a/qtbase/src/plugins/platforms/xcb/qglxintegration.cpp
-+++ b/qtbase/src/plugins/platforms/xcb/qglxintegration.cpp
-@@ -434,7 +434,7 @@ void (*QGLXContext::getProcAddress(const QByteArray &procName)) ()
- {
- extern const QString qt_gl_library_name();
- // QLibrary lib(qt_gl_library_name());
-- QLibrary lib(QLatin1String("GL"));
-+ QLibrary lib(QLatin1String("@openglDriver@/lib/libGL"));
- glXGetProcAddressARB = (qt_glXGetProcAddressARB) lib.resolve("glXGetProcAddressARB");
- }
- }
---
-2.1.3
-
diff --git a/pkgs/development/libraries/qt-5/5.4/0010-dlopen-libXcursor.patch b/pkgs/development/libraries/qt-5/5.4/0010-dlopen-libXcursor.patch
deleted file mode 100644
index 49ade86fae3..00000000000
--- a/pkgs/development/libraries/qt-5/5.4/0010-dlopen-libXcursor.patch
+++ /dev/null
@@ -1,29 +0,0 @@
-From b56e3737ca97e3de664603976989da4419297eb3 Mon Sep 17 00:00:00 2001
-From: Thomas Tuegel
-Date: Mon, 1 Dec 2014 17:33:51 -0600
-Subject: [PATCH] dlopen-libXcursor
-
----
- qtbase/src/plugins/platforms/xcb/qxcbcursor.cpp | 4 ++--
- 1 file changed, 2 insertions(+), 2 deletions(-)
-
-diff --git a/qtbase/src/plugins/platforms/xcb/qxcbcursor.cpp b/qtbase/src/plugins/platforms/xcb/qxcbcursor.cpp
-index 6dbac90..4b23fc2 100644
---- a/qtbase/src/plugins/platforms/xcb/qxcbcursor.cpp
-+++ b/qtbase/src/plugins/platforms/xcb/qxcbcursor.cpp
-@@ -305,10 +305,10 @@ QXcbCursor::QXcbCursor(QXcbConnection *conn, QXcbScreen *screen)
- #ifdef XCB_USE_XLIB
- static bool function_ptrs_not_initialized = true;
- if (function_ptrs_not_initialized) {
-- QLibrary xcursorLib(QLatin1String("Xcursor"), 1);
-+ QLibrary xcursorLib(QLatin1String("@libXcursor@/lib/libXcursor"), 1);
- bool xcursorFound = xcursorLib.load();
- if (!xcursorFound) { // try without the version number
-- xcursorLib.setFileName(QLatin1String("Xcursor"));
-+ xcursorLib.setFileName(QLatin1String("@libXcursor@/lib/Xcursor"));
- xcursorFound = xcursorLib.load();
- }
- if (xcursorFound) {
---
-2.1.3
-
diff --git a/pkgs/development/libraries/qt-5/5.4/0012-dlopen-dbus.patch b/pkgs/development/libraries/qt-5/5.4/0012-dlopen-dbus.patch
deleted file mode 100644
index 77eb7bc85af..00000000000
--- a/pkgs/development/libraries/qt-5/5.4/0012-dlopen-dbus.patch
+++ /dev/null
@@ -1,13 +0,0 @@
-diff --git a/qtbase/src/dbus/qdbus_symbols.cpp b/qtbase/src/dbus/qdbus_symbols.cpp
-index 6764309..33f25f9 100644
---- a/qtbase/src/dbus/qdbus_symbols.cpp
-+++ b/qtbase/src/dbus/qdbus_symbols.cpp
-@@ -88,7 +88,7 @@ bool qdbus_loadLibDBus()
- #ifdef Q_OS_WIN
- QLatin1String("dbus-1"),
- #endif
-- QLatin1String("libdbus-1")
-+ QLatin1String("@dbus_libs@/lib/libdbus-1")
- };
-
- lib->unload();
diff --git a/pkgs/development/libraries/qt-5/5.4/0014-mkspecs-libgl.patch b/pkgs/development/libraries/qt-5/5.4/0014-mkspecs-libgl.patch
deleted file mode 100644
index 1fc4bbd6076..00000000000
--- a/pkgs/development/libraries/qt-5/5.4/0014-mkspecs-libgl.patch
+++ /dev/null
@@ -1,17 +0,0 @@
-Ensure Qt knows where libGL is.
-
-Author: Bjørn Forsman
-diff -uNr qt-everywhere-opensource-src-5.3.2.orig/qtbase/mkspecs/common/linux.conf qt-everywhere-opensource-src-5.3.2/qtbase/mkspecs/common/linux.conf
---- qt-everywhere-opensource-src-5.3.2.orig/qtbase/mkspecs/common/linux.conf 2014-09-11 12:48:07.000000000 +0200
-+++ qt-everywhere-opensource-src-5.3.2/qtbase/mkspecs/common/linux.conf 2015-08-23 13:03:30.617473019 +0200
-@@ -12,8 +12,8 @@
- QMAKE_LIBDIR =
- QMAKE_INCDIR_X11 =
- QMAKE_LIBDIR_X11 =
--QMAKE_INCDIR_OPENGL =
--QMAKE_LIBDIR_OPENGL =
-+QMAKE_INCDIR_OPENGL = @mesa@/include
-+QMAKE_LIBDIR_OPENGL = @mesa@/lib
- QMAKE_INCDIR_OPENGL_ES2 = $$QMAKE_INCDIR_OPENGL
- QMAKE_LIBDIR_OPENGL_ES2 = $$QMAKE_LIBDIR_OPENGL
- QMAKE_INCDIR_EGL =
diff --git a/pkgs/development/libraries/qt-5/5.4/0100-ssl.patch b/pkgs/development/libraries/qt-5/5.4/0100-ssl.patch
deleted file mode 100644
index 4607274de74..00000000000
--- a/pkgs/development/libraries/qt-5/5.4/0100-ssl.patch
+++ /dev/null
@@ -1,13 +0,0 @@
-diff --git a/qtbase/src/network/ssl/qsslsocket_openssl.cpp b/qtbase/src/network/ssl/qsslsocket_openssl.cpp
-index 8833e3f..c56d381 100644
---- a/qtbase/src/network/ssl/qsslsocket_openssl.cpp
-+++ b/qtbase/src/network/ssl/qsslsocket_openssl.cpp
-@@ -47,7 +47,7 @@
- ****************************************************************************/
-
- //#define QSSLSOCKET_DEBUG
--//#define QT_DECRYPT_SSL_TRAFFIC
-+#define QT_DECRYPT_SSL_TRAFFIC
-
- #include "qssl_p.h"
- #include "qsslsocket_openssl_p.h"
diff --git a/pkgs/development/libraries/qt-5/5.4/default.nix b/pkgs/development/libraries/qt-5/5.4/default.nix
index 136c352d1aa..9b1324d1137 100644
--- a/pkgs/development/libraries/qt-5/5.4/default.nix
+++ b/pkgs/development/libraries/qt-5/5.4/default.nix
@@ -1,8 +1,8 @@
# Maintainer's Notes:
#
# Minor updates:
-# 1. Edit ./manifest.sh to point to the updated URL.
-# 2. Run ./manifest.sh.
+# 1. Edit ./fetchsrcs.sh to point to the updated URL.
+# 2. Run ./fetchsrcs.sh.
# 3. Build and enjoy.
#
# Major updates:
@@ -11,350 +11,106 @@
# if it exists. Then follow the minor update instructions. Be sure to check if
# any new components have been added and package them as necessary.
-{ autonix, fetchurl, newScope, stdenv
-
-, bison2
-, mesa_noglu
-, cups
-, gnome
+{ pkgs
# options
, developerBuild ? false
, decryptSslTraffic ? false
}:
-with autonix;
+let inherit (pkgs) makeSetupHook makeWrapper stdenv; in
+
with stdenv.lib;
let
- srcs =
+
+ mirror = "http://download.qt.io";
+ srcs = import ./srcs.nix { inherit mirror; inherit (pkgs) fetchurl; };
+
+ qtSubmodule = args:
let
- manifest = builtins.fromJSON (builtins.readFile ./manifest.json);
- mirror = "http://download.qt.io";
- fetch = src: fetchurl (src // { url = "${mirror}/${src.url}"; });
- mkPair = pkg: nameValuePair (builtins.parseDrvName pkg.name).name (fetch pkg.src);
- pairs = map mkPair manifest;
- in listToAttrs pairs;
+ inherit (args) name;
+ inherit (srcs."${args.name}") version src;
+ inherit (pkgs.stdenv) mkDerivation;
+ in mkDerivation (args // {
+ name = "${name}-${version}";
+ inherit src;
- version = "5.4.2";
+ propagatedBuildInputs = args.qtInputs ++ (args.propagatedBuildInputs or []);
- callPackage = newScope (self // { inherit qtSubmodule; });
+ NIX_QT_SUBMODULE = args.NIX_QT_SUBMODULE or true;
+ dontAddPrefix = args.dontAddPrefix or true;
+ dontFixLibtool = args.dontFixLibtool or true;
+ configureScript = args.configureScript or "qmake";
- qtSubmodule = callPackage ./qt-submodule.nix {
- inherit srcs version;
- inherit (stdenv) mkDerivation;
- };
+ enableParallelBuilding = args.enableParallelBuilding or true;
- self =
- {
+ meta = {
+ homepage = http://qt-project.org;
+ description = "A cross-platform application framework for C++";
+ license = with licenses; [ fdl13 gpl2 lgpl21 lgpl3 ];
+ maintainers = with maintainers; [ bbenoist qknight ttuegel ];
+ platforms = platforms.linux;
+ } // (args.meta or {});
+ });
- activeqt = callPackage
- (
- { qtSubmodule, base }:
+ addPackages = self: with self;
+ let
+ callPackage = self.newScope { inherit qtSubmodule srcs; };
+ in {
- qtSubmodule {
- name = "qtactiveqt";
- qtInputs = [ base ];
- }
- )
- {};
-
- /* androidextras = not packaged */
-
- base = callPackage ./qtbase.nix {
- mesa = mesa_noglu;
- cups = if stdenv.isLinux then cups else null;
+ qtbase = callPackage ./qtbase {
+ mesa = pkgs.mesa_noglu;
+ cups = if stdenv.isLinux then pkgs.cups else null;
# GNOME dependencies are not used unless gtkStyle == true
- inherit (gnome) libgnomeui GConf gnome_vfs;
- bison = bison2; # error: too few arguments to function 'int yylex(...
- inherit developerBuild srcs version decryptSslTraffic;
+ inherit (pkgs.gnome) libgnomeui GConf gnome_vfs;
+ bison = pkgs.bison2; # error: too few arguments to function 'int yylex(...
+ inherit developerBuild decryptSslTraffic;
};
- connectivity = callPackage
- (
- { qtSubmodule, base, declarative }:
+ /* qt3d = not packaged */
+ /* qtactiveqt = not packaged */
+ /* qtandroidextras = not packaged */
+ /* qtcanvas3d = not packaged */
+ qtconnectivity = callPackage ./qtconnectivity.nix {};
+ qtdeclarative = callPackage ./qtdeclarative {};
+ qtdoc = callPackage ./qtdoc.nix {};
+ qtenginio = callPackage ./qtenginio.nix {};
+ qtgraphicaleffects = callPackage ./qtgraphicaleffects.nix {};
+ qtimageformats = callPackage ./qtimageformats.nix {};
+ qtlocation = callPackage ./qtlocation.nix {};
+ /* qtmacextras = not packaged */
+ qtmultimedia = callPackage ./qtmultimedia.nix {
+ inherit (pkgs.gst_all_1) gstreamer gst-plugins-base;
+ };
+ qtquick1 = callPackage ./qtquick1 {};
+ qtquickcontrols = callPackage ./qtquickcontrols.nix {};
+ qtscript = callPackage ./qtscript {};
+ qtsensors = callPackage ./qtsensors.nix {};
+ qtserialport = callPackage ./qtserialport {};
+ qtsvg = callPackage ./qtsvg.nix {};
+ qttools = callPackage ./qttools.nix {};
+ qttranslations = callPackage ./qttranslations.nix {};
+ /* qtwayland = not packaged */
+ /* qtwebchannel = not packaged */
+ /* qtwebengine = not packaged */
+ qtwebkit = callPackage ./qtwebkit {};
+ qtwebkit-examples = callPackage ./qtwebkit-examples.nix {};
+ qtwebsockets = callPackage ./qtwebsockets.nix {};
+ /* qtwinextras = not packaged */
+ qtx11extras = callPackage ./qtx11extras.nix {};
+ qtxmlpatterns = callPackage ./qtxmlpatterns.nix {};
- qtSubmodule {
- name = "qtconnectivity";
- qtInputs = [ base declarative ];
- }
- )
- {};
+ env = callPackage ../qt-env.nix {};
+ full = env "qt-${qtbase.version}" [
+ qtconnectivity qtdeclarative qtdoc qtenginio qtgraphicaleffects qtimageformats
+ qtlocation qtmultimedia qtquick1 qtquickcontrols qtscript qtsensors qtserialport
+ qtsvg qttools qttranslations qtwebkit qtwebkit-examples qtwebsockets qtx11extras
+ qtxmlpatterns
+ ];
- declarative = callPackage
- (
- { qtSubmodule, python, base, svg, xmlpatterns }:
-
- qtSubmodule {
- name = "qtdeclarative";
- qtInputs = [ base svg xmlpatterns ];
- nativeBuildInputs = [ python ];
- }
- )
- {};
-
- doc = callPackage
- (
- { qtSubmodule, declarative }:
-
- qtSubmodule {
- name = "qtdoc";
- qtInputs = [ declarative ];
- }
- )
- {};
-
- enginio = callPackage
- (
- { qtSubmodule, declarative }:
-
- qtSubmodule {
- name = "qtenginio";
- qtInputs = [ declarative ];
- }
- )
- {};
-
- graphicaleffects = callPackage
- (
- { qtSubmodule, declarative }:
-
- qtSubmodule {
- name = "qtgraphicaleffects";
- qtInputs = [ declarative ];
- }
- )
- {};
-
- imageformats = callPackage
- (
- { qtSubmodule, base }:
-
- qtSubmodule {
- name = "qtimageformats";
- qtInputs = [ base ];
- }
- )
- {};
-
- location = callPackage
- (
- { qtSubmodule, base, multimedia }:
-
- qtSubmodule {
- name = "qtlocation";
- qtInputs = [ base multimedia ];
- }
- )
- {};
-
- /* macextras = not packaged */
-
- multimedia = callPackage
- (
- { qtSubmodule, base, declarative, pkgconfig
- , alsaLib, gstreamer, gst_plugins_base, libpulseaudio
- }:
-
- qtSubmodule {
- name = "qtmultimedia";
- qtInputs = [ base declarative ];
- buildInputs = [
- pkgconfig alsaLib gstreamer gst_plugins_base libpulseaudio
- ];
- }
- )
- {};
-
- quick1 = callPackage
- (
- { qtSubmodule, script, svg, webkit, xmlpatterns }:
-
- qtSubmodule {
- name = "qtquick1";
- qtInputs = [ script svg webkit xmlpatterns ];
- }
- )
- {};
-
- quickcontrols = callPackage
- (
- { qtSubmodule, declarative }:
-
- qtSubmodule {
- name = "qtquickcontrols";
- qtInputs = [ declarative ];
- }
- )
- {};
-
- script = callPackage
- (
- { qtSubmodule, base, tools }:
-
- qtSubmodule {
- name = "qtscript";
- qtInputs = [ base tools ];
- patchFlags = "-p2"; # patches originally for monolithic build
- patches = [ ./0003-glib-2.32.patch ];
- }
- )
- {};
-
- sensors = callPackage
- (
- { qtSubmodule, base, declarative }:
-
- qtSubmodule {
- name = "qtsensors";
- qtInputs = [ base declarative ];
- }
- )
- {};
-
- serialport = callPackage
- (
- { qtSubmodule, base }:
-
- qtSubmodule {
- name = "qtserialport";
- qtInputs = [ base ];
- patchFlags = "-p2"; # patches originally for monolithic build
- patches = [ ./0009-dlopen-serialport-udev.patch ];
- }
- )
- {};
-
- svg = callPackage
- (
- { qtSubmodule, base }:
-
- qtSubmodule {
- name = "qtsvg";
- qtInputs = [ base ];
- }
- )
- {};
-
- tools = callPackage
- (
- { qtSubmodule, activeqt, base, declarative, webkit }:
-
- qtSubmodule {
- name = "qttools";
- qtInputs = [ activeqt base declarative webkit ];
- }
- )
- {};
-
- translations = callPackage
- (
- { qtSubmodule, tools }:
-
- qtSubmodule {
- name = "qttranslations";
- qtInputs = [ tools ];
- }
- )
- {};
-
- /* wayland = not packaged */
-
- /* webchannel = not packaged */
-
- /* webengine = not packaged */
-
- webkit = callPackage
- (
- { qtSubmodule, declarative, location, multimedia, sensors
- , fontconfig, gdk_pixbuf, gtk, libwebp, libxml2, libxslt
- , sqlite, udev
- , bison2, flex, gdb, gperf, perl, pkgconfig, python, ruby
- , substituteAll
- , flashplayerFix ? false
- }:
-
- qtSubmodule {
- name = "qtwebkit";
- qtInputs = [ declarative location multimedia sensors ];
- buildInputs = [ fontconfig libwebp libxml2 libxslt sqlite ];
- nativeBuildInputs = [
- bison2 flex gdb gperf perl pkgconfig python ruby
- ];
- patchFlags = "-p2"; # patches originally for monolithic build
- patches =
- optional flashplayerFix
- (substituteAll
- {
- src = ./0002-dlopen-webkit-nsplugin.patch;
- inherit gtk gdk_pixbuf;
- }
- )
- ++ optional flashplayerFix
- (substituteAll
- {
- src = ./0007-dlopen-webkit-gtk.patch;
- inherit gtk;
- }
- )
- ++ [
- (substituteAll
- {
- src = ./0008-dlopen-webkit-udev.patch;
- inherit udev;
- }
- )
- ];
- }
- )
- {};
-
- webkit-examples = callPackage
- (
- { qtSubmodule, tools, webkit }:
-
- qtSubmodule {
- name = "qtwebkit-examples";
- qtInputs = [ tools webkit ];
- }
- )
- {};
-
- websockets = callPackage
- (
- { qtSubmodule, base, declarative }:
-
- qtSubmodule {
- name = "qtwebsockets";
- qtInputs = [ base declarative ];
- }
- )
- {};
-
- /* winextras = not packaged */
-
- x11extras = callPackage
- (
- { qtSubmodule, base }:
-
- qtSubmodule {
- name = "qtx11extras";
- qtInputs = [ base ];
- }
- )
- {};
-
- xmlpatterns = callPackage
- (
- { qtSubmodule, base }:
-
- qtSubmodule {
- name = "qtxmlpatterns";
- qtInputs = [ base ];
- }
- )
- {};
+ makeQtWrapper = makeSetupHook { deps = [ makeWrapper ]; } ./make-qt-wrapper.sh;
};
-in self
+in makeScope pkgs.newScope addPackages
diff --git a/pkgs/development/libraries/qt-5/5.4/fetchsrcs.sh b/pkgs/development/libraries/qt-5/5.4/fetchsrcs.sh
new file mode 100755
index 00000000000..0fd5bb8d5fe
--- /dev/null
+++ b/pkgs/development/libraries/qt-5/5.4/fetchsrcs.sh
@@ -0,0 +1,47 @@
+#! /usr/bin/env nix-shell
+#! nix-shell -i bash -p coreutils findutils gnused nix wget
+
+set -x
+
+# The trailing slash at the end is necessary!
+RELEASE_URL="http://download.qt.io/official_releases/qt/5.4/5.4.2/submodules/"
+EXTRA_WGET_ARGS='-A *.tar.xz'
+
+mkdir tmp; cd tmp
+
+wget -nH -r -c --no-parent $RELEASE_URL $EXTRA_WGET_ARGS
+
+cat >../srcs.nix <>../srcs.nix <>../srcs.nix
+
+cd ..
diff --git a/pkgs/development/libraries/qt-5/5.4/make-qt-wrapper.sh b/pkgs/development/libraries/qt-5/5.4/make-qt-wrapper.sh
new file mode 100644
index 00000000000..d61665455bf
--- /dev/null
+++ b/pkgs/development/libraries/qt-5/5.4/make-qt-wrapper.sh
@@ -0,0 +1,42 @@
+addQtDependency() {
+ addToSearchPath QT_PLUGIN_PATH "$1/lib/qt5/plugins"
+ addToSearchPath QML_IMPORT_PATH "$1/lib/qt5/imports"
+ addToSearchPath QML2_IMPORT_PATH "$1/lib/qt5/qml"
+ addToSearchPath XDG_CONFIG_DIRS "$1/etc/xdg"
+ addToSearchPath XDG_DATA_DIRS "$1/share"
+}
+
+wrapQtProgram() {
+ local prog="$1"
+ shift
+ wrapProgram "$prog" \
+ --prefix QT_PLUGIN_PATH : "$QT_PLUGIN_PATH" \
+ --prefix QML_IMPORT_PATH : "$QML_IMPORT_PATH" \
+ --prefix QML2_IMPORT_PATH : "$QML2_IMPORT_PATH" \
+ --prefix XDG_CONFIG_DIRS : "$XDG_CONFIG_DIRS" \
+ --prefix XDG_DATA_DIRS : "$XDG_DATA_DIRS" \
+ "$@"
+}
+
+makeQtWrapper() {
+ local old="$1"
+ local new="$2"
+ shift
+ shift
+ makeWrapper "$old" "$new" \
+ --prefix QT_PLUGIN_PATH : "$QT_PLUGIN_PATH" \
+ --prefix QML_IMPORT_PATH : "$QML_IMPORT_PATH" \
+ --prefix QML2_IMPORT_PATH : "$QML2_IMPORT_PATH" \
+ --prefix XDG_CONFIG_DIRS : "$XDG_CONFIG_DIRS" \
+ --prefix XDG_DATA_DIRS : "$XDG_DATA_DIRS" \
+ "$@"
+}
+
+# cannot use addToSearchPath because these directories may not exist yet
+export QT_PLUGIN_PATH="$QT_PLUGIN_PATH${QT_PLUGIN_PATH:+:}$out/lib/qt5/plugins"
+export QML_IMPORT_PATH="$QML_IMPORT_PATH${QML_IMPORT_PATH:+:}$out/lib/qt5/imports"
+export QML2_IMPORT_PATH="$QML2_IMPORT_PATH${QML2_IMPORT_PATH:+:}$out/lib/qt5/qml"
+export XDG_CONFIG_DIRS="$XDG_CONFIG_DIRS${XDG_CONFIG_DIRS:+:}$out/etc/xdg"
+export XDG_DATA_DIRS="$XDG_DATA_DIRS${XDG_DATA_DIRS:+:}$out/share"
+
+envHooks+=(addQtDependency)
diff --git a/pkgs/development/libraries/qt-5/5.4/manifest.json b/pkgs/development/libraries/qt-5/5.4/manifest.json
deleted file mode 100644
index 83dedb41706..00000000000
--- a/pkgs/development/libraries/qt-5/5.4/manifest.json
+++ /dev/null
@@ -1,301 +0,0 @@
-[
- {
- "name": "qtbase-opensource-src-5.4.2",
- "store": "/nix/store/60xy2xnsl5kwraqkgh8d950nj1pk3kmi-qtbase-opensource-src-5.4.2.tar.xz",
- "src": {
- "url": "official_releases/qt/5.4/5.4.2/submodules/qtbase-opensource-src-5.4.2.tar.xz",
- "sha256": "0x2szpjjvsrpcqw0dd3gsim7b1jv9p716pnllzjbia5mp0hggi4z",
- "name": "qtbase-opensource-src-5.4.2.tar.xz"
- }
- }
-,
- {
- "name": "qtenginio-opensource-src-5.4.2",
- "store": "/nix/store/4iprnq6sm0b1pnxmxb5krip7kk40xqmr-qtenginio-opensource-src-5.4.2.tar.xz",
- "src": {
- "url": "official_releases/qt/5.4/5.4.2/submodules/qtenginio-opensource-src-5.4.2.tar.xz",
- "sha256": "082i3fapjw6xs0jkz7x529dn3pb6w1pfli3cjrgvggff86gwlgwn",
- "name": "qtenginio-opensource-src-5.4.2.tar.xz"
- }
- }
-,
- {
- "name": "qtserialport-opensource-src-5.4.2",
- "store": "/nix/store/l9k1v23ddnhjch5b2p3l28xbqkhz63yl-qtserialport-opensource-src-5.4.2.tar.xz",
- "src": {
- "url": "official_releases/qt/5.4/5.4.2/submodules/qtserialport-opensource-src-5.4.2.tar.xz",
- "sha256": "1h6p5rb0ldxgzd4md3n79gy0j9blhj736670xqjd9vlvh1743kck",
- "name": "qtserialport-opensource-src-5.4.2.tar.xz"
- }
- }
-,
- {
- "name": "qtscript-opensource-src-5.4.2",
- "store": "/nix/store/n4ixnakw3fiflyimshkp43h7ijlpiif6-qtscript-opensource-src-5.4.2.tar.xz",
- "src": {
- "url": "official_releases/qt/5.4/5.4.2/submodules/qtscript-opensource-src-5.4.2.tar.xz",
- "sha256": "0izsmy0cr8iii78r10ndkidyljxqd2k9g03f5xb9nxacvr2f8hp0",
- "name": "qtscript-opensource-src-5.4.2.tar.xz"
- }
- }
-,
- {
- "name": "qtwebchannel-opensource-src-5.4.2",
- "store": "/nix/store/qbkqkn4ck0fqbndl9fzp7iaz6c475xq8-qtwebchannel-opensource-src-5.4.2.tar.xz",
- "src": {
- "url": "official_releases/qt/5.4/5.4.2/submodules/qtwebchannel-opensource-src-5.4.2.tar.xz",
- "sha256": "0vy1zjbghfa1wirxd8fd2n2n8yryykzr09913qm2nlfbcxdsgqsn",
- "name": "qtwebchannel-opensource-src-5.4.2.tar.xz"
- }
- }
-,
- {
- "name": "qtwinextras-opensource-src-5.4.2",
- "store": "/nix/store/9kmig3lg8d8s5r1jl3xj5q3jrkp3p8sx-qtwinextras-opensource-src-5.4.2.tar.xz",
- "src": {
- "url": "official_releases/qt/5.4/5.4.2/submodules/qtwinextras-opensource-src-5.4.2.tar.xz",
- "sha256": "0sgybvr1y2xsddlqc95ninxj3rfmd4gv7a8f7rqcxdynjan5gij0",
- "name": "qtwinextras-opensource-src-5.4.2.tar.xz"
- }
- }
-,
- {
- "name": "qtwebsockets-opensource-src-5.4.2",
- "store": "/nix/store/zk4s5pgp3mh6xdq6z3svi305vn0pli27-qtwebsockets-opensource-src-5.4.2.tar.xz",
- "src": {
- "url": "official_releases/qt/5.4/5.4.2/submodules/qtwebsockets-opensource-src-5.4.2.tar.xz",
- "sha256": "0lv1la8333qnirxmscs42xnnra0xry1gjbhi3bxrf1hrfs2im9j4",
- "name": "qtwebsockets-opensource-src-5.4.2.tar.xz"
- }
- }
-,
- {
- "name": "qtmultimedia-opensource-src-5.4.2",
- "store": "/nix/store/n8wpy6b8jw1rf51z1qhxbbym7j8rr8ay-qtmultimedia-opensource-src-5.4.2.tar.xz",
- "src": {
- "url": "official_releases/qt/5.4/5.4.2/submodules/qtmultimedia-opensource-src-5.4.2.tar.xz",
- "sha256": "0h29cs8ajnjarhjx1aczdnxqwvg6pqs9s8w28hw488s149wqqrnj",
- "name": "qtmultimedia-opensource-src-5.4.2.tar.xz"
- }
- }
-,
- {
- "name": "qtgraphicaleffects-opensource-src-5.4.2",
- "store": "/nix/store/2q2vk530mf32zzd1v8bpax8iixviw6q5-qtgraphicaleffects-opensource-src-5.4.2.tar.xz",
- "src": {
- "url": "official_releases/qt/5.4/5.4.2/submodules/qtgraphicaleffects-opensource-src-5.4.2.tar.xz",
- "sha256": "02p8xm5ajicjam30ry3g1lm2p4nja2q0sls8dzimqrxhw5xlg3xs",
- "name": "qtgraphicaleffects-opensource-src-5.4.2.tar.xz"
- }
- }
-,
- {
- "name": "qtxmlpatterns-opensource-src-5.4.2",
- "store": "/nix/store/3fqgpa668hb1xmwjw056cw58qzb3r0g4-qtxmlpatterns-opensource-src-5.4.2.tar.xz",
- "src": {
- "url": "official_releases/qt/5.4/5.4.2/submodules/qtxmlpatterns-opensource-src-5.4.2.tar.xz",
- "sha256": "0ar7znqp1i02ha5ngy2kzk3hlgkafjbn2xa8j2k78gzmwsmdhzxa",
- "name": "qtxmlpatterns-opensource-src-5.4.2.tar.xz"
- }
- }
-,
- {
- "name": "qttranslations-opensource-src-5.4.2",
- "store": "/nix/store/mg9b5z2nznzxrz501hm06b7l27jjwaca-qttranslations-opensource-src-5.4.2.tar.xz",
- "src": {
- "url": "official_releases/qt/5.4/5.4.2/submodules/qttranslations-opensource-src-5.4.2.tar.xz",
- "sha256": "0b4l69c16z8gjd4mq75zz3lj2gxarr9wyk0vk60jg1mi62vxvdls",
- "name": "qttranslations-opensource-src-5.4.2.tar.xz"
- }
- }
-,
- {
- "name": "qtdeclarative-opensource-src-5.4.2",
- "store": "/nix/store/bjmv4fgphx9bggzcwy4lcdas9phbwjsg-qtdeclarative-opensource-src-5.4.2.tar.xz",
- "src": {
- "url": "official_releases/qt/5.4/5.4.2/submodules/qtdeclarative-opensource-src-5.4.2.tar.xz",
- "sha256": "1bj1wwms6lpj8s70y8by3j0hjsw6g9v8m6fybx68krzzizbj2c5p",
- "name": "qtdeclarative-opensource-src-5.4.2.tar.xz"
- }
- }
-,
- {
- "name": "qtwebkit-opensource-src-5.4.2",
- "store": "/nix/store/pfhq8ask8jhzdh2x882d014b10ddywma-qtwebkit-opensource-src-5.4.2.tar.xz",
- "src": {
- "url": "official_releases/qt/5.4/5.4.2/submodules/qtwebkit-opensource-src-5.4.2.tar.xz",
- "sha256": "0vffbpiczag2n2hp5gc0nii8n7vkidr8f8pp8a47px0183hl6hiy",
- "name": "qtwebkit-opensource-src-5.4.2.tar.xz"
- }
- }
-,
- {
- "name": "qtquick1-opensource-src-5.4.2",
- "store": "/nix/store/n807cxddkvhbzw3ciqs29zc5mw47z2qs-qtquick1-opensource-src-5.4.2.tar.xz",
- "src": {
- "url": "official_releases/qt/5.4/5.4.2/submodules/qtquick1-opensource-src-5.4.2.tar.xz",
- "sha256": "0178z15a31fw3l6933fwxs7sk0csifpwckydp3rqnn3fg5f2fwvp",
- "name": "qtquick1-opensource-src-5.4.2.tar.xz"
- }
- }
-,
- {
- "name": "qtquickcontrols-opensource-src-5.4.2",
- "store": "/nix/store/gq8afk8zr2vrrsfmp4caqv02209qk9xb-qtquickcontrols-opensource-src-5.4.2.tar.xz",
- "src": {
- "url": "official_releases/qt/5.4/5.4.2/submodules/qtquickcontrols-opensource-src-5.4.2.tar.xz",
- "sha256": "137z3c3drxlvkdfc7zgcl0xqmavw0ladzqy0i3bq51h756qdc877",
- "name": "qtquickcontrols-opensource-src-5.4.2.tar.xz"
- }
- }
-,
- {
- "name": "qtimageformats-opensource-src-5.4.2",
- "store": "/nix/store/cmpx0338z1j0wzk6scfpay5k10023d46-qtimageformats-opensource-src-5.4.2.tar.xz",
- "src": {
- "url": "official_releases/qt/5.4/5.4.2/submodules/qtimageformats-opensource-src-5.4.2.tar.xz",
- "sha256": "1nny6j9pm5ri3n1vwl5lrfrdz0fl81rx127wa49rkg2rjai2aawb",
- "name": "qtimageformats-opensource-src-5.4.2.tar.xz"
- }
- }
-,
- {
- "name": "qtdoc-opensource-src-5.4.2",
- "store": "/nix/store/jv4wgs6pz9xqmin9m4q4mifr2vfcjn3h-qtdoc-opensource-src-5.4.2.tar.xz",
- "src": {
- "url": "official_releases/qt/5.4/5.4.2/submodules/qtdoc-opensource-src-5.4.2.tar.xz",
- "sha256": "15lamv6jvd7v33ldpcrazcdksv6qibdcgh4ncbyh774k8avgrlh8",
- "name": "qtdoc-opensource-src-5.4.2.tar.xz"
- }
- }
-,
- {
- "name": "qtwayland-opensource-src-5.4.2",
- "store": "/nix/store/qa3yi9lyx2dm4wqzb3qzvzba1sgnj74z-qtwayland-opensource-src-5.4.2.tar.xz",
- "src": {
- "url": "official_releases/qt/5.4/5.4.2/submodules/qtwayland-opensource-src-5.4.2.tar.xz",
- "sha256": "14pmpkfq70plw07igxjaiji4vnjg5kg7izlb0wwym1lisg7bwkg0",
- "name": "qtwayland-opensource-src-5.4.2.tar.xz"
- }
- }
-,
- {
- "name": "qtmacextras-opensource-src-5.4.2",
- "store": "/nix/store/wdq1z3bzr9n11yln8avx10sgzgyvp8cl-qtmacextras-opensource-src-5.4.2.tar.xz",
- "src": {
- "url": "official_releases/qt/5.4/5.4.2/submodules/qtmacextras-opensource-src-5.4.2.tar.xz",
- "sha256": "0h0p3s0rvd3g9rgr4hwcggdbsav2g30vijqwmdxgxd8c00yply80",
- "name": "qtmacextras-opensource-src-5.4.2.tar.xz"
- }
- }
-,
- {
- "name": "qtactiveqt-opensource-src-5.4.2",
- "store": "/nix/store/0ik7vc3zwdjvrp4fpyqf1zpyqdxvvqvq-qtactiveqt-opensource-src-5.4.2.tar.xz",
- "src": {
- "url": "official_releases/qt/5.4/5.4.2/submodules/qtactiveqt-opensource-src-5.4.2.tar.xz",
- "sha256": "014kwficqydciwdm1yw88yms81qm8pmi6xfhhfpbc9k85pc6jlla",
- "name": "qtactiveqt-opensource-src-5.4.2.tar.xz"
- }
- }
-,
- {
- "name": "qtlocation-opensource-src-5.4.2",
- "store": "/nix/store/sa4dawsw2wv45ld3afbz9nfc64qkyx1s-qtlocation-opensource-src-5.4.2.tar.xz",
- "src": {
- "url": "official_releases/qt/5.4/5.4.2/submodules/qtlocation-opensource-src-5.4.2.tar.xz",
- "sha256": "1v43hl2zzi90vaw11y8dvsksrjn0r2v0br7pw6njl8lqadpg4jnw",
- "name": "qtlocation-opensource-src-5.4.2.tar.xz"
- }
- }
-,
- {
- "name": "qtconnectivity-opensource-src-5.4.2",
- "store": "/nix/store/v2aiscvf582azyzg696rglway56l7xl2-qtconnectivity-opensource-src-5.4.2.tar.xz",
- "src": {
- "url": "official_releases/qt/5.4/5.4.2/submodules/qtconnectivity-opensource-src-5.4.2.tar.xz",
- "sha256": "1nj68bzgm3r1gg171kj0acnifzb3jx0m5pf4f81xb7zl4hfxasrs",
- "name": "qtconnectivity-opensource-src-5.4.2.tar.xz"
- }
- }
-,
- {
- "name": "qtx11extras-opensource-src-5.4.2",
- "store": "/nix/store/nz62qld9h96z5a0b7fg52fsh5d6q0kqw-qtx11extras-opensource-src-5.4.2.tar.xz",
- "src": {
- "url": "official_releases/qt/5.4/5.4.2/submodules/qtx11extras-opensource-src-5.4.2.tar.xz",
- "sha256": "0jgyywjxavfpiz8202g3s0g9izfl185mmak4fs9h80w1i3gn5zzn",
- "name": "qtx11extras-opensource-src-5.4.2.tar.xz"
- }
- }
-,
- {
- "name": "qttools-opensource-src-5.4.2",
- "store": "/nix/store/i8n6xrhalg3z4i0min4w79rq9h9hch0x-qttools-opensource-src-5.4.2.tar.xz",
- "src": {
- "url": "official_releases/qt/5.4/5.4.2/submodules/qttools-opensource-src-5.4.2.tar.xz",
- "sha256": "1d5nx01r7wxhdg9f1i9xhsvsbwgaz3yv516s068riy970bhdgwzd",
- "name": "qttools-opensource-src-5.4.2.tar.xz"
- }
- }
-,
- {
- "name": "qtsensors-opensource-src-5.4.2",
- "store": "/nix/store/0ar28gp8klqxynjnc1r4kj9x7g8cknk2-qtsensors-opensource-src-5.4.2.tar.xz",
- "src": {
- "url": "official_releases/qt/5.4/5.4.2/submodules/qtsensors-opensource-src-5.4.2.tar.xz",
- "sha256": "1yawvjbdymgw8af7ir9zcin89xxck9dm2l6hnc43lwrky0frcvcf",
- "name": "qtsensors-opensource-src-5.4.2.tar.xz"
- }
- }
-,
- {
- "name": "qtwebengine-opensource-src-5.4.2",
- "store": "/nix/store/ikr8cc3bn62jlv9afpzhxvqs5qhsc2yc-qtwebengine-opensource-src-5.4.2.tar.xz",
- "src": {
- "url": "official_releases/qt/5.4/5.4.2/submodules/qtwebengine-opensource-src-5.4.2.tar.xz",
- "sha256": "06cyl733prakniqrn8sd807lclk5im2vmysjdcijry2mcyah2ih8",
- "name": "qtwebengine-opensource-src-5.4.2.tar.xz"
- }
- }
-,
- {
- "name": "qtsvg-opensource-src-5.4.2",
- "store": "/nix/store/0llm31zpiaqig940a8dsp1dk2npxsnjc-qtsvg-opensource-src-5.4.2.tar.xz",
- "src": {
- "url": "official_releases/qt/5.4/5.4.2/submodules/qtsvg-opensource-src-5.4.2.tar.xz",
- "sha256": "1dsyncp154xvb7d82nmnfjm0ngymnhqmliq58ljwxsjmpjlncakz",
- "name": "qtsvg-opensource-src-5.4.2.tar.xz"
- }
- }
-,
- {
- "name": "qt5-opensource-src-5.4.2",
- "store": "/nix/store/0jrx1clg8vqid9b2n9z8f0xbwjm0yynr-qt5-opensource-src-5.4.2.tar.xz",
- "src": {
- "url": "official_releases/qt/5.4/5.4.2/submodules/qt5-opensource-src-5.4.2.tar.xz",
- "sha256": "17a0pybr4bpyv9pj7cr5hl4g31biv89bjr8zql723h0b12ql1w44",
- "name": "qt5-opensource-src-5.4.2.tar.xz"
- }
- }
-,
- {
- "name": "qtwebkit-examples-opensource-src-5.4.2",
- "store": "/nix/store/6pmmi9bjbdxkbw2xkkc1srk5ambnjcxv-qtwebkit-examples-opensource-src-5.4.2.tar.xz",
- "src": {
- "url": "official_releases/qt/5.4/5.4.2/submodules/qtwebkit-examples-opensource-src-5.4.2.tar.xz",
- "sha256": "0pm9ik1j09jfb5xflc16449nff2xsfyfms7vxlcdjg4dhcqfmll8",
- "name": "qtwebkit-examples-opensource-src-5.4.2.tar.xz"
- }
- }
-,
- {
- "name": "qtandroidextras-opensource-src-5.4.2",
- "store": "/nix/store/grrsklibvplaj5pdwjp2zirxmqnq10hf-qtandroidextras-opensource-src-5.4.2.tar.xz",
- "src": {
- "url": "official_releases/qt/5.4/5.4.2/submodules/qtandroidextras-opensource-src-5.4.2.tar.xz",
- "sha256": "0krfm0wg26x7575p8isswdhrkb0jxyp169grwklil7mfw8yg3xhx",
- "name": "qtandroidextras-opensource-src-5.4.2.tar.xz"
- }
- }
-]
diff --git a/pkgs/development/libraries/qt-5/5.4/manifest.sh b/pkgs/development/libraries/qt-5/5.4/manifest.sh
deleted file mode 100755
index 780269a6417..00000000000
--- a/pkgs/development/libraries/qt-5/5.4/manifest.sh
+++ /dev/null
@@ -1,9 +0,0 @@
-#!/bin/sh
-
-set -x
-
-# The extra slash at the end of the URL is necessary to stop wget
-# from recursing over the whole server! (No, it's not a bug.)
-$(nix-build ../../../../.. --no-out-link -A autonix.manifest) \
- http://download.qt.io/official_releases/qt/5.4/5.4.2/submodules/ \
- -A '*.tar.xz'
diff --git a/pkgs/development/libraries/qt-5/5.4/qt-submodule.nix b/pkgs/development/libraries/qt-5/5.4/qt-submodule.nix
deleted file mode 100644
index 4012b637e28..00000000000
--- a/pkgs/development/libraries/qt-5/5.4/qt-submodule.nix
+++ /dev/null
@@ -1,54 +0,0 @@
-{ stdenv, mkDerivation
-, srcs, version
-, lndir
-, base
-}:
-
-with stdenv.lib;
-
-args:
-
-mkDerivation (args // {
-
- name = "${args.name}-${version}";
- inherit version;
-
- srcs = args.srcs or [srcs."${args.name}-opensource-src"];
-
- qtSubmodule = args.qtSubmodule or true;
- dontAddPrefix = args.dontAddPrefix or true;
- dontFixLibtool = args.dontFixLibtool or true;
- configureScript = args.configureScript or "qmake";
-
- postInstall = ''
- rm "$out/bin/qmake" "$out/bin/qt.conf"
-
- cat "$out/nix-support/qt-inputs" | while read file; do
- if [[ -h "$out/$file" ]]; then
- rm "$out/$file"
- fi
- done
-
- cat "$out/nix-support/qt-inputs" | while read file; do
- if [[ -d "$out/$file" ]]; then
- rmdir --ignore-fail-on-non-empty -p "$out/$file"
- fi
- done
-
- rm "$out/nix-support/qt-inputs"
- '';
-
- propagatedBuildInputs = args.qtInputs ++ (args.propagatedBuildInputs or []);
-
- enableParallelBuilding =
- args.enableParallelBuilding or true; # often fails on Hydra, as well as qt4
-
- meta = args.meta or {
- homepage = http://qt-project.org;
- description = "A cross-platform application framework for C++";
- license = "GPL/LGPL";
- maintainers = with maintainers; [ bbenoist qknight ttuegel ];
- platforms = platforms.linux;
- };
-
-})
diff --git a/pkgs/development/libraries/qt-5/5.4/qtbase.nix b/pkgs/development/libraries/qt-5/5.4/qtbase.nix
deleted file mode 100644
index 30d53eb874b..00000000000
--- a/pkgs/development/libraries/qt-5/5.4/qtbase.nix
+++ /dev/null
@@ -1,211 +0,0 @@
-{ stdenv, substituteAll
-, srcs, version
-
-, xorg, libX11, libxcb, libXcursor, libXext, libXrender, libXi
-, xcbutil, xcbutilimage, xcbutilkeysyms, xcbutilwm, libxkbcommon
-, fontconfig, freetype, openssl, dbus, glib, udev, libxml2, libxslt, pcre
-, zlib, libjpeg, libpng, libtiff, sqlite, icu
-
-, coreutils, bison, flex, gdb, gperf, lndir, ruby
-, python, perl, pkgconfig
-
-# optional dependencies
-, cups ? null
-, mysql ? null, postgresql ? null
-
-# options
-, mesaSupported, mesa, mesa_glu
-, buildDocs ? false
-, buildExamples ? false
-, buildTests ? false
-, developerBuild ? false
-, gtkStyle ? false, libgnomeui, GConf, gnome_vfs, gtk
-, decryptSslTraffic ? false
-}:
-
-with stdenv.lib;
-
-let system-x86_64 = elem stdenv.system platforms.x86_64; in
-
-stdenv.mkDerivation {
-
- name = "qtbase-${version}";
- inherit version;
-
- srcs = with srcs; [ qt5-opensource-src qtbase-opensource-src ];
- sourceRoot = "qt-everywhere-opensource-src-${version}";
-
- postUnpack = ''
- mv qtbase-opensource-src-${version} ./qt-everywhere-opensource-src-${version}/qtbase
- '';
-
- prePatch = ''
- substituteInPlace configure --replace /bin/pwd pwd
- substituteInPlace qtbase/configure --replace /bin/pwd pwd
- substituteInPlace qtbase/src/corelib/global/global.pri --replace /bin/ls ${coreutils}/bin/ls
- substituteInPlace qtbase/src/plugins/platforminputcontexts/compose/generator/qtablegenerator.cpp \
- --replace /usr/share/X11/locale ${libX11}/share/X11/locale \
- --replace /usr/lib/X11/locale ${libX11}/share/X11/locale
- sed -e 's@/\(usr\|opt\)/@/var/empty/@g' -i config.tests/*/*.test -i qtbase/mkspecs/*/*.conf
- '';
-
- patches =
- optional gtkStyle
- (substituteAll {
- src = ./0001-dlopen-gtkstyle.patch;
- # substituteAll ignores env vars starting with capital letter
- gconf = GConf;
- inherit gnome_vfs libgnomeui gtk;
- })
- ++ [
- (substituteAll {
- src = ./0004-dlopen-resolv.patch;
- glibc = stdenv.cc.libc;
- })
- (substituteAll {
- src = ./0005-dlopen-gl.patch;
- openglDriver = if mesaSupported then mesa.driverLink else "/no-such-path";
- })
- ./0006-tzdir.patch
- (substituteAll { src = ./0010-dlopen-libXcursor.patch; inherit libXcursor; })
- (substituteAll { src = ./0011-dlopen-openssl.patch; inherit openssl; })
- (substituteAll { src = ./0012-dlopen-dbus.patch; dbus_libs = dbus; })
- ./0013-xdg_config_dirs.patch
- ] ++ optional mesaSupported
- (substituteAll { src = ./0014-mkspecs-libgl.patch; inherit mesa; })
- ++ (optional decryptSslTraffic ./0100-ssl.patch);
-
- preConfigure = ''
- export LD_LIBRARY_PATH="$PWD/qtbase/lib:$PWD/qtbase/plugins/platforms:$PWD/qttools/lib:$LD_LIBRARY_PATH"
- export MAKEFLAGS=-j$NIX_BUILD_CORES
-
- sed -i 's/PATHS.*NO_DEFAULT_PATH//' "qtbase/src/corelib/Qt5Config.cmake.in"
- sed -i 's/PATHS.*NO_DEFAULT_PATH//' "qtbase/src/corelib/Qt5CoreMacros.cmake"
- sed -i 's/NO_DEFAULT_PATH//' "qtbase/src/gui/Qt5GuiConfigExtras.cmake.in"
- sed -i 's/PATHS.*NO_DEFAULT_PATH//' "qtbase/mkspecs/features/data/cmake/Qt5BasicConfig.cmake.in"
-
- export configureFlags+="-plugindir $out/lib/qt5/plugins -importdir $out/lib/qt5/imports -qmldir $out/lib/qt5/qml"
- export configureFlags+=" -docdir $out/share/doc/qt5"
- '';
-
- prefixKey = "-prefix ";
-
- # -no-eglfs, -no-directfb, -no-linuxfb and -no-kms because of the current minimalist mesa
- # TODO Remove obsolete and useless flags once the build will be totally mastered
- configureFlags = ''
- -verbose
- -confirm-license
- -opensource
-
- -release
- -shared
- -c++11
- ${optionalString developerBuild "-developer-build"}
- -largefile
- -accessibility
- -rpath
- -optimized-qmake
- -strip
- -reduce-relocations
- -system-proxies
- -pkg-config
-
- -gui
- -widgets
- -opengl desktop
- -qml-debug
- -nis
- -iconv
- -icu
- -pch
- -glib
- -xcb
- -qpa xcb
- -${optionalString (cups == null) "no-"}cups
- -${optionalString (!gtkStyle) "no-"}gtkstyle
-
- -no-eglfs
- -no-directfb
- -no-linuxfb
- -no-kms
-
- ${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
-
- -system-zlib
- -system-libpng
- -system-libjpeg
- -system-xcb
- -system-xkbcommon
- -openssl-linked
- -dbus-linked
-
- -system-sqlite
- -${if mysql != null then "plugin" else "no"}-sql-mysql
- -${if postgresql != null then "plugin" else "no"}-sql-psql
-
- -make libs
- -make tools
- -${optionalString (buildExamples == false) "no"}make examples
- -${optionalString (buildTests == false) "no"}make tests
- '';
-
- # PostgreSQL autodetection fails sporadically because Qt omits the "-lpq" flag
- # if dependency paths contain the string "pq", which can occur in the hash.
- # To prevent these failures, we need to override PostgreSQL detection.
- PSQL_LIBS = optionalString (postgresql != null) "-L${postgresql}/lib -lpq";
-
- propagatedBuildInputs = [
- xorg.libXcomposite libX11 libxcb libXext libXrender libXi
- fontconfig freetype openssl dbus.libs glib udev libxml2 libxslt pcre
- zlib libjpeg libpng libtiff sqlite icu
- xcbutil xcbutilimage xcbutilkeysyms xcbutilwm libxkbcommon
- ]
- # Qt doesn't directly need GLU (just GL), but many apps use, it's small and
- # doesn't remain a runtime-dep if not used
- ++ optionals mesaSupported [ mesa mesa_glu ]
- ++ optional (cups != null) cups
- ++ optional (mysql != null) mysql.lib
- ++ optional (postgresql != null) postgresql
- ++ optionals gtkStyle [gnome_vfs libgnomeui gtk GConf];
-
- buildInputs =
- [ bison flex gperf ruby ]
- ++ optional developerBuild gdb;
-
- nativeBuildInputs = [ python perl pkgconfig ];
-
- # freetype-2.5.4 changed signedness of some struct fields
- NIX_CFLAGS_COMPILE = "-Wno-error=sign-compare";
-
- postInstall =
- ''
- ${optionalString buildDocs ''
- make docs && make install_docs
- ''}
-
- # Don't retain build-time dependencies like gdb and ruby.
- sed '/QMAKE_DEFAULT_.*DIRS/ d' -i $out/mkspecs/qconfig.pri
- '';
-
- inherit lndir;
- setupHook = ./setup-hook.sh;
-
- enableParallelBuilding = true; # often fails on Hydra, as well as qt4
-
- meta = {
- homepage = http://qt-project.org;
- description = "A cross-platform application framework for C++";
- license = "GPL/LGPL";
- maintainers = with maintainers; [ bbenoist qknight ttuegel ];
- platforms = platforms.linux;
- };
-
-}
diff --git a/pkgs/development/libraries/qt-5/5.4/qtbase/compose-search-path.patch b/pkgs/development/libraries/qt-5/5.4/qtbase/compose-search-path.patch
new file mode 100644
index 00000000000..08d12087f08
--- /dev/null
+++ b/pkgs/development/libraries/qt-5/5.4/qtbase/compose-search-path.patch
@@ -0,0 +1,16 @@
+Index: qt-everywhere-opensource-src-5.5.1/qtbase/src/plugins/platforminputcontexts/compose/generator/qtablegenerator.cpp
+===================================================================
+--- qt-everywhere-opensource-src-5.5.1.orig/qtbase/src/plugins/platforminputcontexts/compose/generator/qtablegenerator.cpp
++++ qt-everywhere-opensource-src-5.5.1/qtbase/src/plugins/platforminputcontexts/compose/generator/qtablegenerator.cpp
+@@ -68,10 +68,7 @@ void TableGenerator::initPossibleLocatio
+ // the QTCOMPOSE environment variable
+ if (qEnvironmentVariableIsSet("QTCOMPOSE"))
+ m_possibleLocations.append(QString::fromLocal8Bit(qgetenv("QTCOMPOSE")));
+- m_possibleLocations.append(QStringLiteral("/usr/share/X11/locale"));
+- m_possibleLocations.append(QStringLiteral("/usr/local/share/X11/locale"));
+- m_possibleLocations.append(QStringLiteral("/usr/lib/X11/locale"));
+- m_possibleLocations.append(QStringLiteral("/usr/local/lib/X11/locale"));
++ m_possibleLocations.append(QStringLiteral("${libX11}/share/X11/locale"));
+ m_possibleLocations.append(QStringLiteral(X11_PREFIX "/share/X11/locale"));
+ m_possibleLocations.append(QStringLiteral(X11_PREFIX "/lib/X11/locale"));
+ }
diff --git a/pkgs/development/libraries/qt-5/5.4/qtbase/decrypt-ssl-traffic.patch b/pkgs/development/libraries/qt-5/5.4/qtbase/decrypt-ssl-traffic.patch
new file mode 100644
index 00000000000..10e7e01a07f
--- /dev/null
+++ b/pkgs/development/libraries/qt-5/5.4/qtbase/decrypt-ssl-traffic.patch
@@ -0,0 +1,13 @@
+Index: qt-everywhere-opensource-src-5.4.2/qtbase/src/network/ssl/qsslsocket_openssl.cpp
+===================================================================
+--- qt-everywhere-opensource-src-5.4.2.orig/qtbase/src/network/ssl/qsslsocket_openssl.cpp
++++ qt-everywhere-opensource-src-5.4.2/qtbase/src/network/ssl/qsslsocket_openssl.cpp
+@@ -47,7 +47,7 @@
+ ****************************************************************************/
+
+ //#define QSSLSOCKET_DEBUG
+-//#define QT_DECRYPT_SSL_TRAFFIC
++#define QT_DECRYPT_SSL_TRAFFIC
+
+ #include "qssl_p.h"
+ #include "qsslsocket_openssl_p.h"
diff --git a/pkgs/development/libraries/qt-5/5.4/qtbase/default.nix b/pkgs/development/libraries/qt-5/5.4/qtbase/default.nix
new file mode 100644
index 00000000000..36bd3822bf7
--- /dev/null
+++ b/pkgs/development/libraries/qt-5/5.4/qtbase/default.nix
@@ -0,0 +1,224 @@
+{ stdenv, lib, fetchurl, copyPathsToStore, makeWrapper
+, srcs
+
+, xlibs, libX11, libxcb, libXcursor, libXext, libXrender, libXi
+, xcbutil, xcbutilimage, xcbutilkeysyms, xcbutilwm, libxkbcommon
+, fontconfig, freetype, openssl, dbus, glib, udev, libxml2, libxslt, pcre
+, zlib, libjpeg, libpng, libtiff, sqlite, icu
+
+, coreutils, bison, flex, gdb, gperf, lndir, ruby
+, python, perl, pkgconfig
+
+# optional dependencies
+, cups ? null
+, mysql ? null, postgresql ? null
+
+# options
+, mesaSupported, mesa, mesa_glu
+, buildDocs ? false
+, buildExamples ? false
+, buildTests ? false
+, developerBuild ? false
+, gtkStyle ? false, libgnomeui, GConf, gnome_vfs, gtk
+, decryptSslTraffic ? false
+}:
+
+let
+ inherit (srcs.qt5) version;
+ system-x86_64 = lib.elem stdenv.system lib.platforms.x86_64;
+in
+
+stdenv.mkDerivation {
+
+ name = "qtbase-${version}";
+ inherit version;
+
+ srcs = with srcs; [ qt5.src qtbase.src ];
+
+ sourceRoot = "qt-everywhere-opensource-src-${version}";
+
+ postUnpack = ''
+ mv qtbase-opensource-src-${version} ./qt-everywhere-opensource-src-${version}/qtbase
+ '';
+
+ patches =
+ copyPathsToStore (lib.readPathsFromFile ./. ./series)
+ ++ lib.optional gtkStyle ./dlopen-gtkstyle.patch
+ ++ lib.optional decryptSslTraffic ./decrypt-ssl-traffic.patch
+ ++ lib.optional mesaSupported [ ./dlopen-gl.patch ./mkspecs-libgl.patch ];
+
+ postPatch =
+ ''
+ substituteInPlace configure --replace /bin/pwd pwd
+ substituteInPlace qtbase/configure --replace /bin/pwd pwd
+ substituteInPlace qtbase/src/corelib/global/global.pri --replace /bin/ls ${coreutils}/bin/ls
+ sed -e 's@/\(usr\|opt\)/@/var/empty/@g' -i config.tests/*/*.test -i qtbase/mkspecs/*/*.conf
+
+ sed -i 's/PATHS.*NO_DEFAULT_PATH//' "qtbase/src/corelib/Qt5Config.cmake.in"
+ sed -i 's/PATHS.*NO_DEFAULT_PATH//' "qtbase/src/corelib/Qt5CoreMacros.cmake"
+ sed -i 's/NO_DEFAULT_PATH//' "qtbase/src/gui/Qt5GuiConfigExtras.cmake.in"
+ sed -i 's/PATHS.*NO_DEFAULT_PATH//' "qtbase/mkspecs/features/data/cmake/Qt5BasicConfig.cmake.in"
+
+ substituteInPlace qtbase/src/network/kernel/qdnslookup_unix.cpp \
+ --replace "@glibc@" "${stdenv.cc.libc}"
+ substituteInPlace qtbase/src/network/kernel/qhostinfo_unix.cpp \
+ --replace "@glibc@" "${stdenv.cc.libc}"
+
+ substituteInPlace qtbase/src/plugins/platforms/xcb/qxcbcursor.cpp \
+ --replace "@libXcursor@" "${libXcursor}"
+
+ substituteInPlace qtbase/src/network/ssl/qsslsocket_openssl_symbols.cpp \
+ --replace "@openssl@" "${openssl}"
+
+ substituteInPlace qtbase/src/dbus/qdbus_symbols.cpp \
+ --replace "@dbus_libs@" "${dbus}"
+
+ substituteInPlace \
+ qtbase/src/plugins/platforminputcontexts/compose/generator/qtablegenerator.cpp \
+ --replace "@libX11@" "${libX11}"
+ ''
+ + lib.optionalString gtkStyle ''
+ substituteInPlace qtbase/src/widgets/styles/qgtk2painter.cpp --replace "@gtk@" "${gtk}"
+ substituteInPlace qtbase/src/widgets/styles/qgtkstyle_p.cpp \
+ --replace "@gtk@" "${gtk}" \
+ --replace "@gnome_vfs@" "${gnome_vfs}" \
+ --replace "@libgnomeui@" "${libgnomeui}" \
+ --replace "@gconf@" "${GConf}"
+ ''
+ + lib.optionalString mesaSupported ''
+ substituteInPlace \
+ qtbase/src/plugins/platforms/xcb/qglxintegration.cpp \
+ --replace "@mesa@" "${mesa}"
+ substituteInPlace qtbase/mkspecs/common/linux.conf --replace "@mesa@" "${mesa}"
+ '';
+
+ preConfigure = ''
+ export LD_LIBRARY_PATH="$PWD/qtbase/lib:$PWD/qtbase/plugins/platforms:$LD_LIBRARY_PATH"
+ export MAKEFLAGS=-j$NIX_BUILD_CORES
+
+ export configureFlags+="-plugindir $out/lib/qt5/plugins -importdir $out/lib/qt5/imports -qmldir $out/lib/qt5/qml"
+ export configureFlags+=" -docdir $out/share/doc/qt5"
+ '';
+
+ prefixKey = "-prefix ";
+
+ # -no-eglfs, -no-directfb, -no-linuxfb and -no-kms because of the current minimalist mesa
+ # TODO Remove obsolete and useless flags once the build will be totally mastered
+ configureFlags = ''
+ -verbose
+ -confirm-license
+ -opensource
+
+ -release
+ -shared
+ -c++11
+ ${lib.optionalString developerBuild "-developer-build"}
+ -largefile
+ -accessibility
+ -rpath
+ -optimized-qmake
+ -strip
+ -reduce-relocations
+ -system-proxies
+ -pkg-config
+
+ -gui
+ -widgets
+ -opengl desktop
+ -qml-debug
+ -nis
+ -iconv
+ -icu
+ -pch
+ -glib
+ -xcb
+ -qpa xcb
+ -${lib.optionalString (cups == null) "no-"}cups
+ -${lib.optionalString (!gtkStyle) "no-"}gtkstyle
+
+ -no-eglfs
+ -no-directfb
+ -no-linuxfb
+ -no-kms
+
+ ${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
+
+ -system-zlib
+ -system-libpng
+ -system-libjpeg
+ -system-xcb
+ -system-xkbcommon
+ -openssl-linked
+ -dbus-linked
+
+ -system-sqlite
+ -${if mysql != null then "plugin" else "no"}-sql-mysql
+ -${if postgresql != null then "plugin" else "no"}-sql-psql
+
+ -make libs
+ -make tools
+ -${lib.optionalString (buildExamples == false) "no"}make examples
+ -${lib.optionalString (buildTests == false) "no"}make tests
+ '';
+
+ # PostgreSQL autodetection fails sporadically because Qt omits the "-lpq" flag
+ # if dependency paths contain the string "pq", which can occur in the hash.
+ # To prevent these failures, we need to override PostgreSQL detection.
+ PSQL_LIBS = lib.optionalString (postgresql != null) "-L${postgresql}/lib -lpq";
+
+ propagatedBuildInputs = [
+ xlibs.libXcomposite libX11 libxcb libXext libXrender libXi
+ fontconfig freetype openssl dbus.libs glib udev libxml2 libxslt pcre
+ zlib libjpeg libpng libtiff sqlite icu
+ xcbutil xcbutilimage xcbutilkeysyms xcbutilwm libxkbcommon
+ ]
+ # Qt doesn't directly need GLU (just GL), but many apps use, it's small and
+ # doesn't remain a runtime-dep if not used
+ ++ lib.optionals mesaSupported [ mesa mesa_glu ]
+ ++ lib.optional (cups != null) cups
+ ++ lib.optional (mysql != null) mysql.lib
+ ++ lib.optional (postgresql != null) postgresql
+ ++ lib.optionals gtkStyle [gnome_vfs libgnomeui gtk GConf];
+
+ buildInputs =
+ [ bison flex gperf ruby ]
+ ++ lib.optional developerBuild gdb;
+
+ nativeBuildInputs = [ python perl pkgconfig ];
+
+ propagatedNativeBuildInputs = [ makeWrapper ];
+
+ # freetype-2.5.4 changed signedness of some struct fields
+ NIX_CFLAGS_COMPILE = "-Wno-error=sign-compare";
+
+ postInstall =
+ ''
+ # Don't retain build-time dependencies like gdb and ruby.
+ sed '/QMAKE_DEFAULT_.*DIRS/ d' -i $out/mkspecs/qconfig.pri
+ ''
+ + lib.optionalString buildDocs ''
+ make docs && make install_docs
+ '';
+
+ inherit lndir;
+ setupHook = ./setup-hook.sh;
+
+ enableParallelBuilding = true;
+
+ meta = with lib; {
+ homepage = http://qt-project.org;
+ description = "A cross-platform application framework for C++";
+ license = "GPL/LGPL";
+ maintainers = with maintainers; [ bbenoist qknight ttuegel ];
+ platforms = platforms.linux;
+ };
+
+}
diff --git a/pkgs/development/libraries/qt-5/5.4/qtbase/dlopen-dbus.patch b/pkgs/development/libraries/qt-5/5.4/qtbase/dlopen-dbus.patch
new file mode 100644
index 00000000000..05e98d8be71
--- /dev/null
+++ b/pkgs/development/libraries/qt-5/5.4/qtbase/dlopen-dbus.patch
@@ -0,0 +1,13 @@
+Index: qt-everywhere-opensource-src-5.4.2/qtbase/src/dbus/qdbus_symbols.cpp
+===================================================================
+--- qt-everywhere-opensource-src-5.4.2.orig/qtbase/src/dbus/qdbus_symbols.cpp
++++ qt-everywhere-opensource-src-5.4.2/qtbase/src/dbus/qdbus_symbols.cpp
+@@ -88,7 +88,7 @@ bool qdbus_loadLibDBus()
+ #ifdef Q_OS_WIN
+ QLatin1String("dbus-1"),
+ #endif
+- QLatin1String("libdbus-1")
++ QLatin1String("@dbus_libs@/lib/libdbus-1")
+ };
+
+ lib->unload();
diff --git a/pkgs/development/libraries/qt-5/5.4/qtbase/dlopen-gl.patch b/pkgs/development/libraries/qt-5/5.4/qtbase/dlopen-gl.patch
new file mode 100644
index 00000000000..d6e08cd2410
--- /dev/null
+++ b/pkgs/development/libraries/qt-5/5.4/qtbase/dlopen-gl.patch
@@ -0,0 +1,17 @@
+Index: qt-everywhere-opensource-src-5.4.2/qtbase/src/plugins/platforms/xcb/qglxintegration.cpp
+===================================================================
+--- qt-everywhere-opensource-src-5.4.2.orig/qtbase/src/plugins/platforms/xcb/qglxintegration.cpp
++++ qt-everywhere-opensource-src-5.4.2/qtbase/src/plugins/platforms/xcb/qglxintegration.cpp
+@@ -560,7 +560,12 @@ void (*QGLXContext::getProcAddress(const
+ {
+ extern const QString qt_gl_library_name();
+ // QLibrary lib(qt_gl_library_name());
++ // Check system library paths first
+ QLibrary lib(QLatin1String("GL"));
++ if (!lib.load()) {
++ // Fallback to Mesa driver
++ lib.setFileName(QLatin1String("@mesa@/lib/libGL"));
++ }
+ glXGetProcAddressARB = (qt_glXGetProcAddressARB) lib.resolve("glXGetProcAddressARB");
+ }
+ }
diff --git a/pkgs/development/libraries/qt-5/5.5/qtbase/0001-dlopen-gtkstyle.patch b/pkgs/development/libraries/qt-5/5.4/qtbase/dlopen-gtkstyle.patch
similarity index 73%
rename from pkgs/development/libraries/qt-5/5.5/qtbase/0001-dlopen-gtkstyle.patch
rename to pkgs/development/libraries/qt-5/5.4/qtbase/dlopen-gtkstyle.patch
index a4211378b90..c2be7377949 100644
--- a/pkgs/development/libraries/qt-5/5.5/qtbase/0001-dlopen-gtkstyle.patch
+++ b/pkgs/development/libraries/qt-5/5.4/qtbase/dlopen-gtkstyle.patch
@@ -1,17 +1,7 @@
-From 5334f7d5d3e7be31ea25c3553dfb60f283a14669 Mon Sep 17 00:00:00 2001
-From: Thomas Tuegel
-Date: Mon, 1 Dec 2014 17:21:58 -0600
-Subject: [PATCH 01/11] dlopen-gtkstyle
-
----
- qtbase/src/widgets/styles/qgtk2painter.cpp | 2 +-
- qtbase/src/widgets/styles/qgtkstyle_p.cpp | 12 ++++++------
- 2 files changed, 7 insertions(+), 7 deletions(-)
-
-diff --git a/qtbase/src/widgets/styles/qgtk2painter.cpp b/qtbase/src/widgets/styles/qgtk2painter.cpp
-index 489d456..c38e986 100644
---- a/qtbase/src/widgets/styles/qgtk2painter.cpp
-+++ b/qtbase/src/widgets/styles/qgtk2painter.cpp
+Index: qt-everywhere-opensource-src-5.4.2/qtbase/src/widgets/styles/qgtk2painter.cpp
+===================================================================
+--- qt-everywhere-opensource-src-5.4.2.orig/qtbase/src/widgets/styles/qgtk2painter.cpp
++++ qt-everywhere-opensource-src-5.4.2/qtbase/src/widgets/styles/qgtk2painter.cpp
@@ -96,7 +96,7 @@ static void initGtk()
static bool initialized = false;
if (!initialized) {
@@ -21,11 +11,11 @@ index 489d456..c38e986 100644
QGtk2PainterPrivate::gdk_pixmap_new = (Ptr_gdk_pixmap_new)libgtk.resolve("gdk_pixmap_new");
QGtk2PainterPrivate::gdk_pixbuf_get_from_drawable = (Ptr_gdk_pixbuf_get_from_drawable)libgtk.resolve("gdk_pixbuf_get_from_drawable");
-diff --git a/qtbase/src/widgets/styles/qgtkstyle_p.cpp b/qtbase/src/widgets/styles/qgtkstyle_p.cpp
-index 0e119a1..ad6caa1 100644
---- a/qtbase/src/widgets/styles/qgtkstyle_p.cpp
-+++ b/qtbase/src/widgets/styles/qgtkstyle_p.cpp
-@@ -327,7 +327,7 @@ void QGtkStylePrivate::gtkWidgetSetFocus(GtkWidget *widget, bool focus)
+Index: qt-everywhere-opensource-src-5.4.2/qtbase/src/widgets/styles/qgtkstyle_p.cpp
+===================================================================
+--- qt-everywhere-opensource-src-5.4.2.orig/qtbase/src/widgets/styles/qgtkstyle_p.cpp
++++ qt-everywhere-opensource-src-5.4.2/qtbase/src/widgets/styles/qgtkstyle_p.cpp
+@@ -326,7 +326,7 @@ void QGtkStylePrivate::gtkWidgetSetFocus
void QGtkStylePrivate::resolveGtk() const
{
// enforce the "0" suffix, so we'll open libgtk-x11-2.0.so.0
@@ -34,7 +24,7 @@ index 0e119a1..ad6caa1 100644
gtk_init = (Ptr_gtk_init)libgtk.resolve("gtk_init");
gtk_window_new = (Ptr_gtk_window_new)libgtk.resolve("gtk_window_new");
-@@ -425,8 +425,8 @@ void QGtkStylePrivate::resolveGtk() const
+@@ -424,8 +424,8 @@ void QGtkStylePrivate::resolveGtk() cons
pango_font_description_get_family = (Ptr_pango_font_description_get_family)libgtk.resolve("pango_font_description_get_family");
pango_font_description_get_style = (Ptr_pango_font_description_get_style)libgtk.resolve("pango_font_description_get_style");
@@ -45,7 +35,7 @@ index 0e119a1..ad6caa1 100644
}
/* \internal
-@@ -594,9 +594,9 @@ void QGtkStylePrivate::cleanupGtkWidgets()
+@@ -593,9 +593,9 @@ void QGtkStylePrivate::cleanupGtkWidgets
static bool resolveGConf()
{
if (!QGtkStylePrivate::gconf_client_get_default) {
@@ -58,6 +48,3 @@ index 0e119a1..ad6caa1 100644
}
return (QGtkStylePrivate::gconf_client_get_default !=0);
}
---
-2.5.2
-
diff --git a/pkgs/development/libraries/qt-5/5.4/qtbase/dlopen-libXcursor.patch b/pkgs/development/libraries/qt-5/5.4/qtbase/dlopen-libXcursor.patch
new file mode 100644
index 00000000000..608c68b6d5b
--- /dev/null
+++ b/pkgs/development/libraries/qt-5/5.4/qtbase/dlopen-libXcursor.patch
@@ -0,0 +1,17 @@
+Index: qt-everywhere-opensource-src-5.4.2/qtbase/src/plugins/platforms/xcb/qxcbcursor.cpp
+===================================================================
+--- qt-everywhere-opensource-src-5.4.2.orig/qtbase/src/plugins/platforms/xcb/qxcbcursor.cpp
++++ qt-everywhere-opensource-src-5.4.2/qtbase/src/plugins/platforms/xcb/qxcbcursor.cpp
+@@ -297,10 +297,10 @@ QXcbCursor::QXcbCursor(QXcbConnection *c
+ #ifdef XCB_USE_XLIB
+ static bool function_ptrs_not_initialized = true;
+ if (function_ptrs_not_initialized) {
+- QLibrary xcursorLib(QLatin1String("Xcursor"), 1);
++ QLibrary xcursorLib(QLatin1String("@libXcursor@/lib/libXcursor"), 1);
+ bool xcursorFound = xcursorLib.load();
+ if (!xcursorFound) { // try without the version number
+- xcursorLib.setFileName(QLatin1String("Xcursor"));
++ xcursorLib.setFileName(QLatin1String("@libXcursor@/lib/Xcursor"));
+ xcursorFound = xcursorLib.load();
+ }
+ if (xcursorFound) {
diff --git a/pkgs/development/libraries/qt-5/5.4/0011-dlopen-openssl.patch b/pkgs/development/libraries/qt-5/5.4/qtbase/dlopen-openssl.patch
similarity index 75%
rename from pkgs/development/libraries/qt-5/5.4/0011-dlopen-openssl.patch
rename to pkgs/development/libraries/qt-5/5.4/qtbase/dlopen-openssl.patch
index a79f0f36389..b648a58b570 100644
--- a/pkgs/development/libraries/qt-5/5.4/0011-dlopen-openssl.patch
+++ b/pkgs/development/libraries/qt-5/5.4/qtbase/dlopen-openssl.patch
@@ -1,8 +1,8 @@
-diff --git a/qtbase/src/network/ssl/qsslsocket_openssl_symbols.cpp b/qtbase/src/network/ssl/qsslsocket_openssl_symbols.cpp
-index c1fea93..bc1c0f0 100644
---- a/qtbase/src/network/ssl/qsslsocket_openssl_symbols.cpp
-+++ b/qtbase/src/network/ssl/qsslsocket_openssl_symbols.cpp
-@@ -611,8 +611,8 @@ static QPair loadOpenSsl()
+Index: qt-everywhere-opensource-src-5.4.2/qtbase/src/network/ssl/qsslsocket_openssl_symbols.cpp
+===================================================================
+--- qt-everywhere-opensource-src-5.4.2.orig/qtbase/src/network/ssl/qsslsocket_openssl_symbols.cpp
++++ qt-everywhere-opensource-src-5.4.2/qtbase/src/network/ssl/qsslsocket_openssl_symbols.cpp
+@@ -611,8 +611,8 @@ static QPair loadO
#endif
#if defined(SHLIB_VERSION_NUMBER) && !defined(Q_OS_QNX) // on QNX, the libs are always libssl.so and libcrypto.so
// first attempt: the canonical name is libssl.so.
@@ -13,7 +13,7 @@ index c1fea93..bc1c0f0 100644
if (libcrypto->load() && libssl->load()) {
// libssl.so. and libcrypto.so. found
return pair;
-@@ -629,8 +629,8 @@ static QPair loadOpenSsl()
+@@ -629,8 +629,8 @@ static QPair loadO
// OS X's /usr/lib/libssl.dylib, /usr/lib/libcrypto.dylib will be picked up in the third
// attempt, _after_ /Contents/Frameworks has been searched.
// iOS does not ship a system libssl.dylib, libcrypto.dylib in the first place.
diff --git a/pkgs/development/libraries/qt-5/5.4/qtbase/dlopen-resolv.patch b/pkgs/development/libraries/qt-5/5.4/qtbase/dlopen-resolv.patch
new file mode 100644
index 00000000000..a79c806462f
--- /dev/null
+++ b/pkgs/development/libraries/qt-5/5.4/qtbase/dlopen-resolv.patch
@@ -0,0 +1,26 @@
+Index: qt-everywhere-opensource-src-5.5.1/qtbase/src/network/kernel/qdnslookup_unix.cpp
+===================================================================
+--- qt-everywhere-opensource-src-5.5.1.orig/qtbase/src/network/kernel/qdnslookup_unix.cpp
++++ qt-everywhere-opensource-src-5.5.1/qtbase/src/network/kernel/qdnslookup_unix.cpp
+@@ -79,7 +79,7 @@ static void resolveLibrary()
+ if (!lib.load())
+ #endif
+ {
+- lib.setFileName(QLatin1String("resolv"));
++ lib.setFileName(QLatin1String("@glibc/lib/resolv"));
+ if (!lib.load())
+ return;
+ }
+Index: qt-everywhere-opensource-src-5.5.1/qtbase/src/network/kernel/qhostinfo_unix.cpp
+===================================================================
+--- qt-everywhere-opensource-src-5.5.1.orig/qtbase/src/network/kernel/qhostinfo_unix.cpp
++++ qt-everywhere-opensource-src-5.5.1/qtbase/src/network/kernel/qhostinfo_unix.cpp
+@@ -95,7 +95,7 @@ static void resolveLibrary()
+ if (!lib.load())
+ #endif
+ {
+- lib.setFileName(QLatin1String("resolv"));
++ lib.setFileName(QLatin1String("@glibc@/lib/libresolv"));
+ if (!lib.load())
+ return;
+ }
diff --git a/pkgs/development/libraries/qt-5/5.4/qtbase/mkspecs-libgl.patch b/pkgs/development/libraries/qt-5/5.4/qtbase/mkspecs-libgl.patch
new file mode 100644
index 00000000000..10115e8144a
--- /dev/null
+++ b/pkgs/development/libraries/qt-5/5.4/qtbase/mkspecs-libgl.patch
@@ -0,0 +1,15 @@
+Index: qt-everywhere-opensource-src-5.5.1/qtbase/mkspecs/common/linux.conf
+===================================================================
+--- qt-everywhere-opensource-src-5.5.1.orig/qtbase/mkspecs/common/linux.conf
++++ qt-everywhere-opensource-src-5.5.1/qtbase/mkspecs/common/linux.conf
+@@ -12,8 +12,8 @@ QMAKE_INCDIR =
+ QMAKE_LIBDIR =
+ QMAKE_INCDIR_X11 =
+ QMAKE_LIBDIR_X11 =
+-QMAKE_INCDIR_OPENGL =
+-QMAKE_LIBDIR_OPENGL =
++QMAKE_INCDIR_OPENGL = @mesa@/include
++QMAKE_LIBDIR_OPENGL = @mesa@/lib
+ QMAKE_INCDIR_OPENGL_ES2 = $$QMAKE_INCDIR_OPENGL
+ QMAKE_LIBDIR_OPENGL_ES2 = $$QMAKE_LIBDIR_OPENGL
+ QMAKE_INCDIR_EGL =
diff --git a/pkgs/development/libraries/qt-5/5.5/qtbase/0011-nix-profiles-library-paths.patch b/pkgs/development/libraries/qt-5/5.4/qtbase/nix-profiles-library-paths.patch
similarity index 57%
rename from pkgs/development/libraries/qt-5/5.5/qtbase/0011-nix-profiles-library-paths.patch
rename to pkgs/development/libraries/qt-5/5.4/qtbase/nix-profiles-library-paths.patch
index 8eaf2f4ffac..824d2ea0817 100644
--- a/pkgs/development/libraries/qt-5/5.5/qtbase/0011-nix-profiles-library-paths.patch
+++ b/pkgs/development/libraries/qt-5/5.4/qtbase/nix-profiles-library-paths.patch
@@ -1,17 +1,8 @@
-From 2da5e660c4b470444e756f2ec88cb520a124bc99 Mon Sep 17 00:00:00 2001
-From: Thomas Tuegel
-Date: Sat, 17 Oct 2015 09:20:35 -0500
-Subject: [PATCH] nix profiles library paths
-
----
- qtbase/src/corelib/kernel/qcoreapplication.cpp | 15 +++++++++++++++
- 1 file changed, 15 insertions(+)
-
-diff --git a/qtbase/src/corelib/kernel/qcoreapplication.cpp b/qtbase/src/corelib/kernel/qcoreapplication.cpp
-index ecafe91..96e3eb5 100644
---- a/qtbase/src/corelib/kernel/qcoreapplication.cpp
-+++ b/qtbase/src/corelib/kernel/qcoreapplication.cpp
-@@ -2496,6 +2496,21 @@ QStringList QCoreApplication::libraryPaths()
+Index: qt-everywhere-opensource-src-5.4.2/qtbase/src/corelib/kernel/qcoreapplication.cpp
+===================================================================
+--- qt-everywhere-opensource-src-5.4.2.orig/qtbase/src/corelib/kernel/qcoreapplication.cpp
++++ qt-everywhere-opensource-src-5.4.2/qtbase/src/corelib/kernel/qcoreapplication.cpp
+@@ -2442,6 +2442,21 @@ QStringList QCoreApplication::libraryPat
}
}
}
@@ -33,6 +24,3 @@ index ecafe91..96e3eb5 100644
}
return *(coreappdata()->app_libpaths);
}
---
-2.5.2
-
diff --git a/pkgs/development/libraries/qt-5/5.4/qtbase/series b/pkgs/development/libraries/qt-5/5.4/qtbase/series
new file mode 100644
index 00000000000..3cfa50e85b7
--- /dev/null
+++ b/pkgs/development/libraries/qt-5/5.4/qtbase/series
@@ -0,0 +1,8 @@
+dlopen-resolv.patch
+tzdir.patch
+dlopen-libXcursor.patch
+dlopen-openssl.patch
+dlopen-dbus.patch
+xdg-config-dirs.patch
+nix-profiles-library-paths.patch
+compose-search-path.patch
diff --git a/pkgs/development/libraries/qt-5/5.4/qtbase/setup-hook.sh b/pkgs/development/libraries/qt-5/5.4/qtbase/setup-hook.sh
new file mode 100644
index 00000000000..b86b6df28ac
--- /dev/null
+++ b/pkgs/development/libraries/qt-5/5.4/qtbase/setup-hook.sh
@@ -0,0 +1,100 @@
+if [[ -z "$QMAKE" ]]; then
+
+linkDependencyDir() {
+ @lndir@/bin/lndir -silent "$1/$2" "$qtOut/$2"
+ if [[ -n "$NIX_QT_SUBMODULE" ]]; then
+ find "$1/$2" -printf "$2/%P\n" >> "$out/nix-support/qt-inputs"
+ fi
+}
+
+addQtModule() {
+ if [[ -d "$1/mkspecs" ]]; then
+ # $1 is a Qt module
+ linkDependencyDir "$1" mkspecs
+
+ for dir in bin include lib share; do
+ if [[ -d "$1/$dir" ]]; then
+ linkDependencyDir "$1" "$dir"
+ fi
+ done
+ fi
+}
+
+propagateRuntimeDeps() {
+ local propagated
+ for dir in "etc/xdg" "lib/qt5/plugins" "lib/qt5/qml" "lib/qt5/imports" "share"; do
+ if [[ -d "$1/$dir" ]]; then
+ propagated=
+ for pkg in $propagatedBuildInputs; do
+ if [[ "z$pkg" == "z$1" ]]; then
+ propagated=1
+ break
+ fi
+ done
+ if [[ -z $propagated ]]; then
+ propagatedBuildInputs="$propagatedBuildInputs $1"
+ fi
+ break
+ fi
+ done
+}
+
+rmQtModules() {
+ cat "$out/nix-support/qt-inputs" | while read file; do
+ if [[ -h "$out/$file" ]]; then
+ rm "$out/$file"
+ fi
+ done
+
+ cat "$out/nix-support/qt-inputs" | while read file; do
+ if [[ -d "$out/$file" ]]; then
+ rmdir --ignore-fail-on-non-empty -p "$out/$file"
+ fi
+ done
+
+ rm "$out/nix-support/qt-inputs"
+}
+
+rmQMake() {
+ rm "$qtOut/bin/qmake" "$qtOut/bin/qt.conf"
+}
+
+setQMakePath() {
+ export PATH="$qtOut/bin${PATH:+:}$PATH"
+}
+
+qtOut=""
+if [[ -z "$NIX_QT_SUBMODULE" ]]; then
+ qtOut=`mktemp -d`
+else
+ qtOut=$out
+fi
+
+mkdir -p "$qtOut/bin" "$qtOut/mkspecs" "$qtOut/include" "$qtOut/nix-support" "$qtOut/lib" "$qtOut/share"
+
+cp "@out@/bin/qmake" "$qtOut/bin"
+cat >"$qtOut/bin/qt.conf" <
-Date: Mon, 1 Dec 2014 17:23:22 -0600
-Subject: [PATCH] tzdir
-
----
- qtbase/src/corelib/tools/qtimezoneprivate_tz.cpp | 21 +++++++++++++++------
- 1 file changed, 15 insertions(+), 6 deletions(-)
-
-diff --git a/qtbase/src/corelib/tools/qtimezoneprivate_tz.cpp b/qtbase/src/corelib/tools/qtimezoneprivate_tz.cpp
-index b4ea91e..a56a245 100644
---- a/qtbase/src/corelib/tools/qtimezoneprivate_tz.cpp
-+++ b/qtbase/src/corelib/tools/qtimezoneprivate_tz.cpp
-@@ -68,7 +68,10 @@ typedef QHash QTzTimeZoneHash;
+Index: qt-everywhere-opensource-src-5.4.2/qtbase/src/corelib/tools/qtimezoneprivate_tz.cpp
+===================================================================
+--- qt-everywhere-opensource-src-5.4.2.orig/qtbase/src/corelib/tools/qtimezoneprivate_tz.cpp
++++ qt-everywhere-opensource-src-5.4.2/qtbase/src/corelib/tools/qtimezoneprivate_tz.cpp
+@@ -61,7 +61,10 @@ typedef QHash Q
// Parse zone.tab table, assume lists all installed zones, if not will need to read directories
static QTzTimeZoneHash loadTzTimeZones()
{
@@ -23,7 +14,7 @@ index b4ea91e..a56a245 100644
if (!QFile::exists(path))
path = QStringLiteral("/usr/lib/zoneinfo/zone.tab");
-@@ -559,12 +562,18 @@ void QTzTimeZonePrivate::init(const QByteArray &ianaId)
+@@ -552,12 +555,18 @@ void QTzTimeZonePrivate::init(const QByt
if (!tzif.open(QIODevice::ReadOnly))
return;
} else {
@@ -47,6 +38,3 @@ index b4ea91e..a56a245 100644
}
}
---
-2.1.3
-
diff --git a/pkgs/development/libraries/qt-5/5.4/0013-xdg_config_dirs.patch b/pkgs/development/libraries/qt-5/5.4/qtbase/xdg-config-dirs.patch
similarity index 68%
rename from pkgs/development/libraries/qt-5/5.4/0013-xdg_config_dirs.patch
rename to pkgs/development/libraries/qt-5/5.4/qtbase/xdg-config-dirs.patch
index 63066658f0f..dbf5eac52e6 100644
--- a/pkgs/development/libraries/qt-5/5.4/0013-xdg_config_dirs.patch
+++ b/pkgs/development/libraries/qt-5/5.4/qtbase/xdg-config-dirs.patch
@@ -1,8 +1,8 @@
-diff --git a/qsettings.cpp b/qsettings.cpp
-index 35b3ed4..210dfeb 100644
---- a/qsettings.cpp
-+++ b/qtbase/src/corelib/io/qsettings.cpp
-@@ -1174,6 +1174,24 @@ QConfFileSettingsPrivate::QConfFileSettingsPrivate(QSettings::Format format,
+Index: qt-everywhere-opensource-src-5.4.2/qtbase/src/corelib/io/qsettings.cpp
+===================================================================
+--- qt-everywhere-opensource-src-5.4.2.orig/qtbase/src/corelib/io/qsettings.cpp
++++ qt-everywhere-opensource-src-5.4.2/qtbase/src/corelib/io/qsettings.cpp
+@@ -1128,6 +1128,24 @@ QConfFileSettingsPrivate::QConfFileSetti
if (!application.isEmpty())
confFiles[F_System | F_Application].reset(QConfFile::fromName(systemPath + appFile, false));
confFiles[F_System | F_Organization].reset(QConfFile::fromName(systemPath + orgFile, false));
@@ -27,11 +27,11 @@ index 35b3ed4..210dfeb 100644
#else
QString confName = getPath(format, QSettings::UserScope) + org;
if (!application.isEmpty())
-diff --git a/qsettings_p.h b/qsettings_p.h
-index a28b583..b2a240d 100644
---- a/qsettings_p.h
-+++ b/qtbase/src/corelib/io/qsettings_p.h
-@@ -244,7 +244,7 @@ public:
+Index: qt-everywhere-opensource-src-5.4.2/qtbase/src/corelib/io/qsettings_p.h
+===================================================================
+--- qt-everywhere-opensource-src-5.4.2.orig/qtbase/src/corelib/io/qsettings_p.h
++++ qt-everywhere-opensource-src-5.4.2/qtbase/src/corelib/io/qsettings_p.h
+@@ -240,7 +240,7 @@ public:
F_Organization = 0x1,
F_User = 0x0,
F_System = 0x2,
diff --git a/pkgs/development/libraries/qt-5/5.4/qtconnectivity.nix b/pkgs/development/libraries/qt-5/5.4/qtconnectivity.nix
new file mode 100644
index 00000000000..95cd6fea79b
--- /dev/null
+++ b/pkgs/development/libraries/qt-5/5.4/qtconnectivity.nix
@@ -0,0 +1,6 @@
+{ qtSubmodule, qtbase, qtdeclarative }:
+
+qtSubmodule {
+ name = "qtconnectivity";
+ qtInputs = [ qtbase qtdeclarative ];
+}
diff --git a/pkgs/development/libraries/qt-5/5.4/qtdeclarative/0001-nix-profiles-import-paths.patch b/pkgs/development/libraries/qt-5/5.4/qtdeclarative/0001-nix-profiles-import-paths.patch
new file mode 100644
index 00000000000..8e86f97a947
--- /dev/null
+++ b/pkgs/development/libraries/qt-5/5.4/qtdeclarative/0001-nix-profiles-import-paths.patch
@@ -0,0 +1,37 @@
+From 3f6fa74067aacd0e595e45b4ef7ce754514cb205 Mon Sep 17 00:00:00 2001
+From: Thomas Tuegel
+Date: Sat, 17 Oct 2015 09:28:18 -0500
+Subject: [PATCH] nix profiles import paths
+
+---
+ src/qml/qml/qqmlimport.cpp | 14 ++++++++++++++
+ 1 file changed, 14 insertions(+)
+
+diff --git a/src/qml/qml/qqmlimport.cpp b/src/qml/qml/qqmlimport.cpp
+index 5a54609..f33c2f9 100644
+--- a/src/qml/qml/qqmlimport.cpp
++++ b/src/qml/qml/qqmlimport.cpp
+@@ -1549,6 +1549,20 @@ QQmlImportDatabase::QQmlImportDatabase(QQmlEngine *e)
+ QString installImportsPath = QLibraryInfo::location(QLibraryInfo::Qml2ImportsPath);
+ addImportPath(installImportsPath);
+
++ // Add import paths derived from NIX_PROFILES.
++ const QByteArray nixProfilesEnv = qgetenv("NIX_PROFILES");
++ if (!nixProfilesEnv.isEmpty()) {
++ QLatin1Char pathSep(' ');
++ QStringList paths = QFile::decodeName(nixProfilesEnv).split(pathSep, QString::SkipEmptyParts);
++ for (QStringList::iterator it = paths.begin(); it != paths.end(); ++it) {
++ it->append("/lib/qt5/qml");
++ QString canonicalPath = QDir(*it).canonicalPath();
++ if (!canonicalPath.isEmpty()) {
++ addImportPath(canonicalPath);
++ }
++ }
++ }
++
+ // env import paths
+ QByteArray envImportPath = qgetenv("QML2_IMPORT_PATH");
+ if (!envImportPath.isEmpty()) {
+--
+2.5.2
+
diff --git a/pkgs/development/libraries/qt-5/5.4/qtdeclarative/default.nix b/pkgs/development/libraries/qt-5/5.4/qtdeclarative/default.nix
new file mode 100644
index 00000000000..9181c37b225
--- /dev/null
+++ b/pkgs/development/libraries/qt-5/5.4/qtdeclarative/default.nix
@@ -0,0 +1,8 @@
+{ qtSubmodule, python, qtbase, qtsvg, qtxmlpatterns }:
+
+qtSubmodule {
+ name = "qtdeclarative";
+ patches = [ ./0001-nix-profiles-import-paths.patch ];
+ qtInputs = [ qtbase qtsvg qtxmlpatterns ];
+ nativeBuildInputs = [ python ];
+}
diff --git a/pkgs/development/libraries/qt-5/5.4/qtdoc.nix b/pkgs/development/libraries/qt-5/5.4/qtdoc.nix
new file mode 100644
index 00000000000..578ea6ba0b2
--- /dev/null
+++ b/pkgs/development/libraries/qt-5/5.4/qtdoc.nix
@@ -0,0 +1,6 @@
+{ qtSubmodule, qtdeclarative }:
+
+qtSubmodule {
+ name = "qtdoc";
+ qtInputs = [ qtdeclarative ];
+}
diff --git a/pkgs/development/libraries/qt-5/5.4/qtenginio.nix b/pkgs/development/libraries/qt-5/5.4/qtenginio.nix
new file mode 100644
index 00000000000..b860a73ef89
--- /dev/null
+++ b/pkgs/development/libraries/qt-5/5.4/qtenginio.nix
@@ -0,0 +1,6 @@
+{ qtSubmodule, qtdeclarative }:
+
+qtSubmodule {
+ name = "qtenginio";
+ qtInputs = [ qtdeclarative ];
+}
diff --git a/pkgs/development/libraries/qt-5/5.4/qtgraphicaleffects.nix b/pkgs/development/libraries/qt-5/5.4/qtgraphicaleffects.nix
new file mode 100644
index 00000000000..3273f12eb83
--- /dev/null
+++ b/pkgs/development/libraries/qt-5/5.4/qtgraphicaleffects.nix
@@ -0,0 +1,6 @@
+{ qtSubmodule, qtdeclarative }:
+
+qtSubmodule {
+ name = "qtgraphicaleffects";
+ qtInputs = [ qtdeclarative ];
+}
diff --git a/pkgs/development/libraries/qt-5/5.4/qtimageformats.nix b/pkgs/development/libraries/qt-5/5.4/qtimageformats.nix
new file mode 100644
index 00000000000..03d0fffbe80
--- /dev/null
+++ b/pkgs/development/libraries/qt-5/5.4/qtimageformats.nix
@@ -0,0 +1,6 @@
+{ qtSubmodule, qtbase }:
+
+qtSubmodule {
+ name = "qtimageformats";
+ qtInputs = [ qtbase ];
+}
diff --git a/pkgs/development/libraries/qt-5/5.4/qtlocation.nix b/pkgs/development/libraries/qt-5/5.4/qtlocation.nix
new file mode 100644
index 00000000000..1e134057c4b
--- /dev/null
+++ b/pkgs/development/libraries/qt-5/5.4/qtlocation.nix
@@ -0,0 +1,6 @@
+{ qtSubmodule, qtbase, qtmultimedia }:
+
+qtSubmodule {
+ name = "qtlocation";
+ qtInputs = [ qtbase qtmultimedia ];
+}
diff --git a/pkgs/development/libraries/qt-5/5.4/qtmultimedia.nix b/pkgs/development/libraries/qt-5/5.4/qtmultimedia.nix
new file mode 100644
index 00000000000..b6b4d8ea0cf
--- /dev/null
+++ b/pkgs/development/libraries/qt-5/5.4/qtmultimedia.nix
@@ -0,0 +1,12 @@
+{ qtSubmodule, qtbase, qtdeclarative, pkgconfig
+, alsaLib, gstreamer, gst-plugins-base, libpulseaudio
+}:
+
+qtSubmodule {
+ name = "qtmultimedia";
+ qtInputs = [ qtbase qtdeclarative ];
+ buildInputs = [
+ pkgconfig alsaLib gstreamer gst-plugins-base libpulseaudio
+ ];
+ configureFlags = "GST_VERSION=1.0";
+}
diff --git a/pkgs/development/libraries/qt-5/5.4/qtquick1/0001-nix-profiles-import-paths.patch b/pkgs/development/libraries/qt-5/5.4/qtquick1/0001-nix-profiles-import-paths.patch
new file mode 100644
index 00000000000..63b141f6ce5
--- /dev/null
+++ b/pkgs/development/libraries/qt-5/5.4/qtquick1/0001-nix-profiles-import-paths.patch
@@ -0,0 +1,37 @@
+From bbc706b3fcb90ca3b2b51d5e3434145572152711 Mon Sep 17 00:00:00 2001
+From: Thomas Tuegel
+Date: Sat, 17 Oct 2015 09:29:51 -0500
+Subject: [PATCH] nix profiles import paths
+
+---
+ src/declarative/qml/qdeclarativeimport.cpp | 14 ++++++++++++++
+ 1 file changed, 14 insertions(+)
+
+diff --git a/src/declarative/qml/qdeclarativeimport.cpp b/src/declarative/qml/qdeclarativeimport.cpp
+index 9404834..d185ed5 100644
+--- a/src/declarative/qml/qdeclarativeimport.cpp
++++ b/src/declarative/qml/qdeclarativeimport.cpp
+@@ -725,6 +725,20 @@ QDeclarativeImportDatabase::QDeclarativeImportDatabase(QDeclarativeEngine *e)
+
+ addImportPath(installImportsPath);
+
++ // Add import paths derived from NIX_PROFILES.
++ const QByteArray nixProfilesEnv = qgetenv("NIX_PROFILES");
++ if (!nixProfilesEnv.isEmpty()) {
++ QLatin1Char pathSep(' ');
++ QStringList paths = QFile::decodeName(nixProfilesEnv).split(pathSep, QString::SkipEmptyParts);
++ for (QStringList::iterator it = paths.begin(); it != paths.end(); ++it) {
++ it->append("/lib/qt5/imports");
++ QString canonicalPath = QDir(*it).canonicalPath();
++ if (!canonicalPath.isEmpty()) {
++ addImportPath(canonicalPath);
++ }
++ }
++ }
++
+ // env import paths
+ QByteArray envImportPath = qgetenv("QML_IMPORT_PATH");
+ if (!envImportPath.isEmpty()) {
+--
+2.5.2
+
diff --git a/pkgs/development/libraries/qt-5/5.4/qtquick1/default.nix b/pkgs/development/libraries/qt-5/5.4/qtquick1/default.nix
new file mode 100644
index 00000000000..d1c7bb389a4
--- /dev/null
+++ b/pkgs/development/libraries/qt-5/5.4/qtquick1/default.nix
@@ -0,0 +1,7 @@
+{ qtSubmodule, qtscript, qtsvg, qtwebkit, qtxmlpatterns }:
+
+qtSubmodule {
+ name = "qtquick1";
+ patches = [ ./0001-nix-profiles-import-paths.patch ];
+ qtInputs = [ qtscript qtsvg qtwebkit qtxmlpatterns ];
+}
diff --git a/pkgs/development/libraries/qt-5/5.4/qtquickcontrols.nix b/pkgs/development/libraries/qt-5/5.4/qtquickcontrols.nix
new file mode 100644
index 00000000000..93a864621b8
--- /dev/null
+++ b/pkgs/development/libraries/qt-5/5.4/qtquickcontrols.nix
@@ -0,0 +1,6 @@
+{ qtSubmodule, qtdeclarative }:
+
+qtSubmodule {
+ name = "qtquickcontrols";
+ qtInputs = [ qtdeclarative ];
+}
diff --git a/pkgs/development/libraries/qt-5/5.4/qtscript/0001-glib-2.32.patch b/pkgs/development/libraries/qt-5/5.4/qtscript/0001-glib-2.32.patch
new file mode 100644
index 00000000000..887e107b6c1
--- /dev/null
+++ b/pkgs/development/libraries/qt-5/5.4/qtscript/0001-glib-2.32.patch
@@ -0,0 +1,25 @@
+From abd80356449bb36c8adcc5c9ca1df6b47715d265 Mon Sep 17 00:00:00 2001
+From: Thomas Tuegel
+Date: Sun, 23 Aug 2015 09:13:34 -0500
+Subject: [PATCH] glib-2.32
+
+---
+ src/3rdparty/javascriptcore/JavaScriptCore/wtf/Threading.h | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/src/3rdparty/javascriptcore/JavaScriptCore/wtf/Threading.h b/src/3rdparty/javascriptcore/JavaScriptCore/wtf/Threading.h
+index 1f6d25e..087c3fb 100644
+--- a/src/3rdparty/javascriptcore/JavaScriptCore/wtf/Threading.h
++++ b/src/3rdparty/javascriptcore/JavaScriptCore/wtf/Threading.h
+@@ -81,7 +81,7 @@
+ #include
+ #elif PLATFORM(GTK)
+ #include
+-typedef struct _GMutex GMutex;
++typedef union _GMutex GMutex;
+ typedef struct _GCond GCond;
+ #endif
+
+--
+2.5.0
+
diff --git a/pkgs/development/libraries/qt-5/5.4/qtscript/default.nix b/pkgs/development/libraries/qt-5/5.4/qtscript/default.nix
new file mode 100644
index 00000000000..127766e2ebd
--- /dev/null
+++ b/pkgs/development/libraries/qt-5/5.4/qtscript/default.nix
@@ -0,0 +1,7 @@
+{ qtSubmodule, qtbase, qttools }:
+
+qtSubmodule {
+ name = "qtscript";
+ qtInputs = [ qtbase qttools ];
+ patches = [ ./0001-glib-2.32.patch ];
+}
diff --git a/pkgs/development/libraries/qt-5/5.4/qtsensors.nix b/pkgs/development/libraries/qt-5/5.4/qtsensors.nix
new file mode 100644
index 00000000000..61e64dc47e4
--- /dev/null
+++ b/pkgs/development/libraries/qt-5/5.4/qtsensors.nix
@@ -0,0 +1,6 @@
+{ qtSubmodule, qtbase, qtdeclarative }:
+
+qtSubmodule {
+ name = "qtsensors";
+ qtInputs = [ qtbase qtdeclarative ];
+}
diff --git a/pkgs/development/libraries/qt-5/5.4/0009-dlopen-serialport-udev.patch b/pkgs/development/libraries/qt-5/5.4/qtserialport/0001-dlopen-serialport-udev.patch
similarity index 60%
rename from pkgs/development/libraries/qt-5/5.4/0009-dlopen-serialport-udev.patch
rename to pkgs/development/libraries/qt-5/5.4/qtserialport/0001-dlopen-serialport-udev.patch
index e1e66a3ce95..6636cc9265a 100644
--- a/pkgs/development/libraries/qt-5/5.4/0009-dlopen-serialport-udev.patch
+++ b/pkgs/development/libraries/qt-5/5.4/qtserialport/0001-dlopen-serialport-udev.patch
@@ -1,17 +1,17 @@
-From 17c7257e54c00ea2121f2cf95fb2be5e5db6b4ad Mon Sep 17 00:00:00 2001
+From d81c2c870b9bea8fb8e6b85baefb06542f568338 Mon Sep 17 00:00:00 2001
From: Thomas Tuegel
-Date: Mon, 1 Dec 2014 17:31:03 -0600
-Subject: [PATCH] dlopen-serialport-udev
+Date: Sun, 23 Aug 2015 09:16:02 -0500
+Subject: [PATCH] dlopen serialport udev
---
- qtserialport/src/serialport/qtudev_p.h | 4 ++--
+ src/serialport/qtudev_p.h | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
-diff --git a/qtserialport/src/serialport/qtudev_p.h b/qtserialport/src/serialport/qtudev_p.h
-index 09940ab..45460f9 100644
---- a/qtserialport/src/serialport/qtudev_p.h
-+++ b/qtserialport/src/serialport/qtudev_p.h
-@@ -119,9 +119,9 @@ inline void *resolveSymbol(QLibrary *udevLibrary, const char *symbolName)
+diff --git a/src/serialport/qtudev_p.h b/src/serialport/qtudev_p.h
+index 6f2cabd..81b9849 100644
+--- a/src/serialport/qtudev_p.h
++++ b/src/serialport/qtudev_p.h
+@@ -105,9 +105,9 @@ inline QFunctionPointer resolveSymbol(QLibrary *udevLibrary, const char *symbolN
inline bool resolveSymbols(QLibrary *udevLibrary)
{
if (!udevLibrary->isLoaded()) {
@@ -24,5 +24,5 @@ index 09940ab..45460f9 100644
qWarning("Failed to load the library: %s, supported version(s): %i and %i", qPrintable(udevLibrary->fileName()), 1, 0);
return false;
--
-2.1.3
+2.5.0
diff --git a/pkgs/development/libraries/qt-5/5.4/qtserialport/default.nix b/pkgs/development/libraries/qt-5/5.4/qtserialport/default.nix
new file mode 100644
index 00000000000..fa7383fc1e7
--- /dev/null
+++ b/pkgs/development/libraries/qt-5/5.4/qtserialport/default.nix
@@ -0,0 +1,7 @@
+{ qtSubmodule, qtbase }:
+
+qtSubmodule {
+ name = "qtserialport";
+ qtInputs = [ qtbase ];
+ patches = [ ./0001-dlopen-serialport-udev.patch ];
+}
diff --git a/pkgs/development/libraries/qt-5/5.4/qtsvg.nix b/pkgs/development/libraries/qt-5/5.4/qtsvg.nix
new file mode 100644
index 00000000000..b9ccac7cf93
--- /dev/null
+++ b/pkgs/development/libraries/qt-5/5.4/qtsvg.nix
@@ -0,0 +1,6 @@
+{ qtSubmodule, qtbase }:
+
+qtSubmodule {
+ name = "qtsvg";
+ qtInputs = [ qtbase ];
+}
diff --git a/pkgs/development/libraries/qt-5/5.4/qttools.nix b/pkgs/development/libraries/qt-5/5.4/qttools.nix
new file mode 100644
index 00000000000..65edc450812
--- /dev/null
+++ b/pkgs/development/libraries/qt-5/5.4/qttools.nix
@@ -0,0 +1,6 @@
+{ qtSubmodule, qtbase }:
+
+qtSubmodule {
+ name = "qttools";
+ qtInputs = [ qtbase ];
+}
diff --git a/pkgs/development/libraries/qt-5/5.4/qttranslations.nix b/pkgs/development/libraries/qt-5/5.4/qttranslations.nix
new file mode 100644
index 00000000000..50fc8cf6826
--- /dev/null
+++ b/pkgs/development/libraries/qt-5/5.4/qttranslations.nix
@@ -0,0 +1,6 @@
+{ qtSubmodule, qttools }:
+
+qtSubmodule {
+ name = "qttranslations";
+ qtInputs = [ qttools ];
+}
diff --git a/pkgs/development/libraries/qt-5/5.4/qtwebkit-examples.nix b/pkgs/development/libraries/qt-5/5.4/qtwebkit-examples.nix
new file mode 100644
index 00000000000..64f85c42d19
--- /dev/null
+++ b/pkgs/development/libraries/qt-5/5.4/qtwebkit-examples.nix
@@ -0,0 +1,6 @@
+{ qtSubmodule, qttools, qtwebkit }:
+
+qtSubmodule {
+ name = "qtwebkit-examples";
+ qtInputs = [ qttools qtwebkit ];
+}
diff --git a/pkgs/development/libraries/qt-5/5.4/0002-dlopen-webkit-nsplugin.patch b/pkgs/development/libraries/qt-5/5.4/qtwebkit/0001-dlopen-webkit-nsplugin.patch
similarity index 50%
rename from pkgs/development/libraries/qt-5/5.4/0002-dlopen-webkit-nsplugin.patch
rename to pkgs/development/libraries/qt-5/5.4/qtwebkit/0001-dlopen-webkit-nsplugin.patch
index 0752cdcf479..0eeacce1bc0 100644
--- a/pkgs/development/libraries/qt-5/5.4/0002-dlopen-webkit-nsplugin.patch
+++ b/pkgs/development/libraries/qt-5/5.4/qtwebkit/0001-dlopen-webkit-nsplugin.patch
@@ -1,19 +1,19 @@
-From 8c30f72dbe11752e8ed25f292c6e5695d7733f72 Mon Sep 17 00:00:00 2001
+From 862ce7d357a3ec32683ac6ec7c0ebdc9346b44ba Mon Sep 17 00:00:00 2001
From: Thomas Tuegel
-Date: Mon, 1 Dec 2014 17:22:23 -0600
-Subject: [PATCH] dlopen-webkit-nsplugin
+Date: Sun, 23 Aug 2015 09:18:54 -0500
+Subject: [PATCH 1/3] dlopen webkit nsplugin
---
- qtwebkit/Source/WebCore/plugins/qt/PluginPackageQt.cpp | 2 +-
- qtwebkit/Source/WebCore/plugins/qt/PluginViewQt.cpp | 2 +-
- .../WebKit2/WebProcess/Plugins/Netscape/x11/NetscapePluginX11.cpp | 2 +-
+ Source/WebCore/plugins/qt/PluginPackageQt.cpp | 2 +-
+ Source/WebCore/plugins/qt/PluginViewQt.cpp | 2 +-
+ Source/WebKit2/WebProcess/Plugins/Netscape/x11/NetscapePluginX11.cpp | 2 +-
3 files changed, 3 insertions(+), 3 deletions(-)
-diff --git a/qtwebkit/Source/WebCore/plugins/qt/PluginPackageQt.cpp b/qtwebkit/Source/WebCore/plugins/qt/PluginPackageQt.cpp
-index 679480b..2c373cc 100644
---- a/qtwebkit/Source/WebCore/plugins/qt/PluginPackageQt.cpp
-+++ b/qtwebkit/Source/WebCore/plugins/qt/PluginPackageQt.cpp
-@@ -132,7 +132,7 @@ static void initializeGtk(QLibrary* module = 0)
+diff --git a/Source/WebCore/plugins/qt/PluginPackageQt.cpp b/Source/WebCore/plugins/qt/PluginPackageQt.cpp
+index a923d49..2731d05 100644
+--- a/Source/WebCore/plugins/qt/PluginPackageQt.cpp
++++ b/Source/WebCore/plugins/qt/PluginPackageQt.cpp
+@@ -136,7 +136,7 @@ static void initializeGtk(QLibrary* module = 0)
}
}
@@ -22,10 +22,10 @@ index 679480b..2c373cc 100644
if (library.load()) {
typedef void *(*gtk_init_check_ptr)(int*, char***);
gtk_init_check_ptr gtkInitCheck = (gtk_init_check_ptr)library.resolve("gtk_init_check");
-diff --git a/qtwebkit/Source/WebCore/plugins/qt/PluginViewQt.cpp b/qtwebkit/Source/WebCore/plugins/qt/PluginViewQt.cpp
+diff --git a/Source/WebCore/plugins/qt/PluginViewQt.cpp b/Source/WebCore/plugins/qt/PluginViewQt.cpp
index de06a2f..363bde5 100644
---- a/qtwebkit/Source/WebCore/plugins/qt/PluginViewQt.cpp
-+++ b/qtwebkit/Source/WebCore/plugins/qt/PluginViewQt.cpp
+--- a/Source/WebCore/plugins/qt/PluginViewQt.cpp
++++ b/Source/WebCore/plugins/qt/PluginViewQt.cpp
@@ -697,7 +697,7 @@ static Display *getPluginDisplay()
// support gdk based plugins (like flash) that use a different X connection.
// The code below has the same effect as this one:
@@ -35,10 +35,10 @@ index de06a2f..363bde5 100644
if (!library.load())
return 0;
-diff --git a/qtwebkit/Source/WebKit2/WebProcess/Plugins/Netscape/x11/NetscapePluginX11.cpp b/qtwebkit/Source/WebKit2/WebProcess/Plugins/Netscape/x11/NetscapePluginX11.cpp
+diff --git a/Source/WebKit2/WebProcess/Plugins/Netscape/x11/NetscapePluginX11.cpp b/Source/WebKit2/WebProcess/Plugins/Netscape/x11/NetscapePluginX11.cpp
index d734ff6..62a2197 100644
---- a/qtwebkit/Source/WebKit2/WebProcess/Plugins/Netscape/x11/NetscapePluginX11.cpp
-+++ b/qtwebkit/Source/WebKit2/WebProcess/Plugins/Netscape/x11/NetscapePluginX11.cpp
+--- a/Source/WebKit2/WebProcess/Plugins/Netscape/x11/NetscapePluginX11.cpp
++++ b/Source/WebKit2/WebProcess/Plugins/Netscape/x11/NetscapePluginX11.cpp
@@ -64,7 +64,7 @@ static Display* getPluginDisplay()
// The code below has the same effect as this one:
// Display *gdkDisplay = gdk_x11_display_get_xdisplay(gdk_display_get_default());
@@ -49,5 +49,5 @@ index d734ff6..62a2197 100644
return 0;
--
-2.1.3
+2.5.0
diff --git a/pkgs/development/libraries/qt-5/5.4/0007-dlopen-webkit-gtk.patch b/pkgs/development/libraries/qt-5/5.4/qtwebkit/0002-dlopen-webkit-gtk.patch
similarity index 50%
rename from pkgs/development/libraries/qt-5/5.4/0007-dlopen-webkit-gtk.patch
rename to pkgs/development/libraries/qt-5/5.4/qtwebkit/0002-dlopen-webkit-gtk.patch
index 9582b714c90..bb5d1f74364 100644
--- a/pkgs/development/libraries/qt-5/5.4/0007-dlopen-webkit-gtk.patch
+++ b/pkgs/development/libraries/qt-5/5.4/qtwebkit/0002-dlopen-webkit-gtk.patch
@@ -1,16 +1,16 @@
-From 089db8835c80bf2b7dd91a97a5c6eb26636b6ab9 Mon Sep 17 00:00:00 2001
+From 6a407d30357c2551abceac75c82f4a1688e47437 Mon Sep 17 00:00:00 2001
From: Thomas Tuegel
-Date: Mon, 1 Dec 2014 17:26:39 -0600
-Subject: [PATCH] dlopen-webkit-gtk
+Date: Sun, 23 Aug 2015 09:19:16 -0500
+Subject: [PATCH 2/3] dlopen webkit gtk
---
- qtwebkit/Source/WebKit2/PluginProcess/qt/PluginProcessMainQt.cpp | 2 +-
+ Source/WebKit2/PluginProcess/qt/PluginProcessMainQt.cpp | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
-diff --git a/qtwebkit/Source/WebKit2/PluginProcess/qt/PluginProcessMainQt.cpp b/qtwebkit/Source/WebKit2/PluginProcess/qt/PluginProcessMainQt.cpp
+diff --git a/Source/WebKit2/PluginProcess/qt/PluginProcessMainQt.cpp b/Source/WebKit2/PluginProcess/qt/PluginProcessMainQt.cpp
index 8de6521..0b25748 100644
---- a/qtwebkit/Source/WebKit2/PluginProcess/qt/PluginProcessMainQt.cpp
-+++ b/qtwebkit/Source/WebKit2/PluginProcess/qt/PluginProcessMainQt.cpp
+--- a/Source/WebKit2/PluginProcess/qt/PluginProcessMainQt.cpp
++++ b/Source/WebKit2/PluginProcess/qt/PluginProcessMainQt.cpp
@@ -53,7 +53,7 @@ static void messageHandler(QtMsgType type, const QMessageLogContext&, const QStr
static bool initializeGtk()
@@ -21,5 +21,5 @@ index 8de6521..0b25748 100644
return false;
typedef void* (*gtk_init_ptr)(void*, void*);
--
-2.1.3
+2.5.0
diff --git a/pkgs/development/libraries/qt-5/5.4/0008-dlopen-webkit-udev.patch b/pkgs/development/libraries/qt-5/5.4/qtwebkit/0003-dlopen-webkit-udev.patch
similarity index 62%
rename from pkgs/development/libraries/qt-5/5.4/0008-dlopen-webkit-udev.patch
rename to pkgs/development/libraries/qt-5/5.4/qtwebkit/0003-dlopen-webkit-udev.patch
index e8a4ba6a215..f3b9d407bd7 100644
--- a/pkgs/development/libraries/qt-5/5.4/0008-dlopen-webkit-udev.patch
+++ b/pkgs/development/libraries/qt-5/5.4/qtwebkit/0003-dlopen-webkit-udev.patch
@@ -1,16 +1,16 @@
-From 25d2922cce383fcaa4c138e0cc6c8d92328eeacb Mon Sep 17 00:00:00 2001
+From 864020dd47c3b6d532d9f26b82185904cf9324f2 Mon Sep 17 00:00:00 2001
From: Thomas Tuegel
-Date: Mon, 1 Dec 2014 17:30:41 -0600
-Subject: [PATCH] dlopen-webkit-udev
+Date: Sun, 23 Aug 2015 09:19:29 -0500
+Subject: [PATCH 3/3] dlopen webkit udev
---
- qtwebkit/Source/WebCore/platform/qt/GamepadsQt.cpp | 4 ++--
+ Source/WebCore/platform/qt/GamepadsQt.cpp | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
-diff --git a/qtwebkit/Source/WebCore/platform/qt/GamepadsQt.cpp b/qtwebkit/Source/WebCore/platform/qt/GamepadsQt.cpp
+diff --git a/Source/WebCore/platform/qt/GamepadsQt.cpp b/Source/WebCore/platform/qt/GamepadsQt.cpp
index 60ff317..da8ac69 100644
---- a/qtwebkit/Source/WebCore/platform/qt/GamepadsQt.cpp
-+++ b/qtwebkit/Source/WebCore/platform/qt/GamepadsQt.cpp
+--- a/Source/WebCore/platform/qt/GamepadsQt.cpp
++++ b/Source/WebCore/platform/qt/GamepadsQt.cpp
@@ -111,12 +111,12 @@ private:
bool load()
{
@@ -27,5 +27,5 @@ index 60ff317..da8ac69 100644
return resolveMethods();
}
--
-2.1.3
+2.5.0
diff --git a/pkgs/development/libraries/qt-5/5.4/qtwebkit/default.nix b/pkgs/development/libraries/qt-5/5.4/qtwebkit/default.nix
new file mode 100644
index 00000000000..596c02d39af
--- /dev/null
+++ b/pkgs/development/libraries/qt-5/5.4/qtwebkit/default.nix
@@ -0,0 +1,33 @@
+{ qtSubmodule, stdenv, qtdeclarative, qtlocation, qtmultimedia, qtsensors
+, fontconfig, gdk_pixbuf, gtk, libwebp, libxml2, libxslt
+, sqlite, udev
+, bison2, flex, gdb, gperf, perl, pkgconfig, python, ruby
+, substituteAll
+, flashplayerFix ? false
+}:
+
+with stdenv.lib;
+
+qtSubmodule {
+ name = "qtwebkit";
+ qtInputs = [ qtdeclarative qtlocation qtmultimedia qtsensors ];
+ buildInputs = [ fontconfig libwebp libxml2 libxslt sqlite ];
+ nativeBuildInputs = [
+ bison2 flex gdb gperf perl pkgconfig python ruby
+ ];
+ patches =
+ let dlopen-webkit-nsplugin = substituteAll {
+ src = ./0001-dlopen-webkit-nsplugin.patch;
+ inherit gtk gdk_pixbuf;
+ };
+ dlopen-webkit-gtk = substituteAll {
+ src = ./0002-dlopen-webkit-gtk.patch;
+ inherit gtk;
+ };
+ dlopen-webkit-udev = substituteAll {
+ src = ./0003-dlopen-webkit-udev.patch;
+ inherit udev;
+ };
+ in optionals flashplayerFix [ dlopen-webkit-nsplugin dlopen-webkit-gtk ]
+ ++ [ dlopen-webkit-udev ];
+}
diff --git a/pkgs/development/libraries/qt-5/5.4/qtwebsockets.nix b/pkgs/development/libraries/qt-5/5.4/qtwebsockets.nix
new file mode 100644
index 00000000000..fbdfbbcf0db
--- /dev/null
+++ b/pkgs/development/libraries/qt-5/5.4/qtwebsockets.nix
@@ -0,0 +1,6 @@
+{ qtSubmodule, qtbase, qtdeclarative }:
+
+qtSubmodule {
+ name = "qtwebsockets";
+ qtInputs = [ qtbase qtdeclarative ];
+}
diff --git a/pkgs/development/libraries/qt-5/5.4/qtx11extras.nix b/pkgs/development/libraries/qt-5/5.4/qtx11extras.nix
new file mode 100644
index 00000000000..a765161e2d7
--- /dev/null
+++ b/pkgs/development/libraries/qt-5/5.4/qtx11extras.nix
@@ -0,0 +1,6 @@
+{ qtSubmodule, qtbase }:
+
+qtSubmodule {
+ name = "qtx11extras";
+ qtInputs = [ qtbase ];
+}
diff --git a/pkgs/development/libraries/qt-5/5.4/qtxmlpatterns.nix b/pkgs/development/libraries/qt-5/5.4/qtxmlpatterns.nix
new file mode 100644
index 00000000000..9a8ddbba2bd
--- /dev/null
+++ b/pkgs/development/libraries/qt-5/5.4/qtxmlpatterns.nix
@@ -0,0 +1,6 @@
+{ qtSubmodule, qtbase }:
+
+qtSubmodule {
+ name = "qtxmlpatterns";
+ qtInputs = [ qtbase ];
+}
diff --git a/pkgs/development/libraries/qt-5/5.4/setup-hook.sh b/pkgs/development/libraries/qt-5/5.4/setup-hook.sh
deleted file mode 100644
index 3bc4890f3bb..00000000000
--- a/pkgs/development/libraries/qt-5/5.4/setup-hook.sh
+++ /dev/null
@@ -1,77 +0,0 @@
-addQtModule() {
- if [[ -d "$1/mkspecs" ]]; then
-
- @lndir@/bin/lndir -silent "$1/mkspecs" "$qtOut/mkspecs"
- if [[ -n $qtSubmodule ]]; then
- find "$1/mkspecs" -printf 'mkspecs/%P\n' >> "$qtOut/nix-support/qt-inputs"
- fi
-
- if [[ -d "$1/bin" ]]; then
- @lndir@/bin/lndir -silent "$1/bin" "$qtOut/bin"
- if [[ -n $qtSubmodule ]]; then
- find "$1/bin" -printf 'bin/%P\n' >> "$qtOut/nix-support/qt-inputs"
- fi
- fi
-
- if [[ -d "$1/include" ]]; then
- @lndir@/bin/lndir -silent "$1/include" "$qtOut/include"
- if [[ -n $qtSubmodule ]]; then
- find "$1/include" -printf 'include/%P\n' >> "$qtOut/nix-support/qt-inputs"
- fi
- fi
-
- if [[ -d "$1/lib" ]]; then
- @lndir@/bin/lndir -silent "$1/lib" "$qtOut/lib"
- if [[ -n $qtSubmodule ]]; then
- find "$1/lib" -printf 'lib/%P\n' >> "$qtOut/nix-support/qt-inputs"
- fi
-
- if [[ -d "$1/lib/qt5/plugins" ]]; then
- QT_PLUGIN_PATH="$QT_PLUGIN_PATH${QT_PLUGIN_PATH:+:}$1/lib/qt5/plugins";
- fi
-
- if [[ -d "$1/lib/qt5/imports" ]]; then
- QML_IMPORT_PATH="$QML_IMPORT_PATH${QML_IMPORT_PATH:+:}$1/lib/qt5/imports";
- fi
-
- if [[ -d "$1/lib/qt5/qml" ]]; then
- QML2_IMPORT_PATH="$QML2_IMPORT_PATH${QML2_IMPORT_PATH:+:}$1/lib/qt5/qml";
- fi
- fi
-
- if [[ -d "$1/share" ]]; then
- @lndir@/bin/lndir -silent "$1/share" "$qtOut/share"
- if [[ -n $qtSubmodule ]]; then
- find "$1/share" -printf 'share/%P\n' >> "$qtOut/nix-support/qt-inputs"
- fi
- fi
- fi
-}
-
-setQMakePath() {
- export PATH="$qtOut/bin${PATH:+:}$PATH"
-}
-
-qtOut=""
-if [[ -z $qtSubmodule ]]; then
- qtOut="$PWD/qmake-$name"
-else
- qtOut=$out
-fi
-
-mkdir -p "$qtOut/bin" "$qtOut/mkspecs" "$qtOut/include" \
- "$qtOut/nix-support" "$qtOut/lib" "$qtOut/share"
-
-cp "@out@/bin/qmake" "$qtOut/bin"
-cat >"$qtOut/bin/qt.conf" <
-Date: Mon, 1 Dec 2014 17:22:55 -0600
-Subject: [PATCH 02/11] dlopen-resolv
-
----
- qtbase/src/network/kernel/qdnslookup_unix.cpp | 2 +-
- qtbase/src/network/kernel/qhostinfo_unix.cpp | 2 +-
- 2 files changed, 2 insertions(+), 2 deletions(-)
-
-diff --git a/qtbase/src/network/kernel/qdnslookup_unix.cpp b/qtbase/src/network/kernel/qdnslookup_unix.cpp
-index fa782da..912ecc7 100644
---- a/qtbase/src/network/kernel/qdnslookup_unix.cpp
-+++ b/qtbase/src/network/kernel/qdnslookup_unix.cpp
-@@ -79,7 +79,7 @@ static void resolveLibrary()
- if (!lib.load())
- #endif
- {
-- lib.setFileName(QLatin1String("resolv"));
-+ lib.setFileName(QLatin1String("@glibc/lib/resolv"));
- if (!lib.load())
- return;
- }
-diff --git a/qtbase/src/network/kernel/qhostinfo_unix.cpp b/qtbase/src/network/kernel/qhostinfo_unix.cpp
-index 90a6f76..758407a 100644
---- a/qtbase/src/network/kernel/qhostinfo_unix.cpp
-+++ b/qtbase/src/network/kernel/qhostinfo_unix.cpp
-@@ -95,7 +95,7 @@ static void resolveLibrary()
- if (!lib.load())
- #endif
- {
-- lib.setFileName(QLatin1String("resolv"));
-+ lib.setFileName(QLatin1String("@glibc@/lib/libresolv"));
- if (!lib.load())
- return;
- }
---
-2.5.2
-
diff --git a/pkgs/development/libraries/qt-5/5.5/qtbase/0003-dlopen-gl.patch b/pkgs/development/libraries/qt-5/5.5/qtbase/0003-dlopen-gl.patch
deleted file mode 100644
index 0f8bd78aa32..00000000000
--- a/pkgs/development/libraries/qt-5/5.5/qtbase/0003-dlopen-gl.patch
+++ /dev/null
@@ -1,25 +0,0 @@
-From d1f7bf62e4bab26df5deea37f08cfdd278cca47c Mon Sep 17 00:00:00 2001
-From: Thomas Tuegel
-Date: Mon, 1 Dec 2014 17:23:08 -0600
-Subject: [PATCH 03/11] dlopen-gl
-
----
- .../plugins/platforms/xcb/gl_integrations/xcb_glx/qglxintegration.cpp | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/qtbase/src/plugins/platforms/xcb/gl_integrations/xcb_glx/qglxintegration.cpp b/qtbase/src/plugins/platforms/xcb/gl_integrations/xcb_glx/qglxintegration.cpp
-index 5166372..bdeb69a 100644
---- a/qtbase/src/plugins/platforms/xcb/gl_integrations/xcb_glx/qglxintegration.cpp
-+++ b/qtbase/src/plugins/platforms/xcb/gl_integrations/xcb_glx/qglxintegration.cpp
-@@ -560,7 +560,7 @@ void (*QGLXContext::getProcAddress(const QByteArray &procName)) ()
- {
- extern const QString qt_gl_library_name();
- // QLibrary lib(qt_gl_library_name());
-- QLibrary lib(QLatin1String("GL"));
-+ QLibrary lib(QLatin1String("@openglDriver@/lib/libGL"));
- glXGetProcAddressARB = (qt_glXGetProcAddressARB) lib.resolve("glXGetProcAddressARB");
- }
- }
---
-2.5.2
-
diff --git a/pkgs/development/libraries/qt-5/5.5/qtbase/0005-dlopen-libXcursor.patch b/pkgs/development/libraries/qt-5/5.5/qtbase/0005-dlopen-libXcursor.patch
deleted file mode 100644
index 61c9b9846f5..00000000000
--- a/pkgs/development/libraries/qt-5/5.5/qtbase/0005-dlopen-libXcursor.patch
+++ /dev/null
@@ -1,29 +0,0 @@
-From 9fbdfd6c1231ee4778acc9a2edf297cf4b9314ac Mon Sep 17 00:00:00 2001
-From: Thomas Tuegel
-Date: Mon, 1 Dec 2014 17:33:51 -0600
-Subject: [PATCH 05/11] dlopen-libXcursor
-
----
- qtbase/src/plugins/platforms/xcb/qxcbcursor.cpp | 4 ++--
- 1 file changed, 2 insertions(+), 2 deletions(-)
-
-diff --git a/qtbase/src/plugins/platforms/xcb/qxcbcursor.cpp b/qtbase/src/plugins/platforms/xcb/qxcbcursor.cpp
-index e51ab85..7ec4b0b 100644
---- a/qtbase/src/plugins/platforms/xcb/qxcbcursor.cpp
-+++ b/qtbase/src/plugins/platforms/xcb/qxcbcursor.cpp
-@@ -303,10 +303,10 @@ QXcbCursor::QXcbCursor(QXcbConnection *conn, QXcbScreen *screen)
- #ifdef XCB_USE_XLIB
- static bool function_ptrs_not_initialized = true;
- if (function_ptrs_not_initialized) {
-- QLibrary xcursorLib(QLatin1String("Xcursor"), 1);
-+ QLibrary xcursorLib(QLatin1String("@libXcursor@/lib/libXcursor"), 1);
- bool xcursorFound = xcursorLib.load();
- if (!xcursorFound) { // try without the version number
-- xcursorLib.setFileName(QLatin1String("Xcursor"));
-+ xcursorLib.setFileName(QLatin1String("@libXcursor@/lib/Xcursor"));
- xcursorFound = xcursorLib.load();
- }
- if (xcursorFound) {
---
-2.5.2
-
diff --git a/pkgs/development/libraries/qt-5/5.5/qtbase/0007-dlopen-dbus.patch b/pkgs/development/libraries/qt-5/5.5/qtbase/0007-dlopen-dbus.patch
deleted file mode 100644
index dcd5855e824..00000000000
--- a/pkgs/development/libraries/qt-5/5.5/qtbase/0007-dlopen-dbus.patch
+++ /dev/null
@@ -1,25 +0,0 @@
-From d060d32d8df3e320a12567ebdfc2c1d01c648168 Mon Sep 17 00:00:00 2001
-From: Thomas Tuegel
-Date: Sun, 23 Aug 2015 08:52:27 -0500
-Subject: [PATCH 07/11] dlopen dbus
-
----
- qtbase/src/dbus/qdbus_symbols.cpp | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/qtbase/src/dbus/qdbus_symbols.cpp b/qtbase/src/dbus/qdbus_symbols.cpp
-index b82d92b..f72c9cb 100644
---- a/qtbase/src/dbus/qdbus_symbols.cpp
-+++ b/qtbase/src/dbus/qdbus_symbols.cpp
-@@ -89,7 +89,7 @@ bool qdbus_loadLibDBus()
- #ifdef Q_OS_WIN
- QLatin1String("dbus-1"),
- #endif
-- QLatin1String("libdbus-1")
-+ QLatin1String("@dbus_libs@/lib/libdbus-1")
- };
-
- lib->unload();
---
-2.5.2
-
diff --git a/pkgs/development/libraries/qt-5/5.5/qtbase/0009-decrypt-ssl-traffic.patch b/pkgs/development/libraries/qt-5/5.5/qtbase/0009-decrypt-ssl-traffic.patch
deleted file mode 100644
index 1d7202924cd..00000000000
--- a/pkgs/development/libraries/qt-5/5.5/qtbase/0009-decrypt-ssl-traffic.patch
+++ /dev/null
@@ -1,25 +0,0 @@
-From 44378743aa6ca21eb61de93476daa8356081c0fc Mon Sep 17 00:00:00 2001
-From: Thomas Tuegel
-Date: Sun, 23 Aug 2015 08:53:42 -0500
-Subject: [PATCH 09/11] decrypt ssl traffic
-
----
- qtbase/src/network/ssl/qsslsocket_openssl.cpp | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/qtbase/src/network/ssl/qsslsocket_openssl.cpp b/qtbase/src/network/ssl/qsslsocket_openssl.cpp
-index 049666b..e8342ab 100644
---- a/qtbase/src/network/ssl/qsslsocket_openssl.cpp
-+++ b/qtbase/src/network/ssl/qsslsocket_openssl.cpp
-@@ -48,7 +48,7 @@
- ****************************************************************************/
-
- //#define QSSLSOCKET_DEBUG
--//#define QT_DECRYPT_SSL_TRAFFIC
-+#define QT_DECRYPT_SSL_TRAFFIC
-
- #include "qssl_p.h"
- #include "qsslsocket_openssl_p.h"
---
-2.5.2
-
diff --git a/pkgs/development/libraries/qt-5/5.5/qtbase/0010-mkspecs-libgl.patch b/pkgs/development/libraries/qt-5/5.5/qtbase/0010-mkspecs-libgl.patch
deleted file mode 100644
index 0f418e600f1..00000000000
--- a/pkgs/development/libraries/qt-5/5.5/qtbase/0010-mkspecs-libgl.patch
+++ /dev/null
@@ -1,27 +0,0 @@
-From 5113406661f06afa01da48ebc0567a4d0f69051c Mon Sep 17 00:00:00 2001
-From: Thomas Tuegel
-Date: Sat, 17 Oct 2015 09:12:46 -0500
-Subject: [PATCH 10/11] mkspecs libgl
-
----
- qtbase/mkspecs/common/linux.conf | 4 ++--
- 1 file changed, 2 insertions(+), 2 deletions(-)
-
-diff --git a/qtbase/mkspecs/common/linux.conf b/qtbase/mkspecs/common/linux.conf
-index 8d6fb6f..0ff9181 100644
---- a/qtbase/mkspecs/common/linux.conf
-+++ b/qtbase/mkspecs/common/linux.conf
-@@ -12,8 +12,8 @@ QMAKE_INCDIR =
- QMAKE_LIBDIR =
- QMAKE_INCDIR_X11 =
- QMAKE_LIBDIR_X11 =
--QMAKE_INCDIR_OPENGL =
--QMAKE_LIBDIR_OPENGL =
-+QMAKE_INCDIR_OPENGL = @mesa@/include
-+QMAKE_LIBDIR_OPENGL = @mesa@/lib
- QMAKE_INCDIR_OPENGL_ES2 = $$QMAKE_INCDIR_OPENGL
- QMAKE_LIBDIR_OPENGL_ES2 = $$QMAKE_LIBDIR_OPENGL
- QMAKE_INCDIR_EGL =
---
-2.5.2
-
diff --git a/pkgs/development/libraries/qt-5/5.5/qtbase/compose-search-path.patch b/pkgs/development/libraries/qt-5/5.5/qtbase/compose-search-path.patch
new file mode 100644
index 00000000000..08d12087f08
--- /dev/null
+++ b/pkgs/development/libraries/qt-5/5.5/qtbase/compose-search-path.patch
@@ -0,0 +1,16 @@
+Index: qt-everywhere-opensource-src-5.5.1/qtbase/src/plugins/platforminputcontexts/compose/generator/qtablegenerator.cpp
+===================================================================
+--- qt-everywhere-opensource-src-5.5.1.orig/qtbase/src/plugins/platforminputcontexts/compose/generator/qtablegenerator.cpp
++++ qt-everywhere-opensource-src-5.5.1/qtbase/src/plugins/platforminputcontexts/compose/generator/qtablegenerator.cpp
+@@ -68,10 +68,7 @@ void TableGenerator::initPossibleLocatio
+ // the QTCOMPOSE environment variable
+ if (qEnvironmentVariableIsSet("QTCOMPOSE"))
+ m_possibleLocations.append(QString::fromLocal8Bit(qgetenv("QTCOMPOSE")));
+- m_possibleLocations.append(QStringLiteral("/usr/share/X11/locale"));
+- m_possibleLocations.append(QStringLiteral("/usr/local/share/X11/locale"));
+- m_possibleLocations.append(QStringLiteral("/usr/lib/X11/locale"));
+- m_possibleLocations.append(QStringLiteral("/usr/local/lib/X11/locale"));
++ m_possibleLocations.append(QStringLiteral("${libX11}/share/X11/locale"));
+ m_possibleLocations.append(QStringLiteral(X11_PREFIX "/share/X11/locale"));
+ m_possibleLocations.append(QStringLiteral(X11_PREFIX "/lib/X11/locale"));
+ }
diff --git a/pkgs/development/libraries/qt-5/5.5/qtbase/decrypt-ssl-traffic.patch b/pkgs/development/libraries/qt-5/5.5/qtbase/decrypt-ssl-traffic.patch
new file mode 100644
index 00000000000..2cb3f7dfa70
--- /dev/null
+++ b/pkgs/development/libraries/qt-5/5.5/qtbase/decrypt-ssl-traffic.patch
@@ -0,0 +1,13 @@
+Index: qt-everywhere-opensource-src-5.5.1/qtbase/src/network/ssl/qsslsocket_openssl.cpp
+===================================================================
+--- qt-everywhere-opensource-src-5.5.1.orig/qtbase/src/network/ssl/qsslsocket_openssl.cpp
++++ qt-everywhere-opensource-src-5.5.1/qtbase/src/network/ssl/qsslsocket_openssl.cpp
+@@ -48,7 +48,7 @@
+ ****************************************************************************/
+
+ //#define QSSLSOCKET_DEBUG
+-//#define QT_DECRYPT_SSL_TRAFFIC
++#define QT_DECRYPT_SSL_TRAFFIC
+
+ #include "qssl_p.h"
+ #include "qsslsocket_openssl_p.h"
diff --git a/pkgs/development/libraries/qt-5/5.5/qtbase/default.nix b/pkgs/development/libraries/qt-5/5.5/qtbase/default.nix
index 7c48c4571d9..24e5ccb36f3 100644
--- a/pkgs/development/libraries/qt-5/5.5/qtbase/default.nix
+++ b/pkgs/development/libraries/qt-5/5.5/qtbase/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchurl, substituteAll, makeWrapper
+{ stdenv, lib, fetchurl, copyPathsToStore, makeWrapper
, srcs
, xlibs, libX11, libxcb, libXcursor, libXext, libXrender, libXi
@@ -23,11 +23,9 @@
, decryptSslTraffic ? false
}:
-with stdenv.lib;
-
let
inherit (srcs.qt5) version;
- system-x86_64 = elem stdenv.system platforms.x86_64;
+ system-x86_64 = lib.elem stdenv.system lib.platforms.x86_64;
in
stdenv.mkDerivation {
@@ -43,68 +41,61 @@ stdenv.mkDerivation {
mv qtbase-opensource-src-${version} ./qt-everywhere-opensource-src-${version}/qtbase
'';
- prePatch = ''
- substituteInPlace configure --replace /bin/pwd pwd
- substituteInPlace qtbase/configure --replace /bin/pwd pwd
- substituteInPlace qtbase/src/corelib/global/global.pri --replace /bin/ls ${coreutils}/bin/ls
- substituteInPlace qtbase/src/plugins/platforminputcontexts/compose/generator/qtablegenerator.cpp \
- --replace /usr/share/X11/locale ${libX11}/share/X11/locale \
- --replace /usr/lib/X11/locale ${libX11}/share/X11/locale
- sed -e 's@/\(usr\|opt\)/@/var/empty/@g' -i config.tests/*/*.test -i qtbase/mkspecs/*/*.conf
- '';
-
patches =
- let dlopen-gtkstyle = substituteAll {
- src = ./0001-dlopen-gtkstyle.patch;
- # substituteAll ignores env vars starting with capital letter
- gconf = GConf;
- inherit gnome_vfs libgnomeui gtk;
- };
- dlopen-resolv = substituteAll {
- src = ./0002-dlopen-resolv.patch;
- glibc = stdenv.cc.libc;
- };
- dlopen-gl = substituteAll {
- src = ./0003-dlopen-gl.patch;
- openglDriver = if mesaSupported then mesa.driverLink else "/no-such-path";
- };
- tzdir = ./0004-tzdir.patch;
- dlopen-libXcursor = substituteAll {
- src = ./0005-dlopen-libXcursor.patch;
- inherit libXcursor;
- };
- dlopen-openssl = substituteAll {
- src = ./0006-dlopen-openssl.patch;
- inherit openssl;
- };
- dlopen-dbus = substituteAll {
- src = ./0007-dlopen-dbus.patch;
- dbus_libs = dbus;
- };
- xdg-config-dirs = ./0008-xdg-config-dirs.patch;
- decrypt-ssl-traffic = ./0009-decrypt-ssl-traffic.patch;
- mkspecs-libgl = substituteAll {
- src = ./0010-mkspecs-libgl.patch;
- inherit mesa;
- };
- nix-profiles-library-paths = ./0011-nix-profiles-library-paths.patch;
- in [
- dlopen-resolv dlopen-gl tzdir dlopen-libXcursor dlopen-openssl
- dlopen-dbus xdg-config-dirs nix-profiles-library-paths
- ]
- ++ optional gtkStyle dlopen-gtkstyle
- ++ optional decryptSslTraffic decrypt-ssl-traffic
- ++ optional mesaSupported mkspecs-libgl;
+ copyPathsToStore (lib.readPathsFromFile ./. ./series)
+ ++ lib.optional gtkStyle ./dlopen-gtkstyle.patch
+ ++ lib.optional decryptSslTraffic ./decrypt-ssl-traffic.patch
+ ++ lib.optional mesaSupported [ ./dlopen-gl.patch ./mkspecs-libgl.patch ];
+
+ postPatch =
+ ''
+ substituteInPlace configure --replace /bin/pwd pwd
+ substituteInPlace qtbase/configure --replace /bin/pwd pwd
+ substituteInPlace qtbase/src/corelib/global/global.pri --replace /bin/ls ${coreutils}/bin/ls
+ sed -e 's@/\(usr\|opt\)/@/var/empty/@g' -i config.tests/*/*.test -i qtbase/mkspecs/*/*.conf
+
+ sed -i 's/PATHS.*NO_DEFAULT_PATH//' "qtbase/src/corelib/Qt5Config.cmake.in"
+ sed -i 's/PATHS.*NO_DEFAULT_PATH//' "qtbase/src/corelib/Qt5CoreMacros.cmake"
+ sed -i 's/NO_DEFAULT_PATH//' "qtbase/src/gui/Qt5GuiConfigExtras.cmake.in"
+ sed -i 's/PATHS.*NO_DEFAULT_PATH//' "qtbase/mkspecs/features/data/cmake/Qt5BasicConfig.cmake.in"
+
+ substituteInPlace qtbase/src/network/kernel/qdnslookup_unix.cpp \
+ --replace "@glibc@" "${stdenv.cc.libc}"
+ substituteInPlace qtbase/src/network/kernel/qhostinfo_unix.cpp \
+ --replace "@glibc@" "${stdenv.cc.libc}"
+
+ substituteInPlace qtbase/src/plugins/platforms/xcb/qxcbcursor.cpp \
+ --replace "@libXcursor@" "${libXcursor}"
+
+ substituteInPlace qtbase/src/network/ssl/qsslsocket_openssl_symbols.cpp \
+ --replace "@openssl@" "${openssl}"
+
+ substituteInPlace qtbase/src/dbus/qdbus_symbols.cpp \
+ --replace "@dbus_libs@" "${dbus}"
+
+ substituteInPlace \
+ qtbase/src/plugins/platforminputcontexts/compose/generator/qtablegenerator.cpp \
+ --replace "@libX11@" "${libX11}"
+ ''
+ + lib.optionalString gtkStyle ''
+ substituteInPlace qtbase/src/widgets/styles/qgtk2painter.cpp --replace "@gtk@" "${gtk}"
+ substituteInPlace qtbase/src/widgets/styles/qgtkstyle_p.cpp \
+ --replace "@gtk@" "${gtk}" \
+ --replace "@gnome_vfs@" "${gnome_vfs}" \
+ --replace "@libgnomeui@" "${libgnomeui}" \
+ --replace "@gconf@" "${GConf}"
+ ''
+ + lib.optionalString mesaSupported ''
+ substituteInPlace \
+ qtbase/src/plugins/platforms/xcb/gl_integrations/xcb_glx/qglxintegration.cpp \
+ --replace "@mesa@" "${mesa}"
+ substituteInPlace qtbase/mkspecs/common/linux.conf --replace "@mesa@" "${mesa}"
+ '';
preConfigure = ''
- export LD_LIBRARY_PATH="$PWD/qtbase/lib:$PWD/qtbase/plugins/platforms:$PWD/qttools/lib:$LD_LIBRARY_PATH"
+ export LD_LIBRARY_PATH="$PWD/qtbase/lib:$PWD/qtbase/plugins/platforms:$LD_LIBRARY_PATH"
export MAKEFLAGS=-j$NIX_BUILD_CORES
- sed -i 's/PATHS.*NO_DEFAULT_PATH//' "qtbase/src/corelib/Qt5Config.cmake.in"
- sed -i 's/PATHS.*NO_DEFAULT_PATH//' "qtbase/src/corelib/Qt5CoreMacros.cmake"
- sed -i 's/NO_DEFAULT_PATH//' "qtbase/src/gui/Qt5GuiConfigExtras.cmake.in"
- sed -i 's/PATHS.*NO_DEFAULT_PATH//' "qtbase/mkspecs/features/data/cmake/Qt5BasicConfig.cmake.in"
-
export configureFlags+="-plugindir $out/lib/qt5/plugins -importdir $out/lib/qt5/imports -qmldir $out/lib/qt5/qml"
export configureFlags+=" -docdir $out/share/doc/qt5"
'';
@@ -121,7 +112,7 @@ stdenv.mkDerivation {
-release
-shared
-c++11
- ${optionalString developerBuild "-developer-build"}
+ ${lib.optionalString developerBuild "-developer-build"}
-largefile
-accessibility
-rpath
@@ -142,15 +133,15 @@ stdenv.mkDerivation {
-glib
-xcb
-qpa xcb
- -${optionalString (cups == null) "no-"}cups
- -${optionalString (!gtkStyle) "no-"}gtkstyle
+ -${lib.optionalString (cups == null) "no-"}cups
+ -${lib.optionalString (!gtkStyle) "no-"}gtkstyle
-no-eglfs
-no-directfb
-no-linuxfb
-no-kms
- ${optionalString (!system-x86_64) "-no-sse2"}
+ ${lib.optionalString (!system-x86_64) "-no-sse2"}
-no-sse3
-no-ssse3
-no-sse4.1
@@ -174,14 +165,14 @@ stdenv.mkDerivation {
-make libs
-make tools
- -${optionalString (buildExamples == false) "no"}make examples
- -${optionalString (buildTests == false) "no"}make tests
+ -${lib.optionalString (buildExamples == false) "no"}make examples
+ -${lib.optionalString (buildTests == false) "no"}make tests
'';
# PostgreSQL autodetection fails sporadically because Qt omits the "-lpq" flag
# if dependency paths contain the string "pq", which can occur in the hash.
# To prevent these failures, we need to override PostgreSQL detection.
- PSQL_LIBS = optionalString (postgresql != null) "-L${postgresql}/lib -lpq";
+ PSQL_LIBS = lib.optionalString (postgresql != null) "-L${postgresql}/lib -lpq";
propagatedBuildInputs = [
xlibs.libXcomposite libX11 libxcb libXext libXrender libXi
@@ -191,15 +182,15 @@ stdenv.mkDerivation {
]
# Qt doesn't directly need GLU (just GL), but many apps use, it's small and
# doesn't remain a runtime-dep if not used
- ++ optionals mesaSupported [ mesa mesa_glu ]
- ++ optional (cups != null) cups
- ++ optional (mysql != null) mysql.lib
- ++ optional (postgresql != null) postgresql
- ++ optionals gtkStyle [gnome_vfs libgnomeui gtk GConf];
+ ++ lib.optionals mesaSupported [ mesa mesa_glu ]
+ ++ lib.optional (cups != null) cups
+ ++ lib.optional (mysql != null) mysql.lib
+ ++ lib.optional (postgresql != null) postgresql
+ ++ lib.optionals gtkStyle [gnome_vfs libgnomeui gtk GConf];
buildInputs =
[ bison flex gperf ruby ]
- ++ optional developerBuild gdb;
+ ++ lib.optional developerBuild gdb;
nativeBuildInputs = [ python perl pkgconfig ];
@@ -210,12 +201,11 @@ stdenv.mkDerivation {
postInstall =
''
- ${optionalString buildDocs ''
- make docs && make install_docs
- ''}
-
# Don't retain build-time dependencies like gdb and ruby.
sed '/QMAKE_DEFAULT_.*DIRS/ d' -i $out/mkspecs/qconfig.pri
+ ''
+ + lib.optionalString buildDocs ''
+ make docs && make install_docs
'';
inherit lndir;
@@ -223,7 +213,7 @@ stdenv.mkDerivation {
enableParallelBuilding = true;
- meta = {
+ meta = with lib; {
homepage = http://qt-project.org;
description = "A cross-platform application framework for C++";
license = "GPL/LGPL";
diff --git a/pkgs/development/libraries/qt-5/5.5/qtbase/dlopen-dbus.patch b/pkgs/development/libraries/qt-5/5.5/qtbase/dlopen-dbus.patch
new file mode 100644
index 00000000000..401cfd5c295
--- /dev/null
+++ b/pkgs/development/libraries/qt-5/5.5/qtbase/dlopen-dbus.patch
@@ -0,0 +1,13 @@
+Index: qt-everywhere-opensource-src-5.5.1/qtbase/src/dbus/qdbus_symbols.cpp
+===================================================================
+--- qt-everywhere-opensource-src-5.5.1.orig/qtbase/src/dbus/qdbus_symbols.cpp
++++ qt-everywhere-opensource-src-5.5.1/qtbase/src/dbus/qdbus_symbols.cpp
+@@ -89,7 +89,7 @@ bool qdbus_loadLibDBus()
+ #ifdef Q_OS_WIN
+ QLatin1String("dbus-1"),
+ #endif
+- QLatin1String("libdbus-1")
++ QLatin1String("@dbus_libs@/lib/libdbus-1")
+ };
+
+ lib->unload();
diff --git a/pkgs/development/libraries/qt-5/5.5/qtbase/dlopen-gl.patch b/pkgs/development/libraries/qt-5/5.5/qtbase/dlopen-gl.patch
new file mode 100644
index 00000000000..14411a95f3a
--- /dev/null
+++ b/pkgs/development/libraries/qt-5/5.5/qtbase/dlopen-gl.patch
@@ -0,0 +1,17 @@
+Index: qt-everywhere-opensource-src-5.5.1/qtbase/src/plugins/platforms/xcb/gl_integrations/xcb_glx/qglxintegration.cpp
+===================================================================
+--- qt-everywhere-opensource-src-5.5.1.orig/qtbase/src/plugins/platforms/xcb/gl_integrations/xcb_glx/qglxintegration.cpp
++++ qt-everywhere-opensource-src-5.5.1/qtbase/src/plugins/platforms/xcb/gl_integrations/xcb_glx/qglxintegration.cpp
+@@ -563,7 +563,12 @@ void (*QGLXContext::getProcAddress(const
+ {
+ extern const QString qt_gl_library_name();
+ // QLibrary lib(qt_gl_library_name());
++ // Check system library paths first
+ QLibrary lib(QLatin1String("GL"));
++ if (!lib.load()) {
++ // Fallback to Mesa driver
++ lib.setFileName(QLatin1String("@mesa@/lib/libGL"));
++ }
+ glXGetProcAddressARB = (qt_glXGetProcAddressARB) lib.resolve("glXGetProcAddressARB");
+ }
+ }
diff --git a/pkgs/development/libraries/qt-5/5.4/0001-dlopen-gtkstyle.patch b/pkgs/development/libraries/qt-5/5.5/qtbase/dlopen-gtkstyle.patch
similarity index 72%
rename from pkgs/development/libraries/qt-5/5.4/0001-dlopen-gtkstyle.patch
rename to pkgs/development/libraries/qt-5/5.5/qtbase/dlopen-gtkstyle.patch
index 3f411139f5b..ad1719c46e2 100644
--- a/pkgs/development/libraries/qt-5/5.4/0001-dlopen-gtkstyle.patch
+++ b/pkgs/development/libraries/qt-5/5.5/qtbase/dlopen-gtkstyle.patch
@@ -1,18 +1,8 @@
-From 35d5995a58c86a6addbf0aaf0d1be64d39182872 Mon Sep 17 00:00:00 2001
-From: Thomas Tuegel
-Date: Mon, 1 Dec 2014 17:21:58 -0600
-Subject: [PATCH] dlopen-gtkstyle
-
----
- qtbase/src/widgets/styles/qgtk2painter.cpp | 2 +-
- qtbase/src/widgets/styles/qgtkstyle_p.cpp | 12 ++++++------
- 2 files changed, 7 insertions(+), 7 deletions(-)
-
-diff --git a/qtbase/src/widgets/styles/qgtk2painter.cpp b/qtbase/src/widgets/styles/qgtk2painter.cpp
-index 7b9bd97..075947a 100644
---- a/qtbase/src/widgets/styles/qgtk2painter.cpp
-+++ b/qtbase/src/widgets/styles/qgtk2painter.cpp
-@@ -104,7 +104,7 @@ static void initGtk()
+Index: qt-everywhere-opensource-src-5.5.1/qtbase/src/widgets/styles/qgtk2painter.cpp
+===================================================================
+--- qt-everywhere-opensource-src-5.5.1.orig/qtbase/src/widgets/styles/qgtk2painter.cpp
++++ qt-everywhere-opensource-src-5.5.1/qtbase/src/widgets/styles/qgtk2painter.cpp
+@@ -96,7 +96,7 @@ static void initGtk()
static bool initialized = false;
if (!initialized) {
// enforce the "0" suffix, so we'll open libgtk-x11-2.0.so.0
@@ -21,11 +11,11 @@ index 7b9bd97..075947a 100644
QGtk2PainterPrivate::gdk_pixmap_new = (Ptr_gdk_pixmap_new)libgtk.resolve("gdk_pixmap_new");
QGtk2PainterPrivate::gdk_pixbuf_get_from_drawable = (Ptr_gdk_pixbuf_get_from_drawable)libgtk.resolve("gdk_pixbuf_get_from_drawable");
-diff --git a/qtbase/src/widgets/styles/qgtkstyle_p.cpp b/qtbase/src/widgets/styles/qgtkstyle_p.cpp
-index 2c64225..3343d32 100644
---- a/qtbase/src/widgets/styles/qgtkstyle_p.cpp
-+++ b/qtbase/src/widgets/styles/qgtkstyle_p.cpp
-@@ -334,7 +334,7 @@ void QGtkStylePrivate::gtkWidgetSetFocus(GtkWidget *widget, bool focus)
+Index: qt-everywhere-opensource-src-5.5.1/qtbase/src/widgets/styles/qgtkstyle_p.cpp
+===================================================================
+--- qt-everywhere-opensource-src-5.5.1.orig/qtbase/src/widgets/styles/qgtkstyle_p.cpp
++++ qt-everywhere-opensource-src-5.5.1/qtbase/src/widgets/styles/qgtkstyle_p.cpp
+@@ -327,7 +327,7 @@ void QGtkStylePrivate::gtkWidgetSetFocus
void QGtkStylePrivate::resolveGtk() const
{
// enforce the "0" suffix, so we'll open libgtk-x11-2.0.so.0
@@ -34,7 +24,7 @@ index 2c64225..3343d32 100644
gtk_init = (Ptr_gtk_init)libgtk.resolve("gtk_init");
gtk_window_new = (Ptr_gtk_window_new)libgtk.resolve("gtk_window_new");
-@@ -432,8 +432,8 @@ void QGtkStylePrivate::resolveGtk() const
+@@ -425,8 +425,8 @@ void QGtkStylePrivate::resolveGtk() cons
pango_font_description_get_family = (Ptr_pango_font_description_get_family)libgtk.resolve("pango_font_description_get_family");
pango_font_description_get_style = (Ptr_pango_font_description_get_style)libgtk.resolve("pango_font_description_get_style");
@@ -45,7 +35,7 @@ index 2c64225..3343d32 100644
}
/* \internal
-@@ -601,9 +601,9 @@ void QGtkStylePrivate::cleanupGtkWidgets()
+@@ -594,9 +594,9 @@ void QGtkStylePrivate::cleanupGtkWidgets
static bool resolveGConf()
{
if (!QGtkStylePrivate::gconf_client_get_default) {
@@ -58,6 +48,3 @@ index 2c64225..3343d32 100644
}
return (QGtkStylePrivate::gconf_client_get_default !=0);
}
---
-2.1.3
-
diff --git a/pkgs/development/libraries/qt-5/5.5/qtbase/dlopen-libXcursor.patch b/pkgs/development/libraries/qt-5/5.5/qtbase/dlopen-libXcursor.patch
new file mode 100644
index 00000000000..e66ce1676d3
--- /dev/null
+++ b/pkgs/development/libraries/qt-5/5.5/qtbase/dlopen-libXcursor.patch
@@ -0,0 +1,17 @@
+Index: qt-everywhere-opensource-src-5.5.1/qtbase/src/plugins/platforms/xcb/qxcbcursor.cpp
+===================================================================
+--- qt-everywhere-opensource-src-5.5.1.orig/qtbase/src/plugins/platforms/xcb/qxcbcursor.cpp
++++ qt-everywhere-opensource-src-5.5.1/qtbase/src/plugins/platforms/xcb/qxcbcursor.cpp
+@@ -303,10 +303,10 @@ QXcbCursor::QXcbCursor(QXcbConnection *c
+ #ifdef XCB_USE_XLIB
+ static bool function_ptrs_not_initialized = true;
+ if (function_ptrs_not_initialized) {
+- QLibrary xcursorLib(QLatin1String("Xcursor"), 1);
++ QLibrary xcursorLib(QLatin1String("@libXcursor@/lib/libXcursor"), 1);
+ bool xcursorFound = xcursorLib.load();
+ if (!xcursorFound) { // try without the version number
+- xcursorLib.setFileName(QLatin1String("Xcursor"));
++ xcursorLib.setFileName(QLatin1String("@libXcursor@/lib/Xcursor"));
+ xcursorFound = xcursorLib.load();
+ }
+ if (xcursorFound) {
diff --git a/pkgs/development/libraries/qt-5/5.5/qtbase/0006-dlopen-openssl.patch b/pkgs/development/libraries/qt-5/5.5/qtbase/dlopen-openssl.patch
similarity index 66%
rename from pkgs/development/libraries/qt-5/5.5/qtbase/0006-dlopen-openssl.patch
rename to pkgs/development/libraries/qt-5/5.5/qtbase/dlopen-openssl.patch
index ad48133d93f..1cc6fac583b 100644
--- a/pkgs/development/libraries/qt-5/5.5/qtbase/0006-dlopen-openssl.patch
+++ b/pkgs/development/libraries/qt-5/5.5/qtbase/dlopen-openssl.patch
@@ -1,17 +1,8 @@
-From 2d7e4e21291238e2b41d0e173f918cd3530c8ade Mon Sep 17 00:00:00 2001
-From: Thomas Tuegel
-Date: Sun, 23 Aug 2015 08:52:04 -0500
-Subject: [PATCH 06/11] dlopen openssl
-
----
- qtbase/src/network/ssl/qsslsocket_openssl_symbols.cpp | 8 ++++----
- 1 file changed, 4 insertions(+), 4 deletions(-)
-
-diff --git a/qtbase/src/network/ssl/qsslsocket_openssl_symbols.cpp b/qtbase/src/network/ssl/qsslsocket_openssl_symbols.cpp
-index e2700df..a7ccf88 100644
---- a/qtbase/src/network/ssl/qsslsocket_openssl_symbols.cpp
-+++ b/qtbase/src/network/ssl/qsslsocket_openssl_symbols.cpp
-@@ -640,8 +640,8 @@ static QPair loadOpenSsl()
+Index: qt-everywhere-opensource-src-5.5.1/qtbase/src/network/ssl/qsslsocket_openssl_symbols.cpp
+===================================================================
+--- qt-everywhere-opensource-src-5.5.1.orig/qtbase/src/network/ssl/qsslsocket_openssl_symbols.cpp
++++ qt-everywhere-opensource-src-5.5.1/qtbase/src/network/ssl/qsslsocket_openssl_symbols.cpp
+@@ -640,8 +640,8 @@ static QPair loadO
#endif
#if defined(SHLIB_VERSION_NUMBER) && !defined(Q_OS_QNX) // on QNX, the libs are always libssl.so and libcrypto.so
// first attempt: the canonical name is libssl.so.
@@ -22,7 +13,7 @@ index e2700df..a7ccf88 100644
if (libcrypto->load() && libssl->load()) {
// libssl.so. and libcrypto.so. found
return pair;
-@@ -658,8 +658,8 @@ static QPair loadOpenSsl()
+@@ -658,8 +658,8 @@ static QPair loadO
// OS X's /usr/lib/libssl.dylib, /usr/lib/libcrypto.dylib will be picked up in the third
// attempt, _after_ /Contents/Frameworks has been searched.
// iOS does not ship a system libssl.dylib, libcrypto.dylib in the first place.
@@ -33,6 +24,3 @@ index e2700df..a7ccf88 100644
if (libcrypto->load() && libssl->load()) {
// libssl.so.0 and libcrypto.so.0 found
return pair;
---
-2.5.2
-
diff --git a/pkgs/development/libraries/qt-5/5.5/qtbase/dlopen-resolv.patch b/pkgs/development/libraries/qt-5/5.5/qtbase/dlopen-resolv.patch
new file mode 100644
index 00000000000..a79c806462f
--- /dev/null
+++ b/pkgs/development/libraries/qt-5/5.5/qtbase/dlopen-resolv.patch
@@ -0,0 +1,26 @@
+Index: qt-everywhere-opensource-src-5.5.1/qtbase/src/network/kernel/qdnslookup_unix.cpp
+===================================================================
+--- qt-everywhere-opensource-src-5.5.1.orig/qtbase/src/network/kernel/qdnslookup_unix.cpp
++++ qt-everywhere-opensource-src-5.5.1/qtbase/src/network/kernel/qdnslookup_unix.cpp
+@@ -79,7 +79,7 @@ static void resolveLibrary()
+ if (!lib.load())
+ #endif
+ {
+- lib.setFileName(QLatin1String("resolv"));
++ lib.setFileName(QLatin1String("@glibc/lib/resolv"));
+ if (!lib.load())
+ return;
+ }
+Index: qt-everywhere-opensource-src-5.5.1/qtbase/src/network/kernel/qhostinfo_unix.cpp
+===================================================================
+--- qt-everywhere-opensource-src-5.5.1.orig/qtbase/src/network/kernel/qhostinfo_unix.cpp
++++ qt-everywhere-opensource-src-5.5.1/qtbase/src/network/kernel/qhostinfo_unix.cpp
+@@ -95,7 +95,7 @@ static void resolveLibrary()
+ if (!lib.load())
+ #endif
+ {
+- lib.setFileName(QLatin1String("resolv"));
++ lib.setFileName(QLatin1String("@glibc@/lib/libresolv"));
+ if (!lib.load())
+ return;
+ }
diff --git a/pkgs/development/libraries/qt-5/5.5/qtbase/mkspecs-libgl.patch b/pkgs/development/libraries/qt-5/5.5/qtbase/mkspecs-libgl.patch
new file mode 100644
index 00000000000..10115e8144a
--- /dev/null
+++ b/pkgs/development/libraries/qt-5/5.5/qtbase/mkspecs-libgl.patch
@@ -0,0 +1,15 @@
+Index: qt-everywhere-opensource-src-5.5.1/qtbase/mkspecs/common/linux.conf
+===================================================================
+--- qt-everywhere-opensource-src-5.5.1.orig/qtbase/mkspecs/common/linux.conf
++++ qt-everywhere-opensource-src-5.5.1/qtbase/mkspecs/common/linux.conf
+@@ -12,8 +12,8 @@ QMAKE_INCDIR =
+ QMAKE_LIBDIR =
+ QMAKE_INCDIR_X11 =
+ QMAKE_LIBDIR_X11 =
+-QMAKE_INCDIR_OPENGL =
+-QMAKE_LIBDIR_OPENGL =
++QMAKE_INCDIR_OPENGL = @mesa@/include
++QMAKE_LIBDIR_OPENGL = @mesa@/lib
+ QMAKE_INCDIR_OPENGL_ES2 = $$QMAKE_INCDIR_OPENGL
+ QMAKE_LIBDIR_OPENGL_ES2 = $$QMAKE_LIBDIR_OPENGL
+ QMAKE_INCDIR_EGL =
diff --git a/pkgs/development/libraries/qt-5/5.5/qtbase/nix-profiles-library-paths.patch b/pkgs/development/libraries/qt-5/5.5/qtbase/nix-profiles-library-paths.patch
new file mode 100644
index 00000000000..470526b1dcd
--- /dev/null
+++ b/pkgs/development/libraries/qt-5/5.5/qtbase/nix-profiles-library-paths.patch
@@ -0,0 +1,26 @@
+Index: qt-everywhere-opensource-src-5.5.1/qtbase/src/corelib/kernel/qcoreapplication.cpp
+===================================================================
+--- qt-everywhere-opensource-src-5.5.1.orig/qtbase/src/corelib/kernel/qcoreapplication.cpp
++++ qt-everywhere-opensource-src-5.5.1/qtbase/src/corelib/kernel/qcoreapplication.cpp
+@@ -2498,6 +2498,21 @@ QStringList QCoreApplication::libraryPat
+ }
+ }
+ }
++
++ // Add library paths derived from NIX_PROFILES.
++ const QByteArray nixProfilesEnv = qgetenv("NIX_PROFILES");
++ if (!nixProfilesEnv.isEmpty()) {
++ QLatin1Char pathSep(' ');
++ QStringList paths = QFile::decodeName(nixProfilesEnv).split(pathSep, QString::SkipEmptyParts);
++ for (QStringList::iterator it = paths.begin(); it != paths.end(); ++it) {
++ it->append("/lib/qt5/plugins");
++ QString canonicalPath = QDir(*it).canonicalPath();
++ if (!canonicalPath.isEmpty()
++ && !app_libpaths->contains(canonicalPath)) {
++ app_libpaths->append(canonicalPath);
++ }
++ }
++ }
+ }
+ return *(coreappdata()->app_libpaths);
+ }
diff --git a/pkgs/development/libraries/qt-5/5.5/qtbase/series b/pkgs/development/libraries/qt-5/5.5/qtbase/series
new file mode 100644
index 00000000000..3cfa50e85b7
--- /dev/null
+++ b/pkgs/development/libraries/qt-5/5.5/qtbase/series
@@ -0,0 +1,8 @@
+dlopen-resolv.patch
+tzdir.patch
+dlopen-libXcursor.patch
+dlopen-openssl.patch
+dlopen-dbus.patch
+xdg-config-dirs.patch
+nix-profiles-library-paths.patch
+compose-search-path.patch
diff --git a/pkgs/development/libraries/qt-5/5.5/qtbase/0004-tzdir.patch b/pkgs/development/libraries/qt-5/5.5/qtbase/tzdir.patch
similarity index 68%
rename from pkgs/development/libraries/qt-5/5.5/qtbase/0004-tzdir.patch
rename to pkgs/development/libraries/qt-5/5.5/qtbase/tzdir.patch
index c2564df4e1a..92adeda8273 100644
--- a/pkgs/development/libraries/qt-5/5.5/qtbase/0004-tzdir.patch
+++ b/pkgs/development/libraries/qt-5/5.5/qtbase/tzdir.patch
@@ -1,17 +1,8 @@
-From 26c73d6da84f1b4797421b9ddecef18d6ce588f0 Mon Sep 17 00:00:00 2001
-From: Thomas Tuegel
-Date: Mon, 1 Dec 2014 17:23:22 -0600
-Subject: [PATCH 04/11] tzdir
-
----
- qtbase/src/corelib/tools/qtimezoneprivate_tz.cpp | 21 +++++++++++++++------
- 1 file changed, 15 insertions(+), 6 deletions(-)
-
-diff --git a/qtbase/src/corelib/tools/qtimezoneprivate_tz.cpp b/qtbase/src/corelib/tools/qtimezoneprivate_tz.cpp
-index 29f0e17..3878974 100644
---- a/qtbase/src/corelib/tools/qtimezoneprivate_tz.cpp
-+++ b/qtbase/src/corelib/tools/qtimezoneprivate_tz.cpp
-@@ -62,7 +62,10 @@ typedef QHash QTzTimeZoneHash;
+Index: qt-everywhere-opensource-src-5.5.1/qtbase/src/corelib/tools/qtimezoneprivate_tz.cpp
+===================================================================
+--- qt-everywhere-opensource-src-5.5.1.orig/qtbase/src/corelib/tools/qtimezoneprivate_tz.cpp
++++ qt-everywhere-opensource-src-5.5.1/qtbase/src/corelib/tools/qtimezoneprivate_tz.cpp
+@@ -62,7 +62,10 @@ typedef QHash Q
// Parse zone.tab table, assume lists all installed zones, if not will need to read directories
static QTzTimeZoneHash loadTzTimeZones()
{
@@ -23,7 +14,7 @@ index 29f0e17..3878974 100644
if (!QFile::exists(path))
path = QStringLiteral("/usr/lib/zoneinfo/zone.tab");
-@@ -553,12 +556,18 @@ void QTzTimeZonePrivate::init(const QByteArray &ianaId)
+@@ -560,12 +563,18 @@ void QTzTimeZonePrivate::init(const QByt
if (!tzif.open(QIODevice::ReadOnly))
return;
} else {
@@ -47,6 +38,3 @@ index 29f0e17..3878974 100644
}
}
---
-2.5.2
-
diff --git a/pkgs/development/libraries/qt-5/5.5/qtbase/0008-xdg-config-dirs.patch b/pkgs/development/libraries/qt-5/5.5/qtbase/xdg-config-dirs.patch
similarity index 64%
rename from pkgs/development/libraries/qt-5/5.5/qtbase/0008-xdg-config-dirs.patch
rename to pkgs/development/libraries/qt-5/5.5/qtbase/xdg-config-dirs.patch
index ebb572081bf..24dc3bde148 100644
--- a/pkgs/development/libraries/qt-5/5.5/qtbase/0008-xdg-config-dirs.patch
+++ b/pkgs/development/libraries/qt-5/5.5/qtbase/xdg-config-dirs.patch
@@ -1,18 +1,8 @@
-From 253c0829d4bc30da0152a22114a949449796ec7d Mon Sep 17 00:00:00 2001
-From: Thomas Tuegel
-Date: Sun, 23 Aug 2015 08:52:57 -0500
-Subject: [PATCH 08/11] xdg config dirs
-
----
- qtbase/src/corelib/io/qsettings.cpp | 18 ++++++++++++++++++
- qtbase/src/corelib/io/qsettings_p.h | 2 +-
- 2 files changed, 19 insertions(+), 1 deletion(-)
-
-diff --git a/qtbase/src/corelib/io/qsettings.cpp b/qtbase/src/corelib/io/qsettings.cpp
-index 413f569..8ff4974 100644
---- a/qtbase/src/corelib/io/qsettings.cpp
-+++ b/qtbase/src/corelib/io/qsettings.cpp
-@@ -1131,6 +1131,24 @@ QConfFileSettingsPrivate::QConfFileSettingsPrivate(QSettings::Format format,
+Index: qt-everywhere-opensource-src-5.5.1/qtbase/src/corelib/io/qsettings.cpp
+===================================================================
+--- qt-everywhere-opensource-src-5.5.1.orig/qtbase/src/corelib/io/qsettings.cpp
++++ qt-everywhere-opensource-src-5.5.1/qtbase/src/corelib/io/qsettings.cpp
+@@ -1131,6 +1131,24 @@ QConfFileSettingsPrivate::QConfFileSetti
if (!application.isEmpty())
confFiles[F_System | F_Application].reset(QConfFile::fromName(systemPath + appFile, false));
confFiles[F_System | F_Organization].reset(QConfFile::fromName(systemPath + orgFile, false));
@@ -37,10 +27,10 @@ index 413f569..8ff4974 100644
#else
QString confName = getPath(format, QSettings::UserScope) + org;
if (!application.isEmpty())
-diff --git a/qtbase/src/corelib/io/qsettings_p.h b/qtbase/src/corelib/io/qsettings_p.h
-index 93d63fd..160b197 100644
---- a/qtbase/src/corelib/io/qsettings_p.h
-+++ b/qtbase/src/corelib/io/qsettings_p.h
+Index: qt-everywhere-opensource-src-5.5.1/qtbase/src/corelib/io/qsettings_p.h
+===================================================================
+--- qt-everywhere-opensource-src-5.5.1.orig/qtbase/src/corelib/io/qsettings_p.h
++++ qt-everywhere-opensource-src-5.5.1/qtbase/src/corelib/io/qsettings_p.h
@@ -240,7 +240,7 @@ public:
F_Organization = 0x1,
F_User = 0x0,
@@ -50,6 +40,3 @@ index 93d63fd..160b197 100644
#else
SandboxConfFile = 0,
NumConfFiles = 1
---
-2.5.2
-
diff --git a/pkgs/development/libraries/qt-5/qt-env.nix b/pkgs/development/libraries/qt-5/qt-env.nix
index e6973015aca..11c6ac74d5f 100644
--- a/pkgs/development/libraries/qt-5/qt-env.nix
+++ b/pkgs/development/libraries/qt-5/qt-env.nix
@@ -1,8 +1,6 @@
-{ runCommand, lndir }:
+{ runCommand, lndir, qtbase }: name: paths:
-{ paths, qtbase }:
-
-runCommand "qt-env" { inherit paths qtbase; } ''
+runCommand name { inherit paths qtbase; } ''
mkdir -p "$out/bin" "$out/mkspecs" "$out/include" "$out/lib" "$out/share"
diff --git a/pkgs/development/libraries/quazip/default.nix b/pkgs/development/libraries/quazip/default.nix
index 119fda9eb80..4db9d8b4665 100644
--- a/pkgs/development/libraries/quazip/default.nix
+++ b/pkgs/development/libraries/quazip/default.nix
@@ -12,7 +12,7 @@ stdenv.mkDerivation rec {
installFlags = "INSTALL_ROOT=$(out)";
- buildInputs = [ zlib (qt.base or qt) ];
+ buildInputs = [ zlib qt ];
meta = {
description = "Provides access to ZIP archives from Qt programs";
diff --git a/pkgs/development/libraries/qwt/6.nix b/pkgs/development/libraries/qwt/6.nix
index 822b888843e..d4819d70bfc 100644
--- a/pkgs/development/libraries/qwt/6.nix
+++ b/pkgs/development/libraries/qwt/6.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchurl, qt5 }:
+{ stdenv, fetchurl, qtbase, qtsvg, qttools }:
stdenv.mkDerivation rec {
name = "qwt-6.1.2";
@@ -8,7 +8,7 @@ stdenv.mkDerivation rec {
sha256 = "031x4hz1jpbirv9k35rqb52bb9mf2w7qav89qv1yfw1r3n6z221b";
};
- propagatedBuildInputs = [ qt5.base qt5.svg qt5.tools ];
+ propagatedBuildInputs = [ qtbase qtsvg qttools ];
postPatch = ''
sed -e "s|QWT_INSTALL_PREFIX.*=.*|QWT_INSTALL_PREFIX = $out|g" -i qwtconfig.pri
diff --git a/pkgs/development/libraries/science/math/arpack/default.nix b/pkgs/development/libraries/science/math/arpack/default.nix
index 58326a6fa50..13bf512b32d 100644
--- a/pkgs/development/libraries/science/math/arpack/default.nix
+++ b/pkgs/development/libraries/science/math/arpack/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchurl, gfortran, openblas }:
+{ stdenv, lib, copyPathsToStore, fetchurl, gfortran, openblas }:
with stdenv.lib;
@@ -7,11 +7,17 @@ let
in
stdenv.mkDerivation {
name = "arpack-${version}";
+
src = fetchurl {
url = "https://github.com/opencollab/arpack-ng/archive/${version}.tar.gz";
sha256 = "1fwch6vipms1ispzg2djvbzv5wag36f1dmmr3xs3mbp6imfyhvff";
};
+ patches = copyPathsToStore (lib.readPathsFromFile ./. ./series);
+ postPatch = ''
+ substituteInPlace arpack.pc.in --replace "@openblas@" "${openblas}/lib"
+ '';
+
buildInputs = [ gfortran openblas ];
# Auto-detection fails because gfortran brings in BLAS by default
diff --git a/pkgs/development/libraries/science/math/arpack/openblas-libdir.patch b/pkgs/development/libraries/science/math/arpack/openblas-libdir.patch
new file mode 100644
index 00000000000..421f8e85f5f
--- /dev/null
+++ b/pkgs/development/libraries/science/math/arpack/openblas-libdir.patch
@@ -0,0 +1,11 @@
+Index: arpack-ng-3.2.0/arpack.pc.in
+===================================================================
+--- arpack-ng-3.2.0.orig/arpack.pc.in
++++ arpack-ng-3.2.0/arpack.pc.in
+@@ -5,5 +5,5 @@ libdir=@libdir@
+ Name: arpack
+ Description: ARPACK-NG
+ Version: @PACKAGE_VERSION@
+-Libs: -L${libdir} -larpack @BLAS_LIBS@ @LAPACK_LIBS@
++Libs: -L@openblas@ -L${libdir} -larpack @BLAS_LIBS@ @LAPACK_LIBS@
+ Cflags:
diff --git a/pkgs/development/libraries/science/math/arpack/series b/pkgs/development/libraries/science/math/arpack/series
new file mode 100644
index 00000000000..6ac0b3286ef
--- /dev/null
+++ b/pkgs/development/libraries/science/math/arpack/series
@@ -0,0 +1 @@
+openblas-libdir.patch
diff --git a/pkgs/development/libraries/signon/old.nix b/pkgs/development/libraries/signon/old.nix
deleted file mode 100644
index bf211c3b8a3..00000000000
--- a/pkgs/development/libraries/signon/old.nix
+++ /dev/null
@@ -1,18 +0,0 @@
-{ stdenv, fetchurl, doxygen, qt5 }:
-
-stdenv.mkDerivation rec {
- name = "signon-${version}";
- version = "8.57";
- src = fetchurl {
- url = "https://gitlab.com/accounts-sso/signond/repository/archive.tar.gz?ref=${version}";
- sha256 = "1vqkxhmdjk3217k38l2s3wld8x7f4jrbbh6xbr036cn1r23ncni5";
- };
-
- buildInputs = [ qt5.base ];
- nativeBuildInputs = [ doxygen ];
-
- configurePhase = ''
- qmake PREFIX=$out LIBDIR=$out/lib CMAKE_CONFIG_PATH=$out/lib/cmake/SignOnQt5
- '';
-
-}
diff --git a/pkgs/development/libraries/telepathy/farstream/default.nix b/pkgs/development/libraries/telepathy/farstream/default.nix
index a5185689ee0..88eecd0703c 100644
--- a/pkgs/development/libraries/telepathy/farstream/default.nix
+++ b/pkgs/development/libraries/telepathy/farstream/default.nix
@@ -1,17 +1,14 @@
-{ stdenv, fetchurl, telepathy_glib, farstream, gst_plugins_base, dbus_glib
-, pkgconfig, libxslt, python, gstreamer, gst_python, pygobject }:
+{ stdenv, fetchurl, pkgconfig, telepathy_glib, farstream, dbus_glib }:
stdenv.mkDerivation rec {
- name = "${pname}-0.6.1";
+ name = "${pname}-0.6.2";
pname = "telepathy-farstream";
src = fetchurl {
url = "http://telepathy.freedesktop.org/releases/${pname}/${name}.tar.gz";
- sha256 = "0ia8nldxxan1cvplr62aicjhfcrm27s3qyk0x46c8q0fmqvnzlm3";
+ sha256 = "02ky12bb92prr5f6xmvmfq4yz2lj33li6nj4829a98hk5pr9k83g";
};
- buildInputs = [ gst_plugins_base gst_python pygobject ];
-
- propagatedBuildInputs = [ dbus_glib telepathy_glib gstreamer farstream ];
- nativeBuildInputs = [ pkgconfig python libxslt];
+ propagatedBuildInputs = [ dbus_glib telepathy_glib farstream ];
+ nativeBuildInputs = [ pkgconfig ];
}
diff --git a/pkgs/development/libraries/telepathy/qt/default.nix b/pkgs/development/libraries/telepathy/qt/default.nix
index 7ef48d09725..1052e92d380 100644
--- a/pkgs/development/libraries/telepathy/qt/default.nix
+++ b/pkgs/development/libraries/telepathy/qt/default.nix
@@ -1,19 +1,27 @@
-{ stdenv, fetchurl, cmake, qt4, pkgconfig, python, libxslt, dbus_glib, dbus_daemon
-, telepathy_farstream, telepathy_glib, pythonDBus }:
+{ stdenv, fetchurl, cmake, qtbase, pkgconfig, python, dbus_glib, dbus_daemon
+, telepathy_farstream, telepathy_glib, pythonDBus, fetchpatch }:
stdenv.mkDerivation rec {
- name = "telepathy-qt-0.9.5";
+ name = "telepathy-qt-0.9.6";
src = fetchurl {
url = "http://telepathy.freedesktop.org/releases/telepathy-qt/${name}.tar.gz";
- sha256 = "13lwh23ad9bg7hx1mj4xjc2lb8nlaaw8hbrmx5gg8nz5xxc4hiwk";
+ sha256 = "0j7hs055cx5g9chn3b2p0arig70m5g9547qgqvk29kxdyxxxsmqc";
};
+ patches = [(fetchpatch {
+ name = "gst-1.6.patch";
+ url = "http://cgit.freedesktop.org/telepathy/telepathy-qt/patch"
+ + "/?id=ec4a3d62b68a57254515f01fc5ea3325ffb1dbfb";
+ sha256 = "1rh7n3xyrwpvpa3haqi35qn4mfz4396ha43w4zsqpmcyda9y65v2";
+ })];
- nativeBuildInputs = [ cmake pkgconfig python libxslt ];
- propagatedBuildInputs = [ qt4 dbus_glib telepathy_farstream telepathy_glib pythonDBus ];
+ nativeBuildInputs = [ cmake pkgconfig python ];
+ propagatedBuildInputs = [ qtbase dbus_glib telepathy_farstream telepathy_glib pythonDBus ];
buildInputs = stdenv.lib.optional doCheck dbus_daemon;
+ cmakeFlags = "-DDESIRED_QT_VERSION=${builtins.substring 0 1 qtbase.version}";
+
preBuild = ''
NIX_CFLAGS_COMPILE+=" `pkg-config --cflags dbus-glib-1`"
'';
diff --git a/pkgs/development/libraries/telepathy/qt5/default.nix b/pkgs/development/libraries/telepathy/qt5/default.nix
deleted file mode 100644
index 1c18e844689..00000000000
--- a/pkgs/development/libraries/telepathy/qt5/default.nix
+++ /dev/null
@@ -1,29 +0,0 @@
-{ stdenv, fetchurl, cmake, qtbase, pkgconfig, python, libxslt, dbus_glib, dbus_daemon
-, telepathy_farstream, telepathy_glib, pythonDBus }:
-
-stdenv.mkDerivation rec {
- name = "telepathy-qt5-0.9.5";
-
- src = fetchurl {
- url = "http://telepathy.freedesktop.org/releases/telepathy-qt/${name}.tar.gz";
- sha256 = "13lwh23ad9bg7hx1mj4xjc2lb8nlaaw8hbrmx5gg8nz5xxc4hiwk";
- };
-
- nativeBuildInputs = [ cmake pkgconfig python libxslt ];
- propagatedBuildInputs = [ qtbase dbus_glib telepathy_farstream telepathy_glib pythonDBus ];
-
- cmakeFlags = [ "-DDESIRED_QT_VERSION=5" ];
-
- buildInputs = stdenv.lib.optional doCheck dbus_daemon;
-
- preBuild = ''
- NIX_CFLAGS_COMPILE+=" `pkg-config --cflags dbus-glib-1`"
- '';
-
- enableParallelBuilding = true;
- doCheck = false; # giving up for now
-
- meta = {
- platforms = stdenv.lib.platforms.linux;
- };
-}
diff --git a/pkgs/development/libraries/telepathy/qt5/old.nix b/pkgs/development/libraries/telepathy/qt5/old.nix
deleted file mode 100644
index 50d569f3091..00000000000
--- a/pkgs/development/libraries/telepathy/qt5/old.nix
+++ /dev/null
@@ -1,29 +0,0 @@
-{ stdenv, fetchurl, cmake, qt5, pkgconfig, python, libxslt, dbus_glib, dbus_daemon
-, telepathy_farstream, telepathy_glib, pythonDBus }:
-
-stdenv.mkDerivation rec {
- name = "telepathy-qt5-0.9.5";
-
- src = fetchurl {
- url = "http://telepathy.freedesktop.org/releases/telepathy-qt/${name}.tar.gz";
- sha256 = "13lwh23ad9bg7hx1mj4xjc2lb8nlaaw8hbrmx5gg8nz5xxc4hiwk";
- };
-
- nativeBuildInputs = [ cmake pkgconfig python libxslt ];
- propagatedBuildInputs = [ qt5.base dbus_glib telepathy_farstream telepathy_glib pythonDBus ];
-
- cmakeFlags = [ "-DDESIRED_QT_VERSION=5" ];
-
- buildInputs = stdenv.lib.optional doCheck dbus_daemon;
-
- preBuild = ''
- NIX_CFLAGS_COMPILE+=" `pkg-config --cflags dbus-glib-1`"
- '';
-
- enableParallelBuilding = true;
- doCheck = false; # giving up for now
-
- meta = {
- platforms = stdenv.lib.platforms.linux;
- };
-}
diff --git a/pkgs/development/python-modules/pyqt/5.x.nix b/pkgs/development/python-modules/pyqt/5.x.nix
index bb1d91b3ca8..c2e5cb1a763 100644
--- a/pkgs/development/python-modules/pyqt/5.x.nix
+++ b/pkgs/development/python-modules/pyqt/5.x.nix
@@ -1,4 +1,5 @@
-{ stdenv, fetchurl, python, pkgconfig, qt5, sip, pythonDBus, lndir, makeWrapper }:
+{ stdenv, fetchurl, python, pkgconfig, qtbase, qtsvg, qtwebkit, sip, pythonDBus
+, lndir, makeWrapper }:
let
version = "5.4.2";
@@ -20,7 +21,7 @@ in stdenv.mkDerivation {
buildInputs = [
python pkgconfig makeWrapper lndir
- qt5.base qt5.svg qt5.webkit
+ qtbase qtsvg qtwebkit
];
propagatedBuildInputs = [ sip ];
diff --git a/pkgs/development/python-modules/scipy-0.16.1-decorator-fix.patch b/pkgs/development/python-modules/scipy-0.16.1-decorator-fix.patch
new file mode 100644
index 00000000000..0a7f92d9d2e
--- /dev/null
+++ b/pkgs/development/python-modules/scipy-0.16.1-decorator-fix.patch
@@ -0,0 +1,487 @@
+From 8d3cd578f9c0a36d29411c96fa70402a7a56d502 Mon Sep 17 00:00:00 2001
+From: Evgeni Burovski
+Date: Sun, 8 Nov 2015 15:27:22 +0000
+Subject: [PATCH] MAINT: update decorators.py module to version 4.0.5
+
+This is commit d6abda0 at
+https://github.com/micheles/decorator/tree/4.0.5
+---
+ scipy/_lib/decorator.py | 380 +++++++++++++++++++++++++++++++++++++-----------
+ 1 file changed, 293 insertions(+), 87 deletions(-)
+
+diff --git a/scipy/_lib/decorator.py b/scipy/_lib/decorator.py
+index 07d9d21..05f7056 100644
+--- a/scipy/_lib/decorator.py
++++ b/scipy/_lib/decorator.py
+@@ -1,48 +1,52 @@
+-########################## LICENCE ###############################
+-##
+-## Copyright (c) 2005-2011, Michele Simionato
+-## All rights reserved.
+-##
+-## Redistributions of source code must retain the above copyright
+-## notice, this list of conditions and the following disclaimer.
+-## Redistributions in bytecode form must reproduce the above copyright
+-## notice, this list of conditions and the following disclaimer in
+-## the documentation and/or other materials provided with the
+-## distribution.
+-
+-## THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+-## "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+-## LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
+-## A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
+-## HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
+-## INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
+-## BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
+-## OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
+-## ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR
+-## TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
+-## USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
+-## DAMAGE.
++# ######################### LICENSE ############################ #
++
++# Copyright (c) 2005-2015, Michele Simionato
++# All rights reserved.
++
++# Redistribution and use in source and binary forms, with or without
++# modification, are permitted provided that the following conditions are
++# met:
++
++# Redistributions of source code must retain the above copyright
++# notice, this list of conditions and the following disclaimer.
++# Redistributions in bytecode form must reproduce the above copyright
++# notice, this list of conditions and the following disclaimer in
++# the documentation and/or other materials provided with the
++# distribution.
++
++# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
++# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
++# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
++# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
++# HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
++# INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
++# BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
++# OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
++# ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR
++# TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
++# USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
++# DAMAGE.
+
+ """
+ Decorator module, see http://pypi.python.org/pypi/decorator
+ for the documentation.
+ """
++from __future__ import print_function
+
+-from __future__ import division, print_function, absolute_import
+-
+-__version__ = '3.3.2'
+-
+-__all__ = ["decorator", "FunctionMaker"]
+-
+-import sys
+ import re
++import sys
+ import inspect
+-from functools import partial
++import operator
++import itertools
++import collections
+
+-from scipy._lib.six import exec_
++__version__ = '4.0.5'
+
+ if sys.version >= '3':
+ from inspect import getfullargspec
++
++ def get_init(cls):
++ return cls.__init__
+ else:
+ class getfullargspec(object):
+ "A quick and dirty replacement for getfullargspec for Python 2.X"
+@@ -51,7 +55,6 @@ else:
+ inspect.getargspec(f)
+ self.kwonlyargs = []
+ self.kwonlydefaults = None
+- self.annotations = getattr(f, '__annotations__', {})
+
+ def __iter__(self):
+ yield self.args
+@@ -59,17 +62,35 @@ else:
+ yield self.varkw
+ yield self.defaults
+
+-DEF = re.compile('\s*def\s*([_\w][_\w\d]*)\s*\(')
++ getargspec = inspect.getargspec
++
++ def get_init(cls):
++ return cls.__init__.__func__
++
++# getargspec has been deprecated in Python 3.5
++ArgSpec = collections.namedtuple(
++ 'ArgSpec', 'args varargs varkw defaults')
+
+-# basic functionality
+
++def getargspec(f):
++ """A replacement for inspect.getargspec"""
++ spec = getfullargspec(f)
++ return ArgSpec(spec.args, spec.varargs, spec.varkw, spec.defaults)
+
++DEF = re.compile('\s*def\s*([_\w][_\w\d]*)\s*\(')
++
++
++# basic functionality
+ class FunctionMaker(object):
+ """
+ An object with the ability to create functions with a given signature.
+ It has attributes name, doc, module, signature, defaults, dict and
+ methods update and make.
+ """
++
++ # Atomic get-and-increment provided by the GIL
++ _compile_count = itertools.count()
++
+ def __init__(self, func=None, name=None, signature=None,
+ defaults=None, doc=None, module=None, funcdict=None):
+ self.shortsignature = signature
+@@ -82,22 +103,32 @@ class FunctionMaker(object):
+ self.module = func.__module__
+ if inspect.isfunction(func):
+ argspec = getfullargspec(func)
++ self.annotations = getattr(func, '__annotations__', {})
+ for a in ('args', 'varargs', 'varkw', 'defaults', 'kwonlyargs',
+- 'kwonlydefaults', 'annotations'):
++ 'kwonlydefaults'):
+ setattr(self, a, getattr(argspec, a))
+ for i, arg in enumerate(self.args):
+ setattr(self, 'arg%d' % i, arg)
+- self.signature = inspect.formatargspec(
+- formatvalue=lambda val: "", *argspec)[1:-1]
+- allargs = list(self.args)
+- if self.varargs:
+- allargs.append('*' + self.varargs)
+- if self.varkw:
+- allargs.append('**' + self.varkw)
+- try:
+- self.shortsignature = ', '.join(allargs)
+- except TypeError: # exotic signature, valid only in Python 2.X
+- self.shortsignature = self.signature
++ if sys.version < '3': # easy way
++ self.shortsignature = self.signature = (
++ inspect.formatargspec(
++ formatvalue=lambda val: "", *argspec)[1:-1])
++ else: # Python 3 way
++ allargs = list(self.args)
++ allshortargs = list(self.args)
++ if self.varargs:
++ allargs.append('*' + self.varargs)
++ allshortargs.append('*' + self.varargs)
++ elif self.kwonlyargs:
++ allargs.append('*') # single star syntax
++ for a in self.kwonlyargs:
++ allargs.append('%s=None' % a)
++ allshortargs.append('%s=%s' % (a, a))
++ if self.varkw:
++ allargs.append('**' + self.varkw)
++ allshortargs.append('**' + self.varkw)
++ self.signature = ', '.join(allargs)
++ self.shortsignature = ', '.join(allshortargs)
+ self.dict = func.__dict__.copy()
+ # func=None happens when decorating a caller
+ if name:
+@@ -122,12 +153,15 @@ class FunctionMaker(object):
+ func.__name__ = self.name
+ func.__doc__ = getattr(self, 'doc', None)
+ func.__dict__ = getattr(self, 'dict', {})
+- if sys.version_info[0] >= 3:
+- func.__defaults__ = getattr(self, 'defaults', ())
+- else:
+- func.func_defaults = getattr(self, 'defaults', ())
++ func.__defaults__ = getattr(self, 'defaults', ())
+ func.__kwdefaults__ = getattr(self, 'kwonlydefaults', None)
+- callermodule = sys._getframe(3).f_globals.get('__name__', '?')
++ func.__annotations__ = getattr(self, 'annotations', None)
++ try:
++ frame = sys._getframe(3)
++ except AttributeError: # for IronPython and similar implementations
++ callermodule = '?'
++ else:
++ callermodule = frame.f_globals.get('__name__', '?')
+ func.__module__ = getattr(self, 'module', callermodule)
+ func.__dict__.update(kw)
+
+@@ -140,16 +174,20 @@ class FunctionMaker(object):
+ raise SyntaxError('not a valid function template\n%s' % src)
+ name = mo.group(1) # extract the function name
+ names = set([name] + [arg.strip(' *') for arg in
+- self.shortsignature.split(',')])
++ self.shortsignature.split(',')])
+ for n in names:
+ if n in ('_func_', '_call_'):
+ raise NameError('%s is overridden in\n%s' % (n, src))
+ if not src.endswith('\n'): # add a newline just for safety
+ src += '\n' # this is needed in old versions of Python
++
++ # Ensure each generated function has a unique filename for profilers
++ # (such as cProfile) that depend on the tuple of (,
++ # , ) being unique.
++ filename = '' % (next(self._compile_count),)
+ try:
+- code = compile(src, '', 'single')
+- # print >> sys.stderr, 'Compiling %s' % src
+- exec_(code, evaldict)
++ code = compile(src, filename, 'single')
++ exec(code, evaldict)
+ except:
+ print('Error in generated code:', file=sys.stderr)
+ print(src, file=sys.stderr)
+@@ -165,9 +203,9 @@ class FunctionMaker(object):
+ doc=None, module=None, addsource=True, **attrs):
+ """
+ Create a function from the strings name, signature and body.
+- evaldict is the evaluation dictionary. If addsource is true an attribute
+- __source__ is added to the result. The attributes attrs are added,
+- if any.
++ evaldict is the evaluation dictionary. If addsource is true an
++ attribute __source__ is added to the result. The attributes attrs
++ are added, if any.
+ """
+ if isinstance(obj, str): # "name(signature)"
+ name, rest = obj.strip().split('(', 1)
+@@ -180,37 +218,205 @@ class FunctionMaker(object):
+ self = cls(func, name, signature, defaults, doc, module)
+ ibody = '\n'.join(' ' + line for line in body.splitlines())
+ return self.make('def %(name)s(%(signature)s):\n' + ibody,
+- evaldict, addsource, **attrs)
++ evaldict, addsource, **attrs)
+
+
+-def decorator(caller, func=None):
++def decorate(func, caller):
+ """
+- decorator(caller) converts a caller function into a decorator;
+- decorator(caller, func) decorates a function using a caller.
++ decorate(func, caller) decorates a function using a caller.
+ """
+- if func is not None: # returns a decorated function
+- if sys.version_info[0] >= 3:
+- evaldict = func.__globals__.copy()
++ evaldict = func.__globals__.copy()
++ evaldict['_call_'] = caller
++ evaldict['_func_'] = func
++ fun = FunctionMaker.create(
++ func, "return _call_(_func_, %(shortsignature)s)",
++ evaldict, __wrapped__=func)
++ if hasattr(func, '__qualname__'):
++ fun.__qualname__ = func.__qualname__
++ return fun
++
++
++def decorator(caller, _func=None):
++ """decorator(caller) converts a caller function into a decorator"""
++ if _func is not None: # return a decorated function
++ # this is obsolete behavior; you should use decorate instead
++ return decorate(_func, caller)
++ # else return a decorator function
++ if inspect.isclass(caller):
++ name = caller.__name__.lower()
++ callerfunc = get_init(caller)
++ doc = 'decorator(%s) converts functions/generators into ' \
++ 'factories of %s objects' % (caller.__name__, caller.__name__)
++ elif inspect.isfunction(caller):
++ if caller.__name__ == '':
++ name = '_lambda_'
+ else:
+- evaldict = func.func_globals.copy()
+- evaldict['_call_'] = caller
+- evaldict['_func_'] = func
++ name = caller.__name__
++ callerfunc = caller
++ doc = caller.__doc__
++ else: # assume caller is an object with a __call__ method
++ name = caller.__class__.__name__.lower()
++ callerfunc = caller.__call__.__func__
++ doc = caller.__call__.__doc__
++ evaldict = callerfunc.__globals__.copy()
++ evaldict['_call_'] = caller
++ evaldict['_decorate_'] = decorate
++ return FunctionMaker.create(
++ '%s(func)' % name, 'return _decorate_(func, _call_)',
++ evaldict, doc=doc, module=caller.__module__,
++ __wrapped__=caller)
++
++
++# ####################### contextmanager ####################### #
++
++try: # Python >= 3.2
++ from contextlib import _GeneratorContextManager
++except ImportError: # Python >= 2.5
++ from contextlib import GeneratorContextManager as _GeneratorContextManager
++
++
++class ContextManager(_GeneratorContextManager):
++ def __call__(self, func):
++ """Context manager decorator"""
+ return FunctionMaker.create(
+- func, "return _call_(_func_, %(shortsignature)s)",
+- evaldict, undecorated=func, __wrapped__=func)
+- else: # returns a decorator
+- if isinstance(caller, partial):
+- return partial(decorator, caller)
+- # otherwise assume caller is a function
+- first = inspect.getargspec(caller)[0][0] # first arg
+- if sys.version_info[0] >= 3:
+- evaldict = caller.__globals__.copy()
+- else:
+- evaldict = caller.func_globals.copy()
+- evaldict['_call_'] = caller
+- evaldict['decorator'] = decorator
++ func, "with _self_: return _func_(%(shortsignature)s)",
++ dict(_self_=self, _func_=func), __wrapped__=func)
++
++init = getfullargspec(_GeneratorContextManager.__init__)
++n_args = len(init.args)
++if n_args == 2 and not init.varargs: # (self, genobj) Python 2.7
++ def __init__(self, g, *a, **k):
++ return _GeneratorContextManager.__init__(self, g(*a, **k))
++ ContextManager.__init__ = __init__
++elif n_args == 2 and init.varargs: # (self, gen, *a, **k) Python 3.4
++ pass
++elif n_args == 4: # (self, gen, args, kwds) Python 3.5
++ def __init__(self, g, *a, **k):
++ return _GeneratorContextManager.__init__(self, g, a, k)
++ ContextManager.__init__ = __init__
++
++contextmanager = decorator(ContextManager)
++
++
++# ############################ dispatch_on ############################ #
++
++def append(a, vancestors):
++ """
++ Append ``a`` to the list of the virtual ancestors, unless it is already
++ included.
++ """
++ add = True
++ for j, va in enumerate(vancestors):
++ if issubclass(va, a):
++ add = False
++ break
++ if issubclass(a, va):
++ vancestors[j] = a
++ add = False
++ if add:
++ vancestors.append(a)
++
++
++# inspired from simplegeneric by P.J. Eby and functools.singledispatch
++def dispatch_on(*dispatch_args):
++ """
++ Factory of decorators turning a function into a generic function
++ dispatching on the given arguments.
++ """
++ assert dispatch_args, 'No dispatch args passed'
++ dispatch_str = '(%s,)' % ', '.join(dispatch_args)
++
++ def check(arguments, wrong=operator.ne, msg=''):
++ """Make sure one passes the expected number of arguments"""
++ if wrong(len(arguments), len(dispatch_args)):
++ raise TypeError('Expected %d arguments, got %d%s' %
++ (len(dispatch_args), len(arguments), msg))
++
++ def gen_func_dec(func):
++ """Decorator turning a function into a generic function"""
++
++ # first check the dispatch arguments
++ argset = set(getfullargspec(func).args)
++ if not set(dispatch_args) <= argset:
++ raise NameError('Unknown dispatch arguments %s' % dispatch_str)
++
++ typemap = {}
++
++ def vancestors(*types):
++ """
++ Get a list of sets of virtual ancestors for the given types
++ """
++ check(types)
++ ras = [[] for _ in range(len(dispatch_args))]
++ for types_ in typemap:
++ for t, type_, ra in zip(types, types_, ras):
++ if issubclass(t, type_) and type_ not in t.__mro__:
++ append(type_, ra)
++ return [set(ra) for ra in ras]
++
++ def ancestors(*types):
++ """
++ Get a list of virtual MROs, one for each type
++ """
++ check(types)
++ lists = []
++ for t, vas in zip(types, vancestors(*types)):
++ n_vas = len(vas)
++ if n_vas > 1:
++ raise RuntimeError(
++ 'Ambiguous dispatch for %s: %s' % (t, vas))
++ elif n_vas == 1:
++ va, = vas
++ mro = type('t', (t, va), {}).__mro__[1:]
++ else:
++ mro = t.__mro__
++ lists.append(mro[:-1]) # discard t and object
++ return lists
++
++ def register(*types):
++ """
++ Decorator to register an implementation for the given types
++ """
++ check(types)
++ def dec(f):
++ check(getfullargspec(f).args, operator.lt, ' in ' + f.__name__)
++ typemap[types] = f
++ return f
++ return dec
++
++ def dispatch_info(*types):
++ """
++ An utility to introspect the dispatch algorithm
++ """
++ check(types)
++ lst = []
++ for anc in itertools.product(*ancestors(*types)):
++ lst.append(tuple(a.__name__ for a in anc))
++ return lst
++
++ def _dispatch(dispatch_args, *args, **kw):
++ types = tuple(type(arg) for arg in dispatch_args)
++ try: # fast path
++ f = typemap[types]
++ except KeyError:
++ pass
++ else:
++ return f(*args, **kw)
++ combinations = itertools.product(*ancestors(*types))
++ next(combinations) # the first one has been already tried
++ for types_ in combinations:
++ f = typemap.get(types_)
++ if f is not None:
++ return f(*args, **kw)
++
++ # else call the default implementation
++ return func(*args, **kw)
++
+ return FunctionMaker.create(
+- '%s(%s)' % (caller.__name__, first),
+- 'return decorator(_call_, %s)' % first,
+- evaldict, undecorated=caller, __wrapped__=caller,
+- doc=caller.__doc__, module=caller.__module__)
++ func, 'return _f_(%s, %%(shortsignature)s)' % dispatch_str,
++ dict(_f_=_dispatch), register=register, default=func,
++ typemap=typemap, vancestors=vancestors, ancestors=ancestors,
++ dispatch_info=dispatch_info, __wrapped__=func)
++
++ gen_func_dec.__name__ = 'dispatch_on' + dispatch_str
++ return gen_func_dec
+--
+2.6.3
+
diff --git a/pkgs/development/qtcreator/default.nix b/pkgs/development/qtcreator/default.nix
index 4051ac21836..c0647a6df4a 100644
--- a/pkgs/development/qtcreator/default.nix
+++ b/pkgs/development/qtcreator/default.nix
@@ -1,4 +1,7 @@
-{ stdenv, fetchurl, makeWrapper, qtLib, withDocumentation ? false }:
+{ stdenv, fetchurl, makeWrapper
+, qtbase, qtquickcontrols, qtscript, qtdeclarative
+, withDocumentation ? false
+}:
with stdenv.lib;
@@ -16,7 +19,7 @@ stdenv.mkDerivation rec {
sha256 = "0r9ysq9hzig4ag9m8pcpw1jng2fqqns8zwp0jj893gh8ia0sq9ar";
};
- buildInputs = [ makeWrapper qtLib.base qtLib.script qtLib.quickcontrols qtLib.declarative ];
+ buildInputs = [ makeWrapper qtbase qtscript qtquickcontrols qtdeclarative ];
doCheck = false;
@@ -45,8 +48,8 @@ stdenv.mkDerivation rec {
Categories=Qt;Development;IDE;
__EOF__
# Wrap the qtcreator binary
- addToSearchPath QML2_IMPORT_PATH "${qtLib.quickcontrols}/lib/qt5/qml"
- addToSearchPath QML2_IMPORT_PATH "${qtLib.declarative}/lib/qt5/qml"
+ addToSearchPath QML2_IMPORT_PATH "${qtquickcontrols}/lib/qt5/qml"
+ addToSearchPath QML2_IMPORT_PATH "${qtdeclarative}/lib/qt5/qml"
wrapProgram $out/bin/qtcreator \
--prefix QT_PLUGIN_PATH : "$QT_PLUGIN_PATH" \
--prefix QML_IMPORT_PATH : "$QML_IMPORT_PATH" \
diff --git a/pkgs/development/tools/analysis/include-what-you-use/default.nix b/pkgs/development/tools/analysis/include-what-you-use/default.nix
index 57d5cadf98c..75e4dba003b 100644
--- a/pkgs/development/tools/analysis/include-what-you-use/default.nix
+++ b/pkgs/development/tools/analysis/include-what-you-use/default.nix
@@ -1,9 +1,8 @@
-{ stdenv, fetchurl, cmake, llvmPackages_36 }:
+{ stdenv, fetchurl, cmake, llvmPackages }:
-let
- version = "0.4";
- llvmPackages = llvmPackages_36;
-in stdenv.mkDerivation rec {
+# Also bump llvmPackages in all-packages.nix to the supported version!
+let version = "0.5"; in
+stdenv.mkDerivation rec {
name = "include-what-you-use-${version}";
src = fetchurl {
diff --git a/pkgs/development/tools/build-managers/apache-maven/default.nix b/pkgs/development/tools/build-managers/apache-maven/default.nix
index ba8f2474f44..96bbc2be0b2 100644
--- a/pkgs/development/tools/build-managers/apache-maven/default.nix
+++ b/pkgs/development/tools/build-managers/apache-maven/default.nix
@@ -2,7 +2,7 @@
assert jdk != null;
-let version = "3.3.3"; in
+let version = "3.3.9"; in
stdenv.mkDerivation rec {
name = "apache-maven-${version}";
@@ -10,7 +10,7 @@ stdenv.mkDerivation rec {
src = fetchurl {
url = "mirror://apache/maven/maven-3/${version}/binaries/${name}-bin.tar.gz";
- sha256 = "0ya71kxx0isvdnxz3n0rcynlgjah06mvp5r039x61wxr5ahw939s";
+ sha256 = "6e3e9c949ab4695a204f74038717aa7b2689b1be94875899ac1b3fe42800ff82";
};
buildInputs = [ makeWrapper ];
diff --git a/pkgs/development/tools/build-managers/gradle/default.nix b/pkgs/development/tools/build-managers/gradle/default.nix
index 8055a918ff3..e451370c9eb 100644
--- a/pkgs/development/tools/build-managers/gradle/default.nix
+++ b/pkgs/development/tools/build-managers/gradle/default.nix
@@ -8,7 +8,7 @@ rec {
mkdir -pv $out/lib/gradle/
cp -rv lib/ $out/lib/gradle/
- gradle_launcher_jar=$(echo $out/gradle/lib/gradle-launcher-*.jar)
+ gradle_launcher_jar=$(echo $out/lib/gradle/lib/gradle-launcher-*.jar)
test -f $gradle_launcher_jar
makeWrapper ${jdk}/bin/java $out/bin/gradle \
--set JAVA_HOME ${jdk} \
@@ -34,12 +34,12 @@ rec {
};
};
- gradle28 = gradleGen rec {
- name = "gradle-2.8";
+ gradleLatest = gradleGen rec {
+ name = "gradle-2.9";
src = fetchurl {
url = "http://services.gradle.org/distributions/${name}-bin.zip";
- sha256 = "1jq3m6ihvcxyp37mwsg3i8li9hd6rpv8ri8ih2mgvph4y71bk3d8";
+ sha256 = "c9159ec4362284c0a38d73237e224deae6139cbde0db4f0f44e1c7691dd3de2f";
};
};
diff --git a/pkgs/development/tools/devpi-client/default.nix b/pkgs/development/tools/devpi-client/default.nix
new file mode 100644
index 00000000000..5db62da06d8
--- /dev/null
+++ b/pkgs/development/tools/devpi-client/default.nix
@@ -0,0 +1,20 @@
+{ stdenv, fetchurl, pythonPackages, python} :
+
+pythonPackages.buildPythonPackage rec {
+ name = "devpi-client-${version}";
+ version = "2.3.2";
+
+ src = fetchurl {
+ url = "https://pypi.python.org/packages/source/d/devpi-client/devpi-client-${version}.tar.gz";
+ md5= "bfc8cd768f983fd0585c347bca00c8bb";
+ };
+
+ buildInputs = [ pythonPackages.tox pythonPackages.check-manifest pythonPackages.devpi-common pythonPackages.pkginfo ];
+ meta = {
+ homepage = http://doc.devpi.net;
+ description = "Github-style pypi index server and packaging meta tool";
+ license = stdenv.lib.licenses.mit;
+ maintainers = [stdenv.lib.maintainers.lewo];
+
+ };
+}
diff --git a/pkgs/development/tools/haskell/cabal2nix/cabal2nix.nix b/pkgs/development/tools/haskell/cabal2nix/cabal2nix.nix
index 89a56f1dbad..68c85fb2951 100644
--- a/pkgs/development/tools/haskell/cabal2nix/cabal2nix.nix
+++ b/pkgs/development/tools/haskell/cabal2nix/cabal2nix.nix
@@ -6,12 +6,12 @@
mkDerivation rec {
pname = "cabal2nix";
- version = "20150922";
+ version = "20151217";
src = fetchFromGitHub {
owner = "nixos";
repo = "cabal2nix";
rev = "v${version}";
- sha256 = "17s800yd8mm48yjjqiayvycaf8z0y1giwp8jp271875wdrx3p75a";
+ sha256 = "1140ym5j1prvzyfw8q784dr0hwvfw6s4h63j3a4j67cawa2dbkr5";
};
postUnpack = "sourceRoot+=/${pname}";
isLibrary = false;
diff --git a/pkgs/development/tools/haskell/cabal2nix/distribution-nixpkgs.nix b/pkgs/development/tools/haskell/cabal2nix/distribution-nixpkgs.nix
index 6c2243628da..7aac407e3ce 100644
--- a/pkgs/development/tools/haskell/cabal2nix/distribution-nixpkgs.nix
+++ b/pkgs/development/tools/haskell/cabal2nix/distribution-nixpkgs.nix
@@ -7,12 +7,12 @@
mkDerivation rec {
pname = "distribution-nixpkgs";
- version = "20150922";
+ version = "1";
src = fetchFromGitHub {
owner = "nixos";
repo = "cabal2nix";
- rev = "v${version}";
- sha256 = "17s800yd8mm48yjjqiayvycaf8z0y1giwp8jp271875wdrx3p75a";
+ rev = "v20151217";
+ sha256 = "1140ym5j1prvzyfw8q784dr0hwvfw6s4h63j3a4j67cawa2dbkr5";
};
postUnpack = "sourceRoot+=/${pname}";
libraryHaskellDepends = [
diff --git a/pkgs/development/tools/haskell/cabal2nix/hackage2nix.nix b/pkgs/development/tools/haskell/cabal2nix/hackage2nix.nix
index 422ab0fb18f..b2b3b46581a 100644
--- a/pkgs/development/tools/haskell/cabal2nix/hackage2nix.nix
+++ b/pkgs/development/tools/haskell/cabal2nix/hackage2nix.nix
@@ -7,12 +7,12 @@
mkDerivation rec {
pname = "hackage2nix";
- version = "20150922";
+ version = "20151217";
src = fetchFromGitHub {
owner = "nixos";
repo = "cabal2nix";
rev = "v${version}";
- sha256 = "17s800yd8mm48yjjqiayvycaf8z0y1giwp8jp271875wdrx3p75a";
+ sha256 = "1140ym5j1prvzyfw8q784dr0hwvfw6s4h63j3a4j67cawa2dbkr5";
};
postUnpack = "sourceRoot+=/${pname}";
isLibrary = false;
diff --git a/pkgs/development/tools/misc/texinfo/6.0.nix b/pkgs/development/tools/misc/texinfo/6.0.nix
index 28b05866b84..507ca22cd1a 100644
--- a/pkgs/development/tools/misc/texinfo/6.0.nix
+++ b/pkgs/development/tools/misc/texinfo/6.0.nix
@@ -25,7 +25,7 @@ stdenv.mkDerivation rec {
doCheck = interactive # simplify bootstrapping
&& !stdenv.isDarwin && !stdenv.isSunOS/*flaky*/;
- meta = {
+ meta = with stdenv.lib; {
homepage = "http://www.gnu.org/software/texinfo/";
description = "The GNU documentation system";
license = licenses.gpl3Plus;
diff --git a/pkgs/development/tools/vagrant/default.nix b/pkgs/development/tools/vagrant/default.nix
index a39c53f676a..b3b2040559a 100644
--- a/pkgs/development/tools/vagrant/default.nix
+++ b/pkgs/development/tools/vagrant/default.nix
@@ -4,11 +4,11 @@
assert stdenv.system == "x86_64-linux" || stdenv.system == "i686-linux";
let
- version = "1.7.4";
+ version = "1.8.0";
rake = buildRubyGem {
inherit ruby;
- name = "rake-10.3.2";
- sha256 = "0nvpkjrpsk8xxnij2wd1cdn6arja9q11sxx4aq4fz18bc6fss15m";
+ name = "rake-10.4.2";
+ sha256 = "1rn03rqlf1iv6n87a78hkda2yqparhhaivfjpizblmxvlw2hk5r8";
};
in
@@ -18,13 +18,13 @@ stdenv.mkDerivation rec {
src =
if stdenv.system == "x86_64-linux" then
fetchurl {
- url = "https://dl.bintray.com/mitchellh/vagrant/vagrant_${version}_x86_64.deb";
- sha256 = "0dl3cskpz7d8mmv0ah86426vlx0lj1wkjdlb5gc868dfsysw5lnw";
+ url = "https://releases.hashicorp.com/vagrant/${version}/vagrant_${version}_x86_64.deb";
+ sha256 = "0hvi6db5lphgzsykm1wn76jj4wwmm6lshvvd0qz7ipyyyhnd7sjp";
}
else
fetchurl {
- url = "https://dl.bintray.com/mitchellh/vagrant/vagrant_${version}_i686.deb";
- sha256 = "0sns9q48c6b2sabp6bwkppx8ffp774jhv69jrv225qrnifx12105";
+ url = "https://releases.hashicorp.com/vagrant/${version}/vagrant_${version}_i686.deb";
+ sha256 = "1jvscbxqbhavw4q81y5718qbyj74b9lwfw3gb4c1f4jmgm08wxxk";
};
meta = with stdenv.lib; {
@@ -48,9 +48,10 @@ stdenv.mkDerivation rec {
# overwrite embedded binaries
- # curl: curl
- rm opt/vagrant/embedded/bin/curl
+ # curl: curl, curl-config
+ rm opt/vagrant/embedded/bin/{curl,curl-config}
ln -s ${curl}/bin/curl opt/vagrant/embedded/bin
+ ln -s ${curl}/bin/curl-config opt/vagrant/embedded/bin
# libarchive: bsdtar, bsdcpio
rm opt/vagrant/embedded/bin/{bsdtar,bsdcpio}
@@ -62,8 +63,8 @@ stdenv.mkDerivation rec {
ln -s ${openssl}/bin/c_rehash opt/vagrant/embedded/bin
ln -s ${openssl}/bin/openssl opt/vagrant/embedded/bin
- # ruby: erb, gem, irb, rake, rdoc, ri, ruby, testrb
- rm opt/vagrant/embedded/bin/{erb,gem,irb,rake,rdoc,ri,ruby,testrb}
+ # ruby: erb, gem, irb, rake, rdoc, ri, ruby
+ rm opt/vagrant/embedded/bin/{erb,gem,irb,rake,rdoc,ri,ruby}
ln -s ${ruby}/bin/erb opt/vagrant/embedded/bin
ln -s ${ruby}/bin/gem opt/vagrant/embedded/bin
ln -s ${ruby}/bin/irb opt/vagrant/embedded/bin
@@ -71,7 +72,6 @@ stdenv.mkDerivation rec {
ln -s ${ruby}/bin/rdoc opt/vagrant/embedded/bin
ln -s ${ruby}/bin/ri opt/vagrant/embedded/bin
ln -s ${ruby}/bin/ruby opt/vagrant/embedded/bin
- ln -s ${ruby}/bin/testrb opt/vagrant/embedded/bin
# libiconv: iconv
rm opt/vagrant/embedded/bin/iconv
@@ -96,12 +96,12 @@ stdenv.mkDerivation rec {
preFixup = ''
# 'hide' the template file from shebang-patching
- chmod -x $out/opt/vagrant/embedded/gems/gems/bundler-1.10.5/lib/bundler/templates/Executable
+ chmod -x $out/opt/vagrant/embedded/gems/gems/bundler-1.10.6/lib/bundler/templates/Executable
chmod -x $out/opt/vagrant/embedded/gems/gems/vagrant-${version}/plugins/provisioners/salt/bootstrap-salt.sh
'';
postFixup = ''
- chmod +x $out/opt/vagrant/embedded/gems/gems/bundler-1.10.5/lib/bundler/templates/Executable
+ chmod +x $out/opt/vagrant/embedded/gems/gems/bundler-1.10.6/lib/bundler/templates/Executable
chmod +x $out/opt/vagrant/embedded/gems/gems/vagrant-${version}/plugins/provisioners/salt/bootstrap-salt.sh
'';
}
diff --git a/pkgs/games/anki/default.nix b/pkgs/games/anki/default.nix
index 735d260560d..f99a8ddb4a8 100644
--- a/pkgs/games/anki/default.nix
+++ b/pkgs/games/anki/default.nix
@@ -23,6 +23,10 @@ stdenv.mkDerivation rec {
buildInputs = [ python py.wrapPython lame mplayer libpulseaudio ];
+ patchPhase = ''
+ substituteInPlace anki/sound.py --replace '["mplayer"]' '["${mplayer}/bin/mplayer"]'
+ '';
+
preConfigure = ''
substituteInPlace anki/anki \
--replace /usr/share/ $out/share/
diff --git a/pkgs/games/beret/default.nix b/pkgs/games/beret/default.nix
index b36ec6a43f6..e2e4f5af977 100644
--- a/pkgs/games/beret/default.nix
+++ b/pkgs/games/beret/default.nix
@@ -35,6 +35,7 @@ stdenv.mkDerivation {
license = licenses.lgpl2;
maintainers = with maintainers; [ lovek323 ];
platforms = platforms.all;
+ broken = true; # source won't download, and no replacement is visible
};
}
diff --git a/pkgs/games/eboard/default.nix b/pkgs/games/eboard/default.nix
index 8dd06fa6a28..3d070c5eafb 100644
--- a/pkgs/games/eboard/default.nix
+++ b/pkgs/games/eboard/default.nix
@@ -1,8 +1,8 @@
-{ stdenv, fetchurl, pkgconfig, gtk }:
+{ stdenv, fetchurl, perl, pkgconfig, gtk }:
stdenv.mkDerivation {
name = "eboard-1.1.1";
-
+
src = fetchurl {
url = mirror://sourceforge/eboard/eboard-1.1.1.tar.bz2;
sha256 = "0vm25j1s2zg1lipwjv9qrcm877ikfmk1yh34i8f5l3bwd63115xd";
@@ -10,7 +10,14 @@ stdenv.mkDerivation {
patches = [ ./eboard.patch ];
- buildInputs = [ pkgconfig gtk ];
+ buildInputs = [ gtk ];
+ nativeBuildInputs = [ perl pkgconfig ];
+
+ preConfigure = ''
+ patchShebangs ./configure
+ '';
+
+ NIX_CFLAGS_COMPILE = [ "-fpermissive" ];
meta = {
homepage = http://www.bergo.eng.br/eboard/;
diff --git a/pkgs/games/mnemosyne/default.nix b/pkgs/games/mnemosyne/default.nix
index e01999b2ecc..8624e168f92 100644
--- a/pkgs/games/mnemosyne/default.nix
+++ b/pkgs/games/mnemosyne/default.nix
@@ -2,9 +2,7 @@
, fetchurl
, buildPythonPackage
, pyqt4
-, matplotlib
-, cherrypy
-, sqlite3
+, pythonPackages
}:
let
version = "2.3.2";
@@ -14,17 +12,17 @@ in buildPythonPackage rec {
url = "http://sourceforge.net/projects/mnemosyne-proj/files/mnemosyne/${name}/Mnemosyne-${version}.tar.gz";
sha256 = "0jkrw45i4v24p6xyq94z7rz5948h7f5dspgs5mcdaslnlp2accfp";
};
- pythonPath = [
+ propagatedBuildInputs = with pythonPackages; [
pyqt4
matplotlib
cherrypy
sqlite3
+ webob
];
preConfigure = ''
substituteInPlace setup.py --replace /usr $out
find . -type f -exec grep -H sys.exec_prefix {} ';' | cut -d: -f1 | xargs sed -i s,sys.exec_prefix,\"$out\",
'';
- installCommand = "python setup.py install --prefix=$out";
meta = {
homepage = http://mnemosyne-proj.org/;
description = "Spaced-repetition software";
diff --git a/pkgs/misc/emulators/higan/0001-change-flags.diff b/pkgs/misc/emulators/higan/0001-change-flags.diff
new file mode 100644
index 00000000000..78f4a248c5f
--- /dev/null
+++ b/pkgs/misc/emulators/higan/0001-change-flags.diff
@@ -0,0 +1,35 @@
+diff -rupN higan_v095-source.orig/GNUmakefile higan_v095-source/GNUmakefile
+--- higan_v095-source.orig/GNUmakefile 2015-11-04 10:28:26.173428178 +0100
++++ higan_v095-source/GNUmakefile 2015-11-04 10:28:31.752231593 +0100
+@@ -12,7 +12,8 @@ target := tomoko
+ # console := true
+
+ # compiler
+-flags += -I. -O3
++flags += -I. $(CXXFLAGS)
++link += $(LDFLAGS)
+ objects := libco
+
+ # profile-guided optimization mode
+@@ -43,7 +44,7 @@ ifeq ($(platform),windows)
+ else ifeq ($(platform),macosx)
+ flags += -march=native
+ else ifeq ($(platform),linux)
+- flags += -march=native -fopenmp
++ flags += -fopenmp
+ link += -fopenmp
+ link += -Wl,-export-dynamic
+ link += -lX11 -lXext -ldl
+diff -rupN higan_v095-source.orig/icarus/GNUmakefile higan_v095-source/icarus/GNUmakefile
+--- higan_v095-source.orig/icarus/GNUmakefile 2015-11-04 10:28:26.186486119 +0100
++++ higan_v095-source/icarus/GNUmakefile 2015-11-04 10:28:48.755059317 +0100
+@@ -1,8 +1,8 @@
+ include ../nall/GNUmakefile
+ include ../hiro/GNUmakefile
+
+-flags += -I.. -O3
+-link +=
++flags += -I.. $(CXXFLAGS)
++link += $(LDFLAGS)
+ objects := obj/hiro.o obj/icarus.o
+ objects += $(if $(call streq,$(platform),windows),obj/resource.o)
diff --git a/pkgs/misc/emulators/higan/default.nix b/pkgs/misc/emulators/higan/default.nix
index 95793de9884..080805e9df5 100644
--- a/pkgs/misc/emulators/higan/default.nix
+++ b/pkgs/misc/emulators/higan/default.nix
@@ -1,56 +1,51 @@
{ stdenv, fetchurl
-, pkgconfig
+, p7zip, pkgconfig
, libX11, libXv
, udev
, mesa, SDL
, libao, openal, libpulseaudio
-, profile ? "performance" # Options: accuracy, balanced, performance
-, guiToolkit ? "gtk" # can be gtk or qt4
-, gtk ? null, qt4 ? null }:
-
-assert guiToolkit == "gtk" || guiToolkit == "qt4";
-assert (guiToolkit == "gtk" -> gtk != null) || (guiToolkit == "qt4" -> qt4 != null);
+, gtk, gtksourceview
+, profile ? "balanced" # Options: accuracy, balanced, performance
+}:
with stdenv.lib;
stdenv.mkDerivation rec {
- name = "higan-${version}";
- version = "094";
- sourceName = "higan_v${version}-source";
+ name = "higan-${meta.version}";
+ sourceName = "higan_v${meta.version}-source";
src = fetchurl {
- urls = [ "http://files.byuu.org/download/${sourceName}.tar.xz" ];
- sha256 = "06qm271pzf3qf2labfw2lx6k0xcd89jndmn0jzmnc40cspwrs52y";
+ urls = [ "http://download.byuu.org/${sourceName}.7z" ];
+ sha256 = "0xsgyijcf4psi3mlahr5iq7vbbw3jby1if5pkhg8c5xqckpi2fj4";
curlOpts = "--user-agent 'Mozilla/5.0'"; # the good old user-agent trick...
};
+ patches = [ ./0001-change-flags.diff ];
+
buildInputs =
- [ pkgconfig libX11 libXv udev mesa SDL libao openal libpulseaudio ]
- ++ optionals (guiToolkit == "gtk") [ gtk ]
- ++ optionals (guiToolkit == "qt4") [ qt4 ];
+ [ p7zip pkgconfig libX11 libXv udev mesa SDL libao openal libpulseaudio gtk gtksourceview ];
+
+ unpackPhase = ''
+ 7z x $src
+ sourceRoot=${sourceName}
+ '';
buildPhase = ''
- make phoenix=${guiToolkit} profile=${profile} -C ananke
- make phoenix=${guiToolkit} profile=${profile}
+ make compiler=c++ profile=${profile} -C icarus
+ make compiler=c++ profile=${profile}
'';
installPhase = ''
- install -dm 755 $out/share/applications $out/share/pixmaps $out/share/higan/Video\ Shaders $out/bin $out/lib
-
+ install -dm 755 $out/bin $out/share/applications $out/share/higan $out/share/pixmaps
+ install -m 755 icarus/icarus $out/bin/
+ install -m 755 out/tomoko $out/bin/
+ (cd $out/bin; ln -Ts tomoko higan) #backwards compatibility
install -m 644 data/higan.desktop $out/share/applications/
install -m 644 data/higan.png $out/share/pixmaps/
- cp -dr --no-preserve=ownership profile/* data/cheats.bml $out/share/higan/
- cp -dr --no-preserve=ownership shaders/*.shader $out/share/higan/Video\ Shaders/
-
- install -m 755 out/higan $out/bin/higan
- install -m 644 ananke/libananke.so $out/lib/libananke.so.1
- (cd $out/lib && ln -s libananke.so.1 libananke.so)
+ cp -dr --no-preserve='ownership' profile/* data/cheats.bml $out/share/higan/
'';
fixupPhase = ''
- oldRPath=$(patchelf --print-rpath $out/bin/higan)
- patchelf --set-rpath $oldRPath:$out/lib $out/bin/higan
-
# A dirty workaround, suggested by @cpages:
# we create a first-run script to populate
# the local $HOME with all the auxiliary
@@ -67,6 +62,7 @@ stdenv.mkDerivation rec {
'';
meta = {
+ version = "095";
description = "An open-source, cycle-accurate Nintendo multi-system emulator";
longDescription = ''
Higan (formerly bsnes) is a Nintendo multi-system emulator.
diff --git a/pkgs/misc/emulators/mgba/default.nix b/pkgs/misc/emulators/mgba/default.nix
index edf4c6a060d..ea11e3a33e2 100644
--- a/pkgs/misc/emulators/mgba/default.nix
+++ b/pkgs/misc/emulators/mgba/default.nix
@@ -1,4 +1,5 @@
-{ stdenv, fetchurl, pkgconfig, cmake, ffmpeg, imagemagick, libzip, SDL2, qt5 }:
+{ stdenv, fetchurl, pkgconfig, cmake, ffmpeg, imagemagick, libzip, SDL2
+, qtbase, qtmultimedia }:
stdenv.mkDerivation rec {
name = "mgba-${meta.version}";
@@ -9,7 +10,7 @@ stdenv.mkDerivation rec {
buildInputs = [
pkgconfig cmake ffmpeg imagemagick libzip SDL2
- qt5.base qt5.multimedia
+ qtbase qtmultimedia
];
enableParallelBuilding = true;
diff --git a/pkgs/misc/emulators/wine/versions.nix b/pkgs/misc/emulators/wine/versions.nix
index bfdbd0177da..057f5214aa2 100644
--- a/pkgs/misc/emulators/wine/versions.nix
+++ b/pkgs/misc/emulators/wine/versions.nix
@@ -1,27 +1,26 @@
-{
- unstable = {
- wineVersion = "1.8-rc3";
- wineSha256 = "0j65v0jr1z56p9g16c0412ssx44zif8gfna7a6m865wz8gs1fnm6";
+rec {
+ stable = {
+ wineVersion = "1.8";
+ wineSha256 = "1x66lzpk7v8qx57clmcq5ag7yh3mqplf1plypwghgchjh70lafzk";
+ ## see http://wiki.winehq.org/Gecko
geckoVersion = "2.40";
geckoSha256 = "00nkaxhb9dwvf53ij0q75fb9fh7pf43hmwx6rripcax56msd2a8s";
gecko64Version = "2.40";
gecko64Sha256 = "0c4jikfzb4g7fyzp0jcz9fk2rpdl1v8nkif4dxcj28nrwy48kqn3";
+ ## see http://wiki.winehq.org/Mono
monoVersion = "4.5.6";
monoSha256 = "09dwfccvfdp3walxzp6qvnyxdj2bbyw9wlh6cxw2sx43gxriys5c";
};
- stable = {
- wineVersion = "1.6.2";
- wineSha256 = "1gmc0ljgfz3qy50mdxcwwjcr2yrpz54jcs2hdszsrk50wpnrxazh";
- geckoVersion = "2.21";
- geckoSha256 = "1n0zccnvchkg0m896sjx5psk4bxw9if32xyxib1rbfdasykay7zh";
- gecko64Version = "2.21";
- gecko64Sha256 = "0grc86dkq90i59zw43hakh62ra1ajnk11m64667xjrlzi7f0ndxw";
- monoVersion = "4.5.6";
- monoSha256 = "09dwfccvfdp3walxzp6qvnyxdj2bbyw9wlh6cxw2sx43gxriys5c";
+ unstable = {
+ inherit (stable)
+ wineVersion wineSha256
+ geckoVersion geckoSha256
+ gecko64Version gecko64Sha256
+ monoVersion monoSha256;
};
staging = {
- version = "1.8-rc3";
- sha256 = "1jp91w4sn10ycd21rwqsgxmpr425r4in4d2g085dhiw6g57ixfnj";
+ version = unstable.wineVersion;
+ sha256 = "1mi2nk5cjgfrkv8g082d4klniz1dprmvvida8c30qf2j4jykn3vb";
};
winetricks = {
version = "20151116";
diff --git a/pkgs/misc/vim-plugins/default.nix b/pkgs/misc/vim-plugins/default.nix
index 30c4c7d63b1..603e4db4ac6 100644
--- a/pkgs/misc/vim-plugins/default.nix
+++ b/pkgs/misc/vim-plugins/default.nix
@@ -302,11 +302,11 @@ rec {
};
fugitive = buildVimPluginFrom2Nix { # created by nix#NixDerivation
- name = "fugitive-2015-12-01";
+ name = "fugitive-2015-12-15";
src = fetchgit {
url = "git://github.com/tpope/vim-fugitive";
- rev = "d854197c03c0b027cca41abf86a5557c5473b82f";
- sha256 = "cbe8333d1d359c5ba556d8f59e6700d14c0425a3b333503e3411e48b4b239cda";
+ rev = "8851b8fe643517af160f59dfc3d88a0c4eed1fa5";
+ sha256 = "bba527606ab63cc6cce24ca1b44226aa37aced7f1aac4c352a6b83ce522c4b5f";
};
dependencies = [];
@@ -357,11 +357,11 @@ rec {
};
neomake = buildVimPluginFrom2Nix { # created by nix#NixDerivation
- name = "neomake-2015-12-05";
+ name = "neomake-2015-12-11";
src = fetchgit {
url = "git://github.com/benekastah/neomake";
- rev = "73f186e069d432b7746c1c09ac085c68d6e120f8";
- sha256 = "e6bbe895e373a3b596291e0420d856928cd874485c4c2f5b7c2972738696464b";
+ rev = "d4c0a6f062a0d098126e87bb718b92fe7b79fd97";
+ sha256 = "1b2f1e024ffdfe0613c0aeb4c6fc64d64c6a25a00841538b7a371efd34cb8615";
};
dependencies = [];
@@ -434,11 +434,11 @@ rec {
};
vim-go = buildVimPluginFrom2Nix { # created by nix#NixDerivation
- name = "vim-go-2015-12-08";
+ name = "vim-go-2015-12-15";
src = fetchgit {
url = "git://github.com/fatih/vim-go";
- rev = "0aeb07e9305f5696bfc1cffb1e3b2226d851b913";
- sha256 = "6bd784ef49f68526b26b25149f153b2caafa5840690ee65452b9ee6d0e99814e";
+ rev = "70c363044df808e34d947815d01a37d4e7564421";
+ sha256 = "9f1764a5e8c7450c4af9fc64b3170e10d89c4d6b4ad69a758878bed16362cf09";
};
dependencies = [];
@@ -511,11 +511,11 @@ rec {
};
vim-buffergator = buildVimPluginFrom2Nix { # created by nix#NixDerivation
- name = "vim-buffergator-2015-08-15";
+ name = "vim-buffergator-2015-12-16";
src = fetchgit {
url = "git://github.com/jeetsukumaran/vim-buffergator";
- rev = "ed3bfc2b560f687075d9c2225079bfe43f1f2390";
- sha256 = "f2024ecf447e5cca2d66efdb6d31e2890e7210e142728873ab521b8c5ea17c11";
+ rev = "ab5ef1a2c3b5076204ed3ee1601fcedda379967b";
+ sha256 = "5c479d884bccf6a07891aff2cb09fbaf59d8460bdc91ad9fb19cf0d8e020c29d";
};
dependencies = [];
@@ -621,11 +621,11 @@ rec {
};
vimtex = buildVimPluginFrom2Nix { # created by nix#NixDerivation
- name = "vimtex-2015-12-11";
+ name = "vimtex-2015-12-16";
src = fetchgit {
url = "git://github.com/lervag/vimtex";
- rev = "62d0b9b44c53eb2302a50ad6f7a8446ab10e233c";
- sha256 = "b847f22a40e605c05a5e7672562e2e58b0effd5615c1e199937a920002ff4634";
+ rev = "e982722e89462716e2ecdb6ce7aa9baea6dc8c98";
+ sha256 = "4c0e8399b97cbd24b0131c3e22fc8873d04576e21156b80e5c678b4ce3d19fe0";
};
dependencies = [];
@@ -727,44 +727,44 @@ rec {
};
neocomplete-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
- name = "neocomplete-vim-2015-12-11";
+ name = "neocomplete-vim-2015-12-13";
src = fetchgit {
url = "git://github.com/shougo/neocomplete.vim";
- rev = "1c8d6356ad562e7430f091950530925f0a9dad5f";
- sha256 = "148d61fff5e07547a09e41f9105fa3a4bbecf82089855cab8d5b26cccddec0f5";
+ rev = "d1cb4c57e5eb8b453b63432dcbcb45a15c0fd07e";
+ sha256 = "a704696e66101875e98a1b2b6815acad647b87a07a3842fd6f9f91b8a70411e5";
};
dependencies = [];
};
neosnippet-snippets = buildVimPluginFrom2Nix { # created by nix#NixDerivation
- name = "neosnippet-snippets-2015-12-05";
+ name = "neosnippet-snippets-2015-12-13";
src = fetchgit {
url = "git://github.com/shougo/neosnippet-snippets";
- rev = "42e81d1409fd08a3acec8c82c8480880338e4808";
- sha256 = "fb8aca8264851bceecf06d483162a55897f8ecdbe873fbc383d5a05cd0a50e1f";
+ rev = "ec9267240ecb855657de830c9c68e5f6e34cfe65";
+ sha256 = "319a7ac504b462f7e466c9e02ff6e54b8374e5970f148552986c83136c423854";
};
dependencies = [];
};
neosnippet-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
- name = "neosnippet-vim-2015-12-12";
+ name = "neosnippet-vim-2015-12-16";
src = fetchgit {
url = "git://github.com/shougo/neosnippet.vim";
- rev = "7dc7ce803e28783bcbb829bfdbe8bbae6e51139a";
- sha256 = "bddcd3e651fbd96cb740fec67782439f3d899715e564b539e6e19eef34750d56";
+ rev = "cfc99eedb5caf3d6baf867db5220a891b4686699";
+ sha256 = "aa34c6e28eb281bec6e617f03eb5e094cd2cfe18951f9e4823dda0ccdabaffad";
};
dependencies = [];
};
unite-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
- name = "unite-vim-2015-12-05";
+ name = "unite-vim-2015-12-13";
src = fetchgit {
url = "git://github.com/shougo/unite.vim";
- rev = "f376de838a46c4848a81a2e95ebc4116732b1fef";
- sha256 = "372c353040b3e79dd6c223e0ead442090e4257daabd0d002e733d9cb691c778c";
+ rev = "aefd6c32ef8dc5b357efe7d8e5cd3dd4aa785d5c";
+ sha256 = "83562a15afc1c41a5d407fd0eb7d26beec216a9431dd80992bcd615afd595e5e";
};
dependencies = [];
@@ -822,11 +822,11 @@ rec {
};
vim-quickrun = buildVimPluginFrom2Nix { # created by nix#NixDerivation
- name = "vim-quickrun-2015-11-14";
+ name = "vim-quickrun-2015-12-17";
src = fetchgit {
url = "git://github.com/thinca/vim-quickrun";
- rev = "5bcb966b80d9d9e4051d9882a07fd61a2ea39d23";
- sha256 = "894a0f5c569ddd633514084e8021322b2fe62889fa8d32b2211d7bab04a701f2";
+ rev = "97e1c8f6674d3ccce4730510d67c4e15894adcdc";
+ sha256 = "c61167569d5b05767fdaffc1b09aab729c777d01afaff8c0efd641a61ebe758c";
};
dependencies = [];
@@ -877,11 +877,11 @@ rec {
};
youcompleteme = buildVimPluginFrom2Nix { # created by nix#NixDerivation
- name = "youcompleteme-2015-12-11";
+ name = "youcompleteme-2015-12-13";
src = fetchgit {
url = "git://github.com/valloric/youcompleteme";
- rev = "14083d939d4b1341dc6ad2053914c327b7d647b1";
- sha256 = "ec900cb1fabfb1690ae735a46375e1f5044f70df5fd34e2ea233e9b4f558e342";
+ rev = "93c2a8644bcfc84590bea5e19eab350fe245e504";
+ sha256 = "32aaa99c5398d65875c1fdf5ed22f58aeeb267a2840930479523815b94b4111c";
};
dependencies = [];
buildInputs = [
@@ -1127,11 +1127,11 @@ rec {
};
sensible = buildVimPluginFrom2Nix { # created by nix#NixDerivation
- name = "sensible-2015-09-24";
+ name = "sensible-2015-12-11";
src = fetchgit {
url = "git://github.com/tpope/vim-sensible";
- rev = "26f8783e08efef27fc01e0df6465b8f94c8bf270";
- sha256 = "e04193a4f38bdc3c552ce5033bb3922a7ccae84ec6e1e46e12e71e1afb93cac3";
+ rev = "8c4429c70c186f9be47121b126c13095793062a1";
+ sha256 = "f3b5de776ae4fa2c8769f2f04639d2a0218c88345beba9364899d359d32cf6e5";
};
dependencies = [];
@@ -1214,22 +1214,22 @@ rec {
};
tlib = buildVimPluginFrom2Nix { # created by nix#NixDerivation
- name = "tlib-2015-12-11";
+ name = "tlib-2015-12-12";
src = fetchgit {
url = "git://github.com/tomtom/tlib_vim";
- rev = "b957a0a6b7f7a1b0ffa370963712b4ef526b5f76";
- sha256 = "12168055ecafbbde4afafe7d5fce8046b21d62d748326a290b5dc4239b30db34";
+ rev = "599934acbbcf1637616878fc6e8f5aba1b301a29";
+ sha256 = "2401a623363bf31fa9f152faae90268d06ed5cef8352163c19b0c7b013e5c0b7";
};
dependencies = [];
};
undotree = buildVimPluginFrom2Nix { # created by nix#NixDerivation
- name = "undotree-2015-10-28";
+ name = "undotree-2015-12-16";
src = fetchgit {
url = "git://github.com/mbbill/undotree";
- rev = "74874d92d4bde3d026f2d0f3ff780b1787ba4e84";
- sha256 = "aa36bd56b1af88b55aac561ba7339944a28f8159c11f1058abb692eb9f99990d";
+ rev = "39e5cf0fc241c64e920f91d52299b444475d54df";
+ sha256 = "767c84917392d1b370ef542c218c0f7bd642e59a7176735bbdd80c8a8f8b04ca";
};
dependencies = [];
@@ -1489,11 +1489,11 @@ rec {
};
vim-gitgutter = buildVimPluginFrom2Nix { # created by nix#NixDerivation
- name = "vim-gitgutter-2015-12-10";
+ name = "vim-gitgutter-2015-12-16";
src = fetchgit {
url = "git://github.com/airblade/vim-gitgutter";
- rev = "28aea43adf187ca01f0255c5a9418a5aac6380f1";
- sha256 = "74c6655373fd7d671e8599cd1996b962b12fc23fcc1c6437a9a09429509f3efb";
+ rev = "f52f875fc7b25b601366bd6c0d67c53ad84f9559";
+ sha256 = "43e36cff7c12115f05dc3dc5225f38e6c084bf37f8a43a600ad54861392eadf7";
};
dependencies = [];
@@ -1555,11 +1555,11 @@ rec {
};
vim-snippets = buildVimPluginFrom2Nix { # created by nix#NixDerivation
- name = "vim-snippets-2015-12-08";
+ name = "vim-snippets-2015-12-17";
src = fetchgit {
url = "git://github.com/honza/vim-snippets";
- rev = "c0040abe4e54786c77ec41d6dbd1be916a03a506";
- sha256 = "20b8a1e4ae563b5119d181d19538d540e4811cd20dd2509cc29940a01208bc7e";
+ rev = "d5153d63b16e956e892f039ac5982963660a1c68";
+ sha256 = "c79fc743ec1e565111876357136cee1a04ed6b3f58d1586df322a38b026f8a49";
};
dependencies = [];
diff --git a/pkgs/os-specific/linux/alsa-utils/default.nix b/pkgs/os-specific/linux/alsa-utils/default.nix
index 9f6fc98b5cf..bcac888d471 100644
--- a/pkgs/os-specific/linux/alsa-utils/default.nix
+++ b/pkgs/os-specific/linux/alsa-utils/default.nix
@@ -1,4 +1,4 @@
-{stdenv, fetchurl, alsaLib, gettext, ncurses, libsamplerate}:
+{stdenv, fetchurl, alsaLib, gettext, ncurses, libsamplerate, pciutils}:
stdenv.mkDerivation rec {
name = "alsa-utils-${version}";
@@ -12,6 +12,11 @@ stdenv.mkDerivation rec {
sha256 = "16ryhgbapp4pxyvsjc258mcj14wk7x3xs6g9bpnkqj0l7s7haq2i";
};
+ patchPhase = ''
+ substituteInPlace alsa-info/alsa-info.sh \
+ --replace "which" "type -p" \
+ --replace "lspci" "${pciutils}/bin/lspci"
+ '';
buildInputs = [ gettext alsaLib ncurses libsamplerate ];
configureFlags = "--disable-xmlto --with-udev-rules-dir=$(out)/lib/udev/rules.d";
diff --git a/pkgs/os-specific/linux/kernel/linux-testing.nix b/pkgs/os-specific/linux/kernel/linux-testing.nix
index 5cc5b2e8bca..43070f3306d 100644
--- a/pkgs/os-specific/linux/kernel/linux-testing.nix
+++ b/pkgs/os-specific/linux/kernel/linux-testing.nix
@@ -1,13 +1,13 @@
{ stdenv, fetchurl, perl, buildLinux, ... } @ args:
import ./generic.nix (args // rec {
- version = "4.4-rc5";
- modDirVersion = "4.4.0-rc5";
+ version = "4.4-rc6";
+ modDirVersion = "4.4.0-rc6";
extraMeta.branch = "4.4";
src = fetchurl {
url = "mirror://kernel/linux/kernel/v4.x/testing/linux-${version}.tar.xz";
- sha256 = "0qr1a8nmq6csbsw4cbqnn3m37a0fapj7a7cm9vj7fy7kq1rgxkpb";
+ sha256 = "1brb1v6185pf8gnff753hvpdsbdmjr5nsbvj0s4ljlpcgljrn6cb";
};
features.iwlwifi = true;
diff --git a/pkgs/os-specific/linux/lxc/default.nix b/pkgs/os-specific/linux/lxc/default.nix
index c35b6bb90e8..43a77f4c828 100644
--- a/pkgs/os-specific/linux/lxc/default.nix
+++ b/pkgs/os-specific/linux/lxc/default.nix
@@ -36,6 +36,8 @@ stdenv.mkDerivation rec {
"--sysconfdir=/etc"
"--enable-doc"
"--disable-api-docs"
+ "--with-init-script=none"
+ "--with-distro=nixos" # just to be sure it is "unknown"
] ++ optional (libapparmor != null) "--enable-apparmor"
++ optional (libselinux != null) "--enable-selinux"
++ optional (libseccomp != null) "--enable-seccomp"
diff --git a/pkgs/os-specific/linux/phc-intel/default.nix b/pkgs/os-specific/linux/phc-intel/default.nix
index c3c62dbf5eb..4eed41254f9 100644
--- a/pkgs/os-specific/linux/phc-intel/default.nix
+++ b/pkgs/os-specific/linux/phc-intel/default.nix
@@ -33,8 +33,8 @@ in stdenv.mkDerivation {
enableParallelBuilding = false;
installPhase = ''
- install -m 755 -d $out/lib/modules/${kernel.version}/extra/
- install -m 644 *.ko $out/lib/modules/${kernel.version}/extra/
+ install -m 755 -d $out/lib/modules/${kernel.modDirVersion}/extra/
+ install -m 644 *.ko $out/lib/modules/${kernel.modDirVersion}/extra/
'';
meta = with stdenv.lib; {
diff --git a/pkgs/os-specific/linux/systemd/default.nix b/pkgs/os-specific/linux/systemd/default.nix
index 54c04a8b3f2..3cff6512fe4 100644
--- a/pkgs/os-specific/linux/systemd/default.nix
+++ b/pkgs/os-specific/linux/systemd/default.nix
@@ -3,14 +3,11 @@
, glib, kbd, libxslt, coreutils, libgcrypt
, kexectools, libmicrohttpd, linuxHeaders, libseccomp
, autoreconfHook, gettext, docbook_xsl, docbook_xml_dtd_42, docbook_xml_dtd_45
-, pythonPackages ? null, pythonSupport ? false
, enableKDbus ? false
}:
assert stdenv.isLinux;
-assert pythonSupport -> pythonPackages != null;
-
stdenv.mkDerivation rec {
version = "228";
name = "systemd-${version}";
@@ -18,8 +15,8 @@ stdenv.mkDerivation rec {
src = fetchFromGitHub {
owner = "NixOS";
repo = "systemd";
- rev = "e9a321e25fe31f0fd2ec0cc28088172ebf819c7e";
- sha256 = "0cgdnzq60ji7kk27xk4scsjkghgzcms7qlqkz3k1cx3r9c8gszz9";
+ rev = "b737c07cc0234acfa87282786025d556bca91c3f";
+ sha256 = "0wca8zkn39914c232andvf3v0ni6ylv154kz3s9fcvg47rhpd5n1";
};
outputs = [ "out" "man" "doc" ];
@@ -32,7 +29,7 @@ stdenv.mkDerivation rec {
by generating an autoconf'd tarball, but that's probably not
worth it. */
autoreconfHook gettext docbook_xsl docbook_xml_dtd_42 docbook_xml_dtd_45
- ] ++ stdenv.lib.optionals pythonSupport [pythonPackages.python pythonPackages.lxml];
+ ];
configureFlags =
[ "--localstatedir=/var"
diff --git a/pkgs/os-specific/linux/udisks/2-default.nix b/pkgs/os-specific/linux/udisks/2-default.nix
index 060d9ad1dd3..35873b3a062 100644
--- a/pkgs/os-specific/linux/udisks/2-default.nix
+++ b/pkgs/os-specific/linux/udisks/2-default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchurl, pkgconfig, intltool
+{ stdenv, fetchurl, pkgconfig, intltool, gnused
, expat, acl, systemd, glib, libatasmart, polkit
, libxslt, docbook_xsl, utillinux, mdadm, libgudev
}:
@@ -21,7 +21,11 @@ stdenv.mkDerivation rec {
''
substituteInPlace src/main.c --replace \
"@path@" \
- "${utillinux}/bin:${mdadm}/sbin:/var/run/current-system/sw/bin:/var/run/current-system/sw/bin"
+ "${utillinux}/bin:${mdadm}/bin:/run/current-system/sw/bin"
+ substituteInPlace data/80-udisks2.rules \
+ --replace "/bin/sh" "${stdenv.shell}" \
+ --replace "/sbin/mdadm" "${mdadm}/bin/mdadm" \
+ --replace " sed " " ${gnused}/bin/sed "
'';
nativeBuildInputs = [ pkgconfig intltool ];
diff --git a/pkgs/os-specific/linux/uksmtools/default.nix b/pkgs/os-specific/linux/uksmtools/default.nix
new file mode 100644
index 00000000000..eeb5440f510
--- /dev/null
+++ b/pkgs/os-specific/linux/uksmtools/default.nix
@@ -0,0 +1,27 @@
+{ stdenv, fetchgit, cmake }:
+
+let version = "2015-09-25"; in
+stdenv.mkDerivation {
+ name = "uksmtools-${version}";
+
+ src = fetchgit {
+ sha256 = "0ngdmici2vgi2z02brzc3f78j1g1y9myzfxn46zlm1skg94fp692";
+ rev = "9f59a3a0b494b758aa91d7d8fa04e21b5e6463c0";
+ url = "https://github.com/pfactum/uksmtools.git";
+ };
+
+ nativeBuildInputs = [ cmake ];
+
+ enableParallelBuilding = true;
+
+ doCheck = false;
+
+ meta = with stdenv.lib; {
+ inherit version;
+ description = "Tools to control Linux UKSM (Ultra Kernel Same-page Merging)";
+ homepage = https://github.com/pfactum/uksmtools/;
+ license = licenses.gpl3Plus;
+ platforms = platforms.linux;
+ maintainers = with maintainers; [ nckx ];
+ };
+}
diff --git a/pkgs/servers/computing/slurm/default.nix b/pkgs/servers/computing/slurm/default.nix
index 5e55724a290..6df27eaf328 100644
--- a/pkgs/servers/computing/slurm/default.nix
+++ b/pkgs/servers/computing/slurm/default.nix
@@ -1,6 +1,5 @@
-{ stdenv, fetchurl, python, munge, perl, pam, openssl, mysql }:
-
-#TODO: add sview support based on gtk2
+{ stdenv, fetchurl, pkgconfig, curl, python, munge, perl, pam, openssl,
+ ncurses, mysql, gtk }:
stdenv.mkDerivation rec {
name = "slurm-llnl-${version}";
@@ -11,12 +10,12 @@ stdenv.mkDerivation rec {
sha256 = "05si1cn7zivggan25brsqfdw0ilvrlnhj96pwv16dh6vfkggzjr1";
};
- buildInputs = [ python munge perl pam openssl mysql.lib ];
+ buildInputs = [ pkgconfig curl python munge perl pam openssl mysql.lib ncurses gtk ];
- configureFlags = ''
- --with-munge=${munge}
- --with-ssl=${openssl}
- '';
+ configureFlags =
+ [ "--with-munge=${munge}"
+ "--with-ssl=${openssl}"
+ ] ++ stdenv.lib.optional (gtk == null) "--disable-gtktest";
preConfigure = ''
substituteInPlace ./doc/html/shtml2html.py --replace "/usr/bin/env python" "${python.interpreter}"
diff --git a/pkgs/servers/monitoring/net-snmp/default.nix b/pkgs/servers/monitoring/net-snmp/default.nix
index efc61b9fd6b..f2533c99b08 100644
--- a/pkgs/servers/monitoring/net-snmp/default.nix
+++ b/pkgs/servers/monitoring/net-snmp/default.nix
@@ -25,7 +25,7 @@ stdenv.mkDerivation rec {
"--with-logfile=/var/log/net-snmpd.log"
"--with-persistent-directory=/var/lib/net-snmp"
"--with-openssl=${openssl}"
- ];
+ ] ++ stdenv.lib.optional stdenv.isLinux "--with-mnttab=/proc/mounts";
buildInputs = [ autoreconfHook file perl unzip openssl ];
diff --git a/pkgs/servers/nosql/eventstore/default.nix b/pkgs/servers/nosql/eventstore/default.nix
index 9cb5dd41c1c..a42212ade08 100644
--- a/pkgs/servers/nosql/eventstore/default.nix
+++ b/pkgs/servers/nosql/eventstore/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchgit, fetchpatch, git, mono, v8, icu }:
+{ stdenv, fetchFromGitHub, fetchpatch, git, mono, v8, icu }:
# There are some similarities with the pinta derivation. We should
# have a helper to make it easy to package these Mono apps.
@@ -6,11 +6,11 @@
stdenv.mkDerivation rec {
name = "EventStore-${version}";
version = "3.0.3";
- src = fetchgit {
- url = "https://github.com/EventStore/EventStore.git";
- rev = "a1382252dd1ed0554ddb04015cdb2cbc1b0a65c1";
- sha256 = "07ir6jlli2q1yvsnyw8r8dfril6h1wmfj98yf7a6k81585v2mc6g";
- leaveDotGit = true;
+ src = fetchFromGitHub {
+ owner = "EventStore";
+ repo = "EventStore";
+ rev = "oss-v${version}";
+ sha256 = "1xz1dpnbkqqd3ph9g3z5cghr8zp14sr9y31lrdjrdydr3gm4sll2";
};
patches = [
diff --git a/pkgs/servers/tvheadend/default.nix b/pkgs/servers/tvheadend/default.nix
index 569eecd4f6e..ee51ace4b68 100644
--- a/pkgs/servers/tvheadend/default.nix
+++ b/pkgs/servers/tvheadend/default.nix
@@ -3,7 +3,7 @@
with stdenv.lib;
-let version = "4.0.7";
+let version = "4.0.8";
pkgName = "tvheadend";
in
@@ -13,7 +13,7 @@ stdenv.mkDerivation rec {
src = fetchurl {
url = "https://github.com/tvheadend/tvheadend/archive/v${version}.tar.gz";
- sha256 = "0vhj4vkgl4brjw1pdc80g1wbjn6hyy57jrxkwilnivqfd1mwx3aw";
+ sha256 = "0k4g7pvfyk4bxpsjdwv7bmbygbp7gfg9wrr2aqb099ncbz18bx04";
};
enableParallelBuilding = true;
diff --git a/pkgs/servers/uwsgi/default.nix b/pkgs/servers/uwsgi/default.nix
index 89260109e26..abcbaa04b8c 100644
--- a/pkgs/servers/uwsgi/default.nix
+++ b/pkgs/servers/uwsgi/default.nix
@@ -1,4 +1,5 @@
{ stdenv, lib, fetchurl, pkgconfig, jansson
+# plugins: list of strings, eg. [python2, python3]
, plugins
, pam, withPAM ? stdenv.isLinux
, systemd, withSystemd ? stdenv.isLinux
diff --git a/pkgs/shells/grml-zsh-config/default.nix b/pkgs/shells/grml-zsh-config/default.nix
new file mode 100644
index 00000000000..5da96adaabd
--- /dev/null
+++ b/pkgs/shells/grml-zsh-config/default.nix
@@ -0,0 +1,38 @@
+{ stdenv, fetchurl, lib
+, zsh, coreutils, inetutils, procps, txt2tags }:
+
+with lib;
+
+stdenv.mkDerivation rec {
+ name = "grml-zsh-config-${version}";
+ version = "0.12.4";
+
+ src = fetchurl {
+ url = "http://deb.grml.org/pool/main/g/grml-etc-core/grml-etc-core_${version}.tar.gz";
+ sha256 = "1cbedc41e32787c37c2ed546355a26376dacf2ae1fab9551c9ace3e46d236b72";
+ };
+
+ buildInputs = [ zsh coreutils inetutils procps txt2tags ];
+
+ buildPhase = ''
+ cd doc
+ make
+ cd ..
+ '';
+
+ installPhase = ''
+ install -D -m644 etc/zsh/keephack $out/etc/zsh/keephack
+ install -D -m644 etc/zsh/zshrc $out/etc/zsh/zshrc
+
+ install -D -m644 doc/grmlzshrc.5 $out/share/man/man5/grmlzshrc.5
+ ln -s grmlzshrc.5.gz $out/share/man/man5/grml-zsh-config.5.gz
+ '';
+
+ meta = with stdenv.lib; {
+ description = "grml's zsh setup";
+ homepage = http://grml.org/zsh/;
+ license = licenses.gpl2;
+ platforms = platforms.linux;
+ maintainers = [ maintainers.msteen ];
+ };
+}
diff --git a/pkgs/tools/audio/beets/alternatives-plugin.nix b/pkgs/tools/audio/beets/alternatives-plugin.nix
new file mode 100644
index 00000000000..1b0c9b3992b
--- /dev/null
+++ b/pkgs/tools/audio/beets/alternatives-plugin.nix
@@ -0,0 +1,25 @@
+{ stdenv, buildPythonPackage, fetchFromGitHub, pythonPackages }:
+
+buildPythonPackage rec {
+ name = "beets-alternatives-${version}";
+ version = "0.8.2";
+
+ src = fetchFromGitHub {
+ repo = "beets-alternatives";
+ owner = "geigerzaehler";
+ rev = "v${version}";
+ sha256 = "10za6h59pxa13y8i4amqhc6392csml0dl771lssv6b6a98kamsy7";
+ };
+
+ postPatch = ''
+ sed -i -e '/install_requires/,/\]/{/beets/d}' setup.py
+ '';
+
+ propagatedBuildInputs = with pythonPackages; [ futures ];
+
+ meta = {
+ description = "Beets plugin to manage external files";
+ homepage = "https://github.com/geigerzaehler/beets-alternatives";
+ license = stdenv.lib.licenses.mit;
+ };
+}
diff --git a/pkgs/tools/audio/beets/default.nix b/pkgs/tools/audio/beets/default.nix
index 123b183f2d3..35a69262acd 100644
--- a/pkgs/tools/audio/beets/default.nix
+++ b/pkgs/tools/audio/beets/default.nix
@@ -8,10 +8,13 @@
, enableFetchart ? true
, enableLastfm ? true
, enableMpd ? true
-, enableReplaygain ? true
+, enableReplaygain ? true, bs1770gain ? null
, enableThumbnails ? true
, enableWeb ? true
+# External plugins
+, enableAlternatives ? false
+
, bashInteractive, bashCompletion
}:
@@ -22,7 +25,7 @@ assert enableEchonest -> pythonPackages.pyechonest != null;
assert enableFetchart -> pythonPackages.responses != null;
assert enableLastfm -> pythonPackages.pylast != null;
assert enableMpd -> pythonPackages.mpd != null;
-assert enableReplaygain -> pythonPackages.audiotools != null;
+assert enableReplaygain -> bs1770gain != null;
assert enableThumbnails -> pythonPackages.pyxdg != null;
assert enableWeb -> pythonPackages.flask != null;
@@ -90,9 +93,11 @@ in buildPythonPackage rec {
++ optional enableEchonest pythonPackages.pyechonest
++ optional enableLastfm pythonPackages.pylast
++ optional enableMpd pythonPackages.mpd
- ++ optional enableReplaygain pythonPackages.audiotools
++ optional enableThumbnails pythonPackages.pyxdg
- ++ optional enableWeb pythonPackages.flask;
+ ++ optional enableWeb pythonPackages.flask
+ ++ optional enableAlternatives (import ./alternatives-plugin.nix {
+ inherit stdenv buildPythonPackage pythonPackages fetchFromGitHub;
+ });
buildInputs = with pythonPackages; [
beautifulsoup4
@@ -104,7 +109,7 @@ in buildPythonPackage rec {
];
patches = [
- ./replaygain-default-audiotools.patch
+ ./replaygain-default-bs1770gain.patch
];
postPatch = ''
@@ -119,6 +124,12 @@ in buildPythonPackage rec {
s,"flac","${flac}/bin/flac",
s,"mp3val","${mp3val}/bin/mp3val",
}' beetsplug/badfiles.py
+ '' + optionalString enableReplaygain ''
+ sed -i -re '
+ s!^( *cmd *= *b?['\'''"])(bs1770gain['\'''"])!\1${bs1770gain}/bin/\2!
+ ' beetsplug/replaygain.py
+ sed -i -e 's/if has_program.*bs1770gain.*:/if True:/' \
+ test/test_replaygain.py
'';
doCheck = true;
diff --git a/pkgs/tools/audio/beets/replaygain-default-audiotools.patch b/pkgs/tools/audio/beets/replaygain-default-bs1770gain.patch
similarity index 93%
rename from pkgs/tools/audio/beets/replaygain-default-audiotools.patch
rename to pkgs/tools/audio/beets/replaygain-default-bs1770gain.patch
index d852ea6feca..538f9e93303 100644
--- a/pkgs/tools/audio/beets/replaygain-default-audiotools.patch
+++ b/pkgs/tools/audio/beets/replaygain-default-bs1770gain.patch
@@ -11,7 +11,7 @@ index 40b3a3a..9b54a5a 100644
'overwrite': False,
'auto': True,
- 'backend': u'command',
-+ 'backend': u'audiotools',
++ 'backend': u'bs1770gain',
'targetlevel': 89,
})
diff --git a/pkgs/tools/filesystems/duperemove/default.nix b/pkgs/tools/filesystems/duperemove/default.nix
index 4836e39d439..146414a47e1 100644
--- a/pkgs/tools/filesystems/duperemove/default.nix
+++ b/pkgs/tools/filesystems/duperemove/default.nix
@@ -1,17 +1,18 @@
-{ lib, stdenv, fetchFromGitHub, libgcrypt, pkgconfig, glib, linuxHeaders }:
+{ lib, stdenv, fetchFromGitHub, libgcrypt
+, pkgconfig, glib, linuxHeaders, sqlite }:
stdenv.mkDerivation rec {
name = "duperemove-${version}";
- version = "0.09.4";
+ version = "0.10";
src = fetchFromGitHub {
owner = "markfasheh";
repo = "duperemove";
rev = "v${version}";
- sha256 = "1d586k6rbfqb5557i1p5xq8ngbppbwpxlkw8wqm7d900a3hp36nl";
+ sha256 = "1fll0xjg1p3pabgjiddild4ragk9spbdmdzrkq0hv5pxb1qrv7lp";
};
- buildInputs = [ libgcrypt pkgconfig glib linuxHeaders ];
+ buildInputs = [ libgcrypt pkgconfig glib linuxHeaders sqlite ];
makeFlags = [ "DESTDIR=$(out)" "PREFIX=" ];
@@ -19,8 +20,7 @@ stdenv.mkDerivation rec {
description = "A simple tool for finding duplicated extents and submitting them for deduplication";
homepage = https://github.com/markfasheh/duperemove;
license = lib.licenses.gpl2;
-
- maintainers = [ lib.maintainers.bluescreen303 ];
+ maintainers = with lib.maintainers; [ bluescreen303 thoughtpolice ];
platforms = lib.platforms.all;
};
}
diff --git a/pkgs/tools/filesystems/exfat/default.nix b/pkgs/tools/filesystems/exfat/default.nix
index f8a0d09bc52..507c5e7a6c0 100644
--- a/pkgs/tools/filesystems/exfat/default.nix
+++ b/pkgs/tools/filesystems/exfat/default.nix
@@ -1,11 +1,11 @@
{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, fuse }:
-let version = "1.2.2"; in
+let version = "1.2.3"; in
stdenv.mkDerivation rec {
name = "exfat-${version}";
src = fetchFromGitHub {
- sha256 = "17yyd988l4r5w3q3h3hjlxprbw74wdg4n759lzg325smh96qk7p1";
+ sha256 = "147s11sqmn5flbvz2hwpl6kdfqi2gnm1c2nsn5fxygyw7qyhpzda";
rev = "v${version}";
repo = "exfat";
owner = "relan";
diff --git a/pkgs/tools/graphics/jhead/default.nix b/pkgs/tools/graphics/jhead/default.nix
index ee44ff975bb..470a2efdf6b 100644
--- a/pkgs/tools/graphics/jhead/default.nix
+++ b/pkgs/tools/graphics/jhead/default.nix
@@ -1,25 +1,38 @@
-{stdenv, fetchurl}:
+{ stdenv, fetchurl }:
-stdenv.mkDerivation {
- name = "jhead-2.87";
+stdenv.mkDerivation rec {
+ name = "jhead-${version}";
+ version = "3.00";
src = fetchurl {
- url = http://www.sentex.net/~mwandel/jhead/jhead-2.87.tar.gz;
- sha256 = "0vpp5jz49w5qzjzq3vllrbff7fr906jy8a8sq12yq8kw6qwbjjsl";
+ url = "http://www.sentex.net/~mwandel/jhead/${name}.tar.gz";
+ sha256 = "0pl9s9ssb2a9di82f3ypin2hd098ns8kzdsxw3i2y94f07d03k48";
};
patchPhase = ''
- sed -i s@/usr/bin@$out/bin@ makefile
+ substituteInPlace makefile \
+ --replace /usr/local/bin $out/bin
+
+ substituteInPlace jhead.c \
+ --replace "\" Compiled: \"__DATE__" ""
'';
- preInstall = ''
- mkdir -p $out/bin
+ installPhase = ''
+ mkdir -p \
+ $out/bin \
+ $out/man/man1 \
+ $out/share/doc/${name}
+
+ cp -v jhead $out/bin
+ cp -v jhead.1 $out/man/man1
+ cp -v *.txt $out/share/doc/${name}
'';
- meta = {
+ meta = with stdenv.lib; {
homepage = http://www.sentex.net/~mwandel/jhead/;
description = "Exif Jpeg header manipulation tool";
- license = stdenv.lib.licenses.free;
- maintainers = with stdenv.lib.maintainers; [viric];
+ license = licenses.publicDomain;
+ maintainers = with maintainers; [ viric rycee ];
+ platforms = platforms.all;
};
}
diff --git a/pkgs/tools/graphics/kst/default.nix b/pkgs/tools/graphics/kst/default.nix
index 01fb5d82994..9b983450f48 100644
--- a/pkgs/tools/graphics/kst/default.nix
+++ b/pkgs/tools/graphics/kst/default.nix
@@ -1,5 +1,5 @@
{ stdenv, fetchurl, cmake, pkgconfig
-, qt5, gsl, getdata, netcdf, muparser, matio
+, qtbase, gsl, getdata, netcdf, muparser, matio
}:
stdenv.mkDerivation rec {
name = "Kst-2.0.8";
@@ -9,7 +9,7 @@ stdenv.mkDerivation rec {
};
nativeBuildInputs = [ cmake pkgconfig ];
- buildInputs = [ qt5.base gsl getdata netcdf muparser matio ];
+ buildInputs = [ qtbase gsl getdata netcdf muparser matio ];
cmakeFlags = "-Dkst_qt5=1 -Dkst_release=1";
diff --git a/pkgs/tools/graphics/pdf2svg/default.nix b/pkgs/tools/graphics/pdf2svg/default.nix
index 10309d208d8..52ca99b9764 100644
--- a/pkgs/tools/graphics/pdf2svg/default.nix
+++ b/pkgs/tools/graphics/pdf2svg/default.nix
@@ -1,20 +1,24 @@
-{ stdenv, fetchurl, pkgconfig, cairo, gtk, poppler }:
+{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig
+, cairo, gtk, poppler }:
-stdenv.mkDerivation {
- name = "pdf2svg-0.2.2";
+stdenv.mkDerivation rec {
+ name = "pdf2svg-${version}";
+ version = "0.2.3";
- src = fetchurl {
- url = "http://www.cityinthesky.co.uk/wp-content/uploads/2013/10/pdf2svg-0.2.2.tar.gz" ;
- sha256 = "1jy6iqwwvd7drcybmdlmnc8m970f82fd7fisa8ha5zh13p49r8n2";
+ src = fetchFromGitHub {
+ owner = "db9052";
+ repo = "pdf2svg";
+ rev = "v${version}";
+ sha256 = "14ffdm4y26imq99wjhkrhy9lp33165xci1l5ndwfia8hz53bl02k";
};
- buildInputs = [ cairo pkgconfig poppler gtk ];
+ buildInputs = [ autoreconfHook cairo pkgconfig poppler gtk ];
- meta = {
+ meta = with stdenv.lib; {
description = "PDF converter to SVG format";
homepage = http://www.cityinthesky.co.uk/opensource/pdf2svg;
- license = stdenv.lib.licenses.gpl2;
- maintainers = [ stdenv.lib.maintainers.ianwookim ];
- platforms = stdenv.lib.platforms.unix;
+ license = licenses.gpl2;
+ maintainers = [ maintainers.ianwookim ];
+ platforms = platforms.unix;
};
}
diff --git a/pkgs/tools/misc/antimicro/default.nix b/pkgs/tools/misc/antimicro/default.nix
index a2eed913930..1d7984ac11d 100644
--- a/pkgs/tools/misc/antimicro/default.nix
+++ b/pkgs/tools/misc/antimicro/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, cmake, pkgconfig, SDL2, qt5, xorg, fetchzip }:
+{ stdenv, cmake, pkgconfig, SDL2, qtbase, qttools, xorg, fetchzip }:
stdenv.mkDerivation rec {
name = "antimicro-${version}";
@@ -10,7 +10,7 @@ stdenv.mkDerivation rec {
};
buildInputs = [
- cmake pkgconfig SDL2 qt5.base qt5.tools xorg.libXtst
+ cmake pkgconfig SDL2 qtbase qttools xorg.libXtst
];
meta = with stdenv.lib; {
diff --git a/pkgs/tools/misc/calamares/default.nix b/pkgs/tools/misc/calamares/default.nix
index e2b8c70c6e2..ab00d52c777 100644
--- a/pkgs/tools/misc/calamares/default.nix
+++ b/pkgs/tools/misc/calamares/default.nix
@@ -1,6 +1,6 @@
-{ stdenv, fetchgit, cmake, qt5, polkit_qt5, libyamlcpp, python, boost, parted
+{ stdenv, fetchgit, cmake, polkit-qt, libyamlcpp, python, boost, parted
, extra-cmake-modules, kconfig, ki18n, kcoreaddons, solid, utillinux, libatasmart
-, ckbcomp, glibc, tzdata, xkeyboard_config }:
+, ckbcomp, glibc, tzdata, xkeyboard_config, qtbase, qtquick1, qtsvg, qttools }:
stdenv.mkDerivation rec {
name = "calamares-${version}";
@@ -13,7 +13,7 @@ stdenv.mkDerivation rec {
};
buildInputs = [
- cmake qt5.base qt5.tools libyamlcpp python boost polkit_qt5 parted
+ cmake qtbase qtquick1 qtsvg qttools libyamlcpp python boost polkit-qt parted
extra-cmake-modules kconfig ki18n kcoreaddons solid utillinux libatasmart
];
@@ -43,7 +43,7 @@ stdenv.mkDerivation rec {
'';
preInstall = ''
- substituteInPlace cmake_install.cmake --replace "${polkit_qt5}" "$out"
+ substituteInPlace cmake_install.cmake --replace "${polkit-qt}" "$out"
'';
meta = with stdenv.lib; {
diff --git a/pkgs/tools/misc/dynamic-colors/default.nix b/pkgs/tools/misc/dynamic-colors/default.nix
new file mode 100644
index 00000000000..b587afb645c
--- /dev/null
+++ b/pkgs/tools/misc/dynamic-colors/default.nix
@@ -0,0 +1,37 @@
+{ stdenv, fetchFromGitHub, makeWrapper, tmux, vim }:
+
+stdenv.mkDerivation rec {
+ name = "dynamic-colors-git-${version}";
+ version = "2013-12-28";
+
+ src = fetchFromGitHub {
+ owner = "sos4nt";
+ repo = "dynamic-colors";
+ rev = "35325f43620c5ee11a56db776b8f828bc5ae1ddd";
+ sha256 = "1xsjanqyvjlcj1fb8x4qafskxp7aa9b43ba9gyjgzr7yz8hkl4iz";
+ };
+
+ buildInputs = [ makeWrapper ];
+
+ patches = [ ./separate-config-and-dynamic-root-path.patch ];
+
+ installPhase = ''
+ mkdir -p $out/bin $out/etc/bash_completion.d $out/share/dynamic-colors
+ cp bin/dynamic-colors $out/bin/
+ cp completions/dynamic-colors.bash $out/etc/bash_completion.d/
+ cp -r colorschemes $out/share/dynamic-colors/
+
+ sed -e 's|\|${tmux}/bin/tmux|g' \
+ -e 's|/usr/bin/vim|${vim}/bin/vim|g' \
+ -i "$out/bin/dynamic-colors"
+
+ wrapProgram $out/bin/dynamic-colors --set DYNAMIC_COLORS_ROOT "$out/share/dynamic-colors"
+ '';
+
+ meta = {
+ homepage = https://github.com/sos4nt/dynamic-colors;
+ license = stdenv.lib.licenses.mit;
+ description = "Change terminal colors on the fly";
+ platforms = stdenv.lib.platforms.unix;
+ };
+}
diff --git a/pkgs/tools/misc/dynamic-colors/separate-config-and-dynamic-root-path.patch b/pkgs/tools/misc/dynamic-colors/separate-config-and-dynamic-root-path.patch
new file mode 100644
index 00000000000..7462ed0e3af
--- /dev/null
+++ b/pkgs/tools/misc/dynamic-colors/separate-config-and-dynamic-root-path.patch
@@ -0,0 +1,58 @@
+From ee44b859003972275d8e469ab41b9900420295e0 Mon Sep 17 00:00:00 2001
+From: Malte Rohde
+Date: Fri, 9 Jan 2015 13:10:41 +0100
+Subject: [PATCH] Store user configuration in appropriate config location.
+
+So that the dynamic-colors source can live somewhere else
+(e.g., /usr/local/dynamic-colors) and multiple users
+can use the same script.
+---
+ bin/dynamic-colors | 21 ++++++++++++++++-----
+ 1 file changed, 16 insertions(+), 5 deletions(-)
+
+diff --git a/bin/dynamic-colors b/bin/dynamic-colors
+index a669221..5d6bce7 100755
+--- a/bin/dynamic-colors
++++ b/bin/dynamic-colors
+@@ -84,16 +84,27 @@ else
+ fi
+ COLORSCHEMES="${DYNAMIC_COLORS_ROOT}/colorschemes"
+
++if [ -z "${DYNAMIC_COLORS_HOME}" ]; then
++ if [ -d "${HOME}/.dynamic-colors" ] || [ -z "${XDG_CONFIG_HOME}" ]; then
++ DYNAMIC_COLORS_HOME="${HOME}/.dynamic-colors"
++ else
++ DYNAMIC_COLORS_HOME="${XDG_CONFIG_HOME}/dynamic-colors"
++ fi
++else
++ DYNAMIC_COLORS_HOME="${DYNAMIC_COLORS_HOME%/}"
++fi
++
+ write_colorscheme_name () {
+- echo "$1" > "${DYNAMIC_COLORS_ROOT}/colorscheme"
++ [ ! -d "${DYNAMIC_COLORS_HOME}" ] && mkdir -p "${DYNAMIC_COLORS_HOME}"
++ echo "$1" > "${DYNAMIC_COLORS_HOME}/colorscheme"
+ }
+
+ load_colorscheme_name () {
+- head -1 "${DYNAMIC_COLORS_ROOT}/colorscheme"
++ head -1 "${DYNAMIC_COLORS_HOME}/colorscheme"
+ }
+
+ init () {
+- [ ! -f "${DYNAMIC_COLORS_ROOT}/colorscheme" ] && return
++ [ ! -f "${DYNAMIC_COLORS_HOME}/colorscheme" ] && return
+ colorscheme_name=$(load_colorscheme_name)
+ load_colorscheme "$colorscheme_name"
+ set_colors
+@@ -142,8 +153,8 @@ audit () {
+ }
+
+ cycle() {
+- if [ -f "${DYNAMIC_COLORS_ROOT}/colorscheme" ]; then
+- current=`head -1 "${DYNAMIC_COLORS_ROOT}/colorscheme"`
++ if [ -f "${DYNAMIC_COLORS_HOME}/colorscheme" ]; then
++ current=$(load_colorscheme_name)
+ found=false
+ cd "$COLORSCHEMES"
+ for file in *.sh; do
diff --git a/pkgs/tools/misc/gibo/default.nix b/pkgs/tools/misc/gibo/default.nix
new file mode 100644
index 00000000000..67c84494692
--- /dev/null
+++ b/pkgs/tools/misc/gibo/default.nix
@@ -0,0 +1,34 @@
+{ stdenv, fetchFromGitHub, coreutils, findutils, git }:
+
+stdenv.mkDerivation rec {
+ name = "gibo-${version}";
+ version = "1.0.4";
+
+ src = fetchFromGitHub {
+ owner = "simonwhitaker";
+ repo = "gibo";
+ rev = version;
+ sha256 = "1vzchggxv660c1cj5v0hlmln7yda48wjy2cv0qwi619cmr5hwbgh";
+ };
+
+ phases = [ "unpackPhase" "installPhase" "fixupPhase" ];
+
+ installPhase = ''
+ mkdir -p $out/bin $out/etc/bash_completion.d
+ cp gibo $out/bin
+ cp gibo-completion.bash $out/etc/bash_completion.d
+
+ sed -e 's|\
-Date: Thu Feb 26 09:38:58 2015 +0100
-
- gpg: Remove left-over debug message.
-
- * g10/armor.c (check_input): Remove log_debug.
-
-diff --git a/g10/armor.c b/g10/armor.c
-index 6c0013d..de1726d 100644
---- a/g10/armor.c
-+++ b/g10/armor.c
-@@ -534,9 +534,6 @@ check_input( armor_filter_context_t *afx, IOBUF a )
- /* This is probably input from a keyserver helper and we
- have not yet seen an error line. */
- afx->key_failed_code = parse_key_failed_line (line+4, len-4);
-- log_debug ("armor-keys-failed (%.*s) ->%d\n",
-- (int)len, line,
-- afx->key_failed_code);
- }
- if( i >= 0 && !(afx->only_keyblocks && i != 1 && i != 5 && i != 6 )) {
- hdr_line = i;
diff --git a/pkgs/tools/security/lastpass-cli/default.nix b/pkgs/tools/security/lastpass-cli/default.nix
index 92c7a027d69..01495156810 100644
--- a/pkgs/tools/security/lastpass-cli/default.nix
+++ b/pkgs/tools/security/lastpass-cli/default.nix
@@ -3,13 +3,13 @@
stdenv.mkDerivation rec {
name = "lastpass-cli-${version}";
- version = "0.5.1";
+ version = "0.7.0";
src = fetchFromGitHub {
owner = "lastpass";
repo = "lastpass-cli";
rev = "v${version}";
- sha256 = "0k2dbfizd6gwd4s8badm50qg2djrh22szd932l1a96mn79q8zb70";
+ sha256 = "18dn4sx173666w6aaqhwcya5x2z3q0fmhg8h76lgdmx8adrhzdzc";
};
buildInputs = [
diff --git a/pkgs/tools/typesetting/djvu2pdf/default.nix b/pkgs/tools/typesetting/djvu2pdf/default.nix
index 5455df5f106..512efe497fa 100644
--- a/pkgs/tools/typesetting/djvu2pdf/default.nix
+++ b/pkgs/tools/typesetting/djvu2pdf/default.nix
@@ -1,4 +1,4 @@
-{stdenv, fetchurl, pkgconfig, djvulibre, ghostscript }:
+{ stdenv, makeWrapper, fetchurl, djvulibre, ghostscript, which }:
stdenv.mkDerivation rec {
version = "0.9.2";
@@ -9,12 +9,13 @@ stdenv.mkDerivation rec {
sha256 = "0v2ax30m7j1yi4m02nzn9rc4sn4vzqh5vywdh96r64j4pwvn5s5g";
};
- buildInputs = [ pkgconfig ];
- propagatedUserEnvPkgs = [ djvulibre ghostscript ];
+ nativeBuildInputs = [ makeWrapper ];
installPhase = ''
mkdir -p $out/bin
cp -p djvu2pdf $out/bin
+ wrapProgram $out/bin/djvu2pdf --prefix PATH : ${ghostscript}/bin:${djvulibre}/bin:${which}/bin
+
mkdir -p $out/man/man1
cp -p djvu2pdf.1.gz $out/man/man1
'';
@@ -23,6 +24,7 @@ stdenv.mkDerivation rec {
description = "Creates djvu files from PDF files";
homepage = http://0x2a.at/s/projects/djvu2pdf;
license = stdenv.lib.licenses.gpl2;
+ platforms = stdenv.lib.platforms.all;
inherit version;
};
}
diff --git a/pkgs/tools/typesetting/tex/texlive-new/bin.nix b/pkgs/tools/typesetting/tex/texlive-new/bin.nix
index 677e64c57dc..431f3926a13 100644
--- a/pkgs/tools/typesetting/tex/texlive-new/bin.nix
+++ b/pkgs/tools/typesetting/tex/texlive-new/bin.nix
@@ -8,6 +8,8 @@
, makeWrapper
}:
+# Useful resource covering build options:
+# http://tug.org/texlive/doc/tlbuild.html
let
withSystemLibs = map (libname: "--with-system-${libname}");
@@ -221,5 +223,28 @@ bibtex8 = stdenv.mkDerivation {
};
+xdvi = stdenv.mkDerivation {
+ name = "texlive-xdvi.bin-${version}";
+
+ inherit (common) src;
+
+ buildInputs = [ pkgconfig core/*kpathsea*/ freetype ghostscript ]
+ ++ (with xorg; [ libX11 libXaw libXi libXpm libXmu libXaw libXext libXfixes ]);
+
+ preConfigure = "cd texk/xdvik";
+
+ configureFlags = common.configureFlags
+ ++ [ "--with-system-kpathsea" "--with-system-libgs" ];
+
+ enableParallelBuilding = true;
+
+ postInstall = ''
+ substituteInPlace "$out/bin/xdvi" \
+ --replace "exec xdvi-xaw" "exec '$out/bin/xdvi-xaw'"
+ '';
+ # TODO: it's suspicious that mktexpk generates fonts into ~/.texlive2014
+};
+
+
} # un-indented
diff --git a/pkgs/tools/typesetting/tex/texlive-new/default.nix b/pkgs/tools/typesetting/tex/texlive-new/default.nix
index a084c973b78..5fe52ba07ba 100644
--- a/pkgs/tools/typesetting/tex/texlive-new/default.nix
+++ b/pkgs/tools/typesetting/tex/texlive-new/default.nix
@@ -84,6 +84,10 @@ let
latex = orig.latex // {
deps = removeAttrs orig.latex.deps [ "luatex" ];
};
+
+ xdvi = orig.xdvi // { # it seems to need it to transform fonts
+ deps = (orig.xdvi.deps or {}) // { inherit (tl) metafont; };
+ };
}; # overrides
# tl =
diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix
index fc95924320f..402d00e3179 100644
--- a/pkgs/top-level/all-packages.nix
+++ b/pkgs/top-level/all-packages.nix
@@ -482,6 +482,8 @@ let
abduco = callPackage ../tools/misc/abduco { };
+ acbuild = callPackage ../applications/misc/acbuild { };
+
acct = callPackage ../tools/system/acct { };
acoustidFingerprinter = callPackage ../tools/audio/acoustid-fingerprinter {
@@ -556,7 +558,7 @@ let
withGui = false;
};
- apitrace = callPackage ../applications/graphics/apitrace {};
+ apitrace = qt5.callPackage ../applications/graphics/apitrace {};
argyllcms = callPackage ../tools/graphics/argyllcms {};
@@ -809,7 +811,7 @@ let
deis = goPackages.deis.bin // { outputs = [ "bin" ]; };
- dfilemanager = callPackage ../applications/misc/dfilemanager { };
+ dfilemanager = kde5.dfilemanager;
diagrams-builder = callPackage ../tools/graphics/diagrams-builder {
inherit (haskellPackages) ghcWithPackages diagrams-builder;
@@ -839,6 +841,8 @@ let
linuxHeaders = linuxHeaders_3_18;
};
+ dynamic-colors = callPackage ../tools/misc/dynamic-colors { };
+
edac-utils = callPackage ../os-specific/linux/edac-utils { };
eggdrop = callPackage ../tools/networking/eggdrop { };
@@ -1022,7 +1026,7 @@ let
davix = callPackage ../tools/networking/davix { };
- cantata = qt5Libs.callPackage ../applications/audio/cantata { };
+ cantata = qt5.callPackage ../applications/audio/cantata { };
can-utils = callPackage ../os-specific/linux/can-utils { };
@@ -1072,7 +1076,7 @@ let
citrix_receiver = callPackage ../applications/networking/remote/citrix-receiver { };
- cmst = callPackage ../tools/networking/cmst { };
+ cmst = qt5.callPackage ../tools/networking/cmst { };
colord = callPackage ../tools/misc/colord { };
@@ -1154,7 +1158,7 @@ let
convmv = callPackage ../tools/misc/convmv { };
- cool-retro-term = qt5Libs.callPackage ../applications/misc/cool-retro-term { };
+ cool-retro-term = qt5.callPackage ../applications/misc/cool-retro-term { };
coreutils = callPackage ../tools/misc/coreutils {
aclSupport = stdenv.isLinux;
@@ -1432,11 +1436,7 @@ let
fabric = pythonPackages.fabric;
- fail2ban = callPackage ../tools/security/fail2ban {
- systemd = systemd.override {
- pythonSupport = true;
- };
- };
+ fail2ban = callPackage ../tools/security/fail2ban { };
fakeroot = callPackage ../tools/system/fakeroot { };
@@ -1604,6 +1604,8 @@ let
ggobi = callPackage ../tools/graphics/ggobi { };
+ gibo = callPackage ../tools/misc/gibo { };
+
gifsicle = callPackage ../tools/graphics/gifsicle { };
git-hub = callPackage ../applications/version-management/git-and-tools/git-hub { };
@@ -1676,6 +1678,8 @@ let
go-mtpfs = goPackages.mtpfs.bin // { outputs = [ "bin" ]; };
+ go-pup = goPackages.pup.bin // { outputs = [ "bin" ]; };
+
googleAuthenticator = callPackage ../os-specific/linux/google-authenticator { };
google-cloud-sdk = callPackage ../tools/admin/google-cloud-sdk { };
@@ -1732,13 +1736,6 @@ let
ghostscript = null;
};
- calamares = callPackage ../tools/misc/calamares rec {
- python = python3;
- boost = pkgs.boost.override { python=python3; };
- libyamlcpp = callPackage ../development/libraries/libyaml-cpp { makePIC=true; boost=boost; };
- inherit (kf5_stable) extra-cmake-modules kconfig ki18n kcoreaddons solid;
- };
-
grub = callPackage_i686 ../tools/misc/grub {
buggyBiosCDSupport = config.grub.buggyBiosCDSupport or true;
automake = automake112x; # fails with 13 and 14
@@ -1746,6 +1743,8 @@ let
trustedGrub = callPackage_i686 ../tools/misc/grub/trusted.nix { };
+ trustedGrub-for-HP = callPackage_i686 ../tools/misc/grub/trusted.nix { for_HP_laptop = true; };
+
grub2 = grub2_full;
grub2_full = callPackage ../tools/misc/grub/2.0x.nix { };
@@ -1816,7 +1815,7 @@ let
pgf_graphics = callPackage ../tools/graphics/pgf { };
pigz = callPackage ../tools/compression/pigz { };
-
+
pixz = callPackage ../tools/compression/pixz { };
pxz = callPackage ../tools/compression/pxz { };
@@ -2022,7 +2021,7 @@ let
kpcli = callPackage ../tools/security/kpcli { };
- kst = callPackage ../tools/graphics/kst { gsl = gsl_1; };
+ kst = qt5.callPackage ../tools/graphics/kst { gsl = gsl_1; };
leocad = callPackage ../applications/graphics/leocad { };
@@ -2268,7 +2267,7 @@ let
mfoc = callPackage ../tools/security/mfoc { };
- mgba = callPackage ../misc/emulators/mgba { };
+ mgba = qt5.callPackage ../misc/emulators/mgba { };
minissdpd = callPackage ../tools/networking/minissdpd { };
@@ -2686,6 +2685,8 @@ let
pdfjam = callPackage ../tools/typesetting/pdfjam { };
+ pdfmod = callPackage ../applications/misc/pdfmod { };
+
jbig2enc = callPackage ../tools/graphics/jbig2enc { };
pdfread = callPackage ../tools/graphics/pdfread {
@@ -2728,7 +2729,7 @@ let
inherit qt4;
};
- pinentry_qt5 = qt55Libs.callPackage ../tools/security/pinentry/qt5.nix {
+ pinentry_qt5 = qt5.callPackage ../tools/security/pinentry/qt5.nix {
libcap = if stdenv.isDarwin then null else libcap;
};
@@ -2885,6 +2886,8 @@ let
reaverwps = callPackage ../tools/networking/reaver-wps {};
+ recordmydesktop = callPackage ../applications/video/recordmydesktop { };
+
recutils = callPackage ../tools/misc/recutils { };
recoll = callPackage ../applications/search/recoll { };
@@ -2990,12 +2993,14 @@ let
samplicator = callPackage ../tools/networking/samplicator { };
- screen = callPackage ../tools/misc/screen { };
+ screen = callPackage ../tools/misc/screen {
+ inherit (darwin.apple_sdk.libs) utmp;
+ };
screen-message = callPackage ../tools/X11/screen-message { };
screencloud = callPackage ../applications/graphics/screencloud {
- quazip = quazip.override { qt = qt4; };
+ quazip = qt5.quazip.override { qt = qt4; };
};
scrot = callPackage ../tools/graphics/scrot { };
@@ -3030,7 +3035,7 @@ let
siege = callPackage ../tools/networking/siege {};
- sigil = callPackage ../applications/editors/sigil { };
+ sigil = qt5.callPackage ../applications/editors/sigil { };
# aka., gpg-tools
signing-party = callPackage ../tools/security/signing-party { };
@@ -3229,7 +3234,7 @@ let
thc-hydra = callPackage ../tools/security/thc-hydra { };
- tiled = callPackage ../applications/editors/tiled { };
+ tiled = qt5.callPackage ../applications/editors/tiled { };
tinc = callPackage ../tools/networking/tinc { };
@@ -3746,6 +3751,8 @@ let
nix-zsh-completions = callPackage ../shells/nix-zsh-completions { };
+ grml-zsh-config = callPackage ../shells/grml-zsh-config { };
+
### DEVELOPMENT / COMPILERS
@@ -3837,6 +3844,8 @@ let
cython = pythonPackages.cython;
cython3 = python3Packages.cython;
+ devpi-client = callPackage ../development/tools/devpi-client {};
+
ecl = callPackage ../development/compilers/ecl { };
eql = callPackage ../development/compilers/eql {};
@@ -4114,7 +4123,7 @@ let
haskell = callPackage ./haskell-packages.nix { };
- haskellPackages = haskell.packages.ghc7102.override {
+ haskellPackages = haskell.packages.ghc7103.override {
overrides = config.haskellPackageOverrides or (self: super: {});
};
inherit (haskellPackages) ghc cabal-install stack;
@@ -5537,6 +5546,8 @@ let
ruby = ruby_2_0_0;
};
+ matter-compiler = callPackage ../development/compilers/matter-compiler {};
+
cfr = callPackage ../development/tools/java/cfr { };
checkstyle = callPackage ../development/tools/analysis/checkstyle { };
@@ -5714,7 +5725,7 @@ let
gotty = goPackages.gotty.bin // { outputs = [ "bin" ]; };
gradleGen = callPackage ../development/tools/build-managers/gradle { };
- gradle = self.gradleGen.gradle28;
+ gradle = self.gradleGen.gradleLatest;
gradle25 = self.gradleGen.gradle25;
gperf = callPackage ../development/tools/misc/gperf { };
@@ -5743,7 +5754,9 @@ let
inherit (perlPackages) XMLSimple;
};
- include-what-you-use = callPackage ../development/tools/analysis/include-what-you-use { };
+ include-what-you-use = callPackage ../development/tools/analysis/include-what-you-use {
+ llvmPackages = llvmPackages_37;
+ };
indent = callPackage ../development/tools/misc/indent { };
@@ -5994,7 +6007,7 @@ let
uncrustify = callPackage ../development/tools/misc/uncrustify { };
vagrant = callPackage ../development/tools/vagrant {
- ruby = ruby_2_0_0;
+ ruby = ruby_2_2_2;
};
gdb = callPackage ../development/tools/misc/gdb {
@@ -6044,8 +6057,6 @@ let
accountsservice = callPackage ../development/libraries/accountsservice { };
- accounts-qt = callPackage ../development/libraries/accounts-qt/old.nix {};
-
acl = callPackage ../development/libraries/acl { };
activemq = callPackage ../development/libraries/apache-activemq { };
@@ -6566,6 +6577,8 @@ let
gperftools = callPackage ../development/libraries/gperftools { };
+ grib-api = callPackage ../development/libraries/grib-api { };
+
gst_all_1 = recurseIntoAttrs(callPackage ../development/libraries/gstreamer {
callPackage = pkgs.newScope (pkgs // { libav = pkgs.ffmpeg; });
});
@@ -6635,8 +6648,6 @@ let
grantlee = callPackage ../development/libraries/grantlee { };
- grantlee5 = callPackage ../development/libraries/grantlee/5.x-old.nix { };
-
gsasl = callPackage ../development/libraries/gsasl { };
gsl = callPackage ../development/libraries/gsl { };
@@ -6775,6 +6786,8 @@ let
hydraAntLogger = callPackage ../development/libraries/java/hydra-ant-logger { };
+ hyena = callPackage ../development/libraries/hyena { };
+
icu = callPackage ../development/libraries/icu { };
id3lib = callPackage ../development/libraries/id3lib { };
@@ -6863,10 +6876,6 @@ let
automake = automake111x;
};
- kf517 = import ../development/libraries/kde-frameworks-5.17 { inherit pkgs; };
- kf5_stable = kf517;
- kf5_latest = kf517;
-
kinetic-cpp-client = callPackage ../development/libraries/kinetic-cpp-client { };
krb5Full = callPackage ../development/libraries/kerberos/krb5.nix {
@@ -7032,8 +7041,6 @@ let
libdbusmenu_qt = callPackage ../development/libraries/libdbusmenu-qt { };
- libdbusmenu_qt5 = callPackage ../development/libraries/libdbusmenu-qt/qt-5.4.nix { };
-
libdc1394 = callPackage ../development/libraries/libdc1394 {
inherit (darwin.apple_sdk.frameworks) CoreServices;
};
@@ -7822,8 +7829,6 @@ let
qt = qt4;
};
- mlt-qt5 = callPackage ../development/libraries/mlt/qt-5.4.nix { };
-
movit = callPackage ../development/libraries/movit { };
mosquitto = callPackage ../servers/mqtt/mosquitto { };
@@ -8044,10 +8049,6 @@ let
phonon_backend_vlc = callPackage ../development/libraries/phonon-backend-vlc/qt4 {};
- phonon_qt5 = callPackage ../development/libraries/phonon/qt5/old.nix {};
-
- phonon_qt5_backend_gstreamer = callPackage ../development/libraries/phonon-backend-gstreamer/qt5/old.nix {};
-
physfs = callPackage ../development/libraries/physfs { };
pipelight = callPackage ../tools/misc/pipelight {
@@ -8073,8 +8074,6 @@ let
polkit_qt4 = callPackage ../development/libraries/polkit-qt-1 { };
- polkit_qt5 = callPackage ../development/libraries/polkit-qt-1/old.nix { withQt5 = true; };
-
policykit = callPackage ../development/libraries/policykit { };
poppler = callPackage ../development/libraries/poppler { lcms = lcms2; };
@@ -8089,8 +8088,6 @@ let
suffix = "qt4";
};
- poppler_qt5 = qt5Libs.popplerQt;
-
poppler_utils = poppler.override { suffix = "utils"; utils = true; };
popt = callPackage ../development/libraries/popt { };
@@ -8126,18 +8123,12 @@ let
qca2 = callPackage ../development/libraries/qca2 { qt = qt4; };
- qca-qt5 = callPackage ../development/libraries/qca-qt5/old.nix { };
-
qimageblitz = callPackage ../development/libraries/qimageblitz {};
qjson = callPackage ../development/libraries/qjson { };
qoauth = callPackage ../development/libraries/qoauth { };
- quazip = callPackage ../development/libraries/quazip {
- qt = qt5;
- };
-
qt3 = callPackage ../development/libraries/qt-3 {
openglSupport = mesaSupported;
libpng = libpng12;
@@ -8159,8 +8150,13 @@ let
developerBuild = true;
});
- qt54 = recurseIntoAttrs (callPackage ../development/libraries/qt-5/5.4 {});
- qt55 = recurseIntoAttrs (import ../development/libraries/qt-5/5.5 { inherit pkgs; });
+ qt54 =
+ let imported = import ../development/libraries/qt-5/5.4 { inherit pkgs; };
+ in recurseIntoAttrs (imported.override (super: qt5LibsFun));
+
+ qt55 =
+ let imported = import ../development/libraries/qt-5/5.5 { inherit pkgs; };
+ in recurseIntoAttrs (imported.override (super: qt5LibsFun));
qt5 = qt54;
@@ -8174,21 +8170,21 @@ let
libkeyfinder = callPackage ../development/libraries/libkeyfinder { };
- mlt = callPackage ../development/libraries/mlt/qt-5.5.nix {};
+ mlt = callPackage ../development/libraries/mlt/qt-5.nix {};
openbr = callPackage ../development/libraries/openbr { };
phonon = callPackage ../development/libraries/phonon/qt5 { };
- phonon_backend_gstreamer = callPackage ../development/libraries/phonon-backend-gstreamer/qt5 { };
+ phonon-backend-gstreamer = callPackage ../development/libraries/phonon-backend-gstreamer/qt5 { };
- phonon_backend_vlc = callPackage ../development/libraries/phonon-backend-vlc/qt5 { };
+ phonon-backend-vlc = callPackage ../development/libraries/phonon-backend-vlc/qt5 { };
- polkitQt = callPackage ../development/libraries/polkit-qt-1 {
+ polkit-qt = callPackage ../development/libraries/polkit-qt-1 {
withQt5 = true;
};
- popplerQt = callPackage ../development/libraries/poppler {
+ poppler = callPackage ../development/libraries/poppler {
lcms = lcms2;
qt5Support = true;
suffix = "qt5";
@@ -8198,9 +8194,19 @@ let
qmltermwidget = callPackage ../development/libraries/qmltermwidget { };
+ qtcreator = callPackage ../development/qtcreator {
+ withDocumentation = true;
+ };
+
+ quazip = callPackage ../development/libraries/quazip {
+ qt = qtbase;
+ };
+
+ qwt = callPackage ../development/libraries/qwt/6.nix { };
+
signon = callPackage ../development/libraries/signon { };
- telepathy = callPackage ../development/libraries/telepathy/qt5 { };
+ telepathy = callPackage ../development/libraries/telepathy/qt { };
vlc = callPackage ../applications/video/vlc {
qt4 = null;
@@ -8209,20 +8215,8 @@ let
};
- qt55Libs = lib.makeScope qt55.newScope qt5LibsFun;
- qt5Libs = qt55Libs;
-
- qtEnv = callPackage ../development/libraries/qt-5/qt-env.nix {};
-
- qt5Full = appendToName "full" (qtEnv {
- qtbase = qt5.base;
- paths = lib.filter lib.isDerivation (lib.attrValues qt5);
- });
-
- qtcreator = callPackage ../development/qtcreator {
- qtLib = qt54;
- withDocumentation = true;
- };
+ qtEnv = qt5.env;
+ qt5Full = qt5.full;
qtkeychain = callPackage ../development/libraries/qtkeychain { };
@@ -8232,8 +8226,6 @@ let
qwt = callPackage ../development/libraries/qwt {};
- qwt6 = callPackage ../development/libraries/qwt/6.nix { };
-
qxt = callPackage ../development/libraries/qxt {};
rabbitmq-c = callPackage ../development/libraries/rabbitmq-c {};
@@ -8372,8 +8364,6 @@ let
sfml = callPackage ../development/libraries/sfml { };
- signon = callPackage ../development/libraries/signon/old.nix {};
-
skalibs = callPackage ../development/libraries/skalibs { };
slang = callPackage ../development/libraries/slang { };
@@ -8513,9 +8503,7 @@ let
telepathy_farstream = callPackage ../development/libraries/telepathy/farstream {};
- telepathy_qt = callPackage ../development/libraries/telepathy/qt { };
-
- telepathy_qt5 = callPackage ../development/libraries/telepathy/qt5/old.nix {};
+ telepathy_qt = callPackage ../development/libraries/telepathy/qt { qtbase = qt4; };
tevent = callPackage ../development/libraries/tevent {
python = python2;
@@ -9562,7 +9550,9 @@ let
storm = callPackage ../servers/computing/storm { };
- slurm-llnl = callPackage ../servers/computing/slurm { };
+ slurm-llnl = callPackage ../servers/computing/slurm { gtk = null; };
+
+ slurm-llnl-full = appendToName "full" (callPackage ../servers/computing/slurm { });
tomcat5 = callPackage ../servers/http/tomcat/5.0.nix { };
@@ -10323,7 +10313,7 @@ let
gocode = goPackages.gocode.bin // { outputs = [ "bin" ]; };
- kgocode = callPackage ../applications/misc/kgocode {
+ kgocode = callPackage ../applications/misc/kgocode {
inherit (pkgs.kde4) kdelibs;
};
@@ -10557,6 +10547,8 @@ let
udisks_glue = callPackage ../os-specific/linux/udisks-glue { };
+ uksmtools = callPackage ../os-specific/linux/uksmtools { };
+
untie = callPackage ../os-specific/linux/untie { };
upower = callPackage ../os-specific/linux/upower { };
@@ -10783,6 +10775,7 @@ let
iosevka = callPackage ../data/fonts/iosevka { };
ipafont = callPackage ../data/fonts/ipafont {};
+ ipaexfont = callPackage ../data/fonts/ipaexfont {};
junicode = callPackage ../data/fonts/junicode { };
@@ -10936,6 +10929,8 @@ let
unifont_upper = callPackage ../data/fonts/unifont_upper { };
+ vanilla-dmz = callPackage ../data/icons/vanilla-dmz { };
+
vistafonts = callPackage ../data/fonts/vista-fonts { };
wqy_microhei = callPackage ../data/fonts/wqy-microhei { };
@@ -10948,7 +10943,7 @@ let
xlsx2csv = pythonPackages.xlsx2csv;
- zeal = callPackage ../data/documentation/zeal { };
+ zeal = qt5.callPackage ../data/documentation/zeal { };
### APPLICATIONS
@@ -11018,7 +11013,7 @@ let
amsn = callPackage ../applications/networking/instant-messengers/amsn { };
- antimony = callPackage ../applications/graphics/antimony {};
+ antimony = qt5.callPackage ../applications/graphics/antimony {};
antiword = callPackage ../applications/office/antiword {};
@@ -11094,7 +11089,7 @@ let
};
awesome = awesome-3-5;
- awesomebump = callPackage ../applications/graphics/awesomebump { };
+ awesomebump = qt5.callPackage ../applications/graphics/awesomebump { };
inherit (gnome3) baobab;
@@ -11175,7 +11170,7 @@ let
calcurse = callPackage ../applications/misc/calcurse { };
- calibre = callPackage ../applications/misc/calibre {
+ calibre = qt5.callPackage ../applications/misc/calibre {
inherit (pythonPackages) pyqt5 sip_4_16;
};
@@ -11253,7 +11248,7 @@ let
cmatrix = callPackage ../applications/misc/cmatrix { };
- bomi = callPackage ../applications/video/bomi {
+ bomi = qt5.callPackage ../applications/video/bomi {
youtube-dl = pythonPackages.youtube-dl;
pulseSupport = config.pulseaudio or true;
};
@@ -11273,6 +11268,8 @@ let
constant-detune-chorus = callPackage ../applications/audio/constant-detune-chorus { };
+ copyq = callPackage ../applications/misc/copyq { };
+
coriander = callPackage ../applications/video/coriander {
inherit (gnome) libgnomeui GConf;
};
@@ -11309,7 +11306,7 @@ let
cutecom = callPackage ../tools/misc/cutecom { };
cutegram =
- let cp = qt5Libs.callPackage;
+ let cp = qt5.callPackage;
in cp ../applications/networking/instant-messengers/telegram/cutegram rec {
libqtelegram-aseman-edition = cp ../applications/networking/instant-messengers/telegram/libqtelegram-aseman-edition { };
telegram-qml = cp ../applications/networking/instant-messengers/telegram/telegram-qml {
@@ -11358,7 +11355,7 @@ let
plugins = [];
};
- dfasma = qt5Libs.callPackage ../applications/audio/dfasma { };
+ dfasma = qt5.callPackage ../applications/audio/dfasma { };
dia = callPackage ../applications/graphics/dia {
inherit (pkgs.gnome) libart_lgpl libgnomeui;
@@ -11640,10 +11637,12 @@ let
emacs24Packages = recurseIntoAttrs (emacsPackagesGen emacs24 pkgs.emacs24Packages);
- emacsPackagesNgGen = emacs: callPackage ./emacs-packages.nix {
+ emacsPackagesNgGen = emacs: import ./emacs-packages.nix {
overrides = (config.emacsPackageOverrides or (p: {})) pkgs;
- inherit emacs elpaPackages;
+ inherit lib newScope stdenv;
+ inherit fetchFromGitHub fetchgit fetchhg fetchurl;
+ inherit emacs texinfo makeWrapper;
trivialBuild = callPackage ../build-support/emacs/trivial.nix {
inherit emacs;
@@ -11662,12 +11661,8 @@ let
emacs24PackagesNg = recurseIntoAttrs (emacsPackagesNgGen emacs24);
- elpaPackages =
- let imported = import ../applications/editors/emacs-modes/elpa-packages.nix pkgs;
- in recurseIntoAttrs (imported.override (super: self: { inherit emacs; }));
-
- emacsWithPackages = callPackage ../build-support/emacs/wrapper.nix { };
- emacs24WithPackages = emacsWithPackages.override { emacs = emacs24; };
+ emacs24WithPackages = emacs24PackagesNg.emacsWithPackages;
+ emacsWithPackages = emacsPackagesNg.emacsWithPackages;
inherit (gnome3) empathy;
@@ -11703,6 +11698,8 @@ let
keepass = callPackage ../applications/misc/keepass { };
+ keepass-keefox = callPackage ../applications/misc/keepass-plugins/keefox { };
+
exrdisplay = callPackage ../applications/graphics/exrdisplay {
fltk = fltk20;
};
@@ -11717,7 +11714,7 @@ let
fluidsynth = callPackage ../applications/audio/fluidsynth { };
- fmit = qt5Libs.callPackage ../applications/audio/fmit { };
+ fmit = qt5.callPackage ../applications/audio/fmit { };
focuswriter = callPackage ../applications/editors/focuswriter { };
@@ -11729,7 +11726,7 @@ let
fribid = callPackage ../applications/networking/browsers/mozilla-plugins/fribid { };
- fritzing = callPackage ../applications/science/electronics/fritzing { };
+ fritzing = qt5.callPackage ../applications/science/electronics/fritzing { };
fvwm = callPackage ../applications/window-managers/fvwm { };
@@ -11816,7 +11813,7 @@ let
inherit (pkgs.gnome) libgnome libgnomeui;
};
- firestr = callPackage ../applications/networking/p2p/firestr
+ firestr = qt5.callPackage ../applications/networking/p2p/firestr
{ boost = boost155;
};
@@ -11938,7 +11935,7 @@ let
libquvi = callPackage ../applications/video/quvi/library.nix { };
- linssid = callPackage ../applications/networking/linssid { };
+ linssid = qt5.callPackage ../applications/networking/linssid { };
mi2ly = callPackage ../applications/audio/mi2ly {};
@@ -12031,7 +12028,7 @@ let
gosmore = callPackage ../applications/misc/gosmore { };
- gpsbabel = callPackage ../applications/misc/gpsbabel { };
+ gpsbabel = qt5.callPackage ../applications/misc/gpsbabel { };
gpscorrelate = callPackage ../applications/misc/gpscorrelate { };
@@ -12168,7 +12165,7 @@ let
lua = lua5;
};
- ipe = qt5Libs.callPackage ../applications/graphics/ipe {
+ ipe = qt5.callPackage ../applications/graphics/ipe {
ghostscript = ghostscriptX;
texlive = texlive.combine { inherit (texlive) scheme-small; };
};
@@ -12224,19 +12221,15 @@ let
boost = boost155;
};
- kdeApps_15_12 = import ../applications/kde-apps-15.12 { inherit pkgs; };
- kdeApps_stable = kdeApps_15_12;
- kdeApps_latest = kdeApps_15_12;
-
keepnote = callPackage ../applications/office/keepnote {
pygtk = pyGtkGlade;
};
kermit = callPackage ../tools/misc/kermit { };
- keyfinder = qt5Libs.callPackage ../applications/audio/keyfinder { };
+ keyfinder = qt5.callPackage ../applications/audio/keyfinder { };
- keyfinder-cli = qt5Libs.callPackage ../applications/audio/keyfinder-cli { };
+ keyfinder-cli = qt5.callPackage ../applications/audio/keyfinder-cli { };
keymon = callPackage ../applications/video/key-mon { };
@@ -12367,7 +12360,7 @@ let
webkit = webkitgtk2;
};
- luminanceHDR = callPackage ../applications/graphics/luminance-hdr { };
+ luminanceHDR = qt5.callPackage ../applications/graphics/luminance-hdr { };
lxdvdrip = callPackage ../applications/video/lxdvdrip { };
@@ -12492,6 +12485,14 @@ let
mopidy-mopify = callPackage ../applications/audio/mopidy-mopify { };
+ mopidy-spotify-tunigo = callPackage ../applications/audio/mopidy-spotify-tunigo { };
+
+ mopidy-youtube = callPackage ../applications/audio/mopidy-youtube { };
+
+ mopidy-soundcloud = callPackage ../applications/audio/mopidy-soundcloud { };
+
+ mopidy-musicbox-webclient = callPackage ../applications/audio/mopidy-musicbox-webclient { };
+
mozplugger = callPackage ../applications/networking/browsers/mozilla-plugins/mozplugger {};
easytag = callPackage ../applications/audio/easytag { };
@@ -12564,7 +12565,7 @@ let
iceSupport = config.murmur.iceSupport or true;
}) mumble mumble_git murmur murmur_git;
- musescore = qt5Libs.callPackage ../applications/audio/musescore { };
+ musescore = qt5.callPackage ../applications/audio/musescore { };
mutt = callPackage ../applications/networking/mailreaders/mutt { };
mutt-with-sidebar = callPackage ../applications/networking/mailreaders/mutt {
@@ -12598,11 +12599,11 @@ let
stdenv = stdenv_32bit;
};
- shotcut = callPackage ../applications/video/shotcut { mlt = mlt-qt5; };
+ shotcut = qt5.callPackage ../applications/video/shotcut { };
- smplayer = callPackage ../applications/video/smplayer { };
+ smplayer = qt5.callPackage ../applications/video/smplayer { };
- smtube = callPackage ../applications/video/smtube {};
+ smtube = qt5.callPackage ../applications/video/smtube {};
sup = callPackage ../applications/networking/mailreaders/sup {
ruby = ruby_1_9_3.override { cursesSupport = true; };
@@ -12697,7 +12698,7 @@ let
inherit (gnome) libglade;
};
- obs-studio = callPackage ../applications/video/obs-studio {
+ obs-studio = qt5.callPackage ../applications/video/obs-studio {
pulseaudioSupport = config.pulseaudio or true;
};
@@ -12766,9 +12767,9 @@ let
inherit (gst_all_1) gstreamer gst-plugins-base;
};
- photoqt = callPackage ../applications/graphics/photoqt { };
+ photoqt = qt5.callPackage ../applications/graphics/photoqt { };
- phototonic = callPackage ../applications/graphics/phototonic { };
+ phototonic = qt5.callPackage ../applications/graphics/phototonic { };
pianobar = callPackage ../applications/audio/pianobar { };
@@ -12896,9 +12897,9 @@ let
qsynth = callPackage ../applications/audio/qsynth { };
- qtox = callPackage ../applications/networking/instant-messengers/qtox { };
+ qtox = qt5.callPackage ../applications/networking/instant-messengers/qtox { };
- qtpass = callPackage ../applications/misc/qtpass { };
+ qtpass = qt5.callPackage ../applications/misc/qtpass { };
qtpfsgui = callPackage ../applications/graphics/qtpfsgui { };
@@ -12916,7 +12917,7 @@ let
gst_plugins_bad = null;
};
- qutebrowser = callPackage ../applications/networking/browsers/qutebrowser {
+ qutebrowser = qt5.callPackage ../applications/networking/browsers/qutebrowser {
inherit (python34Packages) buildPythonPackage python pyqt5 jinja2 pygments pyyaml pypeg2;
};
@@ -12930,7 +12931,7 @@ let
demo = false;
};
- rapcad = callPackage ../applications/graphics/rapcad {};
+ rapcad = qt5.callPackage ../applications/graphics/rapcad {};
rapidsvn = callPackage ../applications/version-management/rapidsvn { };
@@ -13104,15 +13105,11 @@ let
copy-com = callPackage ../applications/networking/copy-com { };
- dropbox = callPackage ../applications/networking/dropbox {
- qtbase = qt5.base;
- qtdeclarative = qt5.declarative;
- qtwebkit = qt5.webkit;
- };
+ dropbox = qt5.callPackage ../applications/networking/dropbox { };
dropbox-cli = callPackage ../applications/networking/dropbox-cli { };
- lightdm = qt5Libs.callPackage ../applications/display-managers/lightdm {
+ lightdm = qt5.callPackage ../applications/display-managers/lightdm {
qt4 = null;
withQt5 = false;
};
@@ -13133,7 +13130,7 @@ let
printrun = callPackage ../applications/misc/printrun { };
- sddm = qt5Libs.callPackage ../applications/display-managers/sddm {
+ sddm = qt5.callPackage ../applications/display-managers/sddm {
themes = []; # extra themes, etc.
};
@@ -13155,7 +13152,7 @@ let
sipp = callPackage ../development/tools/misc/sipp { };
- sonic-visualiser = qt5Libs.callPackage ../applications/audio/sonic-visualiser {
+ sonic-visualiser = qt5.callPackage ../applications/audio/sonic-visualiser {
inherit (pkgs.vamp) vampSDK;
};
@@ -13252,7 +13249,7 @@ let
gconf = gnome.GConf;
};
- teamspeak_client = callPackage ../applications/networking/instant-messengers/teamspeak/client.nix { };
+ teamspeak_client = qt55.callPackage ../applications/networking/instant-messengers/teamspeak/client.nix { };
teamspeak_server = callPackage ../applications/networking/instant-messengers/teamspeak/server.nix { };
taskjuggler = callPackage ../applications/misc/taskjuggler { };
@@ -13333,9 +13330,11 @@ let
tomahawk = callPackage ../applications/audio/tomahawk {
inherit (pkgs.kde4) kdelibs;
+ taglib = taglib_1_9;
enableXMPP = config.tomahawk.enableXMPP or true;
enableKDE = config.tomahawk.enableKDE or false;
enableTelepathy = config.tomahawk.enableTelepathy or false;
+ quazip = qt5.quazip.override { qt = qt4; };
};
torchat = callPackage ../applications/networking/instant-messengers/torchat {
@@ -13369,7 +13368,7 @@ let
twister = callPackage ../applications/networking/p2p/twister { };
- twmn = callPackage ../applications/misc/twmn { };
+ twmn = qt5.callPackage ../applications/misc/twmn { };
twinkle = callPackage ../applications/networking/instant-messengers/twinkle { };
@@ -13510,7 +13509,7 @@ let
ffmpeg = ffmpeg_2;
};
- vlc_qt5 = qt5Libs.vlc;
+ vlc_qt5 = qt5.vlc;
vmpk = callPackage ../applications/audio/vmpk { };
@@ -13986,7 +13985,7 @@ let
chocolateDoom = callPackage ../games/chocolate-doom { };
- cockatrice = qt5Libs.callPackage ../games/cockatrice { };
+ cockatrice = qt5.callPackage ../games/cockatrice { };
confd = goPackages.confd.bin // { outputs = [ "bin" ]; };
@@ -14054,7 +14053,7 @@ let
fish-fillets-ng = callPackage ../games/fish-fillets-ng {};
- flightgear = qt5Libs.callPackage ../games/flightgear { };
+ flightgear = qt5.callPackage ../games/flightgear { };
freecell-solver = callPackage ../games/freecell-solver { };
@@ -14155,11 +14154,9 @@ let
libpng = libpng12;
};
- mnemosyne = callPackage ../games/mnemosyne {
- inherit (pythonPackages) matplotlib cherrypy sqlite3;
- };
+ mnemosyne = callPackage ../games/mnemosyne { };
- mudlet = qt5Libs.callPackage ../games/mudlet {
+ mudlet = qt5.callPackage ../games/mudlet {
inherit (lua51Packages) luafilesystem lrexlib luazip luasqlite3;
};
@@ -14729,12 +14726,16 @@ let
numix-gtk-theme = callPackage ../misc/themes/gtk3/numix-gtk-theme { };
- plasma55 = import ../desktops/plasma-5.5 { inherit pkgs; };
- plasma5_stable = plasma55;
- plasma5_latest = plasma55;
-
kde5PackagesFun = self: with self; {
+ calamares = callPackage ../tools/misc/calamares rec {
+ python = python3;
+ boost = pkgs.boost.override { python=python3; };
+ libyamlcpp = callPackage ../development/libraries/libyaml-cpp { makePIC=true; boost=boost; };
+ };
+
+ dfilemanager = callPackage ../applications/misc/dfilemanager { };
+
fcitx-qt5 = callPackage ../tools/inputmethods/fcitx/fcitx-qt5.nix { };
k9copy = callPackage ../applications/video/k9copy {};
@@ -14774,14 +14775,22 @@ let
};
kde5 =
- recurseIntoAttrs
- (lib.makeScope qt55Libs.newScope (self:
- kf5_stable self // plasma5_stable self // kdeApps_stable self // kde5PackagesFun self));
+ let
+ frameworks = import ../development/libraries/kde-frameworks-5.17 { inherit pkgs; };
+ plasma = import ../desktops/plasma-5.5 { inherit pkgs; };
+ apps = import ../applications/kde-apps-15.12 { inherit pkgs; };
+ merged = self: frameworks self // plasma self // apps self // kde5PackagesFun self;
+ in
+ recurseIntoAttrs (lib.makeScope qt5.newScope merged);
kde5_latest =
- recurseIntoAttrs
- (lib.makeScope qt55Libs.newScope (self:
- kf5_latest self // plasma5_latest self // kdeApps_latest self // kde5PackagesFun self));
+ let
+ frameworks = import ../development/libraries/kde-frameworks-5.17 { inherit pkgs; };
+ plasma = import ../desktops/plasma-5.5 { inherit pkgs; };
+ apps = import ../applications/kde-apps-15.12 { inherit pkgs; };
+ merged = self: frameworks self // plasma self // apps self // kde5PackagesFun self;
+ in
+ recurseIntoAttrs (lib.makeScope qt5.newScope merged);
theme-vertex = callPackage ../misc/themes/vertex { };
@@ -15244,7 +15253,7 @@ let
### MISC
- antimicro = callPackage ../tools/misc/antimicro { };
+ antimicro = qt5.callPackage ../tools/misc/antimicro { };
atari800 = callPackage ../misc/emulators/atari800 { };
@@ -15398,7 +15407,7 @@ let
nixops = callPackage ../tools/package-management/nixops { };
- nixopsUnstable = nixops;
+ nixopsUnstable = callPackage ../tools/package-management/nixops/unstable.nix { };
nixui = callPackage ../tools/package-management/nixui { node_webkit = nwjs_0_12; };
@@ -15453,7 +15462,7 @@ let
inherit (pythonPackages) pexpect paramiko;
};
- robomongo = callPackage ../applications/misc/robomongo { };
+ robomongo = qt5.callPackage ../applications/misc/robomongo { };
rucksack = callPackage ../development/tools/rucksack { };
@@ -15768,8 +15777,8 @@ let
snes9x-gtk = callPackage ../misc/emulators/snes9x-gtk { };
higan = callPackage ../misc/emulators/higan {
- profile = config.higan.profile or "performance";
- guiToolkit = config.higan.guiToolkit or "gtk";
+ inherit (gnome) gtksourceview;
+ profile = config.higan.profile or "balanced";
};
misc = callPackage ../misc/misc.nix { };
@@ -15788,6 +15797,7 @@ let
### Deprecated aliases - for backward compatibility
aliases = with self; rec {
+ accounts-qt = qt5.accounts-qt; # added 2015-12-19
adobeReader = adobe-reader;
arduino_core = arduino-core; # added 2015-02-04
asciidocFull = asciidoc-full; # added 2014-06-22
@@ -15801,24 +15811,35 @@ aliases = with self; rec {
exfat-utils = exfat; # 2015-09-11
firefoxWrapper = firefox-wrapper;
fuse_exfat = exfat; # 2015-09-11
+ grantlee5 = qt5.grantlee; # added 2015-12-19
htmlTidy = html-tidy; # added 2014-12-06
inherit (haskell.compiler) jhc uhc; # 2015-05-15
inotifyTools = inotify-tools;
jquery_ui = jquery-ui; # added 2014-09-07
+ libdbusmenu_qt5 = qt5.libdbusmenu; # added 2015-12-19
libtidy = html-tidy; # added 2014-12-21
lttngTools = lttng-tools; # added 2014-07-31
lttngUst = lttng-ust; # added 2014-07-31
+ mlt-qt5 = qt5.mlt; # added 2015-12-19
nfsUtils = nfs-utils; # added 2014-12-06
+ phonon_qt5 = qt5.phonon; # added 2015-12-19
+ phonon_qt5_backend_gstreamer = qt5.phonon-backend-gstreamer; # added 2015-12-19
+ poppler_qt5 = qt5.poppler; # added 2015-12-19
+ qca-qt5 = qt5.qca-qt5; # added 2015-12-19
+ qtcreator = qt5.qtcreator; # added 2015-12-19
quassel_qt5 = kde5.quassel_qt5; # added 2015-09-30
quasselClient_qt5 = kde5.quasselClient_qt5; # added 2015-09-30
quasselDaemon_qt5 = kde5.quasselDaemon; # added 2015-09-30
quassel_kf5 = kde5.quassel; # added 2015-09-30
quasselClient_kf5 = kde5.quasselClient; # added 2015-09-30
+ qwt6 = qt5.qwt; # added 2015-12-19
rdiff_backup = rdiff-backup; # added 2014-11-23
rssglx = rss-glx; #added 2015-03-25
rxvt_unicode_with-plugins = rxvt_unicode-with-plugins; # added 2015-04-02
+ signon = qt5.signon; # added 2015-12-19
speedtest_cli = speedtest-cli; # added 2015-02-17
sqliteInteractive = sqlite-interactive; # added 2014-12-06
+ telepathy_qt5 = qt5.telepathy; # added 2015-12-19
x11 = xlibsWrapper; # added 2015-09
xf86_video_nouveau = xorg.xf86videonouveau; # added 2015-09
xlibs = xorg; # added 2015-09
diff --git a/pkgs/top-level/emacs-packages.nix b/pkgs/top-level/emacs-packages.nix
index 2acb4cbbe0b..fe57a2f122a 100644
--- a/pkgs/top-level/emacs-packages.nix
+++ b/pkgs/top-level/emacs-packages.nix
@@ -2,12 +2,10 @@
## FOR USERS
#
-# Recommended way: simply use `emacsWithPackages` from
-# `all-packages.nix` with the packages you want.
+# Recommended: simply use `emacsWithPackages` with the packages you want.
#
-# Possible way: use `emacs` from `all-packages.nix`, install
-# everything to a system or user profile and then add this at the
-# start your `init.el`:
+# Alterative: use `emacs`, install everything to a system or user profile
+# and then add this at the start your `init.el`:
/*
(require 'package)
@@ -33,9 +31,9 @@
{ overrides
-, lib, stdenv, fetchurl, fetchgit, fetchFromGitHub, fetchhg
+, lib, newScope, stdenv, fetchurl, fetchgit, fetchFromGitHub, fetchhg
-, emacs, elpaPackages
+, emacs, texinfo, makeWrapper
, trivialBuild
, melpaBuild
@@ -44,10 +42,30 @@
with lib.licenses;
-let packagesFun = super: self: with self; {
+let
+
+ elpaPackages = import ../applications/editors/emacs-modes/elpa-packages.nix {
+ inherit fetchurl lib stdenv texinfo;
+ };
+
+ melpaStablePackages = import ../applications/editors/emacs-modes/melpa-stable-packages.nix {
+ inherit lib;
+ };
+
+ melpaPackages = import ../applications/editors/emacs-modes/melpa-packages.nix {
+ inherit lib;
+ };
+
+ emacsWithPackages = import ../build-support/emacs/wrapper.nix {
+ inherit lib makeWrapper stdenv;
+ };
+
+ packagesFun = self: with self; {
inherit emacs melpaBuild trivialBuild;
+ emacsWithPackages = emacsWithPackages self;
+
## START HERE
ac-haskell-process = melpaBuild rec {
@@ -66,21 +84,6 @@ let packagesFun = super: self: with self; {
};
};
- ace-jump-mode = melpaBuild rec {
- pname = "ace-jump-mode";
- version = "20140616";
- src = fetchFromGitHub {
- owner = "winterTTr";
- repo = pname;
- rev = "8351e2df4fbbeb2a4003f2fb39f46d33803f3dac";
- sha256 = "17axrgd99glnl6ma4ls3k01ysdqmiqr581wnrbsn3s4gp53mm2x6";
- };
- meta = {
- description = "Advanced cursor movements mode for Emacs";
- license = gpl3Plus;
- };
- };
-
tablist = melpaBuild rec {
pname = "tablist";
inherit (pdf-tools) src version;
@@ -2019,6 +2022,13 @@ let packagesFun = super: self: with self; {
};
};
-};
+ };
-in elpaPackages.override packagesFun
+in
+ lib.makeScope newScope (self:
+ {}
+ // melpaPackages self
+ // melpaStablePackages self
+ // elpaPackages self
+ // packagesFun self
+ )
diff --git a/pkgs/top-level/go-packages.nix b/pkgs/top-level/go-packages.nix
index 17da59b353e..8357971d0f9 100644
--- a/pkgs/top-level/go-packages.nix
+++ b/pkgs/top-level/go-packages.nix
@@ -2938,12 +2938,13 @@ let
};
syncthing = buildFromGitHub rec {
- version = "0.12.4";
+ version = "0.12.9";
rev = "v${version}";
owner = "syncthing";
repo = "syncthing";
- sha256 = "0sri86hsjpf4xlhi45zkafi1jncamzplxnvriza0xsah1bc31g65";
- # buildFlags = [ "-tags noupgrade,release" ];
+ sha256 = "0d420bmx1ifhjgbc65bflnawqddi4h86p7fvxzzqwfsaj94fsfbi";
+ buildFlags = [ "-tags noupgrade,release" ];
+ disabled = isGo14;
buildInputs = [
go-lz4 du luhn xdr snappy ratelimit osext
goleveldb suture qart crypto net text rcrowley.go-metrics
@@ -3217,24 +3218,27 @@ let
sha256 = "0zc1ah5cvaqa3zw0ska89a40x445vwl1ixz8v42xi3zicx16ibwz";
};
- acbuild = stdenv.mkDerivation rec {
- version = "0.1.1";
- name = "acbuild-${version}";
- src = fetchFromGitHub {
- rev = "beae3971de6b2c35807a98ef1d0fa3167cc3a4a8";
- owner = "appc";
- repo = "acbuild";
- sha256 = "1mjmg2xj190dypp2yqslrx8xhwcyrrz38xxp0rig4fr60i2qy41j";
- };
- buildInputs = [ go ];
- patchPhase = ''
- sed -i -e 's|\$(git describe --dirty)|"${version}"|' build
- sed -i -e 's|\$GOBIN/acbuild|$out/bin/acbuild|' build
- '';
- installPhase = ''
- mkdir -p $out/bin
- ./build
- '';
+ color = buildFromGitHub {
+ rev = "9aae6aaa22315390f03959adca2c4d395b02fcef";
+ owner = "fatih";
+ repo = "color";
+ sha256 = "1vjcgx4xc0h4870qzz4mrh1l0f07wr79jm8pnbp6a2yd41rm8wjp";
+ propagatedBuildInputs = [ net go-isatty ];
+ buildInputs = [ ansicolor go-colorable ];
};
+ pup = buildFromGitHub {
+ rev = "9693b292601dd24dab3c04bc628f9ae3fa72f831";
+ owner = "EricChiang";
+ repo = "pup";
+ sha256 = "04j3fy1vk6xap8ad7k3c05h9b5mg2n1vy9vcyg9rs02cb13d3sy0";
+ propagatedBuildInputs = [ net ];
+ buildInputs = [ go-colorable color ];
+ postPatch = ''
+ grep -sr github.com/ericchiang/pup/Godeps/_workspace/src/ |
+ cut -f 1 -d : |
+ sort -u |
+ xargs -d '\n' sed -i -e s,github.com/ericchiang/pup/Godeps/_workspace/src/,,g
+ '';
+ };
}; in self
diff --git a/pkgs/top-level/haskell-packages.nix b/pkgs/top-level/haskell-packages.nix
index ad29a94b199..ab3a1e06393 100644
--- a/pkgs/top-level/haskell-packages.nix
+++ b/pkgs/top-level/haskell-packages.nix
@@ -310,6 +310,9 @@ rec {
lts-3_18 = packages.ghc7102.override {
packageSetConfig = callPackage ../development/haskell-modules/configuration-lts-3.18.nix { };
};
+ lts-3_19 = packages.ghc7102.override {
+ packageSetConfig = callPackage ../development/haskell-modules/configuration-lts-3.19.nix { };
+ };
};
}
diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix
index 802ea500c00..26b6d7de503 100644
--- a/pkgs/top-level/python-packages.nix
+++ b/pkgs/top-level/python-packages.nix
@@ -166,7 +166,7 @@ in modules // {
pyqt5 = callPackage ../development/python-modules/pyqt/5.x.nix {
sip = self.sip_4_16;
pythonDBus = self.dbus;
- qt5 = pkgs.qt5;
+ inherit (pkgs.qt5) qtbase qtsvg qtwebkit;
};
pyside = callPackage ../development/python-modules/pyside { };
@@ -965,13 +965,12 @@ in modules // {
};
audiotools = buildPythonPackage rec {
- name = "audiotools-2.22";
-
- disabled = isPy3k;
+ name = "audiotools-${version}";
+ version = "3.1.1";
src = pkgs.fetchurl {
- url = "mirror://sourceforge/audiotools/${name}.tar.gz";
- sha256 = "1c52pggsbxdbj8h92njf4h0jgfndh4yv58ad723pidys47nw1y71";
+ url = "https://github.com/tuffy/python-audio-tools/archive/v${version}.tar.gz";
+ sha256 = "0ymlxvqkqhzk4q088qwir3dq0zgwqlrrdfnq7f0iq97g05qshm2c";
};
meta = {
@@ -1513,6 +1512,22 @@ in modules // {
propagatedBuildInputs = with self; [ iowait psutil pyzmq tornado mock ];
};
+ colorlog = buildPythonPackage rec {
+ name = "colorlog-${version}";
+ version = "2.6.0";
+
+ src = pkgs.fetchurl {
+ url = "https://pypi.python.org/packages/source/c/colorlog/${name}.tar.gz";
+ sha256 = "1s8z9zr4r18igr4rri71nba01arnpppifrkaxhi2xb51500sw0qg";
+ };
+
+ meta = {
+ description = "Log formatting with colors";
+ homepage = https://github.com/borntyping/python-colorlog;
+ license = licenses.free; # BSD-like
+ };
+ };
+
colour = buildPythonPackage rec {
name = "${pname}-${version}";
pname = "colour";
@@ -1795,28 +1810,37 @@ in modules // {
blaze = buildPythonPackage rec {
name = "blaze-${version}";
- version = "0.8.3";
+ version = "0.9.0";
src = pkgs.fetchurl {
url = "https://pypi.python.org/packages/source/b/blaze/${name}.tar.gz";
- sha256 = "4f8ceb1248ba44f833f5a46a18b6ea44130a5999d5234324d0456b5f9ffe716b";
+ sha256 = "07h284n6fr0lvy58a6lvwwfb45sy7lggllx2y2vzzs4xrvf5k1i7";
};
buildInputs = with self; [ pytest ];
propagatedBuildInputs = with self; [
- numpy
- pandas
- datashape
- odo
- toolz
cytoolz
- multipledispatch
- sqlalchemy9 # sqlalchemy8 should also work
- psutil
- numba
+ datashape
+ flask
h5py
+ multipledispatch
+ numba
+ numpy
+ odo
+ pandas
+ psutil
+ pymongo
+ pyyaml
+ requests2
+ sqlalchemy_1_0
+ tables
+ toolz
];
+ checkPhase = ''
+ py.test blaze/tests
+ '';
+
meta = {
homepage = https://github.com/ContinuumIO/blaze;
description = "Allows Python users a familiar interface to query data living in other data storage systems";
@@ -2199,6 +2223,44 @@ in modules // {
buildout = self.zc_buildout;
buildout152 = self.zc_buildout152;
+ check-manifest = buildPythonPackage rec {
+ name = "check-manifest";
+ version = "0.30";
+
+ src = pkgs.fetchurl {
+ url = "https://pypi.python.org/packages/source/c/check-manifest/check-manifest-${version}.tar.gz";
+ md5 = "b18f7f0bcd02f52d40148c388ace9290";
+ };
+
+ doCheck = false;
+
+ meta = {
+ homepage = https://github.com/mgedmin/check-manifest;
+ description = "Check MANIFEST.in in a Python source package for completeness";
+ license = licenses.mit;
+ maintainers = with maintainers; [ lewo ];
+ };
+ };
+
+ devpi-common = buildPythonPackage rec {
+ name = "devpi-common";
+ version = "2.0.8";
+
+ src = pkgs.fetchurl {
+ url = "https://pypi.python.org/packages/source/d/devpi-common/devpi-common-${version}.tar.gz";
+ md5 = "3739af0f59151d1aaa67035fec8f97c6";
+ };
+
+ propagatedBuildInputs = [ self.requests2 self.py ];
+
+ meta = {
+ homepage = https://bitbucket.org/hpk42/devpi;
+ description = "Utilities jointly used by devpi-server and devpi-client";
+ license = licenses.mit;
+ maintainers = with maintainers; [ lewo ];
+ };
+ };
+
# A patched version of buildout, useful for buildout based development on Nix
zc_buildout_nix = callPackage ../development/python-modules/buildout-nix { };
@@ -3208,11 +3270,11 @@ in modules // {
mahotas = buildPythonPackage rec {
name = "python-mahotas-${version}";
- version = "1.4.0";
+ version = "1.4.1";
src = pkgs.fetchurl {
url = "https://github.com/luispedro/mahotas/archive/release-${version}.tar.gz";
- sha256 = "30c4b979e0d5f4c013860321766a79ffcabe56c1ad9088e5d0c6b36aec5f0415";
+ sha256 = "a684d339a3a4135f6f7161851161174755e9ea643b856b0bb48abd5515041ab6";
};
buildInputs = with self; [
@@ -3225,6 +3287,8 @@ in modules // {
imread
];
+ disabled = stdenv.isi686; # Failing tests
+
meta = with stdenv.lib; {
description = "Computer vision package based on numpy";
homepage = https://readthedocs.org/projects/mahotas/;
@@ -3691,11 +3755,11 @@ in modules // {
dask = buildPythonPackage rec {
name = "dask-${version}";
- version = "0.7.0";
+ version = "0.7.5";
src = pkgs.fetchurl {
url = "https://pypi.python.org/packages/source/d/dask/${name}.tar.gz";
- sha256 = "3b48646e9e66ec21a6885700d39ea90e2c2a7ad5d26773a8413b570eb1a67b3e";
+ sha256 = "05s1jz3y7llzh3373ab6yx0fb47f0mfy9xyqbknkwsnhabj6g2ib";
};
propagatedBuildInputs = with self; [numpy toolz dill];
@@ -3710,16 +3774,20 @@ in modules // {
datashape = buildPythonPackage rec {
name = "datashape-${version}";
- version = "0.4.7";
+ version = "0.5.0";
src = pkgs.fetchurl {
url = "https://pypi.python.org/packages/source/D/DataShape/${name}.tar.gz";
- sha256 = "14b2ef766d4c9652ab813182e866f493475e65e558bed0822e38bf07bba1a278";
+ sha256 = "13w0rfaqpqkh30bxmx7i7kjfrfkm5maa35gj3c464wah7i2zm9wp";
};
- buildInputs = with self; [ pytest ];
+ buildInputs = with self; [ pytest mock ];
propagatedBuildInputs = with self; [ numpy multipledispatch dateutil ];
+ checkPhase = ''
+ py.test datashape/tests
+ '';
+
meta = {
homepage = https://github.com/ContinuumIO/datashape;
description = "A data description language";
@@ -6765,8 +6833,10 @@ in modules // {
nativeBuildInputs = [ pkgs.intltool ];
postInstall = ''
+ mkdir -p $out/share/applications
cp -R deluge/data/pixmaps $out/share/
cp -R deluge/data/icons $out/share/
+ cp deluge/data/share/applications/deluge.desktop $out/share/applications
'';
meta = {
@@ -6825,6 +6895,27 @@ in modules // {
];
};
+ django_1_9 = buildPythonPackage rec {
+ name = "Django-${version}";
+ version = "1.9";
+ disabled = pythonOlder "2.7";
+
+ src = pkgs.fetchurl {
+ url = "http://www.djangoproject.com/m/releases/1.9/${name}.tar.gz";
+ sha256 = "0rkwdxh63y7pwx9larl2g7m1z206675dzx7ipd44p3bpm0clpzh5";
+ };
+
+ # patch only $out/bin to avoid problems with starter templates (see #3134)
+ postFixup = ''
+ wrapPythonProgramsIn $out/bin "$out $pythonPath"
+ '';
+
+ meta = {
+ description = "A high-level Python Web framework";
+ homepage = https://www.djangoproject.com/;
+ };
+ };
+
django_1_8 = buildPythonPackage rec {
name = "Django-${version}";
version = "1.8.4";
@@ -7611,14 +7702,14 @@ in modules // {
};
docker_compose = buildPythonPackage rec {
- version = "1.5.1";
+ version = "1.5.2";
name = "docker-compose-${version}";
namePrefix = "";
disabled = isPy3k || isPyPy;
src = pkgs.fetchurl {
url = "https://pypi.python.org/packages/source/d/docker-compose/${name}.tar.gz";
- sha256 = "0mdgpwkpss48zz36sw65crqjry87ba5p3mkl6ncbb8jqsxgqhpnz";
+ sha256 = "79aa7e2e6ef9ab1936f8777476ffd4bb329875ec3d3664d239896d2f2a3c4f4f";
};
# lots of networking and other fails
@@ -9948,6 +10039,10 @@ in modules // {
buildInputs = with self; [ pexpect ];
+ prePatch = ''
+ substituteInPlace setup.py --replace "sympy==0.7.6" "sympy"
+ '';
+
propagatedBuildInputs = with self; [
argparse
cython
@@ -11435,11 +11530,11 @@ in modules // {
};
in buildPythonPackage ( rec {
name = "numpy-${version}";
- version = "1.10.1";
+ version = "1.10.2";
src = pkgs.fetchurl {
url = "mirror://sourceforge/numpy/${name}.tar.gz";
- sha256 = "8b9f453f29ce96a14e625100d3dcf8926301d36c5f622623bf8820e748510858";
+ sha256 = "23a3befdf955db4d616f8bb77b324680a80a323e0c42a7e8d7388ef578d8ffa9";
};
disabled = isPyPy; # WIP
@@ -11689,15 +11784,20 @@ in modules // {
odo = buildPythonPackage rec {
name = "odo-${version}";
- version= "0.3.3";
+ version= "0.4.0";
src = pkgs.fetchurl {
url = "https://pypi.python.org/packages/source/o/odo/${name}.tar.gz";
- sha256 = "2499ee86c26c74daa28f21ed235ca331911065950deea5169ebdb7d5dae6ebef";
+ sha256 = "0xqm4zb7a7a2cbik9kn6yk0kr26n90iqj102h5wb42x6z5v4mn79";
};
+ buildInputs = with self; [ pytest ];
propagatedBuildInputs = with self; [ datashape numpy pandas toolz multipledispatch networkx ];
+ checkPhase = ''
+ py.test odo/tests
+ '';
+
meta = {
homepage = https://github.com/ContinuumIO/odo;
description = "Data migration utilities";
@@ -13105,7 +13205,7 @@ in modules // {
pytz
xlrd
bottleneck
- sqlalchemy9
+ sqlalchemy_1_0
lxml
# Disabling this because an upstream dependency, pep8, is broken on v3.5.
(if isPy35 then null else html5lib)
@@ -17146,7 +17246,7 @@ in modules // {
support = import ../development/python-modules/numpy-scipy-support.nix {
inherit python;
openblas = pkgs.openblasCompat;
- pkgName = "numpy";
+ pkgName = "scipy";
};
in buildPythonPackage rec {
name = "scipy-${version}";
@@ -17164,8 +17264,18 @@ in modules // {
sed -i '0,/from numpy.distutils.core/s//import setuptools;from numpy.distutils.core/' setup.py
'';
+ # First test: RuntimeWarning: Mean of empty slice.
+ # Second: SyntaxError: invalid syntax. Due to wrapper?
+ # Third: test checks permissions
+ prePatch = ''
+ substituteInPlace scipy/stats/tests/test_stats.py --replace "test_chisquare_masked_arrays" "remove_this_one"
+ rm scipy/linalg/tests/test_lapack.py
+ substituteInPlace scipy/weave/tests/test_catalog.py --replace "test_user" "remove_this_one"
+ '';
+
inherit (support) preBuild checkPhase;
+ patches = [../development/python-modules/scipy-0.16.1-decorator-fix.patch];
setupPyBuildFlags = [ "--fcompiler='gnu95'" ];
meta = {
@@ -18219,12 +18329,12 @@ in modules // {
};
sqlalchemy_1_0 = self.sqlalchemy9.override rec {
- name = "SQLAlchemy-1.0.9";
+ name = "SQLAlchemy-1.0.10";
doCheck = !isPyPy; # lots of tests fail
src = pkgs.fetchurl {
url = "https://pypi.python.org/packages/source/S/SQLAlchemy/${name}.tar.gz";
- sha256 = "03mi79s8dcsqpwql98mlvaf6mf4xf5j3fjkv5m6dgibfwc0pbly3";
+ sha256 = "963415bf4ea4fa13698893464bc6917d291331e0e8202dddd0ebfed2864ef7e3";
};
};
@@ -18476,7 +18586,6 @@ in modules // {
};
};
-
structlog = buildPythonPackage rec {
name = "structlog-15.3.0";
@@ -18518,21 +18627,59 @@ in modules // {
};
};
+ syncthing-gtk = buildPythonPackage rec {
+ version = "0.6.3";
+ name = "syncthing-gtk-${version}";
+ src = pkgs.fetchFromGitHub {
+ owner = "syncthing";
+ repo = "syncthing-gtk";
+ rev = "v${version}";
+ sha256 = "1qa5bw2qizjiqvkms8i31wsjf8cw9p0ciamxgfgq6n37wcalv6ms";
+ };
- # XXX: ValueError: ZIP does not support timestamps before 1980
- # svneverever = buildPythonPackage rec {
- # name = "svneverever-778489a8";
- #
- # src = pkgs.fetchgit {
- # url = git://git.goodpoint.de/svneverever.git;
- # rev = "778489a8c6f07825fb18c9da3892a781c3d659ac";
- # sha256 = "41c9da1dab2be7b60bff87e618befdf5da37c0a56287385cb0cbd3f91e452bb6";
- # };
- #
- # propagatedBuildInputs = with self; [ pysvn argparse ];
- #
- # doCheck = false;
- # };
+ disabled = isPy3k;
+
+ propagatedBuildInputs = with self; [ pkgs.syncthing dateutil pyinotify pkgs.libnotify pkgs.psmisc
+ pygobject3 pkgs.gtk3 ];
+
+ patchPhase = ''
+ substituteInPlace "scripts/syncthing-gtk" \
+ --replace "/usr/share" "$out/share"
+ substituteInPlace setup.py --replace "version = get_version()" "version = '${version}'"
+ '';
+
+ meta = {
+ description = " GTK3 & python based GUI for Syncthing ";
+ maintainers = with maintainers; [ DamienCassou ];
+ platforms = pkgs.syncthing.meta.platforms;
+ homepage = "https://github.com/syncthing/syncthing-gtk";
+ license = licenses.gpl2;
+ };
+ };
+
+ systemd = buildPythonPackage rec {
+ version = "231";
+ name = "python-systemd-${version}";
+
+ src = pkgs.fetchurl {
+ url = "https://github.com/systemd/python-systemd/archive/v${version}.tar.gz";
+ sha256 = "1sifq7mdg0y5ngab8vjy8995nz9c0hxny35dxs5qjx0k0hyzb71c";
+ };
+
+ buildInputs = with pkgs; [ systemd pkgconfig ];
+
+ patchPhase = ''
+ substituteInPlace setup.py \
+ --replace "/usr/include" "${pkgs.systemd}/include"
+ echo '#include ' >> systemd/pyutil.h
+ '';
+
+ meta = {
+ description = "Python module for native access to the systemd facilities";
+ homepage = http://www.freedesktop.org/software/systemd/python-systemd/;
+ license = licenses.lgpl21;
+ };
+ };
tabulate = buildPythonPackage rec {
version = "0.7.5";
@@ -18578,36 +18725,6 @@ in modules // {
};
};
- syncthing-gtk = buildPythonPackage rec {
- version = "0.6.3";
- name = "syncthing-gtk-${version}";
- src = pkgs.fetchFromGitHub {
- owner = "syncthing";
- repo = "syncthing-gtk";
- rev = "v${version}";
- sha256 = "1qa5bw2qizjiqvkms8i31wsjf8cw9p0ciamxgfgq6n37wcalv6ms";
- };
-
- disabled = isPy3k;
-
- propagatedBuildInputs = with self; [ pkgs.syncthing dateutil pyinotify pkgs.libnotify pkgs.psmisc
- pygobject3 pkgs.gtk3 ];
-
- patchPhase = ''
- substituteInPlace "scripts/syncthing-gtk" \
- --replace "/usr/share" "$out/share"
- substituteInPlace setup.py --replace "version = get_version()" "version = '${version}'"
- '';
-
- meta = {
- description = " GTK3 & python based GUI for Syncthing ";
- maintainers = with maintainers; [ DamienCassou ];
- platforms = pkgs.syncthing.meta.platforms;
- homepage = "https://github.com/syncthing/syncthing-gtk";
- license = licenses.gpl2;
- };
- };
-
tarsnapper = buildPythonPackage rec {
name = "tarsnapper-0.2.1";
disabled = isPy3k;
@@ -20822,6 +20939,27 @@ in modules // {
};
};
+ tunigo = buildPythonPackage rec {
+ name = "tunigo-${version}";
+ version = "0.1.3";
+ propagatedBuildInputs = with self; [ requests2 ];
+
+ src = pkgs.fetchFromGitHub {
+ owner = "trygveaa";
+ repo = "python-tunigo";
+ rev = "v${version}";
+ sha256 = "02ili37dbs5mk5f6v3fmi1sji39ymc4zyq44x0abxzr88nc8nh97";
+ };
+
+ buildInputs = with self; [ mock nose ];
+
+ meta = {
+ description = "Python API for the browse feature of Spotify";
+ homepage = https://github.com/trygveaa/python-tunigo;
+ license = licenses.asl20;
+ };
+ };
+
screenkey = buildPythonPackage rec {
version = "0.2-b3634a2c6eb6d6936c3b2c1ef5078bf3a84c40c6";
name = "screenkey-${version}";
@@ -21627,6 +21765,21 @@ in modules // {
};
};
+ rpdb = buildPythonPackage rec {
+ name = "rpdb-0.1.5";
+
+ src = pkgs.fetchurl {
+ url = "http://pypi.python.org/packages/source/r/rpdb/${name}.tar.gz";
+ sha256 = "0rql1hq3lziwcql0h3dy05w074cn866p397ng9bv6qbz85ifw1bk";
+ };
+
+ meta = {
+ description = "pdb wrapper with remote access via tcp socket";
+ homepage = https://github.com/tamentis/rpdb;
+ license = licenses.bsd2;
+ };
+ };
+
grequests = buildPythonPackage rec {
name = "grequests-0.2.0";
diff --git a/pkgs/top-level/release.nix b/pkgs/top-level/release.nix
index c55f8f0825f..50331b83e8e 100644
--- a/pkgs/top-level/release.nix
+++ b/pkgs/top-level/release.nix
@@ -66,7 +66,6 @@ let
binutils = linux;
bind = linux;
bvi = all;
- castle_combat = linux;
cdrkit = linux;
classpath = linux;
ddrescue = linux;